Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

10,567

Downloads of v 0.11.0:

2,041

Last Update:

06 Jul 2023

Package Maintainer(s):

Software Author(s):

  • Brandon Olin

Tags:

admin powershell module terminal icon font

Terminal-Icons (PowerShell Module)

  • 1
  • 2
  • 3

0.11.0 | Updated: 06 Jul 2023

Downloads:

10,567

Downloads of v 0.11.0:

2,041

Maintainer(s):

Software Author(s):

  • Brandon Olin

Terminal-Icons (PowerShell Module) 0.11.0

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Terminal-Icons (PowerShell Module), run the following command from the command line or from PowerShell:

>

To upgrade Terminal-Icons (PowerShell Module), run the following command from the command line or from PowerShell:

>

To uninstall Terminal-Icons (PowerShell Module), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade terminal-icons.powershell -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade terminal-icons.powershell -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install terminal-icons.powershell
  win_chocolatey:
    name: terminal-icons.powershell
    version: '0.11.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'terminal-icons.powershell' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '0.11.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller terminal-icons.powershell
{
    Name     = "terminal-icons.powershell"
    Version  = "0.11.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'terminal-icons.powershell':
  ensure   => '0.11.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 06 Jul 2023.

Description

Terminal-Icons is a PowerShell module that adds file and folder icons when displaying items in the terminal. This relies on the custom fonts provided by Nerd Fonts.

> You must be using one of the fonts provided by Nerd Fonts for this module to work as these fonts include tons of custom glyphs/icons that are referenced by their unicode number.

You can pass the following parameters:

  • /core - Installs the module in the AllUsers scope for PowerShell Core;
  • /desktop - Installs the module in the AllUsers scope for Windows PowerShell (ie. Desktop Edition);

You can pass both /core and /desktop parameters to install on both. If you pass no parameters then /desktop is assumed.

NOTE: This module requires a minimum of PowerShell v4.

NOTE: This is an automatically updated package. If you find it is out of date by more than a week, please contact the maintainer(s) and let them know the package is no longer updating correctly.


tools\.skipAutoUninstaller
 
tools\chocolateyBeforeModify.ps1
$ErrorActionPreference = 'Stop'

$moduleName = 'terminal-icons'      # this could be different from package name
Remove-Module -Name $moduleName -Force -ErrorAction SilentlyContinue
tools\terminal-icons\Terminal-Icons.psd1
@{
    RootModule        = 'Terminal-Icons.psm1'
    ModuleVersion     = '0.11.0'
    GUID              = '4419ddb6-3528-47cd-baf3-7fb9d8566620'
    Author            = 'Brandon Olin'
    CompanyName       = 'Community'
    Copyright         = '(c) Brandon Olin. All rights reserved.'
    Description       = 'PowerShell module to add file icons to terminal based on file extension'
    PowerShellVersion = '5.1'
    # PowerShellHostName = ''
    # PowerShellHostVersion = ''
    RequiredModules = @()
    FunctionsToExport = @('Add-TerminalIconsColorTheme','Add-TerminalIconsIconTheme','Format-TerminalIcons','Get-TerminalIconsColorTheme','Get-TerminalIconsGlyphs','Get-TerminalIconsIconTheme','Get-TerminalIconsTheme','Invoke-TerminalIconsThemeMigration','Remove-TerminalIconsTheme','Set-TerminalIconsIcon','Set-TerminalIconsTheme','Show-TerminalIconsTheme')
    CmdletsToExport   = @()
    VariablesToExport = @()
    AliasesToExport   = @()
    PrivateData       = @{
        PSData = @{
            Tags         = @('Color', 'Terminal', 'Console', 'NerdFonts', 'Icon')
            LicenseUri   = 'https://raw.githubusercontent.com/devblackops/Terminal-Icons/master/LICENSE'
            ProjectUri   = 'https://github.com/devblackops/Terminal-Icons'
            IconUri      = 'https://github.com/devblackops/Terminal-Icons/raw/master/media/icon_256.png'
            ReleaseNotes = 'https://raw.githubusercontent.com/devblackops/Terminal-Icons/master/CHANGELOG.md'
        }
    }
}
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$toolsDir = Split-Path -parent $MyInvocation.MyCommand.Definition
$moduleName = 'terminal-icons'  # this may be different from the package name and different case
$moduleVersion = $env:ChocolateyPackageVersion      # this may change so keep this here
$minPowerShellVersion = 4   # minimum PowerShell version required
$savedParamsPath = Join-Path $toolsDir -ChildPath 'parameters.saved'

if ($PSVersionTable.PSVersion.Major -lt $minPowerShellVersion) {
    throw "$moduleName module requires a minimum of PowerShell v$minPowerShellVersion."
}

function Copy-Module {
    [CmdletBinding()]
    Param (
        [Parameter(Mandatory)]
        [ValidateScript( { Test-Path $_ })]
        [string]
        $Source,

        [Parameter(Mandatory)]
        [string]
        $Destination
    )

    if (-not (Test-Path -Path $Destination)) {
        Write-Verbose "Creating destination directory '$Destination' for module."
        New-Item -Path $Destination -ItemType Directory -Force -ErrorAction SilentlyContinue | Out-Null
    }

    Write-Verbose "Copying '$($script:moduleName)' files from '$Source' to '$Destination'."
    Copy-Item -Path $Source -Destination $Destination -Force -Recurse
}

# module may already be installed outside of Chocolatey
Remove-Module -Name $moduleName -Force -ErrorAction SilentlyContinue

# remove the saved parameters file if it exists
if (Test-Path -Path $savedParamsPath) {
    Remove-Item -Path $savedParamsPath -Force
}

$params = Get-PackageParameters

# install the module to the correct folder depending on parameters
# by default, if no parameters, we install for Windows PowerShell (ie. Desktop)
if ($params.Desktop -or (-not $params.Core)) {
    $sourcePath = Join-Path -Path $toolsDir -ChildPath "$modulename\*"
    $destPath = Join-Path -Path $env:ProgramFiles -ChildPath "WindowsPowerShell\Modules\$moduleName"

    Write-Verbose "Installing '$modulename' for Windows PowerShell (Desktop)."

    if ($PSVersionTable.PSVersion.Major -ge 5) {
        $destPath = Join-Path -Path $destPath -ChildPath $moduleVersion
    }

    Copy-Module -Source $sourcePath -Destination $destPath
    Add-Content -Path $savedParamsPath -Value 'Desktop'

    if ($PSVersionTable.PSVersion.Major -lt 4) {
        $modulePaths = [Environment]::GetEnvironmentVariable('PSModulePath', 'Machine') -split ';'
        if ($modulePaths -notcontains $destPath) {
            Write-Verbose "Adding '$destPath' to PSModulePath."
            $newModulePath = @($destPath, $modulePaths) -join ';'

            [Environment]::SetEnvironmentVariable('PSModulePath', $newModulePath, 'Machine')
            $env:PSModulePath = $newModulePath
        }
    }
}

if ($params.Core) {
    $sourcePath = Join-Path -Path $toolsDir -ChildPath "$modulename\*"
    $destPath = Join-Path -Path $env:ProgramFiles -ChildPath "PowerShell\Modules\$moduleName\$moduleVersion"

    Write-Verbose "Installing '$modulename' for PowerShell Core)."

    Copy-Module -Source $sourcePath -Destination $destPath
    Add-Content -Path $savedParamsPath -Value 'Core'
}

# cleanup the module from the Chocolatey $toolsDir folder
Remove-Item -Path $sourcePath -Force -Recurse
tools\terminal-icons\Terminal-Icons.psm1

using namespace System.Management.Automation
using namespace System.Collections.ObjectModel
function Add-Theme {
    [cmdletbinding(DefaultParameterSetName = 'Path', SupportsShouldProcess)]
    param(
        [Parameter(
            Mandatory,
            ParameterSetName  = 'Path',
            Position = 0,
            ValueFromPipeline,
            ValueFromPipelineByPropertyName
        )]
        [ValidateNotNullOrEmpty()]
        [SupportsWildcards()]
        [string[]]$Path,

        [Parameter(
            Mandatory,
            ParameterSetName = 'LiteralPath',
            Position = 0,
            ValueFromPipelineByPropertyName
        )]
        [ValidateNotNullOrEmpty()]
        [Alias('PSPath')]
        [string[]]$LiteralPath,

        [switch]$Force,

        [ValidateSet('Color', 'Icon')]
        [Parameter(Mandatory)]
        [string]$Type
    )

    process {
        # Resolve path(s)
        if ($PSCmdlet.ParameterSetName -eq 'Path') {
            $paths = Resolve-Path -Path $Path | Select-Object -ExpandProperty Path
        } elseif ($PSCmdlet.ParameterSetName -eq 'LiteralPath') {
            $paths = Resolve-Path -LiteralPath $LiteralPath | Select-Object -ExpandProperty Path
        }

        foreach ($resolvedPath in $paths) {
            if (Test-Path $resolvedPath) {
                $item = Get-Item -LiteralPath $resolvedPath

                $statusMsg  = "Adding $($type.ToLower()) theme [$($item.BaseName)]"
                $confirmMsg = "Are you sure you want to add file [$resolvedPath]?"
                $operation  = "Add $($Type.ToLower())"
                if ($PSCmdlet.ShouldProcess($statusMsg, $confirmMsg, $operation) -or $Force.IsPresent) {
                    if (-not $script:userThemeData.Themes.$Type.ContainsKey($item.BaseName) -or $Force.IsPresent) {

                        $theme = Import-PowerShellDataFile $item.FullName

                        # Convert color theme into escape sequences for lookup later
                        if ($Type -eq 'Color') {
                            # Add empty color theme
                            if (-not $script:colorSequences.ContainsKey($theme.Name)) {
                                $script:colorSequences[$theme.Name] = New-EmptyColorTheme
                            }

                            # Directories
                            $theme.Types.Directories.WellKnown.GetEnumerator().ForEach({
                                $script:colorSequences[$theme.Name].Types.Directories[$_.Name] = ConvertFrom-RGBColor -RGB $_.Value
                            })
                            # Wellknown files
                            $theme.Types.Files.WellKnown.GetEnumerator().ForEach({
                                $script:colorSequences[$theme.Name].Types.Files.WellKnown[$_.Name] = ConvertFrom-RGBColor -RGB $_.Value
                            })
                            # File extensions
                            $theme.Types.Files.GetEnumerator().Where({$_.Name -ne 'WellKnown'}).ForEach({
                                $script:colorSequences[$theme.Name].Types.Files[$_.Name] = ConvertFrom-RGBColor -RGB $_.Value
                            })
                        }

                        $script:userThemeData.Themes.$Type[$theme.Name] = $theme
                        Save-Theme -Theme $theme -Type $Type
                    } else {
                        Write-Error "$Type theme [$($theme.Name)] already exists. Use the -Force switch to overwrite."
                    }
                }
            } else {
                Write-Error "Path [$resolvedPath] is not valid."
            }
        }
    }
}
function ConvertFrom-ColorEscapeSequence {
    [OutputType([string])]
    [CmdletBinding()]
    param(
        [Parameter(Mandatory, ValueFromPipeline)]
        [ValidateNotNullOrEmpty()]
        [string]$Sequence
    )

    process {
        # Example input sequence: 'e[38;2;135;206;250m'
        $arr = $Sequence.Split(';')
        $r   = '{0:x}' -f [int]$arr[2]
        $g   = '{0:x}' -f [int]$arr[3]
        $b   = '{0:x}' -f [int]$arr[4].TrimEnd('m')

        ($r + $g + $b).ToUpper()
    }
}
function ConvertFrom-RGBColor {
    [OutputType([string])]
    [CmdletBinding()]
    param(
        [Parameter(Mandatory, ValueFromPipeline)]
        [ValidateNotNullOrEmpty()]
        [string]$RGB
    )

    process {
        $RGB = $RGB.Replace('#', '')
        $r   = [convert]::ToInt32($RGB.SubString(0,2), 16)
        $g   = [convert]::ToInt32($RGB.SubString(2,2), 16)
        $b   = [convert]::ToInt32($RGB.SubString(4,2), 16)

        "${script:escape}[38;2;$r;$g;$b`m"
    }
}
function ConvertTo-ColorSequence {
    [cmdletbinding()]
    param(
        [parameter(Mandatory, ValueFromPipeline)]
        [hashtable]$ColorData
    )

    process {
        $cs      = New-EmptyColorTheme
        $cs.Name = $ColorData.Name

        # Directories
        if ($ColorData.Types.Directories['symlink']) {
            $cs.Types.Directories['symlink']  = ConvertFrom-RGBColor -RGB $ColorData.Types.Directories['symlink']
        }
        if ($ColorData.Types.Directories['junction']) {
            $cs.Types.Directories['junction'] = ConvertFrom-RGBColor -RGB $ColorData.Types.Directories['junction']
        }
        $ColorData.Types.Directories.WellKnown.GetEnumerator().ForEach({
            $cs.Types.Directories[$_.Name] = ConvertFrom-RGBColor -RGB $_.Value
        })

        # Wellknown files
        if ($ColorData.Types.Files['symlink']) {
            $cs.Types.Files['symlink']  = ConvertFrom-RGBColor -RGB $ColorData.Types.Files['symlink']
        }
        if ($ColorData.Types.Files['junction']) {
            $cs.Types.Files['junction'] = ConvertFrom-RGBColor -RGB $ColorData.Types.Files['junction']
        }
        $ColorData.Types.Files.WellKnown.GetEnumerator().ForEach({
            $cs.Types.Files.WellKnown[$_.Name] = ConvertFrom-RGBColor -RGB $_.Value
        })

        # File extensions
        $ColorData.Types.Files.GetEnumerator().Where({$_.Name -ne 'WellKnown' -and $_.Name -ne ''}).ForEach({
            $cs.Types.Files[$_.Name] = ConvertFrom-RGBColor -RGB $_.Value
        })

        $cs
    }
}
function Get-ThemeStoragePath {
    [OutputType([string])]
    [CmdletBinding()]
    param()

    if ($IsLinux -or $IsMacOs) {
        if (-not ($basePath = $env:XDG_CONFIG_HOME)) {
            $basePath = [IO.Path]::Combine($HOME, '.local', 'share')
        }
    } else {
        if (-not ($basePath = $env:APPDATA)) {
            $basePath = [Environment]::GetFolderPath('ApplicationData')
        }
    }

    if ($basePath) {
        $storagePath = [IO.Path]::Combine($basePath, 'powershell', 'Community', 'Terminal-Icons')
        if (-not (Test-Path $storagePath)) {
            New-Item -Path $storagePath -ItemType Directory -Force > $null
        }
        $storagePath
    }
}
function Import-ColorTheme {
    [OutputType([hashtable])]
    [cmdletbinding()]
    param()

    $hash = @{}
    (Get-ChildItem -Path $moduleRoot/Data/colorThemes).ForEach({
        $colorData = Import-PowerShellDataFile $_.FullName
        $hash[$colorData.Name] = $colorData
        $hash[$colorData.Name].Types.Directories[''] = $colorReset
        $hash[$colorData.Name].Types.Files['']       = $colorReset
    })
    $hash
}
function Import-IconTheme {
    [OutputType([hashtable])]
    [cmdletbinding()]
    param()

    $hash = @{}
    (Get-ChildItem -Path $moduleRoot/Data/iconThemes).ForEach({
        $hash.Add($_.Basename, (Import-PowerShellDataFile $_.FullName))
    })
    $hash
}
function Import-Preferences {
    [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseShouldProcessForStateChangingFunctions', '')]
    [OutputType([hashtable])]
    [cmdletbinding()]
    param(
        [parameter(ValueFromPipeline)]
        [string]$Path = (Join-Path (Get-ThemeStoragePath) 'prefs.xml'),

        [string]$DefaultThemeName = $script:defaultTheme
    )

    begin {
        $defaultPrefs = @{
            CurrentColorTheme = $DefaultThemeName
            CurrentIconTheme  = $DefaultThemeName
        }
    }

    process {
        if (Test-Path $Path) {
            try {
                Import-Clixml -Path $Path -ErrorAction Stop
            } catch {
                Write-Warning "Unable to parse [$Path]. Setting default preferences."
                $defaultPrefs
            }
        } else {
            $defaultPrefs
        }
    }
}
function New-EmptyColorTheme {
    [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseShouldProcessForStateChangingFunctions', '')]
    [OutputType([hashtable])]
    [cmdletbinding()]
    param()

    @{
        Name = ''
        Types = @{
            Directories = @{
                #''        = "`e[0m"
                symlink  = ''
                junction = ''
                WellKnown = @{}
            }
            Files = @{
                #''        = "`e[0m"
                symlink  = ''
                junction = ''
                WellKnown = @{}
            }
        }
    }
}
function Resolve-Icon {
    [OutputType([hashtable])]
    [CmdletBinding()]
    param(
        [Parameter(Mandatory, ValueFromPipeline)]
        [IO.FileSystemInfo]$FileInfo,

        [string]$IconTheme = $script:userThemeData.CurrentIconTheme,

        [string]$ColorTheme = $script:userThemeData.CurrentColorTheme
    )

    begin {
        $icons  = $script:userThemeData.Themes.Icon[$IconTheme]
        $colors = $script:colorSequences[$ColorTheme]
    }

    process {
        $displayInfo = @{
            Icon     = $null
            Color    = $null
            Target   = ''
        }

        if ($FileInfo.PSIsContainer) {
            $type = 'Directories'
        } else {
            $type = 'Files'
        }

        switch ($FileInfo.LinkType) {
            # Determine symlink or junction icon and color
            'Junction' {
                if ($icons) {
                    $iconName = $icons.Types.($type)['junction']
                } else {
                    $iconName = $null
                }
                if ($colors) {
                    $colorSeq = $colors.Types.($type)['junction']
                } else {
                    $colorSet = $script:colorReset
                }
                $displayInfo['Target'] = ' ' + $glyphs['nf-md-arrow_right_thick'] + ' ' + $FileInfo.Target
                break
            }
            'SymbolicLink' {
                if ($icons) {
                    $iconName = $icons.Types.($type)['symlink']
                } else {
                    $iconName = $null
                }
                if ($colors) {
                    $colorSeq = $colors.Types.($type)['symlink']
                } else {
                    $colorSet = $script:colorReset
                }
                $displayInfo['Target'] = ' ' + $glyphs['nf-md-arrow_right_thick'] + ' ' + $FileInfo.Target
                break
            } default {
                if ($icons) {
                    # Determine normal directory icon and color
                    $iconName = $icons.Types.$type.WellKnown[$FileInfo.Name]
                    if (-not $iconName) {
                        if ($FileInfo.PSIsContainer) {
                            $iconName = $icons.Types.$type[$FileInfo.Name]
                        } elseif ($icons.Types.$type.ContainsKey($FileInfo.Extension)) {
                            $iconName = $icons.Types.$type[$FileInfo.Extension]
                        } else {
                            # File probably has multiple extensions
                            # Fallback to computing the full extension
                            $firstDot = $FileInfo.Name.IndexOf('.')
                            if ($firstDot -ne -1) {
                                $fullExtension = $FileInfo.Name.Substring($firstDot)
                                $iconName = $icons.Types.$type[$fullExtension]
                            }
                        }
                        if (-not $iconName) {
                            $iconName = $icons.Types.$type['']
                        }

                        # Fallback if everything has gone horribly wrong
                        if (-not $iconName) {
                            if ($FileInfo.PSIsContainer) {
                                $iconName = 'nf-oct-file_directory'
                            } else {
                                $iconName = 'nf-fa-file'
                            }
                        }
                    }
                } else {
                    $iconName = $null
                }
                if ($colors) {
                    $colorSeq = $colors.Types.$type.WellKnown[$FileInfo.Name]
                    if (-not $colorSeq) {
                        if ($FileInfo.PSIsContainer) {
                            $colorSeq = $colors.Types.$type[$FileInfo.Name]
                        } elseif ($colors.Types.$type.ContainsKey($FileInfo.Extension)) {
                            $colorSeq = $colors.Types.$type[$FileInfo.Extension]
                        } else {
                            # File probably has multiple extensions
                            # Fallback to computing the full extension
                            $firstDot = $FileInfo.Name.IndexOf('.')
                            if ($firstDot -ne -1) {
                                $fullExtension = $FileInfo.Name.Substring($firstDot)
                                $colorSeq = $colors.Types.$type[$fullExtension]
                            }
                        }
                        if (-not $colorSeq) {
                            $colorSeq = $colors.Types.$type['']
                        }

                        # Fallback if everything has gone horribly wrong
                        if (-not $colorSeq) {
                            $colorSeq = $script:colorReset
                        }
                    }
                } else {
                    $colorSeq = $script:colorReset
                }
            }
        }
        if ($iconName) {
            $displayInfo['Icon'] = $glyphs[$iconName]
        } else {
            $displayInfo['Icon'] = $null
        }
        $displayInfo['Color'] = $colorSeq
        $displayInfo
    }
}
function Save-Preferences {
    [cmdletbinding()]
    param(
        [parameter(Mandatory, ValueFromPipeline)]
        [hashtable]$Preferences,

        [string]$Path = (Join-Path (Get-ThemeStoragePath) 'prefs.xml')
    )

    process {
        Write-Debug ('Saving preferendces to [{0}]' -f $Path)
        $Preferences | Export-CliXml -Path $Path -Force
    }
}
function Save-Theme {
    [CmdletBinding()]
    param(
        [Parameter(Mandatory, ValueFromPipeline)]
        [hashtable]$Theme,

        [ValidateSet('color', 'icon')]
        [string]$Type,

        [string]$Path = (Get-ThemeStoragePath)
    )

    process {
        $themePath = Join-Path $Path "$($Theme.Name)_$($Type.ToLower()).xml"
        Write-Debug ('Saving [{0}] theme [{1}] to [{2}]' -f $type, $theme.Name, $themePath)
        $Theme | Export-CliXml -Path $themePath -Force
    }
}
function Set-Theme {
    [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseShouldProcessForStateChangingFunctions', '')]
    [CmdletBinding()]
    param(
        [Parameter(Mandatory)]
        [AllowNull()]
        [AllowEmptyString()]
        [string]$Name,

        [ValidateSet('Color', 'Icon')]
        [Parameter(Mandatory)]
        [string]$Type
    )

    if ([string]::IsNullOrEmpty($Name)) {
        $script:userThemeData."Current$($Type)Theme" = $null
        $script:prefs."Current$($Type)Theme" = ''
        Save-Preferences $script:prefs
    } else {
        if (-not $script:userThemeData.Themes.$Type.ContainsKey($Name)) {
            Write-Error "$Type theme [$Name] not found."
        } else {
            $script:userThemeData."Current$($Type)Theme" = $Name
            $script:prefs."Current$($Type)Theme" = $Name
            Save-Theme -Theme $userThemeData.Themes.$Type[$Name] -Type $type
            Save-Preferences $script:prefs
        }
    }
}
function Add-TerminalIconsColorTheme {
    <#
    .SYNOPSIS
        Add a Terminal-Icons color theme for the current user.
    .DESCRIPTION
        Add a Terminal-Icons color theme for the current user. The theme data
        is stored in the user's profile
    .PARAMETER Path
        The path to the Terminal-Icons color theme file.
    .PARAMETER LiteralPath
        The literal path to the Terminal-Icons color theme file.
    .PARAMETER Force
        Overwrite the color theme if it already exists in the profile.
    .EXAMPLE
        PS> Add-TerminalIconsColorTheme -Path ./my_color_theme.psd1

        Add the color theme contained in ./my_color_theme.psd1.
    .EXAMPLE
        PS> Get-ChildItem ./path/to/colorthemes | Add-TerminalIconsColorTheme -Force

        Add all color themes contained in the folder ./path/to/colorthemes and add them,
        overwriting existing ones if needed.
    .INPUTS
        System.String

        You can pipe a string that contains a path to 'Add-TerminalIconsColorTheme'.
    .OUTPUTS
        None.
    .NOTES
        'Add-TerminalIconsColorTheme' will not overwrite an existing theme by default.
        Add the -Force switch to overwrite.
    .LINK
        Add-TerminalIconsIconTheme
    #>
    [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSShouldProcess', '', Justification='Implemented in private function')]
    [CmdletBinding(DefaultParameterSetName = 'Path', SupportsShouldProcess)]
    param(
        [Parameter(
            Mandatory,
            ParameterSetName  = 'Path',
            Position = 0,
            ValueFromPipeline,
            ValueFromPipelineByPropertyName
        )]
        [ValidateNotNullOrEmpty()]
        [SupportsWildcards()]
        [string[]]$Path,

        [Parameter(
            Mandatory,
            ParameterSetName = 'LiteralPath',
            Position = 0,
            ValueFromPipelineByPropertyName
        )]
        [ValidateNotNullOrEmpty()]
        [Alias('PSPath')]
        [string[]]$LiteralPath,

        [switch]$Force
    )

    process {
        Add-Theme @PSBoundParameters -Type Color
    }
}
function Add-TerminalIconsIconTheme {
    <#
    .SYNOPSIS
        Add a Terminal-Icons icon theme for the current user.
    .DESCRIPTION
        Add a Terminal-Icons icon theme for the current user. The theme data
        is stored in the user's profile
    .PARAMETER Path
        The path to the Terminal-Icons icon theme file.
    .PARAMETER LiteralPath
        The literal path to the Terminal-Icons icon theme file.
    .PARAMETER Force
        Overwrite the icon theme if it already exists in the profile.
    .EXAMPLE
        PS> Add-Terminal-IconsIconTHeme -Path ./my_icon_theme.psd1

        Add the icon theme contained in ./my_icon_theme.psd1.
    .EXAMPLE
        PS> Get-ChildItem ./path/to/iconthemes | Add-TerminalIconsIconTheme -Force

        Add all icon themes contained in the folder ./path/to/iconthemes and add them,
        overwriting existing ones if needed.
    .INPUTS
        System.String

        You can pipe a string that contains a path to 'Add-TerminalIconsIconTheme'.
    .OUTPUTS
        None.
    .NOTES
        'Add-TerminalIconsIconTheme' will not overwrite an existing theme by default.
        Add the -Force switch to overwrite.
    .LINK
        Add-TerminalIconsColorTheme
    #>
    [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSShouldProcess', '', Justification='Implemented in private function')]
    [CmdletBinding(DefaultParameterSetName = 'Path', SupportsShouldProcess)]
    param(
        [Parameter(
            Mandatory,
            ParameterSetName  = 'Path',
            Position = 0,
            ValueFromPipeline,
            ValueFromPipelineByPropertyName
        )]
        [ValidateNotNullOrEmpty()]
        [SupportsWildcards()]
        [string[]]$Path,

        [Parameter(
            Mandatory,
            ParameterSetName = 'LiteralPath',
            Position = 0,
            ValueFromPipelineByPropertyName
        )]
        [ValidateNotNullOrEmpty()]
        [Alias('PSPath')]
        [string[]]$LiteralPath,

        [switch]$Force
    )

    process {
        Add-Theme @PSBoundParameters -Type Icon
    }
}
function Format-TerminalIcons {
    <#
    .SYNOPSIS
        Prepend a custom icon (with color) to the provided file or folder object when displayed.
    .DESCRIPTION
        Take the provided file or folder object and look up the appropriate icon and color to display.
    .PARAMETER FileInfo
        The file or folder to display
    .EXAMPLE
        Get-ChildItem

        List a directory. Terminal-Icons will be invoked automatically for display.
    .EXAMPLE
        Get-Item ./README.md | Format-TerminalIcons

        Get a file object and pass directly to Format-TerminalIcons.
    .INPUTS
        System.IO.FileSystemInfo

        You can pipe an objects that derive from System.IO.FileSystemInfo (System.IO.DIrectoryInfo and System.IO.FileInfo) to 'Format-TerminalIcons'.
    .OUTPUTS
        System.String

        Outputs a colorized string with an icon prepended.
    #>
    [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSUseShouldProcessForStateChangingFunctions', '')]
    [OutputType([string])]
    [CmdletBinding()]
    param(
        [Parameter(Mandatory, ValueFromPipeline)]
        [IO.FileSystemInfo]$FileInfo
    )

    process {
        $displayInfo = Resolve-Icon $FileInfo
        if ($displayInfo.Icon) {
            "$($displayInfo.Color)$($displayInfo.Icon)  $($FileInfo.Name)$($displayInfo.Target)$($script:colorReset)"
        } else {
            "$($displayInfo.Color)$($FileInfo.Name)$($displayInfo.Target)$($script:colorReset)"
        }
    }
}
function Get-TerminalIconsColorTheme {
    <#
    .SYNOPSIS
        List the available color themes.
    .DESCRIPTION
        List the available color themes.
    .Example
        PS> Get-TerminalIconsColorTheme

        Get the list of available color themes.
    .INPUTS
        None.
    .OUTPUTS
        System.Collections.Hashtable

        An array of hashtables representing available color themes.
    .LINK
        Get-TerminalIconsIconTheme
    .LINK
        Get-TerminalIconsTheme
    #>
    $script:userThemeData.Themes.Color
}
function Get-TerminalIconsGlyphs {
    <#
    .SYNOPSIS
        Gets the list of glyphs known to Terminal-Icons.
    .DESCRIPTION
        Gets a hashtable with the available glyph names and icons. Useful in creating a custom theme.
    .EXAMPLE
        PS> Get-TerminalIconsGlyphs

        Gets the table of glyph names and icons.
    .INPUTS
        None.
    .OUTPUTS
        None.
    .LINK
        Get-TerminalIconsIconTheme
    .LINK
        Set-TerminalIconsIcon
    #>
    [cmdletbinding()]
    param()

    # This is also helpful for argument completers needing glyphs -
    # ArgumentCompleterAttribute isn't able to access script variables but it
    # CAN call commands.
    $script:glyphs.GetEnumerator() | Sort-Object Name
}
function Get-TerminalIconsIconTheme {
    <#
    .SYNOPSIS
        List the available icon themes.
    .DESCRIPTION
        List the available icon themes.
    .Example
        PS> Get-TerminalIconsIconTheme

        Get the list of available icon themes.
    .INPUTS
        None.
    .OUTPUTS
        System.Collections.Hashtable

        An array of hashtables representing available icon themes.
    .LINK
        Get-TerminalIconsColorTheme
    .LINK
        Get-TerminalIconsTheme
    #>
    $script:userThemeData.Themes.Icon
}
function Get-TerminalIconsTheme {
    <#
    .SYNOPSIS
        Get the currently applied color and icon theme.
    .DESCRIPTION
        Get the currently applied color and icon theme.
    .EXAMPLE
        PS> Get-TerminalIconsTheme

        Get the currently applied Terminal-Icons color and icon theme.
    .INPUTS
        None.
    .OUTPUTS
        System.Management.Automation.PSCustomObject

        An object representing the currently applied color and icon theme.
    .LINK
        Get-TerminalIconsColorTheme
    .LINK
        Get-TerminalIconsIconTheme
    #>
    [CmdletBinding()]
    param()

    $iconTheme = if ($script:userThemeData.CurrentIconTheme) {
        [pscustomobject]$script:userThemeData.Themes.Icon[$script:userThemeData.CurrentIconTheme]
    } else {
        $null
    }

    $colorTheme = if ($script:userThemeData.CurrentColorTheme) {
        [pscustomobject]$script:userThemeData.Themes.Color[$script:userThemeData.CurrentColorTheme]
    } else {
        $null
    }

    [pscustomobject]@{
        PSTypeName = 'TerminalIconsTheme'
        Color      = $colorTheme
        Icon       = $iconTheme
    }
}
function Invoke-TerminalIconsThemeMigration {
    <#
    .SYNOPSIS
        Used to migrate your terminal icon themes to Nerd Fonts v3.
    .DESCRIPTION
        Used to migrate your terminal icon themes to Nerd Fonts v3.
    .PARAMETER Path
        The path to the Terminal-Icons icon theme file.
    .PARAMETER LiteralPath
        The literal path to the Terminal-Icons icon theme file.
    .EXAMPLE
        PS> Invoke-TerminalIconsThemeMigration -Path ./my_icon_theme.psd1 | Out-File ./migrated_icon_theme.psd1

        Loads the theme, migrates classes and then saves the newly migrated theme using the Out-File command.
    .INPUTS
        None.
    .OUTPUTS
        System.String

        The theme that has been fully migrated.
    .LINK
        Invoke-TerminalIconsThemeMigration
    .LINK
        Invoke-TerminalIconsThemeMigration
    #>
    param(
        [Parameter(
            Mandatory,
            ParameterSetName = 'Path',
            Position = 0,
            ValueFromPipeline,
            ValueFromPipelineByPropertyName
        )]
        [ValidateNotNullOrEmpty()]
        [SupportsWildcards()]
        [string[]]$Path,

        [Parameter(
            Mandatory,
            ParameterSetName = 'LiteralPath',
            Position = 0,
            ValueFromPipelineByPropertyName
        )]
        [ValidateNotNullOrEmpty()]
        [Alias('PSPath')]
        [string[]]$LiteralPath
    )
    $MigrationMap = @{
        'nf-oct-file_symlink_directory'                  = 'nf-cod-file_symlink_directory'
        'nf-mdi-access_point'                            = 'nf-md-access_point'
        'nf-mdi-access_point_network'                    = 'nf-md-access_point_network'
        'nf-mdi-account'                                 = 'nf-md-account'
        'nf-mdi-account_alert'                           = 'nf-md-account_alert'
        'nf-mdi-account_box'                             = 'nf-md-account_box'
        'nf-mdi-account_box_outline'                     = 'nf-md-account_box_outline'
        'nf-mdi-account_check'                           = 'nf-md-account_check'
        'nf-mdi-account_circle'                          = 'nf-md-account_circle'
        'nf-mdi-account_convert'                         = 'nf-md-account_convert'
        'nf-mdi-account_edit'                            = 'nf-md-account_edit'
        'nf-mdi-account_key'                             = 'nf-md-account_key'
        'nf-mdi-account_minus'                           = 'nf-md-account_minus'
        'nf-mdi-account_multiple'                        = 'nf-md-account_multiple'
        'nf-mdi-account_multiple_minus'                  = 'nf-md-account_multiple_minus'
        'nf-mdi-account_multiple_outline'                = 'nf-md-account_multiple_outline'
        'nf-mdi-account_multiple_plus'                   = 'nf-md-account_multiple_plus'
        'nf-mdi-account_multiple_plus_outline'           = 'nf-md-account_multiple_plus_outline'
        'nf-mdi-account_network'                         = 'nf-md-account_network'
        'nf-mdi-account_off'                             = 'nf-md-account_off'
        'nf-mdi-account_outline'                         = 'nf-md-account_outline'
        'nf-mdi-account_plus'                            = 'nf-md-account_plus'
        'nf-mdi-account_plus_outline'                    = 'nf-md-account_plus_outline'
        'nf-mdi-account_remove'                          = 'nf-md-account_remove'
        'nf-mdi-account_search'                          = 'nf-md-account_search'
        'nf-mdi-account_settings'                        = 'nf-md-account_settings'
        'nf-mdi-account_star'                            = 'nf-md-account_star'
        'nf-mdi-account_switch'                          = 'nf-md-account_switch'
        'nf-mdi-adjust'                                  = 'nf-md-adjust'
        'nf-mdi-air_conditioner'                         = 'nf-md-air_conditioner'
        'nf-mdi-airballoon'                              = 'nf-md-airballoon'
        'nf-mdi-airplane'                                = 'nf-md-airplane'
        'nf-mdi-airplane_landing'                        = 'nf-md-airplane_landing'
        'nf-mdi-airplane_off'                            = 'nf-md-airplane_off'
        'nf-mdi-airplane_takeoff'                        = 'nf-md-airplane_takeoff'
        'nf-mdi-alarm'                                   = 'nf-md-alarm'
        'nf-mdi-alarm_bell'                              = 'nf-md-alarm_bell'
        'nf-mdi-alarm_check'                             = 'nf-md-alarm_check'
        'nf-mdi-alarm_light'                             = 'nf-md-alarm_light'
        'nf-mdi-alarm_multiple'                          = 'nf-md-alarm_multiple'
        'nf-mdi-alarm_off'                               = 'nf-md-alarm_off'
        'nf-mdi-alarm_plus'                              = 'nf-md-alarm_plus'
        'nf-mdi-alarm_snooze'                            = 'nf-md-alarm_snooze'
        'nf-mdi-album'                                   = 'nf-md-album'
        'nf-mdi-alert'                                   = 'nf-md-alert'
        'nf-mdi-alert_box'                               = 'nf-md-alert_box'
        'nf-mdi-alert_circle'                            = 'nf-md-alert_circle'
        'nf-mdi-alert_circle_outline'                    = 'nf-md-alert_circle_outline'
        'nf-mdi-alert_decagram'                          = 'nf-md-alert_decagram'
        'nf-mdi-alert_octagon'                           = 'nf-md-alert_octagon'
        'nf-mdi-alert_octagram'                          = 'nf-md-alert_octagram'
        'nf-mdi-alert_outline'                           = 'nf-md-alert_outline'
        'nf-mdi-all_inclusive'                           = 'nf-md-all_inclusive'
        'nf-mdi-alpha'                                   = 'nf-md-alpha'
        'nf-mdi-alphabetical'                            = 'nf-md-alphabetical'
        'nf-mdi-altimeter'                               = 'nf-md-altimeter'
        'nf-mdi-ambulance'                               = 'nf-md-ambulance'
        'nf-mdi-amplifier'                               = 'nf-md-amplifier'
        'nf-mdi-anchor'                                  = 'nf-md-anchor'
        'nf-mdi-android'                                 = 'nf-md-android'
        'nf-mdi-android_studio'                          = 'nf-md-android_studio'
        'nf-mdi-angular'                                 = 'nf-md-angular'
        'nf-mdi-angularjs'                               = 'nf-md-angularjs'
        'nf-mdi-animation'                               = 'nf-md-animation'
        'nf-mdi-apple'                                   = 'nf-md-apple'
        'nf-mdi-apple_finder'                            = 'nf-md-apple_finder'
        'nf-mdi-apple_ios'                               = 'nf-md-apple_ios'
        'nf-mdi-apple_keyboard_caps'                     = 'nf-md-apple_keyboard_caps'
        'nf-mdi-apple_keyboard_command'                  = 'nf-md-apple_keyboard_command'
        'nf-mdi-apple_keyboard_control'                  = 'nf-md-apple_keyboard_control'
        'nf-mdi-apple_keyboard_option'                   = 'nf-md-apple_keyboard_option'
        'nf-mdi-apple_keyboard_shift'                    = 'nf-md-apple_keyboard_shift'
        'nf-mdi-apple_safari'                            = 'nf-md-apple_safari'
        'nf-mdi-application'                             = 'nf-md-application'
        'nf-mdi-apps'                                    = 'nf-md-apps'
        'nf-mdi-archive'                                 = 'nf-md-archive'
        'nf-mdi-arrange_bring_forward'                   = 'nf-md-arrange_bring_forward'
        'nf-mdi-arrange_bring_to_front'                  = 'nf-md-arrange_bring_to_front'
        'nf-mdi-arrange_send_backward'                   = 'nf-md-arrange_send_backward'
        'nf-mdi-arrange_send_to_back'                    = 'nf-md-arrange_send_to_back'
        'nf-mdi-arrow_all'                               = 'nf-md-arrow_all'
        'nf-mdi-arrow_bottom_left'                       = 'nf-md-arrow_bottom_left'
        'nf-mdi-arrow_bottom_right'                      = 'nf-md-arrow_bottom_right'
        'nf-mdi-arrow_collapse'                          = 'nf-md-arrow_collapse'
        'nf-mdi-arrow_collapse_all'                      = 'nf-md-arrow_collapse_all'
        'nf-mdi-arrow_collapse_down'                     = 'nf-md-arrow_collapse_down'
        'nf-mdi-arrow_collapse_left'                     = 'nf-md-arrow_collapse_left'
        'nf-mdi-arrow_collapse_right'                    = 'nf-md-arrow_collapse_right'
        'nf-mdi-arrow_collapse_up'                       = 'nf-md-arrow_collapse_up'
        'nf-mdi-arrow_down'                              = 'nf-md-arrow_down'
        'nf-mdi-arrow_down_bold'                         = 'nf-md-arrow_down_bold'
        'nf-mdi-arrow_down_bold_box'                     = 'nf-md-arrow_down_bold_box'
        'nf-mdi-arrow_down_bold_box_outline'             = 'nf-md-arrow_down_bold_box_outline'
        'nf-mdi-arrow_down_bold_circle'                  = 'nf-md-arrow_down_bold_circle'
        'nf-mdi-arrow_down_bold_circle_outline'          = 'nf-md-arrow_down_bold_circle_outline'
        'nf-mdi-arrow_down_bold_hexagon_outline'         = 'nf-md-arrow_down_bold_hexagon_outline'
        'nf-mdi-arrow_down_box'                          = 'nf-md-arrow_down_box'
        'nf-mdi-arrow_down_drop_circle'                  = 'nf-md-arrow_down_drop_circle'
        'nf-mdi-arrow_down_drop_circle_outline'          = 'nf-md-arrow_down_drop_circle_outline'
        'nf-mdi-arrow_down_thick'                        = 'nf-md-arrow_down_thick'
        'nf-mdi-arrow_expand'                            = 'nf-md-arrow_expand'
        'nf-mdi-arrow_expand_all'                        = 'nf-md-arrow_expand_all'
        'nf-mdi-arrow_expand_down'                       = 'nf-md-arrow_expand_down'
        'nf-mdi-arrow_expand_left'                       = 'nf-md-arrow_expand_left'
        'nf-mdi-arrow_expand_right'                      = 'nf-md-arrow_expand_right'
        'nf-mdi-arrow_expand_up'                         = 'nf-md-arrow_expand_up'
        'nf-mdi-arrow_left'                              = 'nf-md-arrow_left'
        'nf-mdi-arrow_left_bold'                         = 'nf-md-arrow_left_bold'
        'nf-mdi-arrow_left_bold_box'                     = 'nf-md-arrow_left_bold_box'
        'nf-mdi-arrow_left_bold_box_outline'             = 'nf-md-arrow_left_bold_box_outline'
        'nf-mdi-arrow_left_bold_circle'                  = 'nf-md-arrow_left_bold_circle'
        'nf-mdi-arrow_left_bold_circle_outline'          = 'nf-md-arrow_left_bold_circle_outline'
        'nf-mdi-arrow_left_bold_hexagon_outline'         = 'nf-md-arrow_left_bold_hexagon_outline'
        'nf-mdi-arrow_left_box'                          = 'nf-md-arrow_left_box'
        'nf-mdi-arrow_left_drop_circle'                  = 'nf-md-arrow_left_drop_circle'
        'nf-mdi-arrow_left_drop_circle_outline'          = 'nf-md-arrow_left_drop_circle_outline'
        'nf-mdi-arrow_left_thick'                        = 'nf-md-arrow_left_thick'
        'nf-mdi-arrow_right'                             = 'nf-md-arrow_right'
        'nf-mdi-arrow_right_bold'                        = 'nf-md-arrow_right_bold'
        'nf-mdi-arrow_right_bold_box'                    = 'nf-md-arrow_right_bold_box'
        'nf-mdi-arrow_right_bold_box_outline'            = 'nf-md-arrow_right_bold_box_outline'
        'nf-mdi-arrow_right_bold_circle'                 = 'nf-md-arrow_right_bold_circle'
        'nf-mdi-arrow_right_bold_circle_outline'         = 'nf-md-arrow_right_bold_circle_outline'
        'nf-mdi-arrow_right_bold_hexagon_outline'        = 'nf-md-arrow_right_bold_hexagon_outline'
        'nf-mdi-arrow_right_box'                         = 'nf-md-arrow_right_box'
        'nf-mdi-arrow_right_drop_circle'                 = 'nf-md-arrow_right_drop_circle'
        'nf-mdi-arrow_right_drop_circle_outline'         = 'nf-md-arrow_right_drop_circle_outline'
        'nf-mdi-arrow_right_thick'                       = 'nf-md-arrow_right_thick'
        'nf-mdi-arrow_top_left'                          = 'nf-md-arrow_top_left'
        'nf-mdi-arrow_top_right'                         = 'nf-md-arrow_top_right'
        'nf-mdi-arrow_up'                                = 'nf-md-arrow_up'
        'nf-mdi-arrow_up_bold'                           = 'nf-md-arrow_up_bold'
        'nf-mdi-arrow_up_bold_box'                       = 'nf-md-arrow_up_bold_box'
        'nf-mdi-arrow_up_bold_box_outline'               = 'nf-md-arrow_up_bold_box_outline'
        'nf-mdi-arrow_up_bold_circle'                    = 'nf-md-arrow_up_bold_circle'
        'nf-mdi-arrow_up_bold_circle_outline'            = 'nf-md-arrow_up_bold_circle_outline'
        'nf-mdi-arrow_up_bold_hexagon_outline'           = 'nf-md-arrow_up_bold_hexagon_outline'
        'nf-mdi-arrow_up_box'                            = 'nf-md-arrow_up_box'
        'nf-mdi-arrow_up_drop_circle'                    = 'nf-md-arrow_up_drop_circle'
        'nf-mdi-arrow_up_drop_circle_outline'            = 'nf-md-arrow_up_drop_circle_outline'
        'nf-mdi-arrow_up_thick'                          = 'nf-md-arrow_up_thick'
        'nf-mdi-assistant'                               = 'nf-md-assistant'
        'nf-mdi-asterisk'                                = 'nf-md-asterisk'
        'nf-mdi-at'                                      = 'nf-md-at'
        'nf-mdi-atlassian'                               = 'nf-md-atlassian'
        'nf-mdi-atom'                                    = 'nf-md-atom'
        'nf-mdi-attachment'                              = 'nf-md-attachment'
        'nf-mdi-auto_fix'                                = 'nf-md-auto_fix'
        'nf-mdi-auto_upload'                             = 'nf-md-auto_upload'
        'nf-mdi-autorenew'                               = 'nf-md-autorenew'
        'nf-mdi-av_timer'                                = 'nf-md-av_timer'
        'nf-mdi-azure'                                   = 'nf-md-microsoft_azure'
        'nf-mdi-baby'                                    = 'nf-md-baby'
        'nf-mdi-baby_buggy'                              = 'nf-md-baby_buggy'
        'nf-mdi-backburger'                              = 'nf-md-backburger'
        'nf-mdi-backspace'                               = 'nf-md-backspace'
        'nf-mdi-backup_restore'                          = 'nf-md-backup_restore'
        'nf-mdi-bank'                                    = 'nf-md-bank'
        'nf-mdi-barcode'                                 = 'nf-md-barcode'
        'nf-mdi-barcode_scan'                            = 'nf-md-barcode_scan'
        'nf-mdi-barley'                                  = 'nf-md-barley'
        'nf-mdi-barrel'                                  = 'nf-md-barrel'
        'nf-mdi-basket'                                  = 'nf-md-basket'
        'nf-mdi-basket_fill'                             = 'nf-md-basket_fill'
        'nf-mdi-basket_unfill'                           = 'nf-md-basket_unfill'
        'nf-mdi-basketball'                              = 'nf-md-basketball'
        'nf-mdi-battery'                                 = 'nf-md-battery'
        'nf-mdi-battery_10'                              = 'nf-md-battery_10'
        'nf-mdi-battery_20'                              = 'nf-md-battery_20'
        'nf-mdi-battery_30'                              = 'nf-md-battery_30'
        'nf-mdi-battery_40'                              = 'nf-md-battery_40'
        'nf-mdi-battery_50'                              = 'nf-md-battery_50'
        'nf-mdi-battery_60'                              = 'nf-md-battery_60'
        'nf-mdi-battery_70'                              = 'nf-md-battery_70'
        'nf-mdi-battery_80'                              = 'nf-md-battery_80'
        'nf-mdi-battery_90'                              = 'nf-md-battery_90'
        'nf-mdi-battery_alert'                           = 'nf-md-battery_alert'
        'nf-mdi-battery_charging'                        = 'nf-md-battery_charging'
        'nf-mdi-battery_charging_100'                    = 'nf-md-battery_charging_100'
        'nf-mdi-battery_charging_20'                     = 'nf-md-battery_charging_20'
        'nf-mdi-battery_charging_30'                     = 'nf-md-battery_charging_30'
        'nf-mdi-battery_charging_40'                     = 'nf-md-battery_charging_40'
        'nf-mdi-battery_charging_60'                     = 'nf-md-battery_charging_60'
        'nf-mdi-battery_charging_80'                     = 'nf-md-battery_charging_80'
        'nf-mdi-battery_charging_90'                     = 'nf-md-battery_charging_90'
        'nf-mdi-battery_charging_wireless'               = 'nf-md-battery_charging_wireless'
        'nf-mdi-battery_charging_wireless_10'            = 'nf-md-battery_charging_wireless_10'
        'nf-mdi-battery_charging_wireless_20'            = 'nf-md-battery_charging_wireless_20'
        'nf-mdi-battery_charging_wireless_30'            = 'nf-md-battery_charging_wireless_30'
        'nf-mdi-battery_charging_wireless_40'            = 'nf-md-battery_charging_wireless_40'
        'nf-mdi-battery_charging_wireless_50'            = 'nf-md-battery_charging_wireless_50'
        'nf-mdi-battery_charging_wireless_60'            = 'nf-md-battery_charging_wireless_60'
        'nf-mdi-battery_charging_wireless_70'            = 'nf-md-battery_charging_wireless_70'
        'nf-mdi-battery_charging_wireless_80'            = 'nf-md-battery_charging_wireless_80'
        'nf-mdi-battery_charging_wireless_90'            = 'nf-md-battery_charging_wireless_90'
        'nf-mdi-battery_charging_wireless_alert'         = 'nf-md-battery_charging_wireless_alert'
        'nf-mdi-battery_charging_wireless_outline'       = 'nf-md-battery_charging_wireless_outline'
        'nf-mdi-battery_minus'                           = 'nf-md-battery_minus'
        'nf-mdi-battery_negative'                        = 'nf-md-battery_negative'
        'nf-mdi-battery_outline'                         = 'nf-md-battery_outline'
        'nf-mdi-battery_plus'                            = 'nf-md-battery_plus'
        'nf-mdi-battery_positive'                        = 'nf-md-battery_positive'
        'nf-mdi-battery_unknown'                         = 'nf-md-battery_unknown'
        'nf-mdi-beach'                                   = 'nf-md-beach'
        'nf-mdi-beaker'                                  = 'nf-md-beaker'
        'nf-mdi-beer'                                    = 'nf-md-beer'
        'nf-mdi-bell'                                    = 'nf-md-bell'
        'nf-mdi-bell_off'                                = 'nf-md-bell_off'
        'nf-mdi-bell_outline'                            = 'nf-md-bell_outline'
        'nf-mdi-bell_plus'                               = 'nf-md-bell_plus'
        'nf-mdi-bell_ring'                               = 'nf-md-bell_ring'
        'nf-mdi-bell_ring_outline'                       = 'nf-md-bell_ring_outline'
        'nf-mdi-bell_sleep'                              = 'nf-md-bell_sleep'
        'nf-mdi-beta'                                    = 'nf-md-beta'
        'nf-mdi-bike'                                    = 'nf-md-bike'
        'nf-mdi-binoculars'                              = 'nf-md-binoculars'
        'nf-mdi-bio'                                     = 'nf-md-bio'
        'nf-mdi-biohazard'                               = 'nf-md-biohazard'
        'nf-mdi-bitbucket'                               = 'nf-md-bitbucket'
        'nf-mdi-bitcoin'                                 = 'nf-md-bitcoin'
        'nf-mdi-black_mesa'                              = 'nf-md-black_mesa'
        'nf-mdi-blender'                                 = 'nf-md-blender'
        'nf-mdi-blinds'                                  = 'nf-md-blinds'
        'nf-mdi-block_helper'                            = 'nf-md-block_helper'
        'nf-mdi-bluetooth'                               = 'nf-md-bluetooth'
        'nf-mdi-bluetooth_audio'                         = 'nf-md-bluetooth_audio'
        'nf-mdi-bluetooth_connect'                       = 'nf-md-bluetooth_connect'
        'nf-mdi-bluetooth_off'                           = 'nf-md-bluetooth_off'
        'nf-mdi-bluetooth_settings'                      = 'nf-md-bluetooth_settings'
        'nf-mdi-bluetooth_transfer'                      = 'nf-md-bluetooth_transfer'
        'nf-mdi-blur'                                    = 'nf-md-blur'
        'nf-mdi-blur_linear'                             = 'nf-md-blur_linear'
        'nf-mdi-blur_off'                                = 'nf-md-blur_off'
        'nf-mdi-blur_radial'                             = 'nf-md-blur_radial'
        'nf-mdi-bomb'                                    = 'nf-md-bomb'
        'nf-mdi-bomb_off'                                = 'nf-md-bomb_off'
        'nf-mdi-bone'                                    = 'nf-md-bone'
        'nf-mdi-book'                                    = 'nf-md-book'
        'nf-mdi-book_minus'                              = 'nf-md-book_minus'
        'nf-mdi-book_multiple'                           = 'nf-md-book_multiple'
        'nf-mdi-book_open'                               = 'nf-md-book_open'
        'nf-mdi-book_open_page_variant'                  = 'nf-md-book_open_page_variant'
        'nf-mdi-book_open_variant'                       = 'nf-md-book_open_variant'
        'nf-mdi-book_plus'                               = 'nf-md-book_plus'
        'nf-mdi-book_variant'                            = 'nf-md-book_variant'
        'nf-mdi-bookmark'                                = 'nf-md-bookmark'
        'nf-mdi-bookmark_check'                          = 'nf-md-bookmark_check'
        'nf-mdi-bookmark_music'                          = 'nf-md-bookmark_music'
        'nf-mdi-bookmark_outline'                        = 'nf-md-bookmark_outline'
        'nf-mdi-bookmark_plus'                           = 'nf-md-bookmark_plus'
        'nf-mdi-bookmark_plus_outline'                   = 'nf-md-bookmark_plus_outline'
        'nf-mdi-bookmark_remove'                         = 'nf-md-bookmark_remove'
        'nf-mdi-boombox'                                 = 'nf-md-boombox'
        'nf-mdi-bootstrap'                               = 'nf-md-bootstrap'
        'nf-mdi-border_all'                              = 'nf-md-border_all'
        'nf-mdi-border_bottom'                           = 'nf-md-border_bottom'
        'nf-mdi-border_color'                            = 'nf-md-border_color'
        'nf-mdi-border_horizontal'                       = 'nf-md-border_horizontal'
        'nf-mdi-border_inside'                           = 'nf-md-border_inside'
        'nf-mdi-border_left'                             = 'nf-md-border_left'
        'nf-mdi-border_none'                             = 'nf-md-border_none'
        'nf-mdi-border_outside'                          = 'nf-md-border_outside'
        'nf-mdi-border_right'                            = 'nf-md-border_right'
        'nf-mdi-border_style'                            = 'nf-md-border_style'
        'nf-mdi-border_top'                              = 'nf-md-border_top'
        'nf-mdi-border_vertical'                         = 'nf-md-border_vertical'
        'nf-mdi-bow_tie'                                 = 'nf-md-bow_tie'
        'nf-mdi-bowl'                                    = 'nf-md-bowl'
        'nf-mdi-bowling'                                 = 'nf-md-bowling'
        'nf-mdi-box'                                     = 'nf-md-box'
        'nf-mdi-box_cutter'                              = 'nf-md-box_cutter'
        'nf-mdi-box_shadow'                              = 'nf-md-box_shadow'
        'nf-mdi-bridge'                                  = 'nf-md-bridge'
        'nf-mdi-briefcase'                               = 'nf-md-briefcase'
        'nf-mdi-briefcase_check'                         = 'nf-md-briefcase_check'
        'nf-mdi-briefcase_download'                      = 'nf-md-briefcase_download'
        'nf-mdi-briefcase_outline'                       = 'nf-md-briefcase_outline'
        'nf-mdi-briefcase_upload'                        = 'nf-md-briefcase_upload'
        'nf-mdi-brightness_1'                            = 'nf-md-brightness_1'
        'nf-mdi-brightness_2'                            = 'nf-md-brightness_2'
        'nf-mdi-brightness_3'                            = 'nf-md-brightness_3'
        'nf-mdi-brightness_4'                            = 'nf-md-brightness_4'
        'nf-mdi-brightness_5'                            = 'nf-md-brightness_5'
        'nf-mdi-brightness_6'                            = 'nf-md-brightness_6'
        'nf-mdi-brightness_7'                            = 'nf-md-brightness_7'
        'nf-mdi-brightness_auto'                         = 'nf-md-brightness_auto'
        'nf-mdi-broom'                                   = 'nf-md-broom'
        'nf-mdi-brush'                                   = 'nf-md-brush'
        'nf-mdi-bug'                                     = 'nf-md-bug'
        'nf-mdi-bulletin_board'                          = 'nf-md-bulletin_board'
        'nf-mdi-bullhorn'                                = 'nf-md-bullhorn'
        'nf-mdi-bullseye'                                = 'nf-md-bullseye'
        'nf-mdi-bus'                                     = 'nf-md-bus'
        'nf-mdi-bus_articulated_end'                     = 'nf-md-bus_articulated_end'
        'nf-mdi-bus_articulated_front'                   = 'nf-md-bus_articulated_front'
        'nf-mdi-bus_double_decker'                       = 'nf-md-bus_double_decker'
        'nf-mdi-bus_school'                              = 'nf-md-bus_school'
        'nf-mdi-bus_side'                                = 'nf-md-bus_side'
        'nf-mdi-cached'                                  = 'nf-md-cached'
        'nf-mdi-cake'                                    = 'nf-md-cake'
        'nf-mdi-cake_layered'                            = 'nf-md-cake_layered'
        'nf-mdi-cake_variant'                            = 'nf-md-cake_variant'
        'nf-mdi-calculator'                              = 'nf-md-calculator'
        'nf-mdi-calendar'                                = 'nf-md-calendar'
        'nf-mdi-calendar_blank'                          = 'nf-md-calendar_blank'
        'nf-mdi-calendar_check'                          = 'nf-md-calendar_check'
        'nf-mdi-calendar_clock'                          = 'nf-md-calendar_clock'
        'nf-mdi-calendar_multiple'                       = 'nf-md-calendar_multiple'
        'nf-mdi-calendar_multiple_check'                 = 'nf-md-calendar_multiple_check'
        'nf-mdi-calendar_plus'                           = 'nf-md-calendar_plus'
        'nf-mdi-calendar_question'                       = 'nf-md-calendar_question'
        'nf-mdi-calendar_range'                          = 'nf-md-calendar_range'
        'nf-mdi-calendar_remove'                         = 'nf-md-calendar_remove'
        'nf-mdi-calendar_text'                           = 'nf-md-calendar_text'
        'nf-mdi-calendar_today'                          = 'nf-md-calendar_today'
        'nf-mdi-call_made'                               = 'nf-md-call_made'
        'nf-mdi-call_merge'                              = 'nf-md-call_merge'
        'nf-mdi-call_missed'                             = 'nf-md-call_missed'
        'nf-mdi-call_received'                           = 'nf-md-call_received'
        'nf-mdi-call_split'                              = 'nf-md-call_split'
        'nf-mdi-camcorder'                               = 'nf-md-camcorder'
        'nf-mdi-camcorder_off'                           = 'nf-md-camcorder_off'
        'nf-mdi-camera'                                  = 'nf-md-camera'
        'nf-mdi-camera_burst'                            = 'nf-md-camera_burst'
        'nf-mdi-camera_enhance'                          = 'nf-md-camera_enhance'
        'nf-mdi-camera_front'                            = 'nf-md-camera_front'
        'nf-mdi-camera_front_variant'                    = 'nf-md-camera_front_variant'
        'nf-mdi-camera_gopro'                            = 'nf-md-camera_gopro'
        'nf-mdi-camera_iris'                             = 'nf-md-camera_iris'
        'nf-mdi-camera_metering_center'                  = 'nf-md-camera_metering_center'
        'nf-mdi-camera_metering_matrix'                  = 'nf-md-camera_metering_matrix'
        'nf-mdi-camera_metering_partial'                 = 'nf-md-camera_metering_partial'
        'nf-mdi-camera_metering_spot'                    = 'nf-md-camera_metering_spot'
        'nf-mdi-camera_off'                              = 'nf-md-camera_off'
        'nf-mdi-camera_party_mode'                       = 'nf-md-camera_party_mode'
        'nf-mdi-camera_rear'                             = 'nf-md-camera_rear'
        'nf-mdi-camera_rear_variant'                     = 'nf-md-camera_rear_variant'
        'nf-mdi-camera_switch'                           = 'nf-md-camera_switch'
        'nf-mdi-camera_timer'                            = 'nf-md-camera_timer'
        'nf-mdi-cancel'                                  = 'nf-md-cancel'
        'nf-mdi-candle'                                  = 'nf-md-candle'
        'nf-mdi-candycane'                               = 'nf-md-candycane'
        'nf-mdi-cannabis'                                = 'nf-md-cannabis'
        'nf-mdi-car'                                     = 'nf-md-car'
        'nf-mdi-car_battery'                             = 'nf-md-car_battery'
        'nf-mdi-car_connected'                           = 'nf-md-car_connected'
        'nf-mdi-car_convertible'                         = 'nf-md-car_convertible'
        'nf-mdi-car_estate'                              = 'nf-md-car_estate'
        'nf-mdi-car_hatchback'                           = 'nf-md-car_hatchback'
        'nf-mdi-car_pickup'                              = 'nf-md-car_pickup'
        'nf-mdi-car_side'                                = 'nf-md-car_side'
        'nf-mdi-car_sports'                              = 'nf-md-car_sports'
        'nf-mdi-car_wash'                                = 'nf-md-car_wash'
        'nf-mdi-caravan'                                 = 'nf-md-caravan'
        'nf-mdi-cards'                                   = 'nf-md-cards'
        'nf-mdi-cards_outline'                           = 'nf-md-cards_outline'
        'nf-mdi-cards_playing_outline'                   = 'nf-md-cards_playing_outline'
        'nf-mdi-cards_variant'                           = 'nf-md-cards_variant'
        'nf-mdi-carrot'                                  = 'nf-md-carrot'
        'nf-mdi-cart'                                    = 'nf-md-cart'
        'nf-mdi-cart_off'                                = 'nf-md-cart_off'
        'nf-mdi-cart_outline'                            = 'nf-md-cart_outline'
        'nf-mdi-cart_plus'                               = 'nf-md-cart_plus'
        'nf-mdi-case_sensitive_alt'                      = 'nf-md-case_sensitive_alt'
        'nf-mdi-cash'                                    = 'nf-md-cash'
        'nf-mdi-cash_100'                                = 'nf-md-cash_100'
        'nf-mdi-cash_multiple'                           = 'nf-md-cash_multiple'
        'nf-mdi-cast'                                    = 'nf-md-cast'
        'nf-mdi-cast_connected'                          = 'nf-md-cast_connected'
        'nf-mdi-cast_off'                                = 'nf-md-cast_off'
        'nf-mdi-castle'                                  = 'nf-md-castle'
        'nf-mdi-cat'                                     = 'nf-md-cat'
        'nf-mdi-cctv'                                    = 'nf-md-cctv'
        'nf-mdi-ceiling_light'                           = 'nf-md-ceiling_light'
        'nf-mdi-cellphone'                               = 'nf-md-cellphone'
        'nf-mdi-cellphone_basic'                         = 'nf-md-cellphone_basic'
        'nf-mdi-cellphone_dock'                          = 'nf-md-cellphone_dock'
        'nf-mdi-cellphone_link'                          = 'nf-md-cellphone_link'
        'nf-mdi-cellphone_link_off'                      = 'nf-md-cellphone_link_off'
        'nf-mdi-cellphone_settings'                      = 'nf-md-cellphone_settings'
        'nf-mdi-cellphone_wireless'                      = 'nf-md-cellphone_wireless'
        'nf-mdi-certificate'                             = 'nf-md-certificate'
        'nf-mdi-chair_school'                            = 'nf-md-chair_school'
        'nf-mdi-chart_arc'                               = 'nf-md-chart_arc'
        'nf-mdi-chart_areaspline'                        = 'nf-md-chart_areaspline'
        'nf-mdi-chart_bar'                               = 'nf-md-chart_bar'
        'nf-mdi-chart_bar_stacked'                       = 'nf-md-chart_bar_stacked'
        'nf-mdi-chart_bubble'                            = 'nf-md-chart_bubble'
        'nf-mdi-chart_donut'                             = 'nf-md-chart_donut'
        'nf-mdi-chart_donut_variant'                     = 'nf-md-chart_donut_variant'
        'nf-mdi-chart_gantt'                             = 'nf-md-chart_gantt'
        'nf-mdi-chart_histogram'                         = 'nf-md-chart_histogram'
        'nf-mdi-chart_line'                              = 'nf-md-chart_line'
        'nf-mdi-chart_line_stacked'                      = 'nf-md-chart_line_stacked'
        'nf-mdi-chart_line_variant'                      = 'nf-md-chart_line_variant'
        'nf-mdi-chart_pie'                               = 'nf-md-chart_pie'
        'nf-mdi-chart_timeline'                          = 'nf-md-chart_timeline'
        'nf-mdi-check'                                   = 'nf-md-check'
        'nf-mdi-check_all'                               = 'nf-md-check_all'
        'nf-mdi-check_circle'                            = 'nf-md-check_circle'
        'nf-mdi-check_circle_outline'                    = 'nf-md-check_circle_outline'
        'nf-mdi-checkbox_blank'                          = 'nf-md-checkbox_blank'
        'nf-mdi-checkbox_blank_circle'                   = 'nf-md-checkbox_blank_circle'
        'nf-mdi-checkbox_blank_circle_outline'           = 'nf-md-checkbox_blank_circle_outline'
        'nf-mdi-checkbox_blank_outline'                  = 'nf-md-checkbox_blank_outline'
        'nf-mdi-checkbox_marked'                         = 'nf-md-checkbox_marked'
        'nf-mdi-checkbox_marked_circle'                  = 'nf-md-checkbox_marked_circle'
        'nf-mdi-checkbox_marked_circle_outline'          = 'nf-md-checkbox_marked_circle_outline'
        'nf-mdi-checkbox_marked_outline'                 = 'nf-md-checkbox_marked_outline'
        'nf-mdi-checkbox_multiple_blank'                 = 'nf-md-checkbox_multiple_blank'
        'nf-mdi-checkbox_multiple_blank_circle'          = 'nf-md-checkbox_multiple_blank_circle'
        'nf-mdi-checkbox_multiple_blank_circle_outline'  = 'nf-md-checkbox_multiple_blank_circle_outline'
        'nf-mdi-checkbox_multiple_blank_outline'         = 'nf-md-checkbox_multiple_blank_outline'
        'nf-mdi-checkbox_multiple_marked'                = 'nf-md-checkbox_multiple_marked'
        'nf-mdi-checkbox_multiple_marked_circle'         = 'nf-md-checkbox_multiple_marked_circle'
        'nf-mdi-checkbox_multiple_marked_circle_outline' = 'nf-md-checkbox_multiple_marked_circle_outline'
        'nf-mdi-checkbox_multiple_marked_outline'        = 'nf-md-checkbox_multiple_marked_outline'
        'nf-mdi-checkerboard'                            = 'nf-md-checkerboard'
        'nf-mdi-chemical_weapon'                         = 'nf-md-chemical_weapon'
        'nf-mdi-chevron_double_down'                     = 'nf-md-chevron_double_down'
        'nf-mdi-chevron_double_left'                     = 'nf-md-chevron_double_left'
        'nf-mdi-chevron_double_right'                    = 'nf-md-chevron_double_right'
        'nf-mdi-chevron_double_up'                       = 'nf-md-chevron_double_up'
        'nf-mdi-chevron_down'                            = 'nf-md-chevron_down'
        'nf-mdi-chevron_left'                            = 'nf-md-chevron_left'
        'nf-mdi-chevron_right'                           = 'nf-md-chevron_right'
        'nf-mdi-chevron_up'                              = 'nf-md-chevron_up'
        'nf-mdi-chili_hot'                               = 'nf-md-chili_hot'
        'nf-mdi-chili_medium'                            = 'nf-md-chili_medium'
        'nf-mdi-chili_mild'                              = 'nf-md-chili_mild'
        'nf-mdi-chip'                                    = 'nf-md-chip'
        'nf-mdi-church'                                  = 'nf-md-church'
        'nf-mdi-city'                                    = 'nf-md-city'
        'nf-mdi-clipboard'                               = 'nf-md-clipboard'
        'nf-mdi-clipboard_account'                       = 'nf-md-clipboard_account'
        'nf-mdi-clipboard_alert'                         = 'nf-md-clipboard_alert'
        'nf-mdi-clipboard_arrow_down'                    = 'nf-md-clipboard_arrow_down'
        'nf-mdi-clipboard_arrow_left'                    = 'nf-md-clipboard_arrow_left'
        'nf-mdi-clipboard_check'                         = 'nf-md-clipboard_check'
        'nf-mdi-clipboard_flow'                          = 'nf-md-clipboard_flow'
        'nf-mdi-clipboard_outline'                       = 'nf-md-clipboard_outline'
        'nf-mdi-clipboard_plus'                          = 'nf-md-clipboard_plus'
        'nf-mdi-clipboard_text'                          = 'nf-md-clipboard_text'
        'nf-mdi-clippy'                                  = 'nf-md-clippy'
        'nf-mdi-clock'                                   = 'nf-md-clock'
        'nf-mdi-clock_alert'                             = 'nf-md-clock_alert'
        'nf-mdi-clock_end'                               = 'nf-md-clock_end'
        'nf-mdi-clock_fast'                              = 'nf-md-clock_fast'
        'nf-mdi-clock_in'                                = 'nf-md-clock_in'
        'nf-mdi-clock_out'                               = 'nf-md-clock_out'
        'nf-mdi-clock_start'                             = 'nf-md-clock_start'
        'nf-mdi-close'                                   = 'nf-md-close'
        'nf-mdi-close_box'                               = 'nf-md-close_box'
        'nf-mdi-close_box_outline'                       = 'nf-md-close_box_outline'
        'nf-mdi-close_circle'                            = 'nf-md-close_circle'
        'nf-mdi-close_circle_outline'                    = 'nf-md-close_circle_outline'
        'nf-mdi-close_network'                           = 'nf-md-close_network'
        'nf-mdi-close_octagon'                           = 'nf-md-close_octagon'
        'nf-mdi-close_octagon_outline'                   = 'nf-md-close_octagon_outline'
        'nf-mdi-close_outline'                           = 'nf-md-close_outline'
        'nf-mdi-closed_caption'                          = 'nf-md-closed_caption'
        'nf-mdi-cloud'                                   = 'nf-md-cloud'
        'nf-mdi-cloud_braces'                            = 'nf-md-cloud_braces'
        'nf-mdi-cloud_check'                             = 'nf-md-cloud_check'
        'nf-mdi-cloud_circle'                            = 'nf-md-cloud_circle'
        'nf-mdi-cloud_download'                          = 'nf-md-cloud_download'
        'nf-mdi-cloud_off_outline'                       = 'nf-md-cloud_off_outline'
        'nf-mdi-cloud_outline'                           = 'nf-md-cloud_outline'
        'nf-mdi-cloud_print'                             = 'nf-md-cloud_print'
        'nf-mdi-cloud_print_outline'                     = 'nf-md-cloud_print_outline'
        'nf-mdi-cloud_sync'                              = 'nf-md-cloud_sync'
        'nf-mdi-cloud_tags'                              = 'nf-md-cloud_tags'
        'nf-mdi-cloud_upload'                            = 'nf-md-cloud_upload'
        'nf-mdi-clover'                                  = 'nf-md-clover'
        'nf-mdi-code_array'                              = 'nf-md-code_array'
        'nf-mdi-code_braces'                             = 'nf-md-code_braces'
        'nf-mdi-code_brackets'                           = 'nf-md-code_brackets'
        'nf-mdi-code_equal'                              = 'nf-md-code_equal'
        'nf-mdi-code_greater_than'                       = 'nf-md-code_greater_than'
        'nf-mdi-code_greater_than_or_equal'              = 'nf-md-code_greater_than_or_equal'
        'nf-mdi-code_less_than'                          = 'nf-md-code_less_than'
        'nf-mdi-code_less_than_or_equal'                 = 'nf-md-code_less_than_or_equal'
        'nf-mdi-code_not_equal'                          = 'nf-md-code_not_equal'
        'nf-mdi-code_not_equal_variant'                  = 'nf-md-code_not_equal_variant'
        'nf-mdi-code_parentheses'                        = 'nf-md-code_parentheses'
        'nf-mdi-code_string'                             = 'nf-md-code_string'
        'nf-mdi-code_tags'                               = 'nf-md-code_tags'
        'nf-mdi-code_tags_check'                         = 'nf-md-code_tags_check'
        'nf-mdi-codepen'                                 = 'nf-md-codepen'
        'nf-mdi-coffee'                                  = 'nf-md-coffee'
        'nf-mdi-coffee_outline'                          = 'nf-md-coffee_outline'
        'nf-mdi-coffee_to_go'                            = 'nf-md-coffee_to_go'
        'nf-mdi-collage'                                 = 'nf-md-collage'
        'nf-mdi-color_helper'                            = 'nf-md-color_helper'
        'nf-mdi-comment'                                 = 'nf-md-comment'
        'nf-mdi-comment_account'                         = 'nf-md-comment_account'
        'nf-mdi-comment_account_outline'                 = 'nf-md-comment_account_outline'
        'nf-mdi-comment_alert'                           = 'nf-md-comment_alert'
        'nf-mdi-comment_alert_outline'                   = 'nf-md-comment_alert_outline'
        'nf-mdi-comment_check'                           = 'nf-md-comment_check'
        'nf-mdi-comment_check_outline'                   = 'nf-md-comment_check_outline'
        'nf-mdi-comment_multiple_outline'                = 'nf-md-comment_multiple_outline'
        'nf-mdi-comment_outline'                         = 'nf-md-comment_outline'
        'nf-mdi-comment_plus_outline'                    = 'nf-md-comment_plus_outline'
        'nf-mdi-comment_processing'                      = 'nf-md-comment_processing'
        'nf-mdi-comment_processing_outline'              = 'nf-md-comment_processing_outline'
        'nf-mdi-comment_question'                        = 'nf-md-comment_question'
        'nf-mdi-comment_question_outline'                = 'nf-md-comment_question_outline'
        'nf-mdi-comment_remove'                          = 'nf-md-comment_remove'
        'nf-mdi-comment_remove_outline'                  = 'nf-md-comment_remove_outline'
        'nf-mdi-comment_text'                            = 'nf-md-comment_text'
        'nf-mdi-comment_text_outline'                    = 'nf-md-comment_text_outline'
        'nf-mdi-compare'                                 = 'nf-md-compare'
        'nf-mdi-compass'                                 = 'nf-md-compass'
        'nf-mdi-compass_outline'                         = 'nf-md-compass_outline'
        'nf-mdi-console'                                 = 'nf-md-console'
        'nf-mdi-console_line'                            = 'nf-md-console_line'
        'nf-mdi-contacts'                                = 'nf-md-contacts'
        'nf-mdi-content_copy'                            = 'nf-md-content_copy'
        'nf-mdi-content_cut'                             = 'nf-md-content_cut'
        'nf-mdi-content_duplicate'                       = 'nf-md-content_duplicate'
        'nf-mdi-content_paste'                           = 'nf-md-content_paste'
        'nf-mdi-content_save'                            = 'nf-md-content_save'
        'nf-mdi-content_save_all'                        = 'nf-md-content_save_all'
        'nf-mdi-content_save_outline'                    = 'nf-md-content_save_outline'
        'nf-mdi-content_save_settings'                   = 'nf-md-content_save_settings'
        'nf-mdi-contrast'                                = 'nf-md-contrast'
        'nf-mdi-contrast_box'                            = 'nf-md-contrast_box'
        'nf-mdi-contrast_circle'                         = 'nf-md-contrast_circle'
        'nf-mdi-cookie'                                  = 'nf-md-cookie'
        'nf-mdi-copyright'                               = 'nf-md-copyright'
        'nf-mdi-corn'                                    = 'nf-md-corn'
        'nf-mdi-counter'                                 = 'nf-md-counter'
        'nf-mdi-cow'                                     = 'nf-md-cow'
        'nf-mdi-creation'                                = 'nf-md-creation'
        'nf-mdi-credit_card'                             = 'nf-md-credit_card'
        'nf-mdi-credit_card_multiple'                    = 'nf-md-credit_card_multiple'
        'nf-mdi-credit_card_off'                         = 'nf-md-credit_card_off'
        'nf-mdi-credit_card_plus'                        = 'nf-md-credit_card_plus'
        'nf-mdi-credit_card_scan'                        = 'nf-md-credit_card_scan'
        'nf-mdi-crop'                                    = 'nf-md-crop'
        'nf-mdi-crop_free'                               = 'nf-md-crop_free'
        'nf-mdi-crop_landscape'                          = 'nf-md-crop_landscape'
        'nf-mdi-crop_portrait'                           = 'nf-md-crop_portrait'
        'nf-mdi-crop_rotate'                             = 'nf-md-crop_rotate'
        'nf-mdi-crop_square'                             = 'nf-md-crop_square'
        'nf-mdi-crosshairs'                              = 'nf-md-crosshairs'
        'nf-mdi-crosshairs_gps'                          = 'nf-md-crosshairs_gps'
        'nf-mdi-crown'                                   = 'nf-md-crown'
        'nf-mdi-cube'                                    = 'nf-md-cube'
        'nf-mdi-cube_outline'                            = 'nf-md-cube_outline'
        'nf-mdi-cube_send'                               = 'nf-md-cube_send'
        'nf-mdi-cube_unfolded'                           = 'nf-md-cube_unfolded'
        'nf-mdi-cup'                                     = 'nf-md-cup'
        'nf-mdi-cup_off'                                 = 'nf-md-cup_off'
        'nf-mdi-cup_water'                               = 'nf-md-cup_water'
        'nf-mdi-currency_btc'                            = 'nf-md-currency_btc'
        'nf-mdi-currency_cny'                            = 'nf-md-currency_cny'
        'nf-mdi-currency_eth'                            = 'nf-md-currency_eth'
        'nf-mdi-currency_eur'                            = 'nf-md-currency_eur'
        'nf-mdi-currency_gbp'                            = 'nf-md-currency_gbp'
        'nf-mdi-currency_inr'                            = 'nf-md-currency_inr'
        'nf-mdi-currency_jpy'                            = 'nf-md-currency_jpy'
        'nf-mdi-currency_krw'                            = 'nf-md-currency_krw'
        'nf-mdi-currency_ngn'                            = 'nf-md-currency_ngn'
        'nf-mdi-currency_rub'                            = 'nf-md-currency_rub'
        'nf-mdi-currency_sign'                           = 'nf-md-currency_sign'
        'nf-mdi-currency_try'                            = 'nf-md-currency_try'
        'nf-mdi-currency_twd'                            = 'nf-md-currency_twd'
        'nf-mdi-currency_usd'                            = 'nf-md-currency_usd'
        'nf-mdi-currency_usd_off'                        = 'nf-md-currency_usd_off'
        'nf-mdi-cursor_default'                          = 'nf-md-cursor_default'
        'nf-mdi-cursor_default_outline'                  = 'nf-md-cursor_default_outline'
        'nf-mdi-cursor_move'                             = 'nf-md-cursor_move'
        'nf-mdi-cursor_pointer'                          = 'nf-md-cursor_pointer'
        'nf-mdi-cursor_text'                             = 'nf-md-cursor_text'
        'nf-mdi-database'                                = 'nf-md-database'
        'nf-mdi-database_minus'                          = 'nf-md-database_minus'
        'nf-mdi-database_plus'                           = 'nf-md-database_plus'
        'nf-mdi-debug_step_into'                         = 'nf-md-debug_step_into'
        'nf-mdi-debug_step_out'                          = 'nf-md-debug_step_out'
        'nf-mdi-debug_step_over'                         = 'nf-md-debug_step_over'
        'nf-mdi-decagram'                                = 'nf-md-decagram'
        'nf-mdi-decagram_outline'                        = 'nf-md-decagram_outline'
        'nf-mdi-decimal_decrease'                        = 'nf-md-decimal_decrease'
        'nf-mdi-decimal_increase'                        = 'nf-md-decimal_increase'
        'nf-mdi-delete'                                  = 'nf-md-delete'
        'nf-mdi-delete_circle'                           = 'nf-md-delete_circle'
        'nf-mdi-delete_empty'                            = 'nf-md-delete_empty'
        'nf-mdi-delete_forever'                          = 'nf-md-delete_forever'
        'nf-mdi-delete_restore'                          = 'nf-md-delete_restore'
        'nf-mdi-delete_sweep'                            = 'nf-md-delete_sweep'
        'nf-mdi-delete_variant'                          = 'nf-md-delete_variant'
        'nf-mdi-delta'                                   = 'nf-md-delta'
        'nf-mdi-deskphone'                               = 'nf-md-deskphone'
        'nf-mdi-desktop_classic'                         = 'nf-md-desktop_classic'
        'nf-mdi-desktop_mac'                             = 'nf-md-desktop_mac'
        'nf-mdi-desktop_tower'                           = 'nf-md-desktop_tower'
        'nf-mdi-details'                                 = 'nf-md-details'
        'nf-mdi-developer_board'                         = 'nf-md-developer_board'
        'nf-mdi-deviantart'                              = 'nf-md-deviantart'
        'nf-mdi-dialpad'                                 = 'nf-md-dialpad'
        'nf-mdi-diamond'                                 = 'nf-md-diamond'
        'nf-mdi-dice_1'                                  = 'nf-md-dice_1'
        'nf-mdi-dice_2'                                  = 'nf-md-dice_2'
        'nf-mdi-dice_3'                                  = 'nf-md-dice_3'
        'nf-mdi-dice_4'                                  = 'nf-md-dice_4'
        'nf-mdi-dice_5'                                  = 'nf-md-dice_5'
        'nf-mdi-dice_6'                                  = 'nf-md-dice_6'
        'nf-mdi-dice_d10'                                = 'nf-md-dice_d10'
        'nf-mdi-dice_d20'                                = 'nf-md-dice_d20'
        'nf-mdi-dice_d4'                                 = 'nf-md-dice_d4'
        'nf-mdi-dice_d6'                                 = 'nf-md-dice_d6'
        'nf-mdi-dice_d8'                                 = 'nf-md-dice_d8'
        'nf-mdi-dice_multiple'                           = 'nf-md-dice_multiple'
        'nf-mdi-dip_switch'                              = 'nf-md-dip_switch'
        'nf-mdi-directions'                              = 'nf-md-directions'
        'nf-mdi-directions_fork'                         = 'nf-md-directions_fork'
        'nf-mdi-discord'                                 = 'nf-md-discord'
        'nf-mdi-disqus'                                  = 'nf-md-disqus'
        'nf-mdi-division'                                = 'nf-md-division'
        'nf-mdi-division_box'                            = 'nf-md-division_box'
        'nf-mdi-dna'                                     = 'nf-md-dna'
        'nf-mdi-dns'                                     = 'nf-md-dns'
        'nf-mdi-dolby'                                   = 'nf-md-dolby'
        'nf-mdi-domain'                                  = 'nf-md-domain'
        'nf-mdi-donkey'                                  = 'nf-md-donkey'
        'nf-mdi-door'                                    = 'nf-md-door'
        'nf-mdi-door_closed'                             = 'nf-md-door_closed'
        'nf-mdi-door_open'                               = 'nf-md-door_open'
        'nf-mdi-dots_horizontal'                         = 'nf-md-dots_horizontal'
        'nf-mdi-dots_horizontal_circle'                  = 'nf-md-dots_horizontal_circle'
        'nf-mdi-dots_vertical'                           = 'nf-md-dots_vertical'
        'nf-mdi-dots_vertical_circle'                    = 'nf-md-dots_vertical_circle'
        'nf-mdi-download'                                = 'nf-md-download'
        'nf-mdi-download_network'                        = 'nf-md-download_network'
        'nf-mdi-drag'                                    = 'nf-md-drag'
        'nf-mdi-drag_horizontal'                         = 'nf-md-drag_horizontal'
        'nf-mdi-drag_vertical'                           = 'nf-md-drag_vertical'
        'nf-mdi-drawing'                                 = 'nf-md-drawing'
        'nf-mdi-drawing_box'                             = 'nf-md-drawing_box'
        'nf-mdi-drone'                                   = 'nf-md-drone'
        'nf-mdi-dropbox'                                 = 'nf-md-dropbox'
        'nf-mdi-drupal'                                  = 'nf-md-drupal'
        'nf-mdi-duck'                                    = 'nf-md-duck'
        'nf-mdi-dumbbell'                                = 'nf-md-dumbbell'
        'nf-mdi-ear_hearing'                             = 'nf-md-ear_hearing'
        'nf-mdi-earth'                                   = 'nf-md-earth'
        'nf-mdi-earth_box'                               = 'nf-md-earth_box'
        'nf-mdi-earth_box_off'                           = 'nf-md-earth_box_off'
        'nf-mdi-earth_off'                               = 'nf-md-earth_off'
        'nf-mdi-eject'                                   = 'nf-md-eject'
        'nf-mdi-elephant'                                = 'nf-md-elephant'
        'nf-mdi-elevation_decline'                       = 'nf-md-elevation_decline'
        'nf-mdi-elevation_rise'                          = 'nf-md-elevation_rise'
        'nf-mdi-elevator'                                = 'nf-md-elevator'
        'nf-mdi-email'                                   = 'nf-md-email'
        'nf-mdi-email_alert'                             = 'nf-md-email_alert'
        'nf-mdi-email_open'                              = 'nf-md-email_open'
        'nf-mdi-email_open_outline'                      = 'nf-md-email_open_outline'
        'nf-mdi-email_outline'                           = 'nf-md-email_outline'
        'nf-mdi-email_variant'                           = 'nf-md-email_variant'
        'nf-mdi-emby'                                    = 'nf-md-emby'
        'nf-mdi-emoticon'                                = 'nf-md-emoticon'
        'nf-mdi-emoticon_cool'                           = 'nf-md-emoticon_cool'
        'nf-mdi-emoticon_dead'                           = 'nf-md-emoticon_dead'
        'nf-mdi-emoticon_devil'                          = 'nf-md-emoticon_devil'
        'nf-mdi-emoticon_excited'                        = 'nf-md-emoticon_excited'
        'nf-mdi-emoticon_happy'                          = 'nf-md-emoticon_happy'
        'nf-mdi-emoticon_neutral'                        = 'nf-md-emoticon_neutral'
        'nf-mdi-emoticon_poop'                           = 'nf-md-emoticon_poop'
        'nf-mdi-emoticon_sad'                            = 'nf-md-emoticon_sad'
        'nf-mdi-emoticon_tongue'                         = 'nf-md-emoticon_tongue'
        'nf-mdi-engine'                                  = 'nf-md-engine'
        'nf-mdi-engine_outline'                          = 'nf-md-engine_outline'
        'nf-mdi-equal'                                   = 'nf-md-equal'
        'nf-mdi-equal_box'                               = 'nf-md-equal_box'
        'nf-mdi-eraser'                                  = 'nf-md-eraser'
        'nf-mdi-eraser_variant'                          = 'nf-md-eraser_variant'
        'nf-mdi-escalator'                               = 'nf-md-escalator'
        'nf-mdi-ethernet'                                = 'nf-md-ethernet'
        'nf-mdi-ethernet_cable'                          = 'nf-md-ethernet_cable'
        'nf-mdi-ethernet_cable_off'                      = 'nf-md-ethernet_cable_off'
        'nf-mdi-ev_station'                              = 'nf-md-ev_station'
        'nf-mdi-evernote'                                = 'nf-md-evernote'
        'nf-mdi-exclamation'                             = 'nf-md-exclamation'
        'nf-mdi-exit_to_app'                             = 'nf-md-exit_to_app'
        'nf-mdi-export'                                  = 'nf-md-export'
        'nf-mdi-eye'                                     = 'nf-md-eye'
        'nf-mdi-eye_off'                                 = 'nf-md-eye_off'
        'nf-mdi-eye_off_outline'                         = 'nf-md-eye_off_outline'
        'nf-mdi-eye_outline'                             = 'nf-md-eye_outline'
        'nf-mdi-eyedropper'                              = 'nf-md-eyedropper'
        'nf-mdi-eyedropper_variant'                      = 'nf-md-eyedropper_variant'
        'nf-mdi-facebook'                                = 'nf-md-facebook'
        'nf-mdi-facebook_messenger'                      = 'nf-md-facebook_messenger'
        'nf-mdi-factory'                                 = 'nf-md-factory'
        'nf-mdi-fan'                                     = 'nf-md-fan'
        'nf-mdi-fan_off'                                 = 'nf-md-fan_off'
        'nf-mdi-fast_forward'                            = 'nf-md-fast_forward'
        'nf-mdi-fast_forward_outline'                    = 'nf-md-fast_forward_outline'
        'nf-mdi-fax'                                     = 'nf-md-fax'
        'nf-mdi-feather'                                 = 'nf-md-feather'
        'nf-mdi-ferry'                                   = 'nf-md-ferry'
        'nf-mdi-file'                                    = 'nf-md-file'
        'nf-mdi-file_account'                            = 'nf-md-file_account'
        'nf-mdi-file_chart'                              = 'nf-md-file_chart'
        'nf-mdi-file_check'                              = 'nf-md-file_check'
        'nf-mdi-file_cloud'                              = 'nf-md-file_cloud'
        'nf-mdi-file_delimited'                          = 'nf-md-file_delimited'
        'nf-mdi-file_document'                           = 'nf-md-file_document'
        'nf-mdi-file_excel'                              = 'nf-md-file_excel'
        'nf-mdi-file_excel_box'                          = 'nf-md-file_excel_box'
        'nf-mdi-file_export'                             = 'nf-md-file_export'
        'nf-mdi-file_find'                               = 'nf-md-file_find'
        'nf-mdi-file_hidden'                             = 'nf-md-file_hidden'
        'nf-mdi-file_image'                              = 'nf-md-file_image'
        'nf-mdi-file_import'                             = 'nf-md-file_import'
        'nf-mdi-file_lock'                               = 'nf-md-file_lock'
        'nf-mdi-file_multiple'                           = 'nf-md-file_multiple'
        'nf-mdi-file_music'                              = 'nf-md-file_music'
        'nf-mdi-file_outline'                            = 'nf-md-file_outline'
        'nf-mdi-file_pdf'                                = 'nf-fa-file_pdf_o'
        'nf-mdi-file_pdf_box'                            = 'nf-md-file_pdf_box'
        'nf-mdi-file_percent'                            = 'nf-md-file_percent'
        'nf-mdi-file_plus'                               = 'nf-md-file_plus'
        'nf-mdi-file_powerpoint'                         = 'nf-md-file_powerpoint'
        'nf-mdi-file_powerpoint_box'                     = 'nf-md-file_powerpoint_box'
        'nf-mdi-file_presentation_box'                   = 'nf-md-file_presentation_box'
        'nf-mdi-file_restore'                            = 'nf-md-file_restore'
        'nf-mdi-file_send'                               = 'nf-md-file_send'
        'nf-mdi-file_tree'                               = 'nf-md-file_tree'
        'nf-mdi-file_video'                              = 'nf-md-file_video'
        'nf-mdi-file_word'                               = 'nf-md-file_word'
        'nf-mdi-file_word_box'                           = 'nf-md-file_word_box'
        'nf-mdi-file_xml'                                = 'nf-md-xml'
        'nf-mdi-film'                                    = 'nf-md-film'
        'nf-mdi-filmstrip'                               = 'nf-md-filmstrip'
        'nf-mdi-filmstrip_off'                           = 'nf-md-filmstrip_off'
        'nf-mdi-filter'                                  = 'nf-md-filter'
        'nf-mdi-filter_outline'                          = 'nf-md-filter_outline'
        'nf-mdi-filter_remove'                           = 'nf-md-filter_remove'
        'nf-mdi-filter_remove_outline'                   = 'nf-md-filter_remove_outline'
        'nf-mdi-filter_variant'                          = 'nf-md-filter_variant'
        'nf-mdi-finance'                                 = 'nf-md-finance'
        'nf-mdi-find_replace'                            = 'nf-md-find_replace'
        'nf-mdi-fingerprint'                             = 'nf-md-fingerprint'
        'nf-mdi-fire'                                    = 'nf-md-fire'
        'nf-mdi-firefox'                                 = 'nf-md-firefox'
        'nf-mdi-fish'                                    = 'nf-md-fish'
        'nf-mdi-flag'                                    = 'nf-md-flag'
        'nf-mdi-flag_checkered'                          = 'nf-md-flag_checkered'
        'nf-mdi-flag_outline'                            = 'nf-md-flag_outline'
        'nf-mdi-flag_triangle'                           = 'nf-md-flag_triangle'
        'nf-mdi-flag_variant'                            = 'nf-md-flag_variant'
        'nf-mdi-flag_variant_outline'                    = 'nf-md-flag_variant_outline'
        'nf-mdi-flash'                                   = 'nf-md-flash'
        'nf-mdi-flash_auto'                              = 'nf-md-flash_auto'
        'nf-mdi-flash_off'                               = 'nf-md-flash_off'
        'nf-mdi-flash_outline'                           = 'nf-md-flash_outline'
        'nf-mdi-flash_red_eye'                           = 'nf-md-flash_red_eye'
        'nf-mdi-flashlight'                              = 'nf-md-flashlight'
        'nf-mdi-flashlight_off'                          = 'nf-md-flashlight_off'
        'nf-mdi-flask'                                   = 'nf-md-flask'
        'nf-mdi-flask_empty'                             = 'nf-md-flask_empty'
        'nf-mdi-flask_empty_outline'                     = 'nf-md-flask_empty_outline'
        'nf-mdi-flask_outline'                           = 'nf-md-flask_outline'
        'nf-mdi-flip_to_back'                            = 'nf-md-flip_to_back'
        'nf-mdi-flip_to_front'                           = 'nf-md-flip_to_front'
        'nf-mdi-floor_plan'                              = 'nf-md-floor_plan'
        'nf-mdi-floppy'                                  = 'nf-md-floppy'
        'nf-mdi-flower'                                  = 'nf-md-flower'
        'nf-mdi-folder'                                  = 'nf-md-folder'
        'nf-mdi-folder_account'                          = 'nf-md-folder_account'
        'nf-mdi-folder_download'                         = 'nf-md-folder_download'
        'nf-mdi-folder_google_drive'                     = 'nf-md-folder_google_drive'
        'nf-mdi-folder_image'                            = 'nf-md-folder_image'
        'nf-mdi-folder_lock'                             = 'nf-md-folder_lock'
        'nf-mdi-folder_lock_open'                        = 'nf-md-folder_lock_open'
        'nf-mdi-folder_move'                             = 'nf-md-folder_move'
        'nf-mdi-folder_multiple'                         = 'nf-md-folder_multiple'
        'nf-mdi-folder_multiple_image'                   = 'nf-md-folder_multiple_image'
        'nf-mdi-folder_multiple_outline'                 = 'nf-md-folder_multiple_outline'
        'nf-mdi-folder_open'                             = 'nf-md-folder_open'
        'nf-mdi-folder_outline'                          = 'nf-md-folder_outline'
        'nf-mdi-folder_plus'                             = 'nf-md-folder_plus'
        'nf-mdi-folder_remove'                           = 'nf-md-folder_remove'
        'nf-mdi-folder_star'                             = 'nf-md-folder_star'
        'nf-mdi-folder_upload'                           = 'nf-md-folder_upload'
        'nf-mdi-font_awesome'                            = 'nf-md-font_awesome'
        'nf-mdi-food'                                    = 'nf-md-food'
        'nf-mdi-food_apple'                              = 'nf-md-food_apple'
        'nf-mdi-food_croissant'                          = 'nf-md-food_croissant'
        'nf-mdi-food_fork_drink'                         = 'nf-md-food_fork_drink'
        'nf-mdi-food_off'                                = 'nf-md-food_off'
        'nf-mdi-food_variant'                            = 'nf-md-food_variant'
        'nf-mdi-football'                                = 'nf-md-football'
        'nf-mdi-football_australian'                     = 'nf-md-football_australian'
        'nf-mdi-football_helmet'                         = 'nf-md-football_helmet'
        'nf-mdi-forklift'                                = 'nf-md-forklift'
        'nf-mdi-format_align_bottom'                     = 'nf-md-format_align_bottom'
        'nf-mdi-format_align_center'                     = 'nf-md-format_align_center'
        'nf-mdi-format_align_justify'                    = 'nf-md-format_align_justify'
        'nf-mdi-format_align_left'                       = 'nf-md-format_align_left'
        'nf-mdi-format_align_middle'                     = 'nf-md-format_align_middle'
        'nf-mdi-format_align_right'                      = 'nf-md-format_align_right'
        'nf-mdi-format_align_top'                        = 'nf-md-format_align_top'
        'nf-mdi-format_annotation_plus'                  = 'nf-md-format_annotation_plus'
        'nf-mdi-format_bold'                             = 'nf-md-format_bold'
        'nf-mdi-format_clear'                            = 'nf-md-format_clear'
        'nf-mdi-format_color_fill'                       = 'nf-md-format_color_fill'
        'nf-mdi-format_color_text'                       = 'nf-md-format_color_text'
        'nf-mdi-format_float_center'                     = 'nf-md-format_float_center'
        'nf-mdi-format_float_left'                       = 'nf-md-format_float_left'
        'nf-mdi-format_float_none'                       = 'nf-md-format_float_none'
        'nf-mdi-format_float_right'                      = 'nf-md-format_float_right'
        'nf-mdi-format_font'                             = 'nf-md-format_font'
        'nf-mdi-format_header_1'                         = 'nf-md-format_header_1'
        'nf-mdi-format_header_2'                         = 'nf-md-format_header_2'
        'nf-mdi-format_header_3'                         = 'nf-md-format_header_3'
        'nf-mdi-format_header_4'                         = 'nf-md-format_header_4'
        'nf-mdi-format_header_5'                         = 'nf-md-format_header_5'
        'nf-mdi-format_header_6'                         = 'nf-md-format_header_6'
        'nf-mdi-format_header_decrease'                  = 'nf-md-format_header_decrease'
        'nf-mdi-format_header_equal'                     = 'nf-md-format_header_equal'
        'nf-mdi-format_header_increase'                  = 'nf-md-format_header_increase'
        'nf-mdi-format_header_pound'                     = 'nf-md-format_header_pound'
        'nf-mdi-format_horizontal_align_center'          = 'nf-md-format_horizontal_align_center'
        'nf-mdi-format_horizontal_align_left'            = 'nf-md-format_horizontal_align_left'
        'nf-mdi-format_horizontal_align_right'           = 'nf-md-format_horizontal_align_right'
        'nf-mdi-format_indent_decrease'                  = 'nf-md-format_indent_decrease'
        'nf-mdi-format_indent_increase'                  = 'nf-md-format_indent_increase'
        'nf-mdi-format_italic'                           = 'nf-md-format_italic'
        'nf-mdi-format_line_spacing'                     = 'nf-md-format_line_spacing'
        'nf-mdi-format_line_style'                       = 'nf-md-format_line_style'
        'nf-mdi-format_line_weight'                      = 'nf-md-format_line_weight'
        'nf-mdi-format_list_bulleted'                    = 'nf-md-format_list_bulleted'
        'nf-mdi-format_list_bulleted_type'               = 'nf-md-format_list_bulleted_type'
        'nf-mdi-format_list_checks'                      = 'nf-md-format_list_checks'
        'nf-mdi-format_page_break'                       = 'nf-md-format_page_break'
        'nf-mdi-format_paint'                            = 'nf-md-format_paint'
        'nf-mdi-format_paragraph'                        = 'nf-md-format_paragraph'
        'nf-mdi-format_pilcrow'                          = 'nf-md-format_pilcrow'
        'nf-mdi-format_quote_close'                      = 'nf-md-format_quote_close'
        'nf-mdi-format_quote_open'                       = 'nf-md-format_quote_open'
        'nf-mdi-format_rotate_90'                        = 'nf-md-format_rotate_90'
        'nf-mdi-format_section'                          = 'nf-md-format_section'
        'nf-mdi-format_size'                             = 'nf-md-format_size'
        'nf-mdi-format_strikethrough'                    = 'nf-md-format_strikethrough'
        'nf-mdi-format_strikethrough_variant'            = 'nf-md-format_strikethrough_variant'
        'nf-mdi-format_subscript'                        = 'nf-md-format_subscript'
        'nf-mdi-format_superscript'                      = 'nf-md-format_superscript'
        'nf-mdi-format_text'                             = 'nf-md-format_text'
        'nf-mdi-format_textdirection_l_to_r'             = 'nf-md-format_textdirection_l_to_r'
        'nf-mdi-format_textdirection_r_to_l'             = 'nf-md-format_textdirection_r_to_l'
        'nf-mdi-format_title'                            = 'nf-md-format_title'
        'nf-mdi-format_underline'                        = 'nf-md-format_underline'
        'nf-mdi-format_vertical_align_bottom'            = 'nf-md-format_vertical_align_bottom'
        'nf-mdi-format_vertical_align_center'            = 'nf-md-format_vertical_align_center'
        'nf-mdi-format_vertical_align_top'               = 'nf-md-format_vertical_align_top'
        'nf-mdi-format_wrap_inline'                      = 'nf-md-format_wrap_inline'
        'nf-mdi-format_wrap_square'                      = 'nf-md-format_wrap_square'
        'nf-mdi-format_wrap_tight'                       = 'nf-md-format_wrap_tight'
        'nf-mdi-format_wrap_top_bottom'                  = 'nf-md-format_wrap_top_bottom'
        'nf-mdi-forum'                                   = 'nf-md-forum'
        'nf-mdi-forum_outline'                           = 'nf-md-forum_outline'
        'nf-mdi-forward'                                 = 'nf-md-forward'
        'nf-mdi-fridge'                                  = 'nf-md-fridge'
        'nf-mdi-fuel'                                    = 'nf-md-fuel'
        'nf-mdi-fullscreen'                              = 'nf-md-fullscreen'
        'nf-mdi-fullscreen_exit'                         = 'nf-md-fullscreen_exit'
        'nf-mdi-function'                                = 'nf-md-function'
        'nf-mdi-gamepad'                                 = 'nf-md-gamepad'
        'nf-mdi-gamepad_variant'                         = 'nf-md-gamepad_variant'
        'nf-mdi-garage'                                  = 'nf-md-garage'
        'nf-mdi-garage_open'                             = 'nf-md-garage_open'
        'nf-mdi-gas_cylinder'                            = 'nf-md-gas_cylinder'
        'nf-mdi-gas_station'                             = 'nf-md-gas_station'
        'nf-mdi-gate'                                    = 'nf-md-gate'
        'nf-mdi-gauge'                                   = 'nf-md-gauge'
        'nf-mdi-gavel'                                   = 'nf-md-gavel'
        'nf-mdi-gender_female'                           = 'nf-md-gender_female'
        'nf-mdi-gender_male'                             = 'nf-md-gender_male'
        'nf-mdi-gender_male_female'                      = 'nf-md-gender_male_female'
        'nf-mdi-gender_transgender'                      = 'nf-md-gender_transgender'
        'nf-mdi-gesture'                                 = 'nf-md-gesture'
        'nf-mdi-gesture_double_tap'                      = 'nf-md-gesture_double_tap'
        'nf-mdi-gesture_swipe_down'                      = 'nf-md-gesture_swipe_down'
        'nf-mdi-gesture_swipe_left'                      = 'nf-md-gesture_swipe_left'
        'nf-mdi-gesture_swipe_right'                     = 'nf-md-gesture_swipe_right'
        'nf-mdi-gesture_swipe_up'                        = 'nf-md-gesture_swipe_up'
        'nf-mdi-gesture_tap'                             = 'nf-md-gesture_tap'
        'nf-mdi-gesture_two_double_tap'                  = 'nf-md-gesture_two_double_tap'
        'nf-mdi-gesture_two_tap'                         = 'nf-md-gesture_two_tap'
        'nf-mdi-ghost'                                   = 'nf-md-ghost'
        'nf-mdi-gift'                                    = 'nf-md-gift'
        'nf-mdi-git'                                     = 'nf-md-git'
        'nf-mdi-github_face'                             = 'nf-dev-github_alt'
        'nf-mdi-glass_flute'                             = 'nf-md-glass_flute'
        'nf-mdi-glass_mug'                               = 'nf-md-glass_mug'
        'nf-mdi-glass_stange'                            = 'nf-md-glass_stange'
        'nf-mdi-glass_tulip'                             = 'nf-md-glass_tulip'
        'nf-mdi-glasses'                                 = 'nf-md-glasses'
        'nf-mdi-gmail'                                   = 'nf-md-gmail'
        'nf-mdi-gnome'                                   = 'nf-md-gnome'
        'nf-mdi-golf'                                    = 'nf-md-golf'
        'nf-mdi-gondola'                                 = 'nf-md-gondola'
        'nf-mdi-google'                                  = 'nf-md-google'
        'nf-mdi-google_analytics'                        = 'nf-md-google_analytics'
        'nf-mdi-google_assistant'                        = 'nf-md-google_assistant'
        'nf-mdi-google_cardboard'                        = 'nf-md-google_cardboard'
        'nf-mdi-google_chrome'                           = 'nf-md-google_chrome'
        'nf-mdi-google_circles'                          = 'nf-md-google_circles'
        'nf-mdi-google_circles_communities'              = 'nf-md-google_circles_communities'
        'nf-mdi-google_circles_extended'                 = 'nf-md-google_circles_extended'
        'nf-mdi-google_circles_group'                    = 'nf-md-google_circles_group'
        'nf-mdi-google_controller'                       = 'nf-md-google_controller'
        'nf-mdi-google_controller_off'                   = 'nf-md-google_controller_off'
        'nf-mdi-google_drive'                            = 'nf-md-google_drive'
        'nf-mdi-google_earth'                            = 'nf-md-google_earth'
        'nf-mdi-google_glass'                            = 'nf-md-google_glass'
        'nf-mdi-google_home'                             = 'nf-md-google_home'
        'nf-mdi-google_keep'                             = 'nf-md-google_keep'
        'nf-mdi-google_maps'                             = 'nf-md-google_maps'
        'nf-mdi-google_nearby'                           = 'nf-md-google_nearby'
        'nf-mdi-google_play'                             = 'nf-md-google_play'
        'nf-mdi-google_plus'                             = 'nf-md-google_plus'
        'nf-mdi-google_translate'                        = 'nf-md-google_translate'
        'nf-mdi-grease_pencil'                           = 'nf-md-grease_pencil'
        'nf-mdi-grid'                                    = 'nf-md-grid'
        'nf-mdi-grid_large'                              = 'nf-md-grid_large'
        'nf-mdi-grid_off'                                = 'nf-md-grid_off'
        'nf-mdi-group'                                   = 'nf-md-group'
        'nf-mdi-guitar_acoustic'                         = 'nf-md-guitar_acoustic'
        'nf-mdi-guitar_electric'                         = 'nf-md-guitar_electric'
        'nf-mdi-guitar_pick'                             = 'nf-md-guitar_pick'
        'nf-mdi-guitar_pick_outline'                     = 'nf-md-guitar_pick_outline'
        'nf-mdi-guy_fawkes_mask'                         = 'nf-md-guy_fawkes_mask'
        'nf-mdi-hamburger'                               = 'nf-md-hamburger'
        'nf-mdi-hand_pointing_right'                     = 'nf-md-hand_pointing_right'
        'nf-mdi-hanger'                                  = 'nf-md-hanger'
        'nf-mdi-harddisk'                                = 'nf-md-harddisk'
        'nf-mdi-headphones'                              = 'nf-md-headphones'
        'nf-mdi-headphones_box'                          = 'nf-md-headphones_box'
        'nf-mdi-headphones_off'                          = 'nf-md-headphones_off'
        'nf-mdi-headphones_settings'                     = 'nf-md-headphones_settings'
        'nf-mdi-headset'                                 = 'nf-md-headset'
        'nf-mdi-headset_dock'                            = 'nf-md-headset_dock'
        'nf-mdi-headset_off'                             = 'nf-md-headset_off'
        'nf-mdi-heart'                                   = 'nf-md-heart'
        'nf-mdi-heart_box'                               = 'nf-md-heart_box'
        'nf-mdi-heart_box_outline'                       = 'nf-md-heart_box_outline'
        'nf-mdi-heart_broken'                            = 'nf-md-heart_broken'
        'nf-mdi-heart_half'                              = 'nf-md-heart_half'
        'nf-mdi-heart_half_full'                         = 'nf-md-heart_half_full'
        'nf-mdi-heart_half_outline'                      = 'nf-md-heart_half_outline'
        'nf-mdi-heart_off'                               = 'nf-md-heart_off'
        'nf-mdi-heart_outline'                           = 'nf-md-heart_outline'
        'nf-mdi-heart_pulse'                             = 'nf-md-heart_pulse'
        'nf-mdi-help'                                    = 'nf-md-help'
        'nf-mdi-help_box'                                = 'nf-md-help_box'
        'nf-mdi-help_circle'                             = 'nf-md-help_circle'
        'nf-mdi-help_circle_outline'                     = 'nf-md-help_circle_outline'
        'nf-mdi-help_network'                            = 'nf-md-help_network'
        'nf-mdi-hexagon'                                 = 'nf-md-hexagon'
        'nf-mdi-hexagon_multiple'                        = 'nf-md-hexagon_multiple'
        'nf-mdi-hexagon_outline'                         = 'nf-md-hexagon_outline'
        'nf-mdi-high_definition'                         = 'nf-md-high_definition'
        'nf-mdi-highway'                                 = 'nf-md-highway'
        'nf-mdi-history'                                 = 'nf-md-history'
        'nf-mdi-hololens'                                = 'nf-md-hololens'
        'nf-mdi-home'                                    = 'nf-md-home'
        'nf-mdi-home_account'                            = 'nf-md-home_account'
        'nf-mdi-home_assistant'                          = 'nf-md-home_assistant'
        'nf-mdi-home_automation'                         = 'nf-md-home_automation'
        'nf-mdi-home_circle'                             = 'nf-md-home_circle'
        'nf-mdi-home_heart'                              = 'nf-md-home_heart'
        'nf-mdi-home_map_marker'                         = 'nf-md-home_map_marker'
        'nf-mdi-home_modern'                             = 'nf-md-home_modern'
        'nf-mdi-home_outline'                            = 'nf-md-home_outline'
        'nf-mdi-home_variant'                            = 'nf-md-home_variant'
        'nf-mdi-hook'                                    = 'nf-md-hook'
        'nf-mdi-hook_off'                                = 'nf-md-hook_off'
        'nf-mdi-hops'                                    = 'nf-md-hops'
        'nf-mdi-hospital'                                = 'nf-md-hospital'
        'nf-mdi-hospital_building'                       = 'nf-md-hospital_building'
        'nf-mdi-hospital_marker'                         = 'nf-md-hospital_marker'
        'nf-mdi-hot_tub'                                 = 'nf-md-hot_tub'
        'nf-mdi-hulu'                                    = 'nf-md-hulu'
        'nf-mdi-human'                                   = 'nf-md-human'
        'nf-mdi-human_child'                             = 'nf-md-human_child'
        'nf-mdi-human_female'                            = 'nf-md-human_female'
        'nf-mdi-human_greeting'                          = 'nf-md-human_greeting'
        'nf-mdi-human_handsdown'                         = 'nf-md-human_handsdown'
        'nf-mdi-human_handsup'                           = 'nf-md-human_handsup'
        'nf-mdi-human_male'                              = 'nf-md-human_male'
        'nf-mdi-human_male_female'                       = 'nf-md-human_male_female'
        'nf-mdi-human_pregnant'                          = 'nf-md-human_pregnant'
        'nf-mdi-humble_bundle'                           = 'nf-md-humble_bundle'
        'nf-mdi-ice_cream'                               = 'nf-md-ice_cream'
        'nf-mdi-image'                                   = 'nf-md-image'
        'nf-mdi-image_album'                             = 'nf-md-image_album'
        'nf-mdi-image_area'                              = 'nf-md-image_area'
        'nf-mdi-image_area_close'                        = 'nf-md-image_area_close'
        'nf-mdi-image_broken'                            = 'nf-md-image_broken'
        'nf-mdi-image_broken_variant'                    = 'nf-md-image_broken_variant'
        'nf-mdi-image_filter_black_white'                = 'nf-md-image_filter_black_white'
        'nf-mdi-image_filter_center_focus'               = 'nf-md-image_filter_center_focus'
        'nf-mdi-image_filter_center_focus_weak'          = 'nf-md-image_filter_center_focus_weak'
        'nf-mdi-image_filter_drama'                      = 'nf-md-image_filter_drama'
        'nf-mdi-image_filter_frames'                     = 'nf-md-image_filter_frames'
        'nf-mdi-image_filter_hdr'                        = 'nf-md-image_filter_hdr'
        'nf-mdi-image_filter_none'                       = 'nf-md-image_filter_none'
        'nf-mdi-image_filter_tilt_shift'                 = 'nf-md-image_filter_tilt_shift'
        'nf-mdi-image_filter_vintage'                    = 'nf-md-image_filter_vintage'
        'nf-mdi-image_multiple'                          = 'nf-md-image_multiple'
        'nf-mdi-image_off'                               = 'nf-md-image_off'
        'nf-mdi-import'                                  = 'nf-md-import'
        'nf-mdi-inbox'                                   = 'nf-md-inbox'
        'nf-mdi-inbox_arrow_down'                        = 'nf-md-inbox_arrow_down'
        'nf-mdi-inbox_arrow_up'                          = 'nf-md-inbox_arrow_up'
        'nf-mdi-incognito'                               = 'nf-md-incognito'
        'nf-mdi-infinity'                                = 'nf-md-infinity'
        'nf-mdi-information'                             = 'nf-md-information'
        'nf-mdi-information_outline'                     = 'nf-md-information_outline'
        'nf-mdi-information_variant'                     = 'nf-md-information_variant'
        'nf-mdi-instagram'                               = 'nf-md-instagram'
        'nf-mdi-invert_colors'                           = 'nf-md-invert_colors'
        'nf-mdi-jeepney'                                 = 'nf-md-jeepney'
        'nf-mdi-jira'                                    = 'nf-md-jira'
        'nf-mdi-jsfiddle'                                = 'nf-md-jsfiddle'
        'nf-mdi-karate'                                  = 'nf-md-karate'
        'nf-mdi-keg'                                     = 'nf-md-keg'
        'nf-mdi-kettle'                                  = 'nf-md-kettle'
        'nf-mdi-key'                                     = 'nf-md-key'
        'nf-mdi-key_change'                              = 'nf-md-key_change'
        'nf-mdi-key_minus'                               = 'nf-md-key_minus'
        'nf-mdi-key_plus'                                = 'nf-md-key_plus'
        'nf-mdi-key_remove'                              = 'nf-md-key_remove'
        'nf-mdi-key_variant'                             = 'nf-md-key_variant'
        'nf-mdi-keyboard'                                = 'nf-md-keyboard'
        'nf-mdi-keyboard_backspace'                      = 'nf-md-keyboard_backspace'
        'nf-mdi-keyboard_caps'                           = 'nf-md-keyboard_caps'
        'nf-mdi-keyboard_close'                          = 'nf-md-keyboard_close'
        'nf-mdi-keyboard_off'                            = 'nf-md-keyboard_off'
        'nf-mdi-keyboard_return'                         = 'nf-md-keyboard_return'
        'nf-mdi-keyboard_tab'                            = 'nf-md-keyboard_tab'
        'nf-mdi-keyboard_variant'                        = 'nf-md-keyboard_variant'
        'nf-mdi-kickstarter'                             = 'nf-md-kickstarter'
        'nf-mdi-kodi'                                    = 'nf-md-kodi'
        'nf-mdi-label'                                   = 'nf-md-label'
        'nf-mdi-label_outline'                           = 'nf-md-label_outline'
        'nf-mdi-ladybug'                                 = 'nf-md-ladybug'
        'nf-mdi-lambda'                                  = 'nf-md-lambda'
        'nf-mdi-lamp'                                    = 'nf-md-lamp'
        'nf-mdi-lan'                                     = 'nf-md-lan'
        'nf-mdi-lan_connect'                             = 'nf-md-lan_connect'
        'nf-mdi-lan_disconnect'                          = 'nf-md-lan_disconnect'
        'nf-mdi-lan_pending'                             = 'nf-md-lan_pending'
        'nf-mdi-language_c'                              = 'nf-md-language_c'
        'nf-mdi-language_cpp'                            = 'nf-md-language_cpp'
        'nf-mdi-language_csharp'                         = 'nf-md-language_csharp'
        'nf-mdi-language_css3'                           = 'nf-md-language_css3'
        'nf-mdi-language_go'                             = 'nf-md-language_go'
        'nf-mdi-language_html5'                          = 'nf-md-language_html5'
        'nf-mdi-language_javascript'                     = 'nf-md-language_javascript'
        'nf-mdi-language_php'                            = 'nf-md-language_php'
        'nf-mdi-language_python'                         = 'nf-md-language_python'
        'nf-mdi-language_r'                              = 'nf-md-language_r'
        'nf-mdi-language_swift'                          = 'nf-md-language_swift'
        'nf-mdi-language_typescript'                     = 'nf-md-language_typescript'
        'nf-mdi-laptop'                                  = 'nf-md-laptop'
        'nf-mdi-laptop_off'                              = 'nf-md-laptop_off'
        'nf-mdi-lastpass'                                = 'nf-md-lastpass'
        'nf-mdi-launch'                                  = 'nf-md-launch'
        'nf-mdi-lava_lamp'                               = 'nf-md-lava_lamp'
        'nf-mdi-layers'                                  = 'nf-md-layers'
        'nf-mdi-layers_off'                              = 'nf-md-layers_off'
        'nf-mdi-lead_pencil'                             = 'nf-md-lead_pencil'
        'nf-mdi-leaf'                                    = 'nf-md-leaf'
        'nf-mdi-led_off'                                 = 'nf-md-led_off'
        'nf-mdi-led_on'                                  = 'nf-md-led_on'
        'nf-mdi-led_outline'                             = 'nf-md-led_outline'
        'nf-mdi-led_strip'                               = 'nf-md-led_strip'
        'nf-mdi-led_variant_off'                         = 'nf-md-led_variant_off'
        'nf-mdi-led_variant_on'                          = 'nf-md-led_variant_on'
        'nf-mdi-led_variant_outline'                     = 'nf-md-led_variant_outline'
        'nf-mdi-library'                                 = 'nf-md-library'
        'nf-mdi-library_books'                           = 'nf-md-text_box_multiple'
        'nf-mdi-library_music'                           = 'nf-md-music_box_multiple'
        'nf-mdi-lightbulb'                               = 'nf-md-lightbulb'
        'nf-mdi-lightbulb_on'                            = 'nf-md-lightbulb_on'
        'nf-mdi-lightbulb_on_outline'                    = 'nf-md-lightbulb_on_outline'
        'nf-mdi-lightbulb_outline'                       = 'nf-md-lightbulb_outline'
        'nf-mdi-link'                                    = 'nf-md-link'
        'nf-mdi-link_off'                                = 'nf-md-link_off'
        'nf-mdi-link_variant'                            = 'nf-md-link_variant'
        'nf-mdi-link_variant_off'                        = 'nf-md-link_variant_off'
        'nf-mdi-linkedin'                                = 'nf-md-linkedin'
        'nf-mdi-linux'                                   = 'nf-md-linux'
        'nf-mdi-loading'                                 = 'nf-md-loading'
        'nf-mdi-lock'                                    = 'nf-md-lock'
        'nf-mdi-lock_open'                               = 'nf-md-lock_open'
        'nf-mdi-lock_open_outline'                       = 'nf-md-lock_open_outline'
        'nf-mdi-lock_outline'                            = 'nf-md-lock_outline'
        'nf-mdi-lock_pattern'                            = 'nf-md-lock_pattern'
        'nf-mdi-lock_plus'                               = 'nf-md-lock_plus'
        'nf-mdi-lock_reset'                              = 'nf-md-lock_reset'
        'nf-mdi-locker'                                  = 'nf-md-locker'
        'nf-mdi-locker_multiple'                         = 'nf-md-locker_multiple'
        'nf-mdi-login'                                   = 'nf-md-login'
        'nf-mdi-logout'                                  = 'nf-md-logout'
        'nf-mdi-logout_variant'                          = 'nf-md-logout_variant'
        'nf-mdi-looks'                                   = 'nf-md-looks'
        'nf-mdi-loupe'                                   = 'nf-md-loupe'
        'nf-mdi-lumx'                                    = 'nf-md-lumx'
        'nf-mdi-magnet'                                  = 'nf-md-magnet'
        'nf-mdi-magnet_on'                               = 'nf-md-magnet_on'
        'nf-mdi-magnify'                                 = 'nf-md-magnify'
        'nf-mdi-magnify_minus'                           = 'nf-md-magnify_minus'
        'nf-mdi-magnify_minus_outline'                   = 'nf-md-magnify_minus_outline'
        'nf-mdi-magnify_plus'                            = 'nf-md-magnify_plus'
        'nf-mdi-magnify_plus_outline'                    = 'nf-md-magnify_plus_outline'
        'nf-mdi-mailbox'                                 = 'nf-md-mailbox'
        'nf-mdi-map'                                     = 'nf-md-map'
        'nf-mdi-map_marker'                              = 'nf-md-map_marker'
        'nf-mdi-map_marker_circle'                       = 'nf-md-map_marker_circle'
        'nf-mdi-map_marker_minus'                        = 'nf-md-map_marker_minus'
        'nf-mdi-map_marker_multiple'                     = 'nf-md-map_marker_multiple'
        'nf-mdi-map_marker_off'                          = 'nf-md-map_marker_off'
        'nf-mdi-map_marker_outline'                      = 'nf-md-map_marker_outline'
        'nf-mdi-map_marker_plus'                         = 'nf-md-map_marker_plus'
        'nf-mdi-map_marker_radius'                       = 'nf-md-map_marker_radius'
        'nf-mdi-margin'                                  = 'nf-md-margin'
        'nf-mdi-marker'                                  = 'nf-md-marker'
        'nf-mdi-marker_check'                            = 'nf-md-marker_check'
        'nf-mdi-material_ui'                             = 'nf-md-material_ui'
        'nf-mdi-math_compass'                            = 'nf-md-math_compass'
        'nf-mdi-matrix'                                  = 'nf-md-matrix'
        'nf-mdi-medical_bag'                             = 'nf-md-medical_bag'
        'nf-mdi-memory'                                  = 'nf-md-memory'
        'nf-mdi-menu'                                    = 'nf-md-menu'
        'nf-mdi-menu_down'                               = 'nf-md-menu_down'
        'nf-mdi-menu_down_outline'                       = 'nf-md-menu_down_outline'
        'nf-mdi-menu_left'                               = 'nf-md-menu_left'
        'nf-mdi-menu_right'                              = 'nf-md-menu_right'
        'nf-mdi-menu_up'                                 = 'nf-md-menu_up'
        'nf-mdi-menu_up_outline'                         = 'nf-md-menu_up_outline'
        'nf-mdi-message'                                 = 'nf-md-message'
        'nf-mdi-message_alert'                           = 'nf-md-message_alert'
        'nf-mdi-message_bulleted'                        = 'nf-md-message_bulleted'
        'nf-mdi-message_bulleted_off'                    = 'nf-md-message_bulleted_off'
        'nf-mdi-message_draw'                            = 'nf-md-message_draw'
        'nf-mdi-message_image'                           = 'nf-md-message_image'
        'nf-mdi-message_outline'                         = 'nf-md-message_outline'
        'nf-mdi-message_plus'                            = 'nf-md-message_plus'
        'nf-mdi-message_processing'                      = 'nf-md-message_processing'
        'nf-mdi-message_reply'                           = 'nf-md-message_reply'
        'nf-mdi-message_reply_text'                      = 'nf-md-message_reply_text'
        'nf-mdi-message_settings'                        = 'nf-md-message_settings'
        'nf-mdi-message_text'                            = 'nf-md-message_text'
        'nf-mdi-message_text_outline'                    = 'nf-md-message_text_outline'
        'nf-mdi-message_video'                           = 'nf-md-message_video'
        'nf-mdi-meteor'                                  = 'nf-md-meteor'
        'nf-mdi-metronome'                               = 'nf-md-metronome'
        'nf-mdi-metronome_tick'                          = 'nf-md-metronome_tick'
        'nf-mdi-micro_sd'                                = 'nf-md-micro_sd'
        'nf-mdi-microphone'                              = 'nf-md-microphone'
        'nf-mdi-microphone_off'                          = 'nf-md-microphone_off'
        'nf-mdi-microphone_outline'                      = 'nf-md-microphone_outline'
        'nf-mdi-microphone_settings'                     = 'nf-md-microphone_settings'
        'nf-mdi-microphone_variant'                      = 'nf-md-microphone_variant'
        'nf-mdi-microphone_variant_off'                  = 'nf-md-microphone_variant_off'
        'nf-mdi-microscope'                              = 'nf-md-microscope'
        'nf-mdi-microsoft'                               = 'nf-md-microsoft'
        'nf-mdi-minecraft'                               = 'nf-md-minecraft'
        'nf-mdi-minus'                                   = 'nf-md-minus'
        'nf-mdi-minus_box'                               = 'nf-md-minus_box'
        'nf-mdi-minus_box_outline'                       = 'nf-md-minus_box_outline'
        'nf-mdi-minus_circle'                            = 'nf-md-minus_circle'
        'nf-mdi-minus_circle_outline'                    = 'nf-md-minus_circle_outline'
        'nf-mdi-minus_network'                           = 'nf-md-minus_network'
        'nf-mdi-monitor'                                 = 'nf-md-monitor'
        'nf-mdi-monitor_multiple'                        = 'nf-md-monitor_multiple'
        'nf-mdi-more'                                    = 'nf-md-more'
        'nf-mdi-motorbike'                               = 'nf-md-motorbike'
        'nf-mdi-mouse'                                   = 'nf-md-mouse'
        'nf-mdi-mouse_off'                               = 'nf-md-mouse_off'
        'nf-mdi-mouse_variant'                           = 'nf-md-mouse_variant'
        'nf-mdi-mouse_variant_off'                       = 'nf-md-mouse_variant_off'
        'nf-mdi-move_resize'                             = 'nf-md-move_resize'
        'nf-mdi-move_resize_variant'                     = 'nf-md-move_resize_variant'
        'nf-mdi-movie'                                   = 'nf-md-movie'
        'nf-mdi-movie_roll'                              = 'nf-md-movie_roll'
        'nf-mdi-multiplication'                          = 'nf-md-multiplication'
        'nf-mdi-multiplication_box'                      = 'nf-md-multiplication_box'
        'nf-mdi-mushroom'                                = 'nf-md-mushroom'
        'nf-mdi-mushroom_outline'                        = 'nf-md-mushroom_outline'
        'nf-mdi-music'                                   = 'nf-md-music'
        'nf-mdi-music_box'                               = 'nf-md-music_box'
        'nf-mdi-music_box_outline'                       = 'nf-md-music_box_outline'
        'nf-mdi-music_circle'                            = 'nf-md-music_circle'
        'nf-mdi-music_note'                              = 'nf-md-music_note'
        'nf-mdi-music_note_bluetooth'                    = 'nf-md-music_note_bluetooth'
        'nf-mdi-music_note_bluetooth_off'                = 'nf-md-music_note_bluetooth_off'
        'nf-mdi-music_note_half'                         = 'nf-md-music_note_half'
        'nf-mdi-music_note_off'                          = 'nf-md-music_note_off'
        'nf-mdi-music_note_quarter'                      = 'nf-md-music_note_quarter'
        'nf-mdi-music_note_sixteenth'                    = 'nf-md-music_note_sixteenth'
        'nf-mdi-music_note_whole'                        = 'nf-md-music_note_whole'
        'nf-mdi-music_off'                               = 'nf-md-music_off'
        'nf-mdi-nature'                                  = 'nf-md-nature'
        'nf-mdi-nature_people'                           = 'nf-md-nature_people'
        'nf-mdi-navigation'                              = 'nf-md-navigation'
        'nf-mdi-near_me'                                 = 'nf-md-near_me'
        'nf-mdi-needle'                                  = 'nf-md-needle'
        'nf-mdi-netflix'                                 = 'nf-md-netflix'
        'nf-mdi-network'                                 = 'nf-md-network'
        'nf-mdi-new_box'                                 = 'nf-md-new_box'
        'nf-mdi-newspaper'                               = 'nf-md-newspaper'
        'nf-mdi-nfc'                                     = 'nf-md-nfc'
        'nf-mdi-nfc_tap'                                 = 'nf-md-nfc_tap'
        'nf-mdi-nfc_variant'                             = 'nf-md-nfc_variant'
        'nf-mdi-ninja'                                   = 'nf-md-ninja'
        'nf-mdi-nintendo_switch'                         = 'nf-md-nintendo_switch'
        'nf-mdi-nodejs'                                  = 'nf-md-nodejs'
        'nf-mdi-note'                                    = 'nf-md-note'
        'nf-mdi-note_multiple'                           = 'nf-md-note_multiple'
        'nf-mdi-note_multiple_outline'                   = 'nf-md-note_multiple_outline'
        'nf-mdi-note_outline'                            = 'nf-md-note_outline'
        'nf-mdi-note_plus'                               = 'nf-md-note_plus'
        'nf-mdi-note_plus_outline'                       = 'nf-md-note_plus_outline'
        'nf-mdi-note_text'                               = 'nf-md-note_text'
        'nf-mdi-notebook'                                = 'nf-md-notebook'
        'nf-mdi-notification_clear_all'                  = 'nf-md-notification_clear_all'
        'nf-mdi-npm'                                     = 'nf-md-npm'
        'nf-mdi-nuke'                                    = 'nf-md-nuke'
        'nf-mdi-null'                                    = 'nf-md-null'
        'nf-mdi-numeric'                                 = 'nf-md-numeric'
        'nf-mdi-numeric_0_box'                           = 'nf-md-numeric_0_box'
        'nf-mdi-numeric_0_box_multiple_outline'          = 'nf-md-numeric_0_box_multiple_outline'
        'nf-mdi-numeric_0_box_outline'                   = 'nf-md-numeric_0_box_outline'
        'nf-mdi-numeric_1_box'                           = 'nf-md-numeric_1_box'
        'nf-mdi-numeric_1_box_multiple_outline'          = 'nf-md-numeric_1_box_multiple_outline'
        'nf-mdi-numeric_1_box_outline'                   = 'nf-md-numeric_1_box_outline'
        'nf-mdi-numeric_2_box'                           = 'nf-md-numeric_2_box'
        'nf-mdi-numeric_2_box_multiple_outline'          = 'nf-md-numeric_2_box_multiple_outline'
        'nf-mdi-numeric_2_box_outline'                   = 'nf-md-numeric_2_box_outline'
        'nf-mdi-numeric_3_box'                           = 'nf-md-numeric_3_box'
        'nf-mdi-numeric_3_box_multiple_outline'          = 'nf-md-numeric_3_box_multiple_outline'
        'nf-mdi-numeric_3_box_outline'                   = 'nf-md-numeric_3_box_outline'
        'nf-mdi-numeric_4_box'                           = 'nf-md-numeric_4_box'
        'nf-mdi-numeric_4_box_multiple_outline'          = 'nf-md-numeric_4_box_multiple_outline'
        'nf-mdi-numeric_4_box_outline'                   = 'nf-md-numeric_4_box_outline'
        'nf-mdi-numeric_5_box'                           = 'nf-md-numeric_5_box'
        'nf-mdi-numeric_5_box_multiple_outline'          = 'nf-md-numeric_5_box_multiple_outline'
        'nf-mdi-numeric_5_box_outline'                   = 'nf-md-numeric_5_box_outline'
        'nf-mdi-numeric_6_box'                           = 'nf-md-numeric_6_box'
        'nf-mdi-numeric_6_box_multiple_outline'          = 'nf-md-numeric_6_box_multiple_outline'
        'nf-mdi-numeric_6_box_outline'                   = 'nf-md-numeric_6_box_outline'
        'nf-mdi-numeric_7_box'                           = 'nf-md-numeric_7_box'
        'nf-mdi-numeric_7_box_multiple_outline'          = 'nf-md-numeric_7_box_multiple_outline'
        'nf-mdi-numeric_7_box_outline'                   = 'nf-md-numeric_7_box_outline'
        'nf-mdi-numeric_8_box'                           = 'nf-md-numeric_8_box'
        'nf-mdi-numeric_8_box_multiple_outline'          = 'nf-md-numeric_8_box_multiple_outline'
        'nf-mdi-numeric_8_box_outline'                   = 'nf-md-numeric_8_box_outline'
        'nf-mdi-numeric_9_box'                           = 'nf-md-numeric_9_box'
        'nf-mdi-numeric_9_box_multiple_outline'          = 'nf-md-numeric_9_box_multiple_outline'
        'nf-mdi-numeric_9_box_outline'                   = 'nf-md-numeric_9_box_outline'
        'nf-mdi-numeric_9_plus_box'                      = 'nf-md-numeric_9_plus_box'
        'nf-mdi-numeric_9_plus_box_multiple_outline'     = 'nf-md-numeric_9_plus_box_multiple_outline'
        'nf-mdi-numeric_9_plus_box_outline'              = 'nf-md-numeric_9_plus_box_outline'
        'nf-mdi-nut'                                     = 'nf-md-nut'
        'nf-mdi-nutrition'                               = 'nf-md-nutrition'
        'nf-mdi-oar'                                     = 'nf-md-oar'
        'nf-mdi-octagon'                                 = 'nf-md-octagon'
        'nf-mdi-octagon_outline'                         = 'nf-md-octagon_outline'
        'nf-mdi-octagram'                                = 'nf-md-octagram'
        'nf-mdi-octagram_outline'                        = 'nf-md-octagram_outline'
        'nf-mdi-odnoklassniki'                           = 'nf-md-odnoklassniki'
        'nf-mdi-oil'                                     = 'nf-md-oil'
        'nf-mdi-oil_temperature'                         = 'nf-md-oil_temperature'
        'nf-mdi-omega'                                   = 'nf-md-omega'
        'nf-mdi-onedrive'                                = 'nf-dev-onedrive'
        'nf-mdi-opacity'                                 = 'nf-md-opacity'
        'nf-mdi-open_in_app'                             = 'nf-md-open_in_app'
        'nf-mdi-open_in_new'                             = 'nf-md-open_in_new'
        'nf-mdi-openid'                                  = 'nf-md-openid'
        'nf-mdi-opera'                                   = 'nf-md-opera'
        'nf-mdi-orbit'                                   = 'nf-md-orbit'
        'nf-mdi-ornament'                                = 'nf-md-ornament'
        'nf-mdi-ornament_variant'                        = 'nf-md-ornament_variant'
        'nf-mdi-owl'                                     = 'nf-md-owl'
        'nf-mdi-package'                                 = 'nf-md-package'
        'nf-mdi-package_down'                            = 'nf-md-package_down'
        'nf-mdi-package_up'                              = 'nf-md-package_up'
        'nf-mdi-package_variant'                         = 'nf-md-package_variant'
        'nf-mdi-package_variant_closed'                  = 'nf-md-package_variant_closed'
        'nf-mdi-page_first'                              = 'nf-md-page_first'
        'nf-mdi-page_last'                               = 'nf-md-page_last'
        'nf-mdi-page_layout_body'                        = 'nf-md-page_layout_body'
        'nf-mdi-page_layout_footer'                      = 'nf-md-page_layout_footer'
        'nf-mdi-page_layout_header'                      = 'nf-md-page_layout_header'
        'nf-mdi-page_layout_sidebar_left'                = 'nf-md-page_layout_sidebar_left'
        'nf-mdi-page_layout_sidebar_right'               = 'nf-md-page_layout_sidebar_right'
        'nf-mdi-palette'                                 = 'nf-md-palette'
        'nf-mdi-palette_advanced'                        = 'nf-md-palette_advanced'
        'nf-mdi-panda'                                   = 'nf-md-panda'
        'nf-mdi-pandora'                                 = 'nf-md-pandora'
        'nf-mdi-panorama'                                = 'nf-md-panorama'
        'nf-mdi-panorama_fisheye'                        = 'nf-md-panorama_fisheye'
        'nf-mdi-panorama_horizontal'                     = 'nf-md-panorama_horizontal'
        'nf-mdi-panorama_vertical'                       = 'nf-md-panorama_vertical'
        'nf-mdi-panorama_wide_angle'                     = 'nf-md-panorama_wide_angle'
        'nf-mdi-paper_cut_vertical'                      = 'nf-md-paper_cut_vertical'
        'nf-mdi-paperclip'                               = 'nf-md-paperclip'
        'nf-mdi-parking'                                 = 'nf-md-parking'
        'nf-mdi-passport'                                = 'nf-md-passport'
        'nf-mdi-pause'                                   = 'nf-md-pause'
        'nf-mdi-pause_circle'                            = 'nf-md-pause_circle'
        'nf-mdi-pause_circle_outline'                    = 'nf-md-pause_circle_outline'
        'nf-mdi-pause_octagon'                           = 'nf-md-pause_octagon'
        'nf-mdi-pause_octagon_outline'                   = 'nf-md-pause_octagon_outline'
        'nf-mdi-paw'                                     = 'nf-md-paw'
        'nf-mdi-paw_off'                                 = 'nf-md-paw_off'
        'nf-mdi-pen'                                     = 'nf-md-pen'
        'nf-mdi-pencil'                                  = 'nf-md-pencil'
        'nf-mdi-pencil_box'                              = 'nf-md-pencil_box'
        'nf-mdi-pencil_box_outline'                      = 'nf-md-pencil_box_outline'
        'nf-mdi-pencil_circle'                           = 'nf-md-pencil_circle'
        'nf-mdi-pencil_circle_outline'                   = 'nf-md-pencil_circle_outline'
        'nf-mdi-pencil_lock'                             = 'nf-md-pencil_lock'
        'nf-mdi-pencil_off'                              = 'nf-md-pencil_off'
        'nf-mdi-pentagon'                                = 'nf-md-pentagon'
        'nf-mdi-pentagon_outline'                        = 'nf-md-pentagon_outline'
        'nf-mdi-percent'                                 = 'nf-md-percent'
        'nf-mdi-phone'                                   = 'nf-md-phone'
        'nf-mdi-phone_bluetooth'                         = 'nf-md-phone_bluetooth'
        'nf-mdi-phone_classic'                           = 'nf-md-phone_classic'
        'nf-mdi-phone_forward'                           = 'nf-md-phone_forward'
        'nf-mdi-phone_hangup'                            = 'nf-md-phone_hangup'
        'nf-mdi-phone_in_talk'                           = 'nf-md-phone_in_talk'
        'nf-mdi-phone_incoming'                          = 'nf-md-phone_incoming'
        'nf-mdi-phone_log'                               = 'nf-md-phone_log'
        'nf-mdi-phone_minus'                             = 'nf-md-phone_minus'
        'nf-mdi-phone_missed'                            = 'nf-md-phone_missed'
        'nf-mdi-phone_outgoing'                          = 'nf-md-phone_outgoing'
        'nf-mdi-phone_paused'                            = 'nf-md-phone_paused'
        'nf-mdi-phone_plus'                              = 'nf-md-phone_plus'
        'nf-mdi-phone_return'                            = 'nf-md-phone_return'
        'nf-mdi-phone_settings'                          = 'nf-md-phone_settings'
        'nf-mdi-phone_voip'                              = 'nf-md-phone_voip'
        'nf-mdi-pi'                                      = 'nf-md-pi'
        'nf-mdi-pi_box'                                  = 'nf-md-pi_box'
        'nf-mdi-piano'                                   = 'nf-md-piano'
        'nf-mdi-pig'                                     = 'nf-md-pig'
        'nf-mdi-pill'                                    = 'nf-md-pill'
        'nf-mdi-pillar'                                  = 'nf-md-pillar'
        'nf-mdi-pin'                                     = 'nf-md-pin'
        'nf-mdi-pin_off'                                 = 'nf-md-pin_off'
        'nf-mdi-pine_tree'                               = 'nf-md-pine_tree'
        'nf-mdi-pine_tree_box'                           = 'nf-md-pine_tree_box'
        'nf-mdi-pinterest'                               = 'nf-md-pinterest'
        'nf-mdi-pipe'                                    = 'nf-md-pipe'
        'nf-mdi-pipe_disconnected'                       = 'nf-md-pipe_disconnected'
        'nf-mdi-pistol'                                  = 'nf-md-pistol'
        'nf-mdi-pizza'                                   = 'nf-md-pizza'
        'nf-mdi-play'                                    = 'nf-md-play'
        'nf-mdi-play_box_outline'                        = 'nf-md-play_box_outline'
        'nf-mdi-play_circle'                             = 'nf-md-play_circle'
        'nf-mdi-play_circle_outline'                     = 'nf-md-play_circle_outline'
        'nf-mdi-play_pause'                              = 'nf-md-play_pause'
        'nf-mdi-play_protected_content'                  = 'nf-md-play_protected_content'
        'nf-mdi-playlist_check'                          = 'nf-md-playlist_check'
        'nf-mdi-playlist_minus'                          = 'nf-md-playlist_minus'
        'nf-mdi-playlist_play'                           = 'nf-md-playlist_play'
        'nf-mdi-playlist_plus'                           = 'nf-md-playlist_plus'
        'nf-mdi-playlist_remove'                         = 'nf-md-playlist_remove'
        'nf-mdi-plex'                                    = 'nf-md-plex'
        'nf-mdi-plus'                                    = 'nf-md-plus'
        'nf-mdi-plus_box'                                = 'nf-md-plus_box'
        'nf-mdi-plus_box_outline'                        = 'nf-md-plus_box_outline'
        'nf-mdi-plus_circle'                             = 'nf-md-plus_circle'
        'nf-mdi-plus_circle_multiple_outline'            = 'nf-md-plus_circle_multiple_outline'
        'nf-mdi-plus_circle_outline'                     = 'nf-md-plus_circle_outline'
        'nf-mdi-plus_network'                            = 'nf-md-plus_network'
        'nf-mdi-plus_outline'                            = 'nf-md-plus_outline'
        'nf-mdi-pokeball'                                = 'nf-md-pokeball'
        'nf-mdi-poker_chip'                              = 'nf-md-poker_chip'
        'nf-mdi-polaroid'                                = 'nf-md-polaroid'
        'nf-mdi-poll'                                    = 'nf-md-poll'
        'nf-mdi-polymer'                                 = 'nf-md-polymer'
        'nf-mdi-pool'                                    = 'nf-md-pool'
        'nf-mdi-popcorn'                                 = 'nf-md-popcorn'
        'nf-mdi-pot'                                     = 'nf-md-pot'
        'nf-mdi-pot_mix'                                 = 'nf-md-pot_mix'
        'nf-mdi-pound'                                   = 'nf-md-pound'
        'nf-mdi-pound_box'                               = 'nf-md-pound_box'
        'nf-mdi-power'                                   = 'nf-md-power'
        'nf-mdi-power_plug'                              = 'nf-md-power_plug'
        'nf-mdi-power_plug_off'                          = 'nf-md-power_plug_off'
        'nf-mdi-power_settings'                          = 'nf-md-power_settings'
        'nf-mdi-power_socket'                            = 'nf-md-power_socket'
        'nf-mdi-power_socket_eu'                         = 'nf-md-power_socket_eu'
        'nf-mdi-power_socket_uk'                         = 'nf-md-power_socket_uk'
        'nf-mdi-power_socket_us'                         = 'nf-md-power_socket_us'
        'nf-mdi-prescription'                            = 'nf-md-prescription'
        'nf-mdi-presentation'                            = 'nf-md-presentation'
        'nf-mdi-presentation_play'                       = 'nf-md-presentation_play'
        'nf-mdi-printer'                                 = 'nf-md-printer'
        'nf-mdi-printer_3d'                              = 'nf-md-printer_3d'
        'nf-mdi-printer_alert'                           = 'nf-md-printer_alert'
        'nf-mdi-printer_settings'                        = 'nf-md-printer_settings'
        'nf-mdi-priority_high'                           = 'nf-md-priority_high'
        'nf-mdi-priority_low'                            = 'nf-md-priority_low'
        'nf-mdi-professional_hexagon'                    = 'nf-md-professional_hexagon'
        'nf-mdi-projector'                               = 'nf-md-projector'
        'nf-mdi-projector_screen'                        = 'nf-md-projector_screen'
        'nf-mdi-publish'                                 = 'nf-md-publish'
        'nf-mdi-pulse'                                   = 'nf-md-pulse'
        'nf-mdi-puzzle'                                  = 'nf-md-puzzle'
        'nf-mdi-qqchat'                                  = 'nf-md-qqchat'
        'nf-mdi-qrcode'                                  = 'nf-md-qrcode'
        'nf-mdi-qrcode_scan'                             = 'nf-md-qrcode_scan'
        'nf-mdi-quadcopter'                              = 'nf-md-quadcopter'
        'nf-mdi-quality_high'                            = 'nf-md-quality_high'
        'nf-mdi-radar'                                   = 'nf-md-radar'
        'nf-mdi-radiator'                                = 'nf-md-radiator'
        'nf-mdi-radio'                                   = 'nf-md-radio'
        'nf-mdi-radio_handheld'                          = 'nf-md-radio_handheld'
        'nf-mdi-radio_tower'                             = 'nf-md-radio_tower'
        'nf-mdi-radioactive'                             = 'nf-md-radioactive'
        'nf-mdi-radiobox_marked'                         = 'nf-md-radiobox_marked'
        'nf-mdi-ray_end'                                 = 'nf-md-ray_end'
        'nf-mdi-ray_end_arrow'                           = 'nf-md-ray_end_arrow'
        'nf-mdi-ray_start'                               = 'nf-md-ray_start'
        'nf-mdi-ray_start_arrow'                         = 'nf-md-ray_start_arrow'
        'nf-mdi-ray_start_end'                           = 'nf-md-ray_start_end'
        'nf-mdi-ray_vertex'                              = 'nf-md-ray_vertex'
        'nf-mdi-react'                                   = 'nf-md-react'
        'nf-mdi-read'                                    = 'nf-md-read'
        'nf-mdi-receipt'                                 = 'nf-md-receipt'
        'nf-mdi-record'                                  = 'nf-md-record'
        'nf-mdi-record_rec'                              = 'nf-md-record_rec'
        'nf-mdi-recycle'                                 = 'nf-md-recycle'
        'nf-mdi-reddit'                                  = 'nf-md-reddit'
        'nf-mdi-redo'                                    = 'nf-md-redo'
        'nf-mdi-redo_variant'                            = 'nf-md-redo_variant'
        'nf-mdi-refresh'                                 = 'nf-md-refresh'
        'nf-mdi-regex'                                   = 'nf-md-regex'
        'nf-mdi-relative_scale'                          = 'nf-md-relative_scale'
        'nf-mdi-reload'                                  = 'nf-md-reload'
        'nf-mdi-remote'                                  = 'nf-md-remote'
        'nf-mdi-rename_box'                              = 'nf-md-rename_box'
        'nf-mdi-reorder_horizontal'                      = 'nf-md-reorder_horizontal'
        'nf-mdi-reorder_vertical'                        = 'nf-md-reorder_vertical'
        'nf-mdi-repeat'                                  = 'nf-md-repeat'
        'nf-mdi-repeat_off'                              = 'nf-md-repeat_off'
        'nf-mdi-repeat_once'                             = 'nf-md-repeat_once'
        'nf-mdi-replay'                                  = 'nf-md-replay'
        'nf-mdi-reply'                                   = 'nf-md-reply'
        'nf-mdi-reply_all'                               = 'nf-md-reply_all'
        'nf-mdi-reproduction'                            = 'nf-md-reproduction'
        'nf-mdi-resize_bottom_right'                     = 'nf-md-resize_bottom_right'
        'nf-mdi-responsive'                              = 'nf-md-responsive'
        'nf-mdi-restart'                                 = 'nf-md-restart'
        'nf-mdi-restore'                                 = 'nf-md-restore'
        'nf-mdi-rewind'                                  = 'nf-md-rewind'
        'nf-mdi-rewind_outline'                          = 'nf-md-rewind_outline'
        'nf-mdi-rhombus'                                 = 'nf-md-rhombus'
        'nf-mdi-rhombus_outline'                         = 'nf-md-rhombus_outline'
        'nf-mdi-ribbon'                                  = 'nf-md-ribbon'
        'nf-mdi-rice'                                    = 'nf-md-rice'
        'nf-mdi-ring'                                    = 'nf-md-ring'
        'nf-mdi-road'                                    = 'nf-md-road'
        'nf-mdi-road_variant'                            = 'nf-md-road_variant'
        'nf-mdi-robot'                                   = 'nf-md-robot'
        'nf-mdi-rocket'                                  = 'nf-md-rocket'
        'nf-mdi-rotate_3d'                               = 'nf-md-rotate_3d'
        'nf-mdi-rotate_left'                             = 'nf-md-rotate_left'
        'nf-mdi-rotate_left_variant'                     = 'nf-md-rotate_left_variant'
        'nf-mdi-rotate_right'                            = 'nf-md-rotate_right'
        'nf-mdi-rotate_right_variant'                    = 'nf-md-rotate_right_variant'
        'nf-mdi-rounded_corner'                          = 'nf-md-rounded_corner'
        'nf-mdi-router_wireless'                         = 'nf-md-router_wireless'
        'nf-mdi-routes'                                  = 'nf-md-routes'
        'nf-mdi-rowing'                                  = 'nf-md-rowing'
        'nf-mdi-rss'                                     = 'nf-md-rss'
        'nf-mdi-rss_box'                                 = 'nf-md-rss_box'
        'nf-mdi-ruler'                                   = 'nf-md-ruler'
        'nf-mdi-run'                                     = 'nf-md-run'
        'nf-mdi-run_fast'                                = 'nf-md-run_fast'
        'nf-mdi-sale'                                    = 'nf-md-sale'
        'nf-mdi-sass'                                    = 'nf-md-sass'
        'nf-mdi-satellite'                               = 'nf-md-satellite'
        'nf-mdi-satellite_variant'                       = 'nf-md-satellite_variant'
        'nf-mdi-saxophone'                               = 'nf-md-saxophone'
        'nf-mdi-scale'                                   = 'nf-md-scale'
        'nf-mdi-scale_balance'                           = 'nf-md-scale_balance'
        'nf-mdi-scale_bathroom'                          = 'nf-md-scale_bathroom'
        'nf-mdi-scanner'                                 = 'nf-md-scanner'
        'nf-mdi-school'                                  = 'nf-md-school'
        'nf-mdi-screen_rotation'                         = 'nf-md-screen_rotation'
        'nf-mdi-screen_rotation_lock'                    = 'nf-md-screen_rotation_lock'
        'nf-mdi-screwdriver'                             = 'nf-md-screwdriver'
        'nf-mdi-script'                                  = 'nf-md-script'
        'nf-mdi-sd'                                      = 'nf-md-sd'
        'nf-mdi-seal'                                    = 'nf-md-seal'
        'nf-mdi-search_web'                              = 'nf-md-search_web'
        'nf-mdi-seat_flat'                               = 'nf-md-seat_flat'
        'nf-mdi-seat_flat_angled'                        = 'nf-md-seat_flat_angled'
        'nf-mdi-seat_individual_suite'                   = 'nf-md-seat_individual_suite'
        'nf-mdi-seat_legroom_extra'                      = 'nf-md-seat_legroom_extra'
        'nf-mdi-seat_legroom_normal'                     = 'nf-md-seat_legroom_normal'
        'nf-mdi-seat_legroom_reduced'                    = 'nf-md-seat_legroom_reduced'
        'nf-mdi-seat_recline_extra'                      = 'nf-md-seat_recline_extra'
        'nf-mdi-seat_recline_normal'                     = 'nf-md-seat_recline_normal'
        'nf-mdi-security'                                = 'nf-md-security'
        'nf-mdi-security_network'                        = 'nf-md-security_network'
        'nf-mdi-select'                                  = 'nf-md-select'
        'nf-mdi-select_all'                              = 'nf-md-select_all'
        'nf-mdi-select_inverse'                          = 'nf-md-select_inverse'
        'nf-mdi-select_off'                              = 'nf-md-select_off'
        'nf-mdi-selection'                               = 'nf-md-selection'
        'nf-mdi-selection_off'                           = 'nf-md-selection_off'
        'nf-mdi-send'                                    = 'nf-md-send'
        'nf-mdi-serial_port'                             = 'nf-md-serial_port'
        'nf-mdi-server'                                  = 'nf-md-server'
        'nf-mdi-server_minus'                            = 'nf-md-server_minus'
        'nf-mdi-server_network'                          = 'nf-md-server_network'
        'nf-mdi-server_network_off'                      = 'nf-md-server_network_off'
        'nf-mdi-server_off'                              = 'nf-md-server_off'
        'nf-mdi-server_plus'                             = 'nf-md-server_plus'
        'nf-mdi-server_remove'                           = 'nf-md-server_remove'
        'nf-mdi-server_security'                         = 'nf-md-server_security'
        'nf-mdi-set_all'                                 = 'nf-md-set_all'
        'nf-mdi-set_center'                              = 'nf-md-set_center'
        'nf-mdi-set_center_right'                        = 'nf-md-set_center_right'
        'nf-mdi-set_left'                                = 'nf-md-set_left'
        'nf-mdi-set_left_center'                         = 'nf-md-set_left_center'
        'nf-mdi-set_left_right'                          = 'nf-md-set_left_right'
        'nf-mdi-set_none'                                = 'nf-md-set_none'
        'nf-mdi-set_right'                               = 'nf-md-set_right'
        'nf-mdi-shape'                                   = 'nf-md-shape'
        'nf-mdi-shape_circle_plus'                       = 'nf-md-shape_circle_plus'
        'nf-mdi-shape_outline'                           = 'nf-md-shape_outline'
        'nf-mdi-shape_plus'                              = 'nf-md-shape_plus'
        'nf-mdi-shape_polygon_plus'                      = 'nf-md-shape_polygon_plus'
        'nf-mdi-shape_rectangle_plus'                    = 'nf-md-shape_rectangle_plus'
        'nf-mdi-shape_square_plus'                       = 'nf-md-shape_square_plus'
        'nf-mdi-share'                                   = 'nf-md-share'
        'nf-mdi-share_variant'                           = 'nf-md-share_variant'
        'nf-mdi-shield'                                  = 'nf-md-shield'
        'nf-mdi-shield_half_full'                        = 'nf-md-shield_half_full'
        'nf-mdi-shield_outline'                          = 'nf-md-shield_outline'
        'nf-mdi-ship_wheel'                              = 'nf-md-ship_wheel'
        'nf-mdi-shopping'                                = 'nf-md-shopping'
        'nf-mdi-shopping_music'                          = 'nf-md-shopping_music'
        'nf-mdi-shovel'                                  = 'nf-md-shovel'
        'nf-mdi-shovel_off'                              = 'nf-md-shovel_off'
        'nf-mdi-shredder'                                = 'nf-md-shredder'
        'nf-mdi-shuffle'                                 = 'nf-md-shuffle'
        'nf-mdi-shuffle_disabled'                        = 'nf-md-shuffle_disabled'
        'nf-mdi-shuffle_variant'                         = 'nf-md-shuffle_variant'
        'nf-mdi-sigma'                                   = 'nf-md-sigma'
        'nf-mdi-sigma_lower'                             = 'nf-md-sigma_lower'
        'nf-mdi-sign_caution'                            = 'nf-md-sign_caution'
        'nf-mdi-sign_direction'                          = 'nf-md-sign_direction'
        'nf-mdi-sign_text'                               = 'nf-md-sign_text'
        'nf-mdi-signal'                                  = 'nf-md-signal'
        'nf-mdi-signal_2g'                               = 'nf-md-signal_2g'
        'nf-mdi-signal_3g'                               = 'nf-md-signal_3g'
        'nf-mdi-signal_4g'                               = 'nf-md-signal_4g'
        'nf-mdi-signal_hspa'                             = 'nf-md-signal_hspa'
        'nf-mdi-signal_hspa_plus'                        = 'nf-md-signal_hspa_plus'
        'nf-mdi-signal_off'                              = 'nf-md-signal_off'
        'nf-mdi-signal_variant'                          = 'nf-md-signal_variant'
        'nf-mdi-silverware'                              = 'nf-md-silverware'
        'nf-mdi-silverware_fork'                         = 'nf-md-silverware_fork'
        'nf-mdi-silverware_spoon'                        = 'nf-md-silverware_spoon'
        'nf-mdi-silverware_variant'                      = 'nf-md-silverware_variant'
        'nf-mdi-sim'                                     = 'nf-md-sim'
        'nf-mdi-sim_alert'                               = 'nf-md-sim_alert'
        'nf-mdi-sim_off'                                 = 'nf-md-sim_off'
        'nf-mdi-sitemap'                                 = 'nf-md-sitemap'
        'nf-mdi-skip_backward'                           = 'nf-md-skip_backward'
        'nf-mdi-skip_forward'                            = 'nf-md-skip_forward'
        'nf-mdi-skip_next'                               = 'nf-md-skip_next'
        'nf-mdi-skip_next_circle'                        = 'nf-md-skip_next_circle'
        'nf-mdi-skip_next_circle_outline'                = 'nf-md-skip_next_circle_outline'
        'nf-mdi-skip_previous'                           = 'nf-md-skip_previous'
        'nf-mdi-skip_previous_circle'                    = 'nf-md-skip_previous_circle'
        'nf-mdi-skip_previous_circle_outline'            = 'nf-md-skip_previous_circle_outline'
        'nf-mdi-skull'                                   = 'nf-md-skull'
        'nf-mdi-skype'                                   = 'nf-md-skype'
        'nf-mdi-skype_business'                          = 'nf-md-skype_business'
        'nf-mdi-slack'                                   = 'nf-md-slack'
        'nf-mdi-sleep'                                   = 'nf-md-sleep'
        'nf-mdi-sleep_off'                               = 'nf-md-sleep_off'
        'nf-mdi-smoking'                                 = 'nf-md-smoking'
        'nf-mdi-smoking_off'                             = 'nf-md-smoking_off'
        'nf-mdi-snapchat'                                = 'nf-md-snapchat'
        'nf-mdi-snowflake'                               = 'nf-md-snowflake'
        'nf-mdi-snowman'                                 = 'nf-md-snowman'
        'nf-mdi-soccer'                                  = 'nf-md-soccer'
        'nf-mdi-soccer_field'                            = 'nf-md-soccer_field'
        'nf-mdi-sofa'                                    = 'nf-md-sofa'
        'nf-mdi-solid'                                   = 'nf-md-solid'
        'nf-mdi-sort'                                    = 'nf-md-sort'
        'nf-mdi-sort_ascending'                          = 'nf-md-sort_ascending'
        'nf-mdi-sort_descending'                         = 'nf-md-sort_descending'
        'nf-mdi-sort_variant'                            = 'nf-md-sort_variant'
        'nf-mdi-soundcloud'                              = 'nf-md-soundcloud'
        'nf-mdi-source_branch'                           = 'nf-md-source_branch'
        'nf-mdi-source_commit'                           = 'nf-md-source_commit'
        'nf-mdi-source_commit_end'                       = 'nf-md-source_commit_end'
        'nf-mdi-source_commit_end_local'                 = 'nf-md-source_commit_end_local'
        'nf-mdi-source_commit_local'                     = 'nf-md-source_commit_local'
        'nf-mdi-source_commit_next_local'                = 'nf-md-source_commit_next_local'
        'nf-mdi-source_commit_start'                     = 'nf-md-source_commit_start'
        'nf-mdi-source_commit_start_next_local'          = 'nf-md-source_commit_start_next_local'
        'nf-mdi-source_fork'                             = 'nf-md-source_fork'
        'nf-mdi-source_merge'                            = 'nf-md-source_merge'
        'nf-mdi-source_pull'                             = 'nf-md-source_pull'
        'nf-mdi-soy_sauce'                               = 'nf-md-soy_sauce'
        'nf-mdi-speaker'                                 = 'nf-md-speaker'
        'nf-mdi-speaker_off'                             = 'nf-md-speaker_off'
        'nf-mdi-speaker_wireless'                        = 'nf-md-speaker_wireless'
        'nf-mdi-speedometer'                             = 'nf-md-speedometer'
        'nf-mdi-spellcheck'                              = 'nf-md-spellcheck'
        'nf-mdi-spotify'                                 = 'nf-md-spotify'
        'nf-mdi-spotlight'                               = 'nf-md-spotlight'
        'nf-mdi-spotlight_beam'                          = 'nf-md-spotlight_beam'
        'nf-mdi-spray'                                   = 'nf-md-spray'
        'nf-mdi-square'                                  = 'nf-md-square'
        'nf-mdi-square_outline'                          = 'nf-md-square_outline'
        'nf-mdi-square_root'                             = 'nf-md-square_root'
        'nf-mdi-stack_overflow'                          = 'nf-md-stack_overflow'
        'nf-mdi-stadium'                                 = 'nf-md-stadium'
        'nf-mdi-stairs'                                  = 'nf-md-stairs'
        'nf-mdi-standard_definition'                     = 'nf-md-standard_definition'
        'nf-mdi-star'                                    = 'nf-md-star'
        'nf-mdi-star_circle'                             = 'nf-md-star_circle'
        'nf-mdi-star_half'                               = 'nf-md-star_half'
        'nf-mdi-star_off'                                = 'nf-md-star_off'
        'nf-mdi-star_outline'                            = 'nf-md-star_outline'
        'nf-mdi-steam'                                   = 'nf-md-steam'
        'nf-mdi-steering'                                = 'nf-md-steering'
        'nf-mdi-step_backward'                           = 'nf-md-step_backward'
        'nf-mdi-step_backward_2'                         = 'nf-md-step_backward_2'
        'nf-mdi-step_forward'                            = 'nf-md-step_forward'
        'nf-mdi-step_forward_2'                          = 'nf-md-step_forward_2'
        'nf-mdi-stethoscope'                             = 'nf-md-stethoscope'
        'nf-mdi-sticker'                                 = 'nf-md-sticker'
        'nf-mdi-sticker_emoji'                           = 'nf-md-sticker_emoji'
        'nf-mdi-stocking'                                = 'nf-md-stocking'
        'nf-mdi-stop'                                    = 'nf-md-stop'
        'nf-mdi-stop_circle'                             = 'nf-md-stop_circle'
        'nf-mdi-stop_circle_outline'                     = 'nf-md-stop_circle_outline'
        'nf-mdi-store'                                   = 'nf-md-store'
        'nf-mdi-store_24_hour'                           = 'nf-md-store_24_hour'
        'nf-mdi-stove'                                   = 'nf-md-stove'
        'nf-mdi-subdirectory_arrow_left'                 = 'nf-md-subdirectory_arrow_left'
        'nf-mdi-subdirectory_arrow_right'                = 'nf-md-subdirectory_arrow_right'
        'nf-mdi-subway'                                  = 'nf-md-subway'
        'nf-mdi-subway_variant'                          = 'nf-md-subway_variant'
        'nf-mdi-summit'                                  = 'nf-md-summit'
        'nf-mdi-sunglasses'                              = 'nf-md-sunglasses'
        'nf-mdi-surround_sound'                          = 'nf-md-surround_sound'
        'nf-mdi-surround_sound_2_0'                      = 'nf-md-surround_sound_2_0'
        'nf-mdi-surround_sound_3_1'                      = 'nf-md-surround_sound_3_1'
        'nf-mdi-surround_sound_5_1'                      = 'nf-md-surround_sound_5_1'
        'nf-mdi-surround_sound_7_1'                      = 'nf-md-surround_sound_7_1'
        'nf-mdi-svg'                                     = 'nf-md-svg'
        'nf-mdi-swap_horizontal'                         = 'nf-md-swap_horizontal'
        'nf-mdi-swap_vertical'                           = 'nf-md-swap_vertical'
        'nf-mdi-swim'                                    = 'nf-md-swim'
        'nf-mdi-switch'                                  = 'nf-md-switch'
        'nf-mdi-sword'                                   = 'nf-md-sword'
        'nf-mdi-sword_cross'                             = 'nf-md-sword_cross'
        'nf-mdi-sync'                                    = 'nf-md-sync'
        'nf-mdi-sync_alert'                              = 'nf-md-sync_alert'
        'nf-mdi-sync_off'                                = 'nf-md-sync_off'
        'nf-mdi-tab'                                     = 'nf-md-tab'
        'nf-mdi-tab_plus'                                = 'nf-md-tab_plus'
        'nf-mdi-tab_unselected'                          = 'nf-md-tab_unselected'
        'nf-mdi-table'                                   = 'nf-md-table'
        'nf-mdi-table_column'                            = 'nf-md-table_column'
        'nf-mdi-table_column_plus_after'                 = 'nf-md-table_column_plus_after'
        'nf-mdi-table_column_plus_before'                = 'nf-md-table_column_plus_before'
        'nf-mdi-table_column_remove'                     = 'nf-md-table_column_remove'
        'nf-mdi-table_column_width'                      = 'nf-md-table_column_width'
        'nf-mdi-table_edit'                              = 'nf-md-table_edit'
        'nf-mdi-table_large'                             = 'nf-md-table_large'
        'nf-mdi-table_of_contents'                       = 'nf-md-table_of_contents'
        'nf-mdi-table_row'                               = 'nf-md-table_row'
        'nf-mdi-table_row_height'                        = 'nf-md-table_row_height'
        'nf-mdi-table_row_plus_after'                    = 'nf-md-table_row_plus_after'
        'nf-mdi-table_row_plus_before'                   = 'nf-md-table_row_plus_before'
        'nf-mdi-table_row_remove'                        = 'nf-md-table_row_remove'
        'nf-mdi-table_settings'                          = 'nf-md-table_settings'
        'nf-mdi-tablet'                                  = 'nf-md-tablet'
        'nf-mdi-tablet_android'                          = 'nf-md-tablet_android'
        'nf-mdi-taco'                                    = 'nf-md-taco'
        'nf-mdi-tag'                                     = 'nf-md-tag'
        'nf-mdi-tag_faces'                               = 'nf-md-tag_faces'
        'nf-mdi-tag_heart'                               = 'nf-md-tag_heart'
        'nf-mdi-tag_multiple'                            = 'nf-md-tag_multiple'
        'nf-mdi-tag_outline'                             = 'nf-md-tag_outline'
        'nf-mdi-tag_plus'                                = 'nf-md-tag_plus'
        'nf-mdi-tag_remove'                              = 'nf-md-tag_remove'
        'nf-mdi-tag_text_outline'                        = 'nf-md-tag_text_outline'
        'nf-mdi-target'                                  = 'nf-md-target'
        'nf-mdi-taxi'                                    = 'nf-md-taxi'
        'nf-mdi-teamviewer'                              = 'nf-md-teamviewer'
        'nf-mdi-television'                              = 'nf-md-television'
        'nf-mdi-television_box'                          = 'nf-md-television_box'
        'nf-mdi-television_classic'                      = 'nf-md-television_classic'
        'nf-mdi-television_classic_off'                  = 'nf-md-television_classic_off'
        'nf-mdi-television_guide'                        = 'nf-md-television_guide'
        'nf-mdi-television_off'                          = 'nf-md-television_off'
        'nf-mdi-temperature_celsius'                     = 'nf-md-temperature_celsius'
        'nf-mdi-temperature_fahrenheit'                  = 'nf-md-temperature_fahrenheit'
        'nf-mdi-temperature_kelvin'                      = 'nf-md-temperature_kelvin'
        'nf-mdi-tennis'                                  = 'nf-md-tennis'
        'nf-mdi-tent'                                    = 'nf-md-tent'
        'nf-mdi-test_tube'                               = 'nf-md-test_tube'
        'nf-mdi-text_shadow'                             = 'nf-md-text_shadow'
        'nf-mdi-text_to_speech'                          = 'nf-md-text_to_speech'
        'nf-mdi-text_to_speech_off'                      = 'nf-md-text_to_speech_off'
        'nf-mdi-texture'                                 = 'nf-md-texture'
        'nf-mdi-theater'                                 = 'nf-md-theater'
        'nf-mdi-theme_light_dark'                        = 'nf-md-theme_light_dark'
        'nf-mdi-thermometer'                             = 'nf-md-thermometer'
        'nf-mdi-thermometer_lines'                       = 'nf-md-thermometer_lines'
        'nf-mdi-thought_bubble'                          = 'nf-md-thought_bubble'
        'nf-mdi-thought_bubble_outline'                  = 'nf-md-thought_bubble_outline'
        'nf-mdi-thumb_down'                              = 'nf-md-thumb_down'
        'nf-mdi-thumb_down_outline'                      = 'nf-md-thumb_down_outline'
        'nf-mdi-thumb_up'                                = 'nf-md-thumb_up'
        'nf-mdi-thumb_up_outline'                        = 'nf-md-thumb_up_outline'
        'nf-mdi-thumbs_up_down'                          = 'nf-md-thumbs_up_down'
        'nf-mdi-ticket'                                  = 'nf-md-ticket'
        'nf-mdi-ticket_account'                          = 'nf-md-ticket_account'
        'nf-mdi-ticket_confirmation'                     = 'nf-md-ticket_confirmation'
        'nf-mdi-ticket_percent'                          = 'nf-md-ticket_percent'
        'nf-mdi-tie'                                     = 'nf-md-tie'
        'nf-mdi-tilde'                                   = 'nf-md-tilde'
        'nf-mdi-timelapse'                               = 'nf-md-timelapse'
        'nf-mdi-timer'                                   = 'nf-md-timer'
        'nf-mdi-timer_10'                                = 'nf-md-timer_10'
        'nf-mdi-timer_3'                                 = 'nf-md-timer_3'
        'nf-mdi-timer_off'                               = 'nf-md-timer_off'
        'nf-mdi-timer_sand'                              = 'nf-md-timer_sand'
        'nf-mdi-timer_sand_empty'                        = 'nf-md-timer_sand_empty'
        'nf-mdi-timer_sand_full'                         = 'nf-md-timer_sand_full'
        'nf-mdi-timetable'                               = 'nf-md-timetable'
        'nf-mdi-toggle_switch'                           = 'nf-md-toggle_switch'
        'nf-mdi-toggle_switch_off'                       = 'nf-md-toggle_switch_off'
        'nf-mdi-tooltip'                                 = 'nf-md-tooltip'
        'nf-mdi-tooltip_edit'                            = 'nf-md-tooltip_edit'
        'nf-mdi-tooltip_image'                           = 'nf-md-tooltip_image'
        'nf-mdi-tooltip_outline'                         = 'nf-md-tooltip_outline'
        'nf-mdi-tooltip_text'                            = 'nf-md-tooltip_text'
        'nf-mdi-tooth'                                   = 'nf-md-tooth'
        'nf-mdi-tower_beach'                             = 'nf-md-tower_beach'
        'nf-mdi-tower_fire'                              = 'nf-md-tower_fire'
        'nf-mdi-trackpad'                                = 'nf-md-trackpad'
        'nf-mdi-traffic_light'                           = 'nf-md-traffic_light'
        'nf-mdi-train'                                   = 'nf-md-train'
        'nf-mdi-tram'                                    = 'nf-md-tram'
        'nf-mdi-transcribe'                              = 'nf-md-transcribe'
        'nf-mdi-transcribe_close'                        = 'nf-md-transcribe_close'
        'nf-mdi-transfer'                                = 'nf-md-transfer'
        'nf-mdi-transit_transfer'                        = 'nf-md-transit_transfer'
        'nf-mdi-translate'                               = 'nf-md-translate'
        'nf-mdi-treasure_chest'                          = 'nf-md-treasure_chest'
        'nf-mdi-tree'                                    = 'nf-md-tree'
        'nf-mdi-trello'                                  = 'nf-md-trello'
        'nf-mdi-trending_down'                           = 'nf-md-trending_down'
        'nf-mdi-trending_neutral'                        = 'nf-md-trending_neutral'
        'nf-mdi-trending_up'                             = 'nf-md-trending_up'
        'nf-mdi-triangle'                                = 'nf-md-triangle'
        'nf-mdi-triangle_outline'                        = 'nf-md-triangle_outline'
        'nf-mdi-trophy'                                  = 'nf-md-trophy'
        'nf-mdi-trophy_award'                            = 'nf-md-trophy_award'
        'nf-mdi-trophy_outline'                          = 'nf-md-trophy_outline'
        'nf-mdi-trophy_variant'                          = 'nf-md-trophy_variant'
        'nf-mdi-trophy_variant_outline'                  = 'nf-md-trophy_variant_outline'
        'nf-mdi-truck'                                   = 'nf-md-truck'
        'nf-mdi-truck_delivery'                          = 'nf-md-truck_delivery'
        'nf-mdi-truck_fast'                              = 'nf-md-truck_fast'
        'nf-mdi-truck_trailer'                           = 'nf-md-truck_trailer'
        'nf-mdi-tshirt_crew'                             = 'nf-md-tshirt_crew'
        'nf-mdi-tshirt_v'                                = 'nf-md-tshirt_v'
        'nf-mdi-tune'                                    = 'nf-md-tune'
        'nf-mdi-tune_vertical'                           = 'nf-md-tune_vertical'
        'nf-mdi-twitch'                                  = 'nf-md-twitch'
        'nf-mdi-twitter'                                 = 'nf-md-twitter'
        'nf-mdi-ubuntu'                                  = 'nf-md-ubuntu'
        'nf-mdi-ultra_high_definition'                   = 'nf-md-ultra_high_definition'
        'nf-mdi-umbraco'                                 = 'nf-md-umbraco'
        'nf-mdi-umbrella'                                = 'nf-md-umbrella'
        'nf-mdi-umbrella_outline'                        = 'nf-md-umbrella_outline'
        'nf-mdi-undo'                                    = 'nf-md-undo'
        'nf-mdi-undo_variant'                            = 'nf-md-undo_variant'
        'nf-mdi-unfold_less_horizontal'                  = 'nf-md-unfold_less_horizontal'
        'nf-mdi-unfold_less_vertical'                    = 'nf-md-unfold_less_vertical'
        'nf-mdi-unfold_more_horizontal'                  = 'nf-md-unfold_more_horizontal'
        'nf-mdi-unfold_more_vertical'                    = 'nf-md-unfold_more_vertical'
        'nf-mdi-ungroup'                                 = 'nf-md-ungroup'
        'nf-mdi-unity'                                   = 'nf-md-unity'
        'nf-mdi-update'                                  = 'nf-md-update'
        'nf-mdi-upload'                                  = 'nf-md-upload'
        'nf-mdi-upload_multiple'                         = 'nf-md-upload_multiple'
        'nf-mdi-upload_network'                          = 'nf-md-upload_network'
        'nf-mdi-usb'                                     = 'nf-md-usb'
        'nf-mdi-van_passenger'                           = 'nf-md-van_passenger'
        'nf-mdi-van_utility'                             = 'nf-md-van_utility'
        'nf-mdi-vanish'                                  = 'nf-md-vanish'
        'nf-mdi-vector_arrange_above'                    = 'nf-md-vector_arrange_above'
        'nf-mdi-vector_arrange_below'                    = 'nf-md-vector_arrange_below'
        'nf-mdi-vector_circle'                           = 'nf-md-vector_circle'
        'nf-mdi-vector_circle_variant'                   = 'nf-md-vector_circle_variant'
        'nf-mdi-vector_combine'                          = 'nf-md-vector_combine'
        'nf-mdi-vector_curve'                            = 'nf-md-vector_curve'
        'nf-mdi-vector_difference'                       = 'nf-md-vector_difference'
        'nf-mdi-vector_difference_ab'                    = 'nf-md-vector_difference_ab'
        'nf-mdi-vector_difference_ba'                    = 'nf-md-vector_difference_ba'
        'nf-mdi-vector_intersection'                     = 'nf-md-vector_intersection'
        'nf-mdi-vector_line'                             = 'nf-md-vector_line'
        'nf-mdi-vector_point'                            = 'nf-md-vector_point'
        'nf-mdi-vector_polygon'                          = 'nf-md-vector_polygon'
        'nf-mdi-vector_polyline'                         = 'nf-md-vector_polyline'
        'nf-mdi-vector_radius'                           = 'nf-md-vector_radius'
        'nf-mdi-vector_rectangle'                        = 'nf-md-vector_rectangle'
        'nf-mdi-vector_selection'                        = 'nf-md-vector_selection'
        'nf-mdi-vector_square'                           = 'nf-md-vector_square'
        'nf-mdi-vector_triangle'                         = 'nf-md-vector_triangle'
        'nf-mdi-vector_union'                            = 'nf-md-vector_union'
        'nf-mdi-vibrate'                                 = 'nf-md-vibrate'
        'nf-mdi-video'                                   = 'nf-md-video'
        'nf-mdi-video_3d'                                = 'nf-md-video_3d'
        'nf-mdi-video_4k_box'                            = 'nf-md-video_4k_box'
        'nf-mdi-video_input_antenna'                     = 'nf-md-video_input_antenna'
        'nf-mdi-video_input_component'                   = 'nf-md-video_input_component'
        'nf-mdi-video_input_hdmi'                        = 'nf-md-video_input_hdmi'
        'nf-mdi-video_input_svideo'                      = 'nf-md-video_input_svideo'
        'nf-mdi-video_off'                               = 'nf-md-video_off'
        'nf-mdi-video_switch'                            = 'nf-md-video_switch'
        'nf-mdi-view_agenda'                             = 'nf-md-view_agenda'
        'nf-mdi-view_array'                              = 'nf-md-view_array'
        'nf-mdi-view_carousel'                           = 'nf-md-view_carousel'
        'nf-mdi-view_column'                             = 'nf-md-view_column'
        'nf-mdi-view_dashboard'                          = 'nf-md-view_dashboard'
        'nf-mdi-view_dashboard_variant'                  = 'nf-md-view_dashboard_variant'
        'nf-mdi-view_day'                                = 'nf-md-view_day'
        'nf-mdi-view_grid'                               = 'nf-md-view_grid'
        'nf-mdi-view_headline'                           = 'nf-md-view_headline'
        'nf-mdi-view_list'                               = 'nf-md-view_list'
        'nf-mdi-view_module'                             = 'nf-md-view_module'
        'nf-mdi-view_parallel'                           = 'nf-md-view_parallel'
        'nf-mdi-view_quilt'                              = 'nf-md-view_quilt'
        'nf-mdi-view_sequential'                         = 'nf-md-view_sequential'
        'nf-mdi-view_stream'                             = 'nf-md-view_stream'
        'nf-mdi-view_week'                               = 'nf-md-view_week'
        'nf-mdi-vimeo'                                   = 'nf-md-vimeo'
        'nf-mdi-violin'                                  = 'nf-md-violin'
        'nf-mdi-visualstudio'                            = 'nf-dev-visualstudio'
        'nf-mdi-vlc'                                     = 'nf-md-vlc'
        'nf-mdi-voicemail'                               = 'nf-md-voicemail'
        'nf-mdi-volume_high'                             = 'nf-md-volume_high'
        'nf-mdi-volume_low'                              = 'nf-md-volume_low'
        'nf-mdi-volume_medium'                           = 'nf-md-volume_medium'
        'nf-mdi-volume_minus'                            = 'nf-md-volume_minus'
        'nf-mdi-volume_mute'                             = 'nf-md-volume_mute'
        'nf-mdi-volume_off'                              = 'nf-md-volume_off'
        'nf-mdi-volume_plus'                             = 'nf-md-volume_plus'
        'nf-mdi-vpn'                                     = 'nf-md-vpn'
        'nf-mdi-vuejs'                                   = 'nf-md-vuejs'
        'nf-mdi-walk'                                    = 'nf-md-walk'
        'nf-mdi-wall'                                    = 'nf-md-wall'
        'nf-mdi-wallet'                                  = 'nf-md-wallet'
        'nf-mdi-wallet_giftcard'                         = 'nf-md-wallet_giftcard'
        'nf-mdi-wallet_membership'                       = 'nf-md-wallet_membership'
        'nf-mdi-wallet_travel'                           = 'nf-md-wallet_travel'
        'nf-mdi-wan'                                     = 'nf-md-wan'
        'nf-mdi-washing_machine'                         = 'nf-md-washing_machine'
        'nf-mdi-watch'                                   = 'nf-md-watch'
        'nf-mdi-watch_export'                            = 'nf-md-watch_export'
        'nf-mdi-watch_import'                            = 'nf-md-watch_import'
        'nf-mdi-watch_vibrate'                           = 'nf-md-watch_vibrate'
        'nf-mdi-water'                                   = 'nf-md-water'
        'nf-mdi-water_off'                               = 'nf-md-water_off'
        'nf-mdi-water_percent'                           = 'nf-md-water_percent'
        'nf-mdi-water_pump'                              = 'nf-md-water_pump'
        'nf-mdi-watermark'                               = 'nf-md-watermark'
        'nf-mdi-waves'                                   = 'nf-md-waves'
        'nf-mdi-weather_cloudy'                          = 'nf-md-weather_cloudy'
        'nf-mdi-weather_fog'                             = 'nf-md-weather_fog'
        'nf-mdi-weather_hail'                            = 'nf-md-weather_hail'
        'nf-mdi-weather_lightning'                       = 'nf-md-weather_lightning'
        'nf-mdi-weather_lightning_rainy'                 = 'nf-md-weather_lightning_rainy'
        'nf-mdi-weather_night'                           = 'nf-md-weather_night'
        'nf-mdi-weather_pouring'                         = 'nf-md-weather_pouring'
        'nf-mdi-weather_rainy'                           = 'nf-md-weather_rainy'
        'nf-mdi-weather_snowy'                           = 'nf-md-weather_snowy'
        'nf-mdi-weather_snowy_rainy'                     = 'nf-md-weather_snowy_rainy'
        'nf-mdi-weather_sunny'                           = 'nf-md-weather_sunny'
        'nf-mdi-weather_sunset'                          = 'nf-md-weather_sunset'
        'nf-mdi-weather_sunset_down'                     = 'nf-md-weather_sunset_down'
        'nf-mdi-weather_sunset_up'                       = 'nf-md-weather_sunset_up'
        'nf-mdi-weather_windy'                           = 'nf-md-weather_windy'
        'nf-mdi-weather_windy_variant'                   = 'nf-md-weather_windy_variant'
        'nf-mdi-web'                                     = 'nf-md-web'
        'nf-mdi-webcam'                                  = 'nf-md-webcam'
        'nf-mdi-webhook'                                 = 'nf-md-webhook'
        'nf-mdi-webpack'                                 = 'nf-md-webpack'
        'nf-mdi-wechat'                                  = 'nf-md-wechat'
        'nf-mdi-weight'                                  = 'nf-md-weight'
        'nf-mdi-weight_kilogram'                         = 'nf-md-weight_kilogram'
        'nf-mdi-whatsapp'                                = 'nf-md-whatsapp'
        'nf-mdi-wheelchair_accessibility'                = 'nf-md-wheelchair_accessibility'
        'nf-mdi-white_balance_auto'                      = 'nf-md-white_balance_auto'
        'nf-mdi-white_balance_incandescent'              = 'nf-md-white_balance_incandescent'
        'nf-mdi-white_balance_iridescent'                = 'nf-md-white_balance_iridescent'
        'nf-mdi-white_balance_sunny'                     = 'nf-md-white_balance_sunny'
        'nf-mdi-widgets'                                 = 'nf-md-widgets'
        'nf-mdi-wifi'                                    = 'nf-md-wifi'
        'nf-mdi-wifi_off'                                = 'nf-md-wifi_off'
        'nf-mdi-wikipedia'                               = 'nf-md-wikipedia'
        'nf-mdi-window_close'                            = 'nf-md-window_close'
        'nf-mdi-window_closed'                           = 'nf-md-window_closed'
        'nf-mdi-window_maximize'                         = 'nf-md-window_maximize'
        'nf-mdi-window_minimize'                         = 'nf-md-window_minimize'
        'nf-mdi-window_open'                             = 'nf-md-window_open'
        'nf-mdi-window_restore'                          = 'nf-md-window_restore'
        'nf-mdi-wordpress'                               = 'nf-md-wordpress'
        'nf-mdi-wrap'                                    = 'nf-md-wrap'
        'nf-mdi-wrench'                                  = 'nf-md-wrench'
        'nf-mdi-xamarin'                                 = 'nf-md-xamarin'
        'nf-mdi-xaml'                                    = 'nf-md-language_xaml'
        'nf-mdi-xml'                                     = 'nf-md-xml'
        'nf-mdi-xmpp'                                    = 'nf-md-xmpp'
        'nf-mdi-yeast'                                   = 'nf-md-yeast'
        'nf-mdi-yin_yang'                                = 'nf-md-yin_yang'
        'nf-mdi-youtube_gaming'                          = 'nf-md-youtube_gaming'
        'nf-mdi-youtube_tv'                              = 'nf-md-youtube_tv'
        'nf-mdi-zip_box'                                 = 'nf-md-zip_box'
    }

    $RemovedGlyphs = @(
        'nf-oct-settings',
        'nf-oct-circuit_board',
        'nf-mdi-send_secure',
        'nf-mdi-amazon',
        'nf-mdi-cellphone_android',
        'nf-oct-primitive_square',
        'nf-mdi-account_location',
        'nf-mdi-flattr',
        'nf-mdi-laptop_windows',
        'nf-mdi-cash_usd',
        'nf-mdi-youtube_play',
        'nf-mdi-roomba',
        'nf-mdi-camcorder_box',
        'nf-mdi-basecamp',
        'nf-mdi-xbox',
        'nf-mdi-book_unsecure',
        'nf-mdi-voice',
        'nf-mdi-book_secure',
        'nf-mdi-houzz_box',
        'nf-mdi-github_box',
        'nf-oct-trashcan',
        'nf-mdi-plane_shield',
        'nf-mdi-vk_box',
        'nf-mdi-settings',
        'nf-mdi-json',
        'nf-mdi-xbox_controller_battery_full',
        'nf-mdi-markdown',
        'nf-mdi-mixcloud',
        'nf-mdi-etsy',
        'nf-mdi-disk_alert',
        'nf-mdi-hotel',
        'nf-mdi-internet_explorer',
        'nf-mdi-nest_thermostat',
        'nf-mdi-venmo',
        'nf-mdi-vk_circle',
        'nf-mdi-music_note_eighth',
        'nf-mdi-yammer',
        'nf-mdi-library_plus',
        'nf-mdi-radiobox_blank',
        'nf-mdi-format_list_numbers',
        'nf-mdi-worker',
        'nf-mdi-image_filter',
        'nf-mdi-maxcdn',
        'nf-mdi-behance',
        'nf-mdi-security_home',
        'nf-mdi-wii',
        'nf-mdi-playstation',
        'nf-mdi-google_wallet',
        'nf-mdi-settings_box',
        'nf-oct-ellipses',
        'nf-mdi-square_inc',
        'nf-mdi-yelp',
        'nf-mdi-pinterest_box',
        'nf-oct-jersey',
        'nf-mdi-uber',
        'nf-oct-octoface',
        'nf-mdi-blogger',
        'nf-mdi-twitter_circle',
        'nf-mdi-xing_circle',
        'nf-mdi-office',
        'nf-oct-gist_secret',
        'nf-mdi-currency_chf',
        'nf-mdi-tooltip_outline_plus',
        'nf-mdi-circle_outline',
        'nf-mdi-xbox_controller_battery_unknown',
        'nf-mdi-file_document_box',
        'nf-mdi-foursquare',
        'nf-mdi-twitter_box',
        'nf-mdi-google_photos',
        'nf-mdi-houzz',
        'nf-mdi-cisco_webex',
        'nf-mdi-quicktime',
        'nf-mdi-glassdoor',
        'nf-oct-primitive_dot',
        'nf-mdi-youtube_creator_studio',
        'nf-mdi-xing_box',
        'nf-mdi-plus_one',
        'nf-mdi-buffer',
        'nf-oct-cloud_upload',
        'nf-mdi-dribbble_box',
        'nf-mdi-eventbrite',
        'nf-mdi-laptop_mac',
        'nf-oct-arrow_small_down',
        'nf-mdi-tumblr',
        'nf-mdi-periscope',
        'nf-mdi-bible',
        'nf-mdi-instapaper',
        'nf-oct-mail_reply',
        'nf-oct-gist',
        'nf-mdi-xbox_controller_battery_empty',
        'nf-mdi-edge',
        'nf-mdi-chart_scatterplot_hexbin',
        'nf-mdi-disqus_outline',
        'nf-mdi-hangouts',
        'nf-mdi-poll_box',
        'nf-mdi-phone_locked',
        'nf-mdi-face_profile',
        'nf-mdi-tablet_ipad',
        'nf-mdi-flash_circle',
        'nf-mdi-beats',
        'nf-mdi-linkedin_box',
        'nf-oct-dashboard',
        'nf-oct-arrow_small_right',
        'nf-mdi-windows',
        'nf-mdi-airplay',
        'nf-mdi-disk',
        'nf-mdi-xing',
        'nf-mdi-android_debug_bridge',
        'nf-mdi-account_settings_variant',
        'nf-mdi-xbox_controller_battery_alert',
        'nf-mdi-mixer',
        'nf-oct-file_pdf',
        'nf-oct-repo_force_push',
        'nf-mdi-google_plus_box',
        'nf-mdi-dictionary',
        'nf-oct-plus_small',
        'nf-mdi-twitter_retweet',
        'nf-mdi-circle',
        'nf-mdi-dribbble',
        'nf-mdi-untappd',
        'nf-mdi-xbox_controller_off',
        'nf-mdi-mail_ru',
        'nf-mdi-message_settings_variant',
        'nf-mdi-loop',
        'nf-mdi-bandcamp',
        'nf-mdi-nest_protect',
        'nf-oct-clippy',
        'nf-mdi-xbox_controller_battery_low',
        'nf-mdi-wunderlist',
        'nf-mdi-coins',
        'nf-oct-mail_read',
        'nf-oct-file_text',
        'nf-mdi-coin',
        'nf-mdi-martini',
        'nf-mdi-xbox_controller_battery_medium',
        'nf-mdi-stackexchange',
        'nf-mdi-medium',
        'nf-mdi-sort_numeric',
        'nf-mdi-email_secure',
        'nf-mdi-square_inc_cash',
        'nf-mdi-allo',
        'nf-mdi-book_multiple_variant',
        'nf-mdi-wiiu',
        'nf-mdi-do_not_disturb',
        'nf-mdi-hackernews',
        'nf-oct-text_size',
        'nf-mdi-pocket',
        'nf-mdi-fridge_filled_top',
        'nf-mdi-login_variant',
        'nf-mdi-lastfm',
        'nf-mdi-textbox_password',
        'nf-mdi-xda',
        'nf-mdi-vk',
        'nf-mdi-douban',
        'nf-mdi-artist',
        'nf-mdi-periodic_table_co2',
        'nf-mdi-contact_mail',
        'nf-mdi-fridge_filled_bottom',
        'nf-mdi-laptop_chromebook',
        'nf-mdi-verified',
        'nf-mdi-itunes',
        'nf-mdi-xamarin_outline',
        'nf-mdi-android_head',
        'nf-oct-paintcan',
        'nf-mdi-do_not_disturb_off',
        'nf-mdi-apple_mobileme',
        'nf-oct-watch',
        'nf-mdi-google_physical_web',
        'nf-oct-arrow_small_up',
        'nf-oct-no_newline',
        'nf-mdi-camcorder_box_off',
        'nf-oct-keyboard',
        'nf-mdi-cellphone_iphone',
        'nf-mdi-telegram',
        'nf-mdi-terrain',
        'nf-mdi-pharmacy',
        'nf-mdi-github_circle',
        'nf-mdi-face',
        'nf-mdi-tumblr_reblog',
        'nf-mdi-sort_alphabetical',
        'nf-mdi-textbox',
        'nf-mdi-google_pages',
        'nf-mdi-approval',
        'nf-mdi-bing',
        'nf-mdi-onenote',
        'nf-mdi-facebook_box',
        'nf-mdi-raspberrypi',
        'nf-mdi-audiobook',
        'nf-mdi-fridge_filled',
        'nf-mdi-language_python_text',
        'nf-mdi-tor',
        'nf-mdi-amazon_clouddrive',
        'nf-mdi-account_card_details',
        'nf-mdi-towing',
        'nf-oct-radio_tower',
        'nf-oct-cloud_download',
        'nf-mdi-blackberry',
        'nf-mdi-gradient',
        'nf-oct-arrow_small_left',
        'nf-mdi-weather_partlycloudy',
        'nf-mdi-xbox_controller'
        )


    # Resolve path(s)
    if ($PSCmdlet.ParameterSetName -eq 'Path') {
        $paths = Resolve-Path -Path $Path | Select-Object -ExpandProperty Path
    } elseif ($PSCmdlet.ParameterSetName -eq 'LiteralPath') {
        $paths = Resolve-Path -LiteralPath $LiteralPath | Select-Object -ExpandProperty Path
    }

    foreach ($resolvedPath in $paths) {
        if (Test-Path $resolvedPath) {
            $item = Get-Item -LiteralPath $resolvedPath

            $Theme = Get-Content $item -Raw

            foreach ($OldGlyph in $MigrationMap.Keys) {
                $Theme = $Theme -replace "('|`")$OldGlyph('|`")", "`$1$($MigrationMap[$OldGlyph])`$2"
            }

            $GlyphsWithNoAutoMigration = @()
            foreach ($OldGlyph in $RemovedGlyphs) {
                if ($Theme -match $OldGlyph) {
                    $GlyphsWithNoAutoMigration += $OldGlyph
                }
            }

            if ($GlyphsWithNoAutoMigration.Count -gt 0) {
                Write-Warning "The following glyphs were found to be present in your theme and do not have any auto-migration path. Please find a replacement for them yourself:`r`n`r`n$($GlyphsWithNoAutoMigration -join "`r`n")"
            }

            return $Theme
        } else {
            Write-Error "Path [$resolvedPath] is not valid."
        }
    }
}
function Remove-TerminalIconsTheme {
    <#
    .SYNOPSIS
        Removes a color or icon theme
    .DESCRIPTION
        Removes a given icon or color theme. In order to be removed, a theme must not be active.
    .PARAMETER IconTheme
        The icon theme to remove.
    .PARAMETER ColorTheme
        The color theme to remove.
    .PARAMETER Force
        Bypass confirmation messages.
    .EXAMPLE
        PS> Remove-TerminalIconsTheme -IconTheme MyAwesomeTheme

        Removes the icon theme 'MyAwesomeTheme'
    .EXAMPLE
        PS> Remove-TerminalIconsTheme -ColorTheme MyAwesomeTheme

        Removes the color theme 'MyAwesomeTheme'
    .INPUTS
        System.String

        The name of the color or icon theme to remove.
    .OUTPUTS
        None.
    .LINK
        Set-TerminalIconsTheme
    .LINK
        Add-TerminalIconsColorTheme
    .LINK
        Add-TerminalIconsIconTheme
    .LINK
        Get-TerminalIconsTheme
    .NOTES
        A theme must not be active in order to be removed.
    #>
    [cmdletbinding(SupportsShouldProcess)]
    param(
        [ArgumentCompleter({
            (Get-TerminalIconsIconTheme).Keys | Sort-Object
        })]
        [string]$IconTheme,

        [ArgumentCompleter({
            (Get-TerminalIconsColorTheme).Keys | Sort-Object
        })]
        [string]$ColorTheme,

        [switch]$Force
    )

    $currentTheme     = Get-TerminalIconsTheme
    $themeStoragePath = Get-ThemeStoragePath

    if ($ColorTheme) {
        if ($currentTheme.Color.Name -ne $ColorTheme) {
            $themePath = Join-Path $themeStoragePath "$($ColorTheme)_color.xml"
            if (-not (Test-Path $themePath)) {
                Write-Error "Could not find theme file [$themePath]"
            } else {
                if ($Force -or $PSCmdlet.ShouldProcess($ColorTheme, 'Remove color theme')) {
                    if ($userThemeData.Themes.Color.ContainsKey($ColorTheme)) {
                        $userThemeData.Themes.Color.Remove($ColorTheme)
                    } else {
                        # We shouldn't be here
                        Write-Error "Color theme [$ColorTheme] is not registered."
                    }
                    Remove-Item $themePath -Force
                }
            }
        } else {
            Write-Error ("Color theme [{0}] is active. Please select another theme before removing this it." -f $ColorTheme)
        }
    }

    if ($IconTheme) {
        if ($currentTheme.Icon.Name -ne $IconTheme) {
            $themePath = Join-Path $themeStoragePath "$($IconTheme)_icon.xml"
            if (-not (Test-Path $themePath)) {
                Write-Error "Could not find theme file [$themePath]"
            } else {
                if ($Force -or $PSCmdlet.ShouldProcess($ColorTheme, 'Remove icon theme')) {
                    if ($userThemeData.Themes.Icon.ContainsKey($IconTheme)) {
                        $userThemeData.Themes.Icon.Remove($IconTheme)
                    } else {
                        # We shouldn't be here
                        Write-Error "Icon theme [$IconTheme] is not registered."
                    }
                    Remove-Item $themePath -Force
                }
            }
        } else {
            Write-Error ("Icon theme [{0}] is active. Please select another theme before removing this it." -f $IconTheme)
        }
    }
}
function Set-TerminalIconsIcon {
    <#
    .SYNOPSIS
        Set a specific icon in the current Terminal-Icons icon theme or allows
        swapping one glyph for another.
    .DESCRIPTION
        Set the Terminal-Icons icon for a specific file/directory or glyph to a
        named glyph.

        Also allows all uses of a specific glyph to be replaced with a different
        glyph.
    .PARAMETER Directory
        The well-known directory name to match for the icon.
    .PARAMETER FileName
        The well-known file name to match for the icon.
    .PARAMETER FileExtension
        The file extension to match for the icon.
    .PARAMETER NewGlyph
        The name of the new glyph to use when swapping.
    .PARAMETER Glyph
        The name of the glyph to use; or, when swapping glyphs, the name of the
        glyph you want to change.
    .PARAMETER Force
        Bypass confirmation messages.
    .EXAMPLE
        PS> Set-TerminalIconsIcon -FileName "README.md" -Glyph "nf-fa-file_text"

        Set README.md files to display a text file icon.
    .EXAMPLE
        PS> Set-TerminalIconsIcon -FileExtension ".xml" -Glyph "nf-md-xml"

        Set XML files to display an XML file icon.
    .EXAMPLE
        PS> Set-TerminalIconsIcon -Directory ".github" -Glyph "nf-dev-github_alt"

        Set directories named ".github" to display an Octocat face icon.
    .EXAMPLE
        PS> Set-TerminalIconsIcon -Glyph "nf-md-xml" -NewGlyph "nf-md-xml"

        Changes all uses of the "nf-md-xml" double-wide glyph to be the "nf-md-xml"
        single-width XML file glyph.
    .INPUTS
        None.

        The command does not accept pipeline input.
    .OUTPUTS
        None.
    .LINK
        Get-TerminalIconsIconTheme
    .LINK
        Get-TerminalIconsTheme
    .LINK
        Get-TerminalIconsGlyphs
    #>
    [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', '', Justification = "ArgumentCompleter parameters don't all get used.")]
    [cmdletbinding(SupportsShouldProcess, DefaultParameterSetName = "FileExtension")]
    param(
        [Parameter(ParameterSetName = "Directory", Mandatory)]
        [ArgumentCompleter( {
                param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameters)
                (Get-TerminalIconsIconTheme).Values.Types.Directories.WellKnown.Keys | Where-Object { $_ -like "$wordToComplete*" } | Sort-Object
            })]
        [ValidateNotNullOrEmpty()]
        [string]$Directory,

        [Parameter(ParameterSetName = "FileName", Mandatory)]
        [ArgumentCompleter( {
                param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameters)
                (Get-TerminalIconsIconTheme).Values.Types.Files.WellKnown.Keys | Where-Object { $_ -like "$wordToComplete*" } | Sort-Object
            })]
        [ValidateNotNullOrEmpty()]
        [string]$FileName,

        [Parameter(ParameterSetName = "FileExtension", Mandatory)]
        [ArgumentCompleter( {
                param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameters)
                (Get-TerminalIconsIconTheme).Values.Types.Files.Keys | Where-Object { $_.StartsWith(".") -and $_ -like "$wordToComplete*" } | Sort-Object
            })]
        [ValidatePattern("^\.")]
        [string]$FileExtension,

        [Parameter(ParameterSetName = "SwapGlyph", Mandatory)]
        [ArgumentCompleter( {
                param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameters)
                (Get-TerminalIconsGlyphs).Keys | Where-Object { $_ -like "*$wordToComplete*" } | Sort-Object
            })]
        [ValidateNotNullOrEmpty()]
        [string]$NewGlyph,

        [Parameter(Mandatory)]
        [ArgumentCompleter( {
                param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameters)
                (Get-TerminalIconsGlyphs).Keys | Where-Object { $_ -like "*$wordToComplete*" } | Sort-Object
            })]
        [ValidateNotNullOrEmpty()]
        [string]$Glyph,

        [switch]$Force
    )

    If($PSCmdlet.ParameterSetName -eq "Directory") {
        If ($Force -or $PSCmdlet.ShouldProcess("$Directory = $Glyph", 'Set well-known directory icon')) {
            (Get-TerminalIconsIconTheme).Values.Types.Directories.WellKnown[$Directory] = $Glyph
        }
    }
    ElseIf ($PSCmdlet.ParameterSetName -eq "FileName") {
        If ($Force -or $PSCmdlet.ShouldProcess("$FileName = $Glyph", 'Set well-known file name icon')) {
            (Get-TerminalIconsIconTheme).Values.Types.Files.WellKnown[$FileName] = $Glyph
        }
    }
    ElseIf ($PSCmdlet.ParameterSetName -eq "FileExtension") {
        If ($Force -or $PSCmdlet.ShouldProcess("$FileExtension = $Glyph", 'Set file extension icon')) {
            (Get-TerminalIconsIconTheme).Values.Types.Files[$FileExtension] = $Glyph
        }
    }
    ElseIf ($PSCmdlet.ParameterSetName -eq "SwapGlyph") {
        If ($Force -or $PSCmdlet.ShouldProcess("$Glyph to $NewGlyph", 'Swap glyph usage')) {
            # Directories
            $toModify = (Get-TerminalIconsTheme).Icon.Types.Directories.WellKnown
            $keys = $toModify.Keys | Where-Object { $toModify[$_] -eq $Glyph }
            $keys | ForEach-Object { $toModify[$_] = $NewGlyph }

            # Files
            $toModify = (Get-TerminalIconsTheme).Icon.Types.Files.WellKnown
            $keys = $toModify.Keys | Where-Object { $toModify[$_] -eq $Glyph }
            $keys | ForEach-Object { $toModify[$_] = $NewGlyph }

            # Extensions
            $toModify = (Get-TerminalIconsTheme).Icon.Types.Files
            $keys = $toModify.Keys | Where-Object { $_.StartsWith(".") -and $toModify[$_] -eq $Glyph }
            $keys | ForEach-Object { $toModify[$_] = $NewGlyph }
        }
    }
}
function Set-TerminalIconsTheme {
    <#
    .SYNOPSIS
        Set the Terminal-Icons color or icon theme
    .DESCRIPTION
        Set the Terminal-Icons color or icon theme to the given name.
    .PARAMETER ColorTheme
        The name of a registered color theme to use.
    .PARAMETER IconTheme
        The name of a registered icon theme to use.
    .PARAMETER DisableColorTheme
        Disables custom colors and uses default terminal color.
    .PARAMETER DisableIconTheme
        Disables custom icons and shows only shows the directory or file name.
    .PARAMETER Force
        Bypass confirmation messages.
    .EXAMPLE
        PS> Set-TerminalIconsTheme -ColorTheme devblackops

        Set the color theme to 'devblackops'.
    .EXAMPLE
        PS> Set-TerminalIconsTheme -IconTheme devblackops

        Set the icon theme to 'devblackops'.
    .EXAMPLE
        PS> Set-TerminalIconsTheme -DisableIconTheme

        Disable Terminal-Icons custom icons and only show custom colors.
    .EXAMPLE
        PS> Set-TerminalIconsTheme -DisableColorTheme

        Disable Terminal-Icons custom colors and only show custom icons.
    .INPUTS
        System.String

        The name of the color or icon theme to use.
    .OUTPUTS
        None.
    .LINK
        Get-TerminalIconsColorTheme
    .LINK
        Get-TerminalIconsIconTheme
    .LINK
        Get-TerminalIconsTheme
    .NOTES
        This function supercedes Set-TerminalIconsColorTheme and Set-TerminalIconsIconTheme. They have been deprecated.
    #>
    [cmdletbinding(SupportsShouldProcess, DefaultParameterSetName = 'theme')]
    param(
        [Parameter(ParameterSetName = 'theme')]
        [ArgumentCompleter({
            (Get-TerminalIconsIconTheme).Keys | Sort-Object
        })]
        [string]$IconTheme,

        [Parameter(ParameterSetName = 'theme')]
        [ArgumentCompleter({
            (Get-TerminalIconsColorTheme).Keys | Sort-Object
        })]
        [string]$ColorTheme,

        [Parameter(ParameterSetName = 'notheme')]
        [switch]$DisableColorTheme,

        [Parameter(ParameterSetName = 'notheme')]
        [switch]$DisableIconTheme,

        [switch]$Force
    )

    if ($DisableIconTheme.IsPresent) {
        Set-Theme -Name $null -Type Icon
    }

    if ($DisableColorTheme.IsPresent) {
        Set-Theme -Name $null -Type Color
    }

    if ($ColorTheme) {
        if ($Force -or $PSCmdlet.ShouldProcess($ColorTheme, 'Set color theme')) {
            Set-Theme -Name $ColorTheme -Type Color
        }
    }

    if ($IconTheme) {
        if ($Force -or $PSCmdlet.ShouldProcess($IconTheme, 'Set icon theme')) {
            Set-Theme -Name $IconTheme -Type Icon
        }
    }
}

function Show-TerminalIconsTheme {
    <#
    .SYNOPSIS
        List example directories and files to show the currently applied color and icon themes.
    .DESCRIPTION
        List example directories and files to show the currently applied color and icon themes.
        The directory/file objects show are in memory only, they are not written to the filesystem.
    .PARAMETER ColorTheme
        The color theme to use for examples
    .PARAMETER IconTheme
        The icon theme to use for examples
    .EXAMPLE
        Show-TerminalIconsTheme

        List example directories and files to show the currently applied color and icon themes.
    .INPUTS
        None.
    .OUTPUTS
        System.IO.DirectoryInfo
    .OUTPUTS
        System.IO.FileInfo
    .NOTES
        Example directory and file objects only exist in memory. They are not written to the filesystem.
    .LINK
        Get-TerminalIconsColorTheme
    .LINK
        Get-TerminalIconsIconTheme
    .LINK
        Get-TerminalIconsTheme
    #>
    [CmdletBinding()]
    param()

    $theme = Get-TerminalIconsTheme

    # Use the default theme if the icon theme has been disabled
    if ($theme.Icon) {
        $themeName = $theme.Icon.Name
    } else {
        $themeName = $script:defaultTheme
    }

    $directories = @(
        [IO.DirectoryInfo]::new('ExampleFolder')
        $script:userThemeData.Themes.Icon[$themeName].Types.Directories.WellKnown.Keys.ForEach({
            [IO.DirectoryInfo]::new($_)
        })
    )
    $wellKnownFiles = @(
        [IO.FileInfo]::new('ExampleFile')
        $script:userThemeData.Themes.Icon[$themeName].Types.Files.WellKnown.Keys.ForEach({
            [IO.FileInfo]::new($_)
        })
    )

    $extensions = $script:userThemeData.Themes.Icon[$themeName].Types.Files.Keys.Where({$_ -ne 'WellKnown'}).ForEach({
        [IO.FileInfo]::new("example$_")
    })

    $directories + $wellKnownFiles + $extensions | Sort-Object | Format-TerminalIcons
}
# Dot source public/private functions
# $public  = @(Get-ChildItem -Path ([IO.Path]::Combine($PSScriptRoot, 'Public/*.ps1'))  -Recurse -ErrorAction Stop)
# $private = @(Get-ChildItem -Path ([IO.Path]::Combine($PSScriptRoot, 'Private/*.ps1')) -Recurse -ErrorAction Stop)
# @($public + $private).ForEach({
#     try {
#         . $_.FullName
#     } catch {
#         throw $_
#         $PSCmdlet.ThrowTerminatingError("Unable to dot source [$($import.FullName)]")
#     }
# })

$moduleRoot    = $PSScriptRoot
$glyphs        = . $moduleRoot/Data/glyphs.ps1
$escape        = [char]27
$colorReset    = "${escape}[0m"
$defaultTheme  = 'devblackops'
$userThemePath = Get-ThemeStoragePath
$userThemeData = @{
    CurrentIconTheme  = $null
    CurrentColorTheme = $null
    Themes = @{
        Color = @{}
        Icon  = @{}
    }
}

# Import builtin icon/color themes and convert colors to escape sequences
$colorSequences = @{}
$iconThemes     = Import-IconTheme
$colorThemes    = Import-ColorTheme
$colorThemes.GetEnumerator().ForEach({
    $colorSequences[$_.Name] = ConvertTo-ColorSequence -ColorData $_.Value
})

# Load or create default prefs
$prefs = Import-Preferences

# Set current theme
$userThemeData.CurrentIconTheme  = $prefs.CurrentIconTheme
$userThemeData.CurrentColorTheme = $prefs.CurrentColorTheme

# Load user icon and color themes
# We're ignoring the old 'theme.xml' from Terimal-Icons v0.3.1 and earlier
(Get-ChildItem $userThemePath -Filter '*_icon.xml').ForEach({
    $userIconTheme = Import-CliXml -Path $_.FullName
    $userThemeData.Themes.Icon[$userIconTheme.Name] = $userIconTheme
})
(Get-ChildItem $userThemePath -Filter '*_color.xml').ForEach({
    $userColorTheme = Import-CliXml -Path $_.FullName
    $userThemeData.Themes.Color[$userColorTheme.Name] = $userColorTheme
    $colorSequences[$userColorTheme.Name] = ConvertTo-ColorSequence -ColorData $userThemeData.Themes.Color[$userColorTheme.Name]
})

# Update the builtin themes
$colorThemes.GetEnumerator().ForEach({
    $userThemeData.Themes.Color[$_.Name] = $_.Value
})
$iconThemes.GetEnumerator().ForEach({
    $userThemeData.Themes.Icon[$_.Name] = $_.Value
})

# Save all themes to theme path
$userThemeData.Themes.Color.GetEnumerator().ForEach({
    $colorThemePath = Join-Path $userThemePath "$($_.Name)_color.xml"
    $_.Value | Export-Clixml -Path $colorThemePath -Force
})
$userThemeData.Themes.Icon.GetEnumerator().ForEach({
    $iconThemePath = Join-Path $userThemePath "$($_.Name)_icon.xml"
    $_.Value | Export-Clixml -Path $iconThemePath -Force
})

Save-Preferences -Preferences $prefs

# Export-ModuleMember -Function $public.Basename

Update-FormatData -Prepend ([IO.Path]::Combine($moduleRoot, 'Terminal-Icons.format.ps1xml'))

tools\chocolateyUninstall.ps1
$ErrorActionPreference = 'Stop'

$toolsDir = Split-Path -parent $MyInvocation.MyCommand.Definition
$moduleName = 'terminal-icons'  # this may be different from the package name and different case
$savedParamsPath = Join-Path $toolsDir -ChildPath 'parameters.saved'

if (Test-Path -Path $savedParamsPath) {
    $uninstallEdition = Get-Content -Path $savedParamsPath
}
else {
    $uninstallEdition = 'Desktop'
}

ForEach ($edition in $uninstallEdition) {
    switch ($edition) {
        'Desktop' {
            $sourcePath = Join-Path -Path $env:ProgramFiles -ChildPath "WindowsPowerShell\Modules\$moduleName"
            break
        }
        'Core' {
            $sourcePath = Join-Path -Path $env:ProgramFiles -ChildPath "PowerShell\Modules\$moduleName"
            break
        }
    }

    Write-Verbose "Removing all version of '$moduleName' from '$sourcePath'."
    Remove-Item -Path $sourcePath -Recurse -Force -ErrorAction SilentlyContinue
}

# remove path of module from $env:PSModulePath
if ($PSVersionTable.PSVersion.Major -lt 4) {
    $modulePaths = [Environment]::GetEnvironmentVariable('PSModulePath', 'Machine') -split ';'

    Write-Verbose "Removing '$sourcePath' from PSModulePath."
    $newModulePath = $modulePaths | Where-Object { $_ -ne $sourcePath }

    [Environment]::SetEnvironmentVariable('PSModulePath', $newModulePath, 'Machine')
    $env:PSModulePath = $newModulePath
}
tools\terminal-icons\Data\glyphs.ps1
@{
    'nf-cod-account'                                 = ''
    'nf-cod-activate_breakpoints'                    = ''
    'nf-cod-add'                                     = ''
    'nf-cod-archive'                                 = ''
    'nf-cod-arrow_both'                              = ''
    'nf-cod-arrow_down'                              = ''
    'nf-cod-arrow_left'                              = ''
    'nf-cod-arrow_right'                             = ''
    'nf-cod-arrow_small_down'                        = ''
    'nf-cod-arrow_small_left'                        = ''
    'nf-cod-arrow_small_right'                       = ''
    'nf-cod-arrow_small_up'                          = ''
    'nf-cod-arrow_swap'                              = ''
    'nf-cod-arrow_up'                                = ''
    'nf-cod-azure'                                   = ''
    'nf-cod-azure_devops'                            = ''
    'nf-cod-beaker'                                  = ''
    'nf-cod-beaker_stop'                             = ''
    'nf-cod-bell'                                    = ''
    'nf-cod-bell_dot'                                = ''
    'nf-cod-bold'                                    = ''
    'nf-cod-book'                                    = ''
    'nf-cod-bookmark'                                = ''
    'nf-cod-bracket_dot'                             = ''
    'nf-cod-bracket_error'                           = ''
    'nf-cod-briefcase'                               = ''
    'nf-cod-broadcast'                               = ''
    'nf-cod-browser'                                 = ''
    'nf-cod-bug'                                     = ''
    'nf-cod-calendar'                                = ''
    'nf-cod-call_incoming'                           = ''
    'nf-cod-call_outgoing'                           = ''
    'nf-cod-case_sensitive'                          = ''
    'nf-cod-check'                                   = ''
    'nf-cod-check_all'                               = ''
    'nf-cod-checklist'                               = ''
    'nf-cod-chevron_down'                            = ''
    'nf-cod-chevron_left'                            = ''
    'nf-cod-chevron_right'                           = ''
    'nf-cod-chevron_up'                              = ''
    'nf-cod-chrome_close'                            = ''
    'nf-cod-chrome_maximize'                         = ''
    'nf-cod-chrome_minimize'                         = ''
    'nf-cod-chrome_restore'                          = ''
    'nf-cod-circle'                                  = ''
    'nf-cod-circle_filled'                           = ''
    'nf-cod-circle_large'                            = ''
    'nf-cod-circle_large_filled'                     = ''
    'nf-cod-circle_slash'                            = ''
    'nf-cod-circle_small_filled'                     = ''
    'nf-cod-circuit_board'                           = ''
    'nf-cod-clear_all'                               = ''
    'nf-cod-clippy'                                  = ''
    'nf-cod-close'                                   = ''
    'nf-cod-close_all'                               = ''
    'nf-cod-cloud'                                   = ''
    'nf-cod-cloud_download'                          = ''
    'nf-cod-cloud_upload'                            = ''
    'nf-cod-code'                                    = ''
    'nf-cod-collapse_all'                            = ''
    'nf-cod-color_mode'                              = ''
    'nf-cod-combine'                                 = ''
    'nf-cod-comment'                                 = ''
    'nf-cod-comment_discussion'                      = ''
    'nf-cod-compass'                                 = ''
    'nf-cod-compass_active'                          = ''
    'nf-cod-compass_dot'                             = ''
    'nf-cod-copy'                                    = ''
    'nf-cod-credit_card'                             = ''
    'nf-cod-dash'                                    = ''
    'nf-cod-dashboard'                               = ''
    'nf-cod-database'                                = ''
    'nf-cod-debug'                                   = ''
    'nf-cod-debug_all'                               = ''
    'nf-cod-debug_alt'                               = ''
    'nf-cod-debug_alt_small'                         = ''
    'nf-cod-debug_breakpoint_conditional'            = ''
    'nf-cod-debug_breakpoint_conditional_unverified' = ''
    'nf-cod-debug_breakpoint_data'                   = ''
    'nf-cod-debug_breakpoint_data_unverified'        = ''
    'nf-cod-debug_breakpoint_function'               = ''
    'nf-cod-debug_breakpoint_function_unverified'    = ''
    'nf-cod-debug_breakpoint_log'                    = ''
    'nf-cod-debug_breakpoint_log_unverified'         = ''
    'nf-cod-debug_breakpoint_unsupported'            = ''
    'nf-cod-debug_console'                           = ''
    'nf-cod-debug_continue'                          = ''
    'nf-cod-debug_continue_small'                    = ''
    'nf-cod-debug_coverage'                          = ''
    'nf-cod-debug_disconnect'                        = ''
    'nf-cod-debug_line_by_line'                      = ''
    'nf-cod-debug_pause'                             = ''
    'nf-cod-debug_rerun'                             = ''
    'nf-cod-debug_restart'                           = ''
    'nf-cod-debug_restart_frame'                     = ''
    'nf-cod-debug_reverse_continue'                  = ''
    'nf-cod-debug_stackframe'                        = ''
    'nf-cod-debug_stackframe_active'                 = ''
    'nf-cod-debug_start'                             = ''
    'nf-cod-debug_step_back'                         = ''
    'nf-cod-debug_step_into'                         = ''
    'nf-cod-debug_step_out'                          = ''
    'nf-cod-debug_step_over'                         = ''
    'nf-cod-debug_stop'                              = ''
    'nf-cod-desktop_download'                        = ''
    'nf-cod-device_camera'                           = ''
    'nf-cod-device_camera_video'                     = ''
    'nf-cod-device_mobile'                           = ''
    'nf-cod-diff'                                    = ''
    'nf-cod-diff_added'                              = ''
    'nf-cod-diff_ignored'                            = ''
    'nf-cod-diff_modified'                           = ''
    'nf-cod-diff_removed'                            = ''
    'nf-cod-diff_renamed'                            = ''
    'nf-cod-discard'                                 = ''
    'nf-cod-edit'                                    = ''
    'nf-cod-editor_layout'                           = ''
    'nf-cod-ellipsis'                                = ''
    'nf-cod-empty_window'                            = ''
    'nf-cod-error'                                   = ''
    'nf-cod-exclude'                                 = ''
    'nf-cod-expand_all'                              = ''
    'nf-cod-export'                                  = ''
    'nf-cod-extensions'                              = ''
    'nf-cod-eye'                                     = ''
    'nf-cod-eye_closed'                              = ''
    'nf-cod-feedback'                                = ''
    'nf-cod-file'                                    = ''
    'nf-cod-file_binary'                             = ''
    'nf-cod-file_code'                               = ''
    'nf-cod-file_media'                              = ''
    'nf-cod-file_pdf'                                = ''
    'nf-cod-file_submodule'                          = ''
    'nf-cod-file_symlink_directory'                  = ''
    'nf-cod-file_symlink_file'                       = ''
    'nf-cod-file_zip'                                = ''
    'nf-cod-files'                                   = ''
    'nf-cod-filter'                                  = ''
    'nf-cod-filter_filled'                           = ''
    'nf-cod-flame'                                   = ''
    'nf-cod-fold'                                    = ''
    'nf-cod-fold_down'                               = ''
    'nf-cod-fold_up'                                 = ''
    'nf-cod-folder'                                  = ''
    'nf-cod-folder_active'                           = ''
    'nf-cod-folder_library'                          = ''
    'nf-cod-folder_opened'                           = ''
    'nf-cod-gear'                                    = ''
    'nf-cod-gift'                                    = ''
    'nf-cod-gist_secret'                             = ''
    'nf-cod-git_commit'                              = ''
    'nf-cod-git_compare'                             = ''
    'nf-cod-git_merge'                               = ''
    'nf-cod-git_pull_request'                        = ''
    'nf-cod-git_pull_request_closed'                 = ''
    'nf-cod-git_pull_request_create'                 = ''
    'nf-cod-git_pull_request_draft'                  = ''
    'nf-cod-github'                                  = ''
    'nf-cod-github_action'                           = ''
    'nf-cod-github_alt'                              = ''
    'nf-cod-github_inverted'                         = ''
    'nf-cod-globe'                                   = ''
    'nf-cod-go_to_file'                              = ''
    'nf-cod-grabber'                                 = ''
    'nf-cod-graph'                                   = ''
    'nf-cod-graph_left'                              = ''
    'nf-cod-graph_line'                              = ''
    'nf-cod-graph_scatter'                           = ''
    'nf-cod-gripper'                                 = ''
    'nf-cod-group_by_ref_type'                       = ''
    'nf-cod-heart'                                   = ''
    'nf-cod-history'                                 = ''
    'nf-cod-home'                                    = ''
    'nf-cod-horizontal_rule'                         = ''
    'nf-cod-hubot'                                   = ''
    'nf-cod-inbox'                                   = ''
    'nf-cod-info'                                    = ''
    'nf-cod-inspect'                                 = ''
    'nf-cod-issue_draft'                             = ''
    'nf-cod-issue_reopened'                          = ''
    'nf-cod-issues'                                  = ''
    'nf-cod-italic'                                  = ''
    'nf-cod-jersey'                                  = ''
    'nf-cod-json'                                    = ''
    'nf-cod-kebab_vertical'                          = ''
    'nf-cod-key'                                     = ''
    'nf-cod-law'                                     = ''
    'nf-cod-layers'                                  = ''
    'nf-cod-layers_active'                           = ''
    'nf-cod-layers_dot'                              = ''
    'nf-cod-layout'                                  = ''
    'nf-cod-library'                                 = ''
    'nf-cod-lightbulb'                               = ''
    'nf-cod-lightbulb_autofix'                       = ''
    'nf-cod-link'                                    = ''
    'nf-cod-link_external'                           = ''
    'nf-cod-list_filter'                             = ''
    'nf-cod-list_flat'                               = ''
    'nf-cod-list_ordered'                            = ''
    'nf-cod-list_selection'                          = ''
    'nf-cod-list_tree'                               = ''
    'nf-cod-list_unordered'                          = ''
    'nf-cod-live_share'                              = ''
    'nf-cod-loading'                                 = ''
    'nf-cod-location'                                = ''
    'nf-cod-lock'                                    = ''
    'nf-cod-lock_small'                              = ''
    'nf-cod-magnet'                                  = ''
    'nf-cod-mail'                                    = ''
    'nf-cod-mail_read'                               = ''
    'nf-cod-markdown'                                = ''
    'nf-cod-megaphone'                               = ''
    'nf-cod-mention'                                 = ''
    'nf-cod-menu'                                    = ''
    'nf-cod-merge'                                   = ''
    'nf-cod-milestone'                               = ''
    'nf-cod-mirror'                                  = ''
    'nf-cod-mortar_board'                            = ''
    'nf-cod-move'                                    = ''
    'nf-cod-multiple_windows'                        = ''
    'nf-cod-mute'                                    = ''
    'nf-cod-new_file'                                = ''
    'nf-cod-new_folder'                              = ''
    'nf-cod-newline'                                 = ''
    'nf-cod-no_newline'                              = ''
    'nf-cod-note'                                    = ''
    'nf-cod-notebook'                                = ''
    'nf-cod-notebook_template'                       = ''
    'nf-cod-octoface'                                = ''
    'nf-cod-open_preview'                            = ''
    'nf-cod-organization'                            = ''
    'nf-cod-output'                                  = ''
    'nf-cod-package'                                 = ''
    'nf-cod-paintcan'                                = ''
    'nf-cod-pass'                                    = ''
    'nf-cod-pass_filled'                             = ''
    'nf-cod-person'                                  = ''
    'nf-cod-person_add'                              = ''
    'nf-cod-pie_chart'                               = ''
    'nf-cod-pin'                                     = ''
    'nf-cod-pinned'                                  = ''
    'nf-cod-pinned_dirty'                            = ''
    'nf-cod-play'                                    = ''
    'nf-cod-play_circle'                             = ''
    'nf-cod-plug'                                    = ''
    'nf-cod-preserve_case'                           = ''
    'nf-cod-preview'                                 = ''
    'nf-cod-primitive_square'                        = ''
    'nf-cod-project'                                 = ''
    'nf-cod-pulse'                                   = ''
    'nf-cod-question'                                = ''
    'nf-cod-quote'                                   = ''
    'nf-cod-radio_tower'                             = ''
    'nf-cod-reactions'                               = ''
    'nf-cod-record'                                  = ''
    'nf-cod-record_keys'                             = ''
    'nf-cod-redo'                                    = ''
    'nf-cod-references'                              = ''
    'nf-cod-refresh'                                 = ''
    'nf-cod-regex'                                   = ''
    'nf-cod-remote'                                  = ''
    'nf-cod-remote_explorer'                         = ''
    'nf-cod-remove'                                  = ''
    'nf-cod-replace'                                 = ''
    'nf-cod-replace_all'                             = ''
    'nf-cod-reply'                                   = ''
    'nf-cod-repo'                                    = ''
    'nf-cod-repo_clone'                              = ''
    'nf-cod-repo_force_push'                         = ''
    'nf-cod-repo_forked'                             = ''
    'nf-cod-repo_pull'                               = ''
    'nf-cod-repo_push'                               = ''
    'nf-cod-report'                                  = ''
    'nf-cod-request_changes'                         = ''
    'nf-cod-rocket'                                  = ''
    'nf-cod-root_folder'                             = ''
    'nf-cod-root_folder_opened'                      = ''
    'nf-cod-rss'                                     = ''
    'nf-cod-ruby'                                    = ''
    'nf-cod-run_above'                               = ''
    'nf-cod-run_all'                                 = ''
    'nf-cod-run_below'                               = ''
    'nf-cod-run_errors'                              = ''
    'nf-cod-save'                                    = ''
    'nf-cod-save_all'                                = ''
    'nf-cod-save_as'                                 = ''
    'nf-cod-screen_full'                             = ''
    'nf-cod-screen_normal'                           = ''
    'nf-cod-search'                                  = ''
    'nf-cod-search_stop'                             = ''
    'nf-cod-server'                                  = ''
    'nf-cod-server_environment'                      = ''
    'nf-cod-server_process'                          = ''
    'nf-cod-settings'                                = ''
    'nf-cod-settings_gear'                           = ''
    'nf-cod-shield'                                  = ''
    'nf-cod-sign_in'                                 = ''
    'nf-cod-sign_out'                                = ''
    'nf-cod-smiley'                                  = ''
    'nf-cod-sort_precedence'                         = ''
    'nf-cod-source_control'                          = ''
    'nf-cod-split_horizontal'                        = ''
    'nf-cod-split_vertical'                          = ''
    'nf-cod-squirrel'                                = ''
    'nf-cod-star_empty'                              = ''
    'nf-cod-star_full'                               = ''
    'nf-cod-star_half'                               = ''
    'nf-cod-stop_circle'                             = ''
    'nf-cod-symbol_array'                            = ''
    'nf-cod-symbol_boolean'                          = ''
    'nf-cod-symbol_class'                            = ''
    'nf-cod-symbol_color'                            = ''
    'nf-cod-symbol_constant'                         = ''
    'nf-cod-symbol_enum'                             = ''
    'nf-cod-symbol_enum_member'                      = ''
    'nf-cod-symbol_event'                            = ''
    'nf-cod-symbol_field'                            = ''
    'nf-cod-symbol_file'                             = ''
    'nf-cod-symbol_interface'                        = ''
    'nf-cod-symbol_key'                              = ''
    'nf-cod-symbol_keyword'                          = ''
    'nf-cod-symbol_method'                           = ''
    'nf-cod-symbol_misc'                             = ''
    'nf-cod-symbol_namespace'                        = ''
    'nf-cod-symbol_numeric'                          = ''
    'nf-cod-symbol_operator'                         = ''
    'nf-cod-symbol_parameter'                        = ''
    'nf-cod-symbol_property'                         = ''
    'nf-cod-symbol_ruler'                            = ''
    'nf-cod-symbol_snippet'                          = ''
    'nf-cod-symbol_string'                           = ''
    'nf-cod-symbol_structure'                        = ''
    'nf-cod-symbol_variable'                         = ''
    'nf-cod-sync'                                    = ''
    'nf-cod-sync_ignored'                            = ''
    'nf-cod-table'                                   = ''
    'nf-cod-tag'                                     = ''
    'nf-cod-tasklist'                                = ''
    'nf-cod-telescope'                               = ''
    'nf-cod-terminal'                                = ''
    'nf-cod-terminal_bash'                           = ''
    'nf-cod-terminal_cmd'                            = ''
    'nf-cod-terminal_debian'                         = ''
    'nf-cod-terminal_linux'                          = ''
    'nf-cod-terminal_powershell'                     = ''
    'nf-cod-terminal_tmux'                           = ''
    'nf-cod-terminal_ubuntu'                         = ''
    'nf-cod-text_size'                               = ''
    'nf-cod-three_bars'                              = ''
    'nf-cod-thumbsdown'                              = ''
    'nf-cod-thumbsup'                                = ''
    'nf-cod-tools'                                   = ''
    'nf-cod-trash'                                   = ''
    'nf-cod-triangle_down'                           = ''
    'nf-cod-triangle_left'                           = ''
    'nf-cod-triangle_right'                          = ''
    'nf-cod-triangle_up'                             = ''
    'nf-cod-twitter'                                 = ''
    'nf-cod-type_hierarchy'                          = ''
    'nf-cod-type_hierarchy_sub'                      = ''
    'nf-cod-type_hierarchy_super'                    = ''
    'nf-cod-unfold'                                  = ''
    'nf-cod-ungroup_by_ref_type'                     = ''
    'nf-cod-unlock'                                  = ''
    'nf-cod-unmute'                                  = ''
    'nf-cod-unverified'                              = ''
    'nf-cod-variable_group'                          = ''
    'nf-cod-verified'                                = ''
    'nf-cod-verified_filled'                         = ''
    'nf-cod-versions'                                = ''
    'nf-cod-vm'                                      = ''
    'nf-cod-vm_active'                               = ''
    'nf-cod-vm_connect'                              = ''
    'nf-cod-vm_outline'                              = ''
    'nf-cod-vm_running'                              = ''
    'nf-cod-wand'                                    = ''
    'nf-cod-warning'                                 = ''
    'nf-cod-watch'                                   = ''
    'nf-cod-whitespace'                              = ''
    'nf-cod-whole_word'                              = ''
    'nf-cod-window'                                  = ''
    'nf-cod-word_wrap'                               = ''
    'nf-cod-workspace_trusted'                       = ''
    'nf-cod-workspace_unknown'                       = ''
    'nf-cod-workspace_untrusted'                     = ''
    'nf-cod-zoom_in'                                 = ''
    'nf-cod-zoom_out'                                = ''
    'nf-custom-asm'                                  = ''
    'nf-custom-c'                                    = ''
    'nf-custom-cpp'                                  = ''
    'nf-custom-crystal'                              = ''
    'nf-custom-default'                              = ''
    'nf-custom-electron'                             = ''
    'nf-custom-elixir'                               = ''
    'nf-custom-elm'                                  = ''
    'nf-custom-emacs'                                = ''
    'nf-custom-folder'                               = ''
    'nf-custom-folder_config'                        = ''
    'nf-custom-folder_git'                           = ''
    'nf-custom-folder_git_branch'                    = ''
    'nf-custom-folder_github'                        = ''
    'nf-custom-folder_npm'                           = ''
    'nf-custom-folder_open'                          = ''
    'nf-custom-go'                                   = ''
    'nf-custom-home'                                 = ''
    'nf-custom-kotlin'                               = ''
    'nf-custom-msdos'                                = ''
    'nf-custom-orgmode'                              = ''
    'nf-custom-play_arrow'                           = ''
    'nf-custom-puppet'                               = ''
    'nf-custom-purescript'                           = ''
    'nf-custom-v_lang'                               = ''
    'nf-custom-vim'                                  = ''
    'nf-custom-windows'                              = ''
    'nf-dev-android'                                 = ''
    'nf-dev-angular'                                 = ''
    'nf-dev-appcelerator'                            = ''
    'nf-dev-apple'                                   = ''
    'nf-dev-appstore'                                = ''
    'nf-dev-aptana'                                  = ''
    'nf-dev-asterisk'                                = ''
    'nf-dev-atlassian'                               = ''
    'nf-dev-atom'                                    = ''
    'nf-dev-aws'                                     = ''
    'nf-dev-backbone'                                = ''
    'nf-dev-bing_small'                              = ''
    'nf-dev-bintray'                                 = ''
    'nf-dev-bitbucket'                               = ''
    'nf-dev-blackberry'                              = ''
    'nf-dev-bootstrap'                               = ''
    'nf-dev-bower'                                   = ''
    'nf-dev-brackets'                                = ''
    'nf-dev-bugsense'                                = ''
    'nf-dev-celluloid'                               = ''
    'nf-dev-chart'                                   = ''
    'nf-dev-chrome'                                  = ''
    'nf-dev-cisco'                                   = ''
    'nf-dev-clojure'                                 = ''
    'nf-dev-clojure_alt'                             = ''
    'nf-dev-cloud9'                                  = ''
    'nf-dev-coda'                                    = ''
    'nf-dev-code'                                    = ''
    'nf-dev-code_badge'                              = ''
    'nf-dev-codeigniter'                             = ''
    'nf-dev-codepen'                                 = ''
    'nf-dev-codrops'                                 = ''
    'nf-dev-coffeescript'                            = ''
    'nf-dev-compass'                                 = ''
    'nf-dev-composer'                                = ''
    'nf-dev-creativecommons'                         = ''
    'nf-dev-creativecommons_badge'                   = ''
    'nf-dev-css_tricks'                              = ''
    'nf-dev-css3'                                    = ''
    'nf-dev-css3_full'                               = ''
    'nf-dev-cssdeck'                                 = ''
    'nf-dev-dart'                                    = ''
    'nf-dev-database'                                = ''
    'nf-dev-debian'                                  = ''
    'nf-dev-digital_ocean'                           = ''
    'nf-dev-django'                                  = ''
    'nf-dev-dlang'                                   = ''
    'nf-dev-docker'                                  = ''
    'nf-dev-doctrine'                                = ''
    'nf-dev-dojo'                                    = ''
    'nf-dev-dotnet'                                  = ''
    'nf-dev-dreamweaver'                             = ''
    'nf-dev-dropbox'                                 = ''
    'nf-dev-drupal'                                  = ''
    'nf-dev-eclipse'                                 = ''
    'nf-dev-ember'                                   = ''
    'nf-dev-envato'                                  = ''
    'nf-dev-erlang'                                  = ''
    'nf-dev-extjs'                                   = ''
    'nf-dev-firebase'                                = ''
    'nf-dev-firefox'                                 = ''
    'nf-dev-fsharp'                                  = ''
    'nf-dev-ghost'                                   = ''
    'nf-dev-ghost_small'                             = ''
    'nf-dev-git'                                     = ''
    'nf-dev-git_branch'                              = ''
    'nf-dev-git_commit'                              = ''
    'nf-dev-git_compare'                             = ''
    'nf-dev-git_merge'                               = ''
    'nf-dev-git_pull_request'                        = ''
    'nf-dev-github'                                  = ''
    'nf-dev-github_alt'                              = ''
    'nf-dev-github_badge'                            = ''
    'nf-dev-github_full'                             = ''
    'nf-dev-gnu'                                     = ''
    'nf-dev-go'                                      = ''
    'nf-dev-google_cloud_platform'                   = ''
    'nf-dev-google_drive'                            = ''
    'nf-dev-grails'                                  = ''
    'nf-dev-groovy'                                  = ''
    'nf-dev-grunt'                                   = ''
    'nf-dev-gulp'                                    = ''
    'nf-dev-hackernews'                              = ''
    'nf-dev-haskell'                                 = ''
    'nf-dev-heroku'                                  = ''
    'nf-dev-html5'                                   = ''
    'nf-dev-html5_3d_effects'                        = ''
    'nf-dev-html5_connectivity'                      = ''
    'nf-dev-html5_device_access'                     = ''
    'nf-dev-html5_multimedia'                        = ''
    'nf-dev-ie'                                      = ''
    'nf-dev-illustrator'                             = ''
    'nf-dev-intellij'                                = ''
    'nf-dev-ionic'                                   = ''
    'nf-dev-java'                                    = ''
    'nf-dev-javascript'                              = ''
    'nf-dev-javascript_badge'                        = ''
    'nf-dev-javascript_shield'                       = ''
    'nf-dev-jekyll_small'                            = ''
    'nf-dev-jenkins'                                 = ''
    'nf-dev-jira'                                    = ''
    'nf-dev-joomla'                                  = ''
    'nf-dev-jquery'                                  = ''
    'nf-dev-jquery_ui'                               = ''
    'nf-dev-komodo'                                  = ''
    'nf-dev-krakenjs'                                = ''
    'nf-dev-krakenjs_badge'                          = ''
    'nf-dev-laravel'                                 = ''
    'nf-dev-less'                                    = ''
    'nf-dev-linux'                                   = ''
    'nf-dev-magento'                                 = ''
    'nf-dev-mailchimp'                               = ''
    'nf-dev-markdown'                                = ''
    'nf-dev-materializecss'                          = ''
    'nf-dev-meteor'                                  = ''
    'nf-dev-meteorfull'                              = ''
    'nf-dev-mitlicence'                              = ''
    'nf-dev-modernizr'                               = ''
    'nf-dev-mongodb'                                 = ''
    'nf-dev-mootools'                                = ''
    'nf-dev-mootools_badge'                          = ''
    'nf-dev-mozilla'                                 = ''
    'nf-dev-msql_server'                             = ''
    'nf-dev-mysql'                                   = ''
    'nf-dev-nancy'                                   = ''
    'nf-dev-netbeans'                                = ''
    'nf-dev-netmagazine'                             = ''
    'nf-dev-nginx'                                   = ''
    'nf-dev-nodejs'                                  = ''
    'nf-dev-nodejs_small'                            = ''
    'nf-dev-npm'                                     = ''
    'nf-dev-onedrive'                                = ''
    'nf-dev-openshift'                               = ''
    'nf-dev-opensource'                              = ''
    'nf-dev-opera'                                   = ''
    'nf-dev-perl'                                    = ''
    'nf-dev-phonegap'                                = ''
    'nf-dev-photoshop'                               = ''
    'nf-dev-php'                                     = ''
    'nf-dev-postgresql'                              = ''
    'nf-dev-prolog'                                  = ''
    'nf-dev-python'                                  = ''
    'nf-dev-rackspace'                               = ''
    'nf-dev-raphael'                                 = ''
    'nf-dev-rasberry_pi'                             = ''
    'nf-dev-react'                                   = ''
    'nf-dev-redhat'                                  = ''
    'nf-dev-redis'                                   = ''
    'nf-dev-requirejs'                               = ''
    'nf-dev-responsive'                              = ''
    'nf-dev-ruby'                                    = ''
    'nf-dev-ruby_on_rails'                           = ''
    'nf-dev-ruby_rough'                              = ''
    'nf-dev-rust'                                    = ''
    'nf-dev-safari'                                  = ''
    'nf-dev-sass'                                    = ''
    'nf-dev-scala'                                   = ''
    'nf-dev-scriptcs'                                = ''
    'nf-dev-scrum'                                   = ''
    'nf-dev-senchatouch'                             = ''
    'nf-dev-sizzlejs'                                = ''
    'nf-dev-smashing_magazine'                       = ''
    'nf-dev-snap_svg'                                = ''
    'nf-dev-sqllite'                                 = ''
    'nf-dev-stackoverflow'                           = ''
    'nf-dev-streamline'                              = ''
    'nf-dev-stylus'                                  = ''
    'nf-dev-sublime'                                 = ''
    'nf-dev-swift'                                   = ''
    'nf-dev-symfony'                                 = ''
    'nf-dev-symfony_badge'                           = ''
    'nf-dev-techcrunch'                              = ''
    'nf-dev-terminal'                                = ''
    'nf-dev-terminal_badge'                          = ''
    'nf-dev-travis'                                  = ''
    'nf-dev-trello'                                  = ''
    'nf-dev-typo3'                                   = ''
    'nf-dev-ubuntu'                                  = ''
    'nf-dev-uikit'                                   = ''
    'nf-dev-unity_small'                             = ''
    'nf-dev-vim'                                     = ''
    'nf-dev-visualstudio'                            = ''
    'nf-dev-w3c'                                     = ''
    'nf-dev-webplatform'                             = ''
    'nf-dev-windows'                                 = ''
    'nf-dev-wordpress'                               = ''
    'nf-dev-yahoo'                                   = ''
    'nf-dev-yahoo_small'                             = ''
    'nf-dev-yeoman'                                  = ''
    'nf-dev-yii'                                     = ''
    'nf-dev-zend'                                    = ''
    'nf-fa-500px'                                    = ''
    'nf-fa-address_book'                             = ''
    'nf-fa-address_book_o'                           = ''
    'nf-fa-address_card'                             = ''
    'nf-fa-address_card_o'                           = ''
    'nf-fa-adjust'                                   = ''
    'nf-fa-adn'                                      = ''
    'nf-fa-align_center'                             = ''
    'nf-fa-align_justify'                            = ''
    'nf-fa-align_left'                               = ''
    'nf-fa-align_right'                              = ''
    'nf-fa-amazon'                                   = ''
    'nf-fa-ambulance'                                = ''
    'nf-fa-american_sign_language_interpreting'      = ''
    'nf-fa-anchor'                                   = ''
    'nf-fa-android'                                  = ''
    'nf-fa-angellist'                                = ''
    'nf-fa-angle_double_down'                        = ''
    'nf-fa-angle_double_left'                        = ''
    'nf-fa-angle_double_right'                       = ''
    'nf-fa-angle_double_up'                          = ''
    'nf-fa-angle_down'                               = ''
    'nf-fa-angle_left'                               = ''
    'nf-fa-angle_right'                              = ''
    'nf-fa-angle_up'                                 = ''
    'nf-fa-apple'                                    = ''
    'nf-fa-archive'                                  = ''
    'nf-fa-area_chart'                               = ''
    'nf-fa-arrow_circle_down'                        = ''
    'nf-fa-arrow_circle_left'                        = ''
    'nf-fa-arrow_circle_o_down'                      = ''
    'nf-fa-arrow_circle_o_left'                      = ''
    'nf-fa-arrow_circle_o_right'                     = ''
    'nf-fa-arrow_circle_o_up'                        = ''
    'nf-fa-arrow_circle_right'                       = ''
    'nf-fa-arrow_circle_up'                          = ''
    'nf-fa-arrow_down'                               = ''
    'nf-fa-arrow_left'                               = ''
    'nf-fa-arrow_right'                              = ''
    'nf-fa-arrow_up'                                 = ''
    'nf-fa-arrows'                                   = ''
    'nf-fa-arrows_alt'                               = ''
    'nf-fa-arrows_h'                                 = ''
    'nf-fa-arrows_v'                                 = ''
    'nf-fa-asl_interpreting'                         = ''
    'nf-fa-assistive_listening_systems'              = ''
    'nf-fa-asterisk'                                 = ''
    'nf-fa-at'                                       = ''
    'nf-fa-audio_description'                        = ''
    'nf-fa-automobile'                               = ''
    'nf-fa-backward'                                 = ''
    'nf-fa-balance_scale'                            = ''
    'nf-fa-ban'                                      = ''
    'nf-fa-bandcamp'                                 = ''
    'nf-fa-bank'                                     = ''
    'nf-fa-bar_chart'                                = ''
    'nf-fa-bar_chart_o'                              = ''
    'nf-fa-barcode'                                  = ''
    'nf-fa-bars'                                     = ''
    'nf-fa-bath'                                     = ''
    'nf-fa-bathtub'                                  = ''
    'nf-fa-battery'                                  = ''
    'nf-fa-battery_0'                                = ''
    'nf-fa-battery_1'                                = ''
    'nf-fa-battery_2'                                = ''
    'nf-fa-battery_3'                                = ''
    'nf-fa-battery_4'                                = ''
    'nf-fa-battery_empty'                            = ''
    'nf-fa-battery_full'                             = ''
    'nf-fa-battery_half'                             = ''
    'nf-fa-battery_quarter'                          = ''
    'nf-fa-battery_three_quarters'                   = ''
    'nf-fa-bed'                                      = ''
    'nf-fa-beer'                                     = ''
    'nf-fa-behance'                                  = ''
    'nf-fa-behance_square'                           = ''
    'nf-fa-bell'                                     = ''
    'nf-fa-bell_o'                                   = ''
    'nf-fa-bell_slash'                               = ''
    'nf-fa-bell_slash_o'                             = ''
    'nf-fa-bicycle'                                  = ''
    'nf-fa-binoculars'                               = ''
    'nf-fa-birthday_cake'                            = ''
    'nf-fa-bitbucket'                                = ''
    'nf-fa-bitbucket_square'                         = ''
    'nf-fa-bitcoin'                                  = ''
    'nf-fa-black_tie'                                = ''
    'nf-fa-blind'                                    = ''
    'nf-fa-bluetooth'                                = ''
    'nf-fa-bluetooth_b'                              = ''
    'nf-fa-bold'                                     = ''
    'nf-fa-bolt'                                     = ''
    'nf-fa-bomb'                                     = ''
    'nf-fa-book'                                     = ''
    'nf-fa-bookmark'                                 = ''
    'nf-fa-bookmark_o'                               = ''
    'nf-fa-braille'                                  = ''
    'nf-fa-briefcase'                                = ''
    'nf-fa-btc'                                      = ''
    'nf-fa-bug'                                      = ''
    'nf-fa-building'                                 = ''
    'nf-fa-building_o'                               = ''
    'nf-fa-bullhorn'                                 = ''
    'nf-fa-bullseye'                                 = ''
    'nf-fa-bus'                                      = ''
    'nf-fa-buysellads'                               = ''
    'nf-fa-cab'                                      = ''
    'nf-fa-calculator'                               = ''
    'nf-fa-calendar'                                 = ''
    'nf-fa-calendar_check_o'                         = ''
    'nf-fa-calendar_minus_o'                         = ''
    'nf-fa-calendar_o'                               = ''
    'nf-fa-calendar_plus_o'                          = ''
    'nf-fa-calendar_times_o'                         = ''
    'nf-fa-camera'                                   = ''
    'nf-fa-camera_retro'                             = ''
    'nf-fa-car'                                      = ''
    'nf-fa-caret_down'                               = ''
    'nf-fa-caret_left'                               = ''
    'nf-fa-caret_right'                              = ''
    'nf-fa-caret_square_o_down'                      = ''
    'nf-fa-caret_square_o_left'                      = ''
    'nf-fa-caret_square_o_right'                     = ''
    'nf-fa-caret_square_o_up'                        = ''
    'nf-fa-caret_up'                                 = ''
    'nf-fa-cart_arrow_down'                          = ''
    'nf-fa-cart_plus'                                = ''
    'nf-fa-cc'                                       = ''
    'nf-fa-cc_amex'                                  = ''
    'nf-fa-cc_diners_club'                           = ''
    'nf-fa-cc_discover'                              = ''
    'nf-fa-cc_jcb'                                   = ''
    'nf-fa-cc_mastercard'                            = ''
    'nf-fa-cc_paypal'                                = ''
    'nf-fa-cc_stripe'                                = ''
    'nf-fa-cc_visa'                                  = ''
    'nf-fa-certificate'                              = ''
    'nf-fa-chain'                                    = ''
    'nf-fa-chain_broken'                             = ''
    'nf-fa-check'                                    = ''
    'nf-fa-check_circle'                             = ''
    'nf-fa-check_circle_o'                           = ''
    'nf-fa-check_square'                             = ''
    'nf-fa-check_square_o'                           = ''
    'nf-fa-chevron_circle_down'                      = ''
    'nf-fa-chevron_circle_left'                      = ''
    'nf-fa-chevron_circle_right'                     = ''
    'nf-fa-chevron_circle_up'                        = ''
    'nf-fa-chevron_down'                             = ''
    'nf-fa-chevron_left'                             = ''
    'nf-fa-chevron_right'                            = ''
    'nf-fa-chevron_up'                               = ''
    'nf-fa-child'                                    = ''
    'nf-fa-chrome'                                   = ''
    'nf-fa-circle'                                   = ''
    'nf-fa-circle_o'                                 = ''
    'nf-fa-circle_o_notch'                           = ''
    'nf-fa-circle_thin'                              = ''
    'nf-fa-clipboard'                                = ''
    'nf-fa-clock_o'                                  = ''
    'nf-fa-clone'                                    = ''
    'nf-fa-close'                                    = ''
    'nf-fa-cloud'                                    = ''
    'nf-fa-cloud_download'                           = ''
    'nf-fa-cloud_upload'                             = ''
    'nf-fa-cny'                                      = ''
    'nf-fa-code'                                     = ''
    'nf-fa-code_fork'                                = ''
    'nf-fa-codepen'                                  = ''
    'nf-fa-codiepie'                                 = ''
    'nf-fa-coffee'                                   = ''
    'nf-fa-cog'                                      = ''
    'nf-fa-cogs'                                     = ''
    'nf-fa-columns'                                  = ''
    'nf-fa-comment'                                  = ''
    'nf-fa-comment_o'                                = ''
    'nf-fa-commenting'                               = ''
    'nf-fa-commenting_o'                             = ''
    'nf-fa-comments'                                 = ''
    'nf-fa-comments_o'                               = ''
    'nf-fa-compass'                                  = ''
    'nf-fa-compress'                                 = ''
    'nf-fa-connectdevelop'                           = ''
    'nf-fa-contao'                                   = ''
    'nf-fa-copy'                                     = ''
    'nf-fa-copyright'                                = ''
    'nf-fa-creative_commons'                         = ''
    'nf-fa-credit_card'                              = ''
    'nf-fa-credit_card_alt'                          = ''
    'nf-fa-crop'                                     = ''
    'nf-fa-crosshairs'                               = ''
    'nf-fa-css3'                                     = ''
    'nf-fa-cube'                                     = ''
    'nf-fa-cubes'                                    = ''
    'nf-fa-cut'                                      = ''
    'nf-fa-cutlery'                                  = ''
    'nf-fa-dashboard'                                = ''
    'nf-fa-dashcube'                                 = ''
    'nf-fa-database'                                 = ''
    'nf-fa-deaf'                                     = ''
    'nf-fa-deafness'                                 = ''
    'nf-fa-dedent'                                   = ''
    'nf-fa-delicious'                                = ''
    'nf-fa-desktop'                                  = ''
    'nf-fa-deviantart'                               = ''
    'nf-fa-diamond'                                  = ''
    'nf-fa-digg'                                     = ''
    'nf-fa-dollar'                                   = ''
    'nf-fa-dot_circle_o'                             = ''
    'nf-fa-download'                                 = ''
    'nf-fa-dribbble'                                 = ''
    'nf-fa-drivers_license'                          = ''
    'nf-fa-drivers_license_o'                        = ''
    'nf-fa-dropbox'                                  = ''
    'nf-fa-drupal'                                   = ''
    'nf-fa-edge'                                     = ''
    'nf-fa-edit'                                     = ''
    'nf-fa-eercast'                                  = ''
    'nf-fa-eject'                                    = ''
    'nf-fa-ellipsis_h'                               = ''
    'nf-fa-ellipsis_v'                               = ''
    'nf-fa-empire'                                   = ''
    'nf-fa-envelope'                                 = ''
    'nf-fa-envelope_o'                               = ''
    'nf-fa-envelope_open'                            = ''
    'nf-fa-envelope_open_o'                          = ''
    'nf-fa-envelope_square'                          = ''
    'nf-fa-envira'                                   = ''
    'nf-fa-eraser'                                   = ''
    'nf-fa-etsy'                                     = ''
    'nf-fa-eur'                                      = ''
    'nf-fa-euro'                                     = ''
    'nf-fa-exchange'                                 = ''
    'nf-fa-exclamation'                              = ''
    'nf-fa-exclamation_circle'                       = ''
    'nf-fa-exclamation_triangle'                     = ''
    'nf-fa-expand'                                   = ''
    'nf-fa-expeditedssl'                             = ''
    'nf-fa-external_link'                            = ''
    'nf-fa-external_link_square'                     = ''
    'nf-fa-eye'                                      = ''
    'nf-fa-eye_slash'                                = ''
    'nf-fa-eyedropper'                               = ''
    'nf-fa-fa'                                       = ''
    'nf-fa-facebook'                                 = ''
    'nf-fa-facebook_f'                               = ''
    'nf-fa-facebook_official'                        = ''
    'nf-fa-facebook_square'                          = ''
    'nf-fa-fast_backward'                            = ''
    'nf-fa-fast_forward'                             = ''
    'nf-fa-fax'                                      = ''
    'nf-fa-feed'                                     = ''
    'nf-fa-female'                                   = ''
    'nf-fa-fighter_jet'                              = ''
    'nf-fa-file'                                     = ''
    'nf-fa-file_archive_o'                           = ''
    'nf-fa-file_audio_o'                             = ''
    'nf-fa-file_code_o'                              = ''
    'nf-fa-file_excel_o'                             = ''
    'nf-fa-file_image_o'                             = ''
    'nf-fa-file_movie_o'                             = ''
    'nf-fa-file_o'                                   = ''
    'nf-fa-file_pdf_o'                               = ''
    'nf-fa-file_photo_o'                             = ''
    'nf-fa-file_picture_o'                           = ''
    'nf-fa-file_powerpoint_o'                        = ''
    'nf-fa-file_sound_o'                             = ''
    'nf-fa-file_text'                                = ''
    'nf-fa-file_text_o'                              = ''
    'nf-fa-file_video_o'                             = ''
    'nf-fa-file_word_o'                              = ''
    'nf-fa-file_zip_o'                               = ''
    'nf-fa-files_o'                                  = ''
    'nf-fa-film'                                     = ''
    'nf-fa-filter'                                   = ''
    'nf-fa-fire'                                     = ''
    'nf-fa-fire_extinguisher'                        = ''
    'nf-fa-firefox'                                  = ''
    'nf-fa-first_order'                              = ''
    'nf-fa-flag'                                     = ''
    'nf-fa-flag_checkered'                           = ''
    'nf-fa-flag_o'                                   = ''
    'nf-fa-flash'                                    = ''
    'nf-fa-flask'                                    = ''
    'nf-fa-flickr'                                   = ''
    'nf-fa-floppy_o'                                 = ''
    'nf-fa-folder'                                   = ''
    'nf-fa-folder_o'                                 = ''
    'nf-fa-folder_open'                              = ''
    'nf-fa-folder_open_o'                            = ''
    'nf-fa-font'                                     = ''
    'nf-fa-font_awesome'                             = ''
    'nf-fa-fonticons'                                = ''
    'nf-fa-fort_awesome'                             = ''
    'nf-fa-forumbee'                                 = ''
    'nf-fa-forward'                                  = ''
    'nf-fa-foursquare'                               = ''
    'nf-fa-free_code_camp'                           = ''
    'nf-fa-frown_o'                                  = ''
    'nf-fa-futbol_o'                                 = ''
    'nf-fa-gamepad'                                  = ''
    'nf-fa-gavel'                                    = ''
    'nf-fa-gbp'                                      = ''
    'nf-fa-ge'                                       = ''
    'nf-fa-gear'                                     = ''
    'nf-fa-gears'                                    = ''
    'nf-fa-genderless'                               = ''
    'nf-fa-get_pocket'                               = ''
    'nf-fa-gg'                                       = ''
    'nf-fa-gg_circle'                                = ''
    'nf-fa-gift'                                     = ''
    'nf-fa-git'                                      = ''
    'nf-fa-git_square'                               = ''
    'nf-fa-github'                                   = ''
    'nf-fa-github_alt'                               = ''
    'nf-fa-github_square'                            = ''
    'nf-fa-gitlab'                                   = ''
    'nf-fa-gittip'                                   = ''
    'nf-fa-glass'                                    = ''
    'nf-fa-glide'                                    = ''
    'nf-fa-glide_g'                                  = ''
    'nf-fa-globe'                                    = ''
    'nf-fa-google'                                   = ''
    'nf-fa-google_plus'                              = ''
    'nf-fa-google_plus_circle'                       = ''
    'nf-fa-google_plus_official'                     = ''
    'nf-fa-google_plus_square'                       = ''
    'nf-fa-google_wallet'                            = ''
    'nf-fa-graduation_cap'                           = ''
    'nf-fa-gratipay'                                 = ''
    'nf-fa-grav'                                     = ''
    'nf-fa-group'                                    = ''
    'nf-fa-h_square'                                 = ''
    'nf-fa-hacker_news'                              = ''
    'nf-fa-hand_grab_o'                              = ''
    'nf-fa-hand_lizard_o'                            = ''
    'nf-fa-hand_o_down'                              = ''
    'nf-fa-hand_o_left'                              = ''
    'nf-fa-hand_o_right'                             = ''
    'nf-fa-hand_o_up'                                = ''
    'nf-fa-hand_paper_o'                             = ''
    'nf-fa-hand_peace_o'                             = ''
    'nf-fa-hand_pointer_o'                           = ''
    'nf-fa-hand_rock_o'                              = ''
    'nf-fa-hand_scissors_o'                          = ''
    'nf-fa-hand_spock_o'                             = ''
    'nf-fa-hand_stop_o'                              = ''
    'nf-fa-handshake_o'                              = ''
    'nf-fa-hard_of_hearing'                          = ''
    'nf-fa-hashtag'                                  = ''
    'nf-fa-hdd_o'                                    = ''
    'nf-fa-header'                                   = ''
    'nf-fa-headphones'                               = ''
    'nf-fa-heart'                                    = ''
    'nf-fa-heart_o'                                  = ''
    'nf-fa-heartbeat'                                = ''
    'nf-fa-history'                                  = ''
    'nf-fa-home'                                     = ''
    'nf-fa-hospital_o'                               = ''
    'nf-fa-hotel'                                    = ''
    'nf-fa-hourglass'                                = ''
    'nf-fa-hourglass_1'                              = ''
    'nf-fa-hourglass_2'                              = ''
    'nf-fa-hourglass_3'                              = ''
    'nf-fa-hourglass_end'                            = ''
    'nf-fa-hourglass_half'                           = ''
    'nf-fa-hourglass_o'                              = ''
    'nf-fa-hourglass_start'                          = ''
    'nf-fa-houzz'                                    = ''
    'nf-fa-html5'                                    = ''
    'nf-fa-i_cursor'                                 = ''
    'nf-fa-id_badge'                                 = ''
    'nf-fa-id_card'                                  = ''
    'nf-fa-id_card_o'                                = ''
    'nf-fa-ils'                                      = ''
    'nf-fa-image'                                    = ''
    'nf-fa-imdb'                                     = ''
    'nf-fa-inbox'                                    = ''
    'nf-fa-indent'                                   = ''
    'nf-fa-industry'                                 = ''
    'nf-fa-info'                                     = ''
    'nf-fa-info_circle'                              = ''
    'nf-fa-inr'                                      = ''
    'nf-fa-instagram'                                = ''
    'nf-fa-institution'                              = ''
    'nf-fa-internet_explorer'                        = ''
    'nf-fa-intersex'                                 = ''
    'nf-fa-ioxhost'                                  = ''
    'nf-fa-italic'                                   = ''
    'nf-fa-joomla'                                   = ''
    'nf-fa-jpy'                                      = ''
    'nf-fa-jsfiddle'                                 = ''
    'nf-fa-key'                                      = ''
    'nf-fa-keyboard_o'                               = ''
    'nf-fa-krw'                                      = ''
    'nf-fa-language'                                 = ''
    'nf-fa-laptop'                                   = ''
    'nf-fa-lastfm'                                   = ''
    'nf-fa-lastfm_square'                            = ''
    'nf-fa-leaf'                                     = ''
    'nf-fa-leanpub'                                  = ''
    'nf-fa-legal'                                    = ''
    'nf-fa-lemon_o'                                  = ''
    'nf-fa-level_down'                               = ''
    'nf-fa-level_up'                                 = ''
    'nf-fa-life_bouy'                                = ''
    'nf-fa-life_buoy'                                = ''
    'nf-fa-life_ring'                                = ''
    'nf-fa-life_saver'                               = ''
    'nf-fa-lightbulb_o'                              = ''
    'nf-fa-line_chart'                               = ''
    'nf-fa-link'                                     = ''
    'nf-fa-linkedin'                                 = ''
    'nf-fa-linkedin_square'                          = ''
    'nf-fa-linode'                                   = ''
    'nf-fa-linux'                                    = ''
    'nf-fa-list'                                     = ''
    'nf-fa-list_alt'                                 = ''
    'nf-fa-list_ol'                                  = ''
    'nf-fa-list_ul'                                  = ''
    'nf-fa-location_arrow'                           = ''
    'nf-fa-lock'                                     = ''
    'nf-fa-long_arrow_down'                          = ''
    'nf-fa-long_arrow_left'                          = ''
    'nf-fa-long_arrow_right'                         = ''
    'nf-fa-long_arrow_up'                            = ''
    'nf-fa-low_vision'                               = ''
    'nf-fa-magic'                                    = ''
    'nf-fa-magnet'                                   = ''
    'nf-fa-mail_forward'                             = ''
    'nf-fa-mail_reply'                               = ''
    'nf-fa-mail_reply_all'                           = ''
    'nf-fa-male'                                     = ''
    'nf-fa-map'                                      = ''
    'nf-fa-map_marker'                               = ''
    'nf-fa-map_o'                                    = ''
    'nf-fa-map_pin'                                  = ''
    'nf-fa-map_signs'                                = ''
    'nf-fa-mars'                                     = ''
    'nf-fa-mars_double'                              = ''
    'nf-fa-mars_stroke'                              = ''
    'nf-fa-mars_stroke_h'                            = ''
    'nf-fa-mars_stroke_v'                            = ''
    'nf-fa-maxcdn'                                   = ''
    'nf-fa-meanpath'                                 = ''
    'nf-fa-medium'                                   = ''
    'nf-fa-medkit'                                   = ''
    'nf-fa-meetup'                                   = ''
    'nf-fa-meh_o'                                    = ''
    'nf-fa-mercury'                                  = ''
    'nf-fa-microchip'                                = ''
    'nf-fa-microphone'                               = ''
    'nf-fa-microphone_slash'                         = ''
    'nf-fa-minus'                                    = ''
    'nf-fa-minus_circle'                             = ''
    'nf-fa-minus_square'                             = ''
    'nf-fa-minus_square_o'                           = ''
    'nf-fa-mixcloud'                                 = ''
    'nf-fa-mobile'                                   = ''
    'nf-fa-mobile_phone'                             = ''
    'nf-fa-modx'                                     = ''
    'nf-fa-money'                                    = ''
    'nf-fa-moon_o'                                   = ''
    'nf-fa-mortar_board'                             = ''
    'nf-fa-motorcycle'                               = ''
    'nf-fa-mouse_pointer'                            = ''
    'nf-fa-music'                                    = ''
    'nf-fa-navicon'                                  = ''
    'nf-fa-neuter'                                   = ''
    'nf-fa-newspaper_o'                              = ''
    'nf-fa-object_group'                             = ''
    'nf-fa-object_ungroup'                           = ''
    'nf-fa-odnoklassniki'                            = ''
    'nf-fa-odnoklassniki_square'                     = ''
    'nf-fa-opencart'                                 = ''
    'nf-fa-openid'                                   = ''
    'nf-fa-opera'                                    = ''
    'nf-fa-optin_monster'                            = ''
    'nf-fa-outdent'                                  = ''
    'nf-fa-pagelines'                                = ''
    'nf-fa-paint_brush'                              = ''
    'nf-fa-paper_plane'                              = ''
    'nf-fa-paper_plane_o'                            = ''
    'nf-fa-paperclip'                                = ''
    'nf-fa-paragraph'                                = ''
    'nf-fa-paste'                                    = ''
    'nf-fa-pause'                                    = ''
    'nf-fa-pause_circle'                             = ''
    'nf-fa-pause_circle_o'                           = ''
    'nf-fa-paw'                                      = ''
    'nf-fa-paypal'                                   = ''
    'nf-fa-pencil'                                   = ''
    'nf-fa-pencil_square'                            = ''
    'nf-fa-pencil_square_o'                          = ''
    'nf-fa-percent'                                  = ''
    'nf-fa-phone'                                    = ''
    'nf-fa-phone_square'                             = ''
    'nf-fa-photo'                                    = ''
    'nf-fa-picture_o'                                = ''
    'nf-fa-pie_chart'                                = ''
    'nf-fa-pied_piper'                               = ''
    'nf-fa-pied_piper_alt'                           = ''
    'nf-fa-pied_piper_pp'                            = ''
    'nf-fa-pinterest'                                = ''
    'nf-fa-pinterest_p'                              = ''
    'nf-fa-pinterest_square'                         = ''
    'nf-fa-plane'                                    = ''
    'nf-fa-play'                                     = ''
    'nf-fa-play_circle'                              = ''
    'nf-fa-play_circle_o'                            = ''
    'nf-fa-plug'                                     = ''
    'nf-fa-plus'                                     = ''
    'nf-fa-plus_circle'                              = ''
    'nf-fa-plus_square'                              = ''
    'nf-fa-plus_square_o'                            = ''
    'nf-fa-podcast'                                  = ''
    'nf-fa-power_off'                                = ''
    'nf-fa-print'                                    = ''
    'nf-fa-product_hunt'                             = ''
    'nf-fa-puzzle_piece'                             = ''
    'nf-fa-qq'                                       = ''
    'nf-fa-qrcode'                                   = ''
    'nf-fa-question'                                 = ''
    'nf-fa-question_circle'                          = ''
    'nf-fa-question_circle_o'                        = ''
    'nf-fa-quora'                                    = ''
    'nf-fa-quote_left'                               = ''
    'nf-fa-quote_right'                              = ''
    'nf-fa-ra'                                       = ''
    'nf-fa-random'                                   = ''
    'nf-fa-ravelry'                                  = ''
    'nf-fa-rebel'                                    = ''
    'nf-fa-recycle'                                  = ''
    'nf-fa-reddit'                                   = ''
    'nf-fa-reddit_alien'                             = ''
    'nf-fa-reddit_square'                            = ''
    'nf-fa-refresh'                                  = ''
    'nf-fa-registered'                               = ''
    'nf-fa-remove'                                   = ''
    'nf-fa-renren'                                   = ''
    'nf-fa-reorder'                                  = ''
    'nf-fa-repeat'                                   = ''
    'nf-fa-reply'                                    = ''
    'nf-fa-reply_all'                                = ''
    'nf-fa-resistance'                               = ''
    'nf-fa-retweet'                                  = ''
    'nf-fa-rmb'                                      = ''
    'nf-fa-road'                                     = ''
    'nf-fa-rocket'                                   = ''
    'nf-fa-rotate_left'                              = ''
    'nf-fa-rotate_right'                             = ''
    'nf-fa-rouble'                                   = ''
    'nf-fa-rss'                                      = ''
    'nf-fa-rss_square'                               = ''
    'nf-fa-rub'                                      = ''
    'nf-fa-ruble'                                    = ''
    'nf-fa-rupee'                                    = ''
    'nf-fa-s15'                                      = ''
    'nf-fa-safari'                                   = ''
    'nf-fa-save'                                     = ''
    'nf-fa-scissors'                                 = ''
    'nf-fa-scribd'                                   = ''
    'nf-fa-search'                                   = ''
    'nf-fa-search_minus'                             = ''
    'nf-fa-search_plus'                              = ''
    'nf-fa-sellsy'                                   = ''
    'nf-fa-send'                                     = ''
    'nf-fa-send_o'                                   = ''
    'nf-fa-server'                                   = ''
    'nf-fa-share'                                    = ''
    'nf-fa-share_alt'                                = ''
    'nf-fa-share_alt_square'                         = ''
    'nf-fa-share_square'                             = ''
    'nf-fa-share_square_o'                           = ''
    'nf-fa-shekel'                                   = ''
    'nf-fa-sheqel'                                   = ''
    'nf-fa-shield'                                   = ''
    'nf-fa-ship'                                     = ''
    'nf-fa-shirtsinbulk'                             = ''
    'nf-fa-shopping_bag'                             = ''
    'nf-fa-shopping_basket'                          = ''
    'nf-fa-shopping_cart'                            = ''
    'nf-fa-shower'                                   = ''
    'nf-fa-sign_in'                                  = ''
    'nf-fa-sign_language'                            = ''
    'nf-fa-sign_out'                                 = ''
    'nf-fa-signal'                                   = ''
    'nf-fa-signing'                                  = ''
    'nf-fa-simplybuilt'                              = ''
    'nf-fa-sitemap'                                  = ''
    'nf-fa-skyatlas'                                 = ''
    'nf-fa-skype'                                    = ''
    'nf-fa-slack'                                    = ''
    'nf-fa-sliders'                                  = ''
    'nf-fa-slideshare'                               = ''
    'nf-fa-smile_o'                                  = ''
    'nf-fa-snapchat'                                 = ''
    'nf-fa-snapchat_ghost'                           = ''
    'nf-fa-snapchat_square'                          = ''
    'nf-fa-snowflake_o'                              = ''
    'nf-fa-soccer_ball_o'                            = ''
    'nf-fa-sort'                                     = ''
    'nf-fa-sort_alpha_asc'                           = ''
    'nf-fa-sort_alpha_desc'                          = ''
    'nf-fa-sort_amount_asc'                          = ''
    'nf-fa-sort_amount_desc'                         = ''
    'nf-fa-sort_asc'                                 = ''
    'nf-fa-sort_desc'                                = ''
    'nf-fa-sort_down'                                = ''
    'nf-fa-sort_numeric_asc'                         = ''
    'nf-fa-sort_numeric_desc'                        = ''
    'nf-fa-sort_up'                                  = ''
    'nf-fa-soundcloud'                               = ''
    'nf-fa-space_shuttle'                            = ''
    'nf-fa-spinner'                                  = ''
    'nf-fa-spoon'                                    = ''
    'nf-fa-spotify'                                  = ''
    'nf-fa-square'                                   = ''
    'nf-fa-square_o'                                 = ''
    'nf-fa-stack_exchange'                           = ''
    'nf-fa-stack_overflow'                           = ''
    'nf-fa-star'                                     = ''
    'nf-fa-star_half'                                = ''
    'nf-fa-star_half_empty'                          = ''
    'nf-fa-star_half_full'                           = ''
    'nf-fa-star_half_o'                              = ''
    'nf-fa-star_o'                                   = ''
    'nf-fa-steam'                                    = ''
    'nf-fa-steam_square'                             = ''
    'nf-fa-step_backward'                            = ''
    'nf-fa-step_forward'                             = ''
    'nf-fa-stethoscope'                              = ''
    'nf-fa-sticky_note'                              = ''
    'nf-fa-sticky_note_o'                            = ''
    'nf-fa-stop'                                     = ''
    'nf-fa-stop_circle'                              = ''
    'nf-fa-stop_circle_o'                            = ''
    'nf-fa-street_view'                              = ''
    'nf-fa-strikethrough'                            = ''
    'nf-fa-stumbleupon'                              = ''
    'nf-fa-stumbleupon_circle'                       = ''
    'nf-fa-subscript'                                = ''
    'nf-fa-subway'                                   = ''
    'nf-fa-suitcase'                                 = ''
    'nf-fa-sun_o'                                    = ''
    'nf-fa-superpowers'                              = ''
    'nf-fa-superscript'                              = ''
    'nf-fa-support'                                  = ''
    'nf-fa-table'                                    = ''
    'nf-fa-tablet'                                   = ''
    'nf-fa-tachometer'                               = ''
    'nf-fa-tag'                                      = ''
    'nf-fa-tags'                                     = ''
    'nf-fa-tasks'                                    = ''
    'nf-fa-taxi'                                     = ''
    'nf-fa-telegram'                                 = ''
    'nf-fa-television'                               = ''
    'nf-fa-tencent_weibo'                            = ''
    'nf-fa-terminal'                                 = ''
    'nf-fa-text_height'                              = ''
    'nf-fa-text_width'                               = ''
    'nf-fa-th'                                       = ''
    'nf-fa-th_large'                                 = ''
    'nf-fa-th_list'                                  = ''
    'nf-fa-themeisle'                                = ''
    'nf-fa-thermometer'                              = ''
    'nf-fa-thermometer_0'                            = ''
    'nf-fa-thermometer_1'                            = ''
    'nf-fa-thermometer_2'                            = ''
    'nf-fa-thermometer_3'                            = ''
    'nf-fa-thermometer_4'                            = ''
    'nf-fa-thermometer_empty'                        = ''
    'nf-fa-thermometer_full'                         = ''
    'nf-fa-thermometer_half'                         = ''
    'nf-fa-thermometer_quarter'                      = ''
    'nf-fa-thermometer_three_quarters'               = ''
    'nf-fa-thumb_tack'                               = ''
    'nf-fa-thumbs_down'                              = ''
    'nf-fa-thumbs_o_down'                            = ''
    'nf-fa-thumbs_o_up'                              = ''
    'nf-fa-thumbs_up'                                = ''
    'nf-fa-ticket'                                   = ''
    'nf-fa-times'                                    = ''
    'nf-fa-times_circle'                             = ''
    'nf-fa-times_circle_o'                           = ''
    'nf-fa-times_rectangle'                          = ''
    'nf-fa-times_rectangle_o'                        = ''
    'nf-fa-tint'                                     = ''
    'nf-fa-toggle_down'                              = ''
    'nf-fa-toggle_left'                              = ''
    'nf-fa-toggle_off'                               = ''
    'nf-fa-toggle_on'                                = ''
    'nf-fa-toggle_right'                             = ''
    'nf-fa-toggle_up'                                = ''
    'nf-fa-trademark'                                = ''
    'nf-fa-train'                                    = ''
    'nf-fa-transgender'                              = ''
    'nf-fa-transgender_alt'                          = ''
    'nf-fa-trash'                                    = ''
    'nf-fa-trash_o'                                  = ''
    'nf-fa-tree'                                     = ''
    'nf-fa-trello'                                   = ''
    'nf-fa-tripadvisor'                              = ''
    'nf-fa-trophy'                                   = ''
    'nf-fa-truck'                                    = ''
    'nf-fa-try'                                      = ''
    'nf-fa-tty'                                      = ''
    'nf-fa-tumblr'                                   = ''
    'nf-fa-tumblr_square'                            = ''
    'nf-fa-turkish_lira'                             = ''
    'nf-fa-tv'                                       = ''
    'nf-fa-twitch'                                   = ''
    'nf-fa-twitter'                                  = ''
    'nf-fa-twitter_square'                           = ''
    'nf-fa-umbrella'                                 = ''
    'nf-fa-underline'                                = ''
    'nf-fa-undo'                                     = ''
    'nf-fa-universal_access'                         = ''
    'nf-fa-university'                               = ''
    'nf-fa-unlink'                                   = ''
    'nf-fa-unlock'                                   = ''
    'nf-fa-unlock_alt'                               = ''
    'nf-fa-unsorted'                                 = ''
    'nf-fa-upload'                                   = ''
    'nf-fa-usb'                                      = ''
    'nf-fa-usd'                                      = ''
    'nf-fa-user'                                     = ''
    'nf-fa-user_circle'                              = ''
    'nf-fa-user_circle_o'                            = ''
    'nf-fa-user_md'                                  = ''
    'nf-fa-user_o'                                   = ''
    'nf-fa-user_plus'                                = ''
    'nf-fa-user_secret'                              = ''
    'nf-fa-user_times'                               = ''
    'nf-fa-users'                                    = ''
    'nf-fa-vcard'                                    = ''
    'nf-fa-vcard_o'                                  = ''
    'nf-fa-venus'                                    = ''
    'nf-fa-venus_double'                             = ''
    'nf-fa-venus_mars'                               = ''
    'nf-fa-viacoin'                                  = ''
    'nf-fa-viadeo'                                   = ''
    'nf-fa-viadeo_square'                            = ''
    'nf-fa-video_camera'                             = ''
    'nf-fa-vimeo'                                    = ''
    'nf-fa-vimeo_square'                             = ''
    'nf-fa-vine'                                     = ''
    'nf-fa-vk'                                       = ''
    'nf-fa-volume_control_phone'                     = ''
    'nf-fa-volume_down'                              = ''
    'nf-fa-volume_off'                               = ''
    'nf-fa-volume_up'                                = ''
    'nf-fa-warning'                                  = ''
    'nf-fa-wechat'                                   = ''
    'nf-fa-weibo'                                    = ''
    'nf-fa-weixin'                                   = ''
    'nf-fa-whatsapp'                                 = ''
    'nf-fa-wheelchair'                               = ''
    'nf-fa-wheelchair_alt'                           = ''
    'nf-fa-wifi'                                     = ''
    'nf-fa-wikipedia_w'                              = ''
    'nf-fa-window_close'                             = ''
    'nf-fa-window_close_o'                           = ''
    'nf-fa-window_maximize'                          = ''
    'nf-fa-window_minimize'                          = ''
    'nf-fa-window_restore'                           = ''
    'nf-fa-windows'                                  = ''
    'nf-fa-won'                                      = ''
    'nf-fa-wordpress'                                = ''
    'nf-fa-wpbeginner'                               = ''
    'nf-fa-wpexplorer'                               = ''
    'nf-fa-wpforms'                                  = ''
    'nf-fa-wrench'                                   = ''
    'nf-fa-xing'                                     = ''
    'nf-fa-xing_square'                              = ''
    'nf-fa-y_combinator'                             = ''
    'nf-fa-y_combinator_square'                      = ''
    'nf-fa-yahoo'                                    = ''
    'nf-fa-yc'                                       = ''
    'nf-fa-yc_square'                                = ''
    'nf-fa-yelp'                                     = ''
    'nf-fa-yen'                                      = ''
    'nf-fa-yoast'                                    = ''
    'nf-fa-youtube'                                  = ''
    'nf-fa-youtube_play'                             = ''
    'nf-fa-youtube_square'                           = ''
    'nf-fae-apple_fruit'                             = ''
    'nf-fae-atom'                                    = ''
    'nf-fae-bacteria'                                = ''
    'nf-fae-banana'                                  = ''
    'nf-fae-bath'                                    = ''
    'nf-fae-bed'                                     = ''
    'nf-fae-benzene'                                 = ''
    'nf-fae-bigger'                                  = ''
    'nf-fae-biohazard'                               = ''
    'nf-fae-blogger_circle'                          = ''
    'nf-fae-blogger_square'                          = ''
    'nf-fae-bones'                                   = ''
    'nf-fae-book_open'                               = ''
    'nf-fae-book_open_o'                             = ''
    'nf-fae-brain'                                   = ''
    'nf-fae-bread'                                   = ''
    'nf-fae-butterfly'                               = ''
    'nf-fae-carot'                                   = ''
    'nf-fae-cc_by'                                   = ''
    'nf-fae-cc_cc'                                   = ''
    'nf-fae-cc_nc'                                   = ''
    'nf-fae-cc_nc_eu'                                = ''
    'nf-fae-cc_nc_jp'                                = ''
    'nf-fae-cc_nd'                                   = ''
    'nf-fae-cc_remix'                                = ''
    'nf-fae-cc_sa'                                   = ''
    'nf-fae-cc_share'                                = ''
    'nf-fae-cc_zero'                                 = ''
    'nf-fae-checklist_o'                             = ''
    'nf-fae-cheese'                                  = ''
    'nf-fae-cherry'                                  = ''
    'nf-fae-chess_bishop'                            = ''
    'nf-fae-chess_horse'                             = ''
    'nf-fae-chess_king'                              = ''
    'nf-fae-chess_pawn'                              = ''
    'nf-fae-chess_queen'                             = ''
    'nf-fae-chess_tower'                             = ''
    'nf-fae-chicken_thigh'                           = ''
    'nf-fae-chilli'                                  = ''
    'nf-fae-chip'                                    = ''
    'nf-fae-cicling'                                 = ''
    'nf-fae-cloud'                                   = ''
    'nf-fae-cockroach'                               = ''
    'nf-fae-coffe_beans'                             = ''
    'nf-fae-coins'                                   = ''
    'nf-fae-comb'                                    = ''
    'nf-fae-comet'                                   = ''
    'nf-fae-crown'                                   = ''
    'nf-fae-cup_coffe'                               = ''
    'nf-fae-dice'                                    = ''
    'nf-fae-disco'                                   = ''
    'nf-fae-dna'                                     = ''
    'nf-fae-donut'                                   = ''
    'nf-fae-dress'                                   = ''
    'nf-fae-drop'                                    = ''
    'nf-fae-ello'                                    = ''
    'nf-fae-envelope_open'                           = ''
    'nf-fae-envelope_open_o'                         = ''
    'nf-fae-equal'                                   = ''
    'nf-fae-equal_bigger'                            = ''
    'nf-fae-feedly'                                  = ''
    'nf-fae-file_export'                             = ''
    'nf-fae-file_import'                             = ''
    'nf-fae-fingerprint'                             = ''
    'nf-fae-floppy'                                  = ''
    'nf-fae-footprint'                               = ''
    'nf-fae-freecodecamp'                            = ''
    'nf-fae-galaxy'                                  = ''
    'nf-fae-galery'                                  = ''
    'nf-fae-gift_card'                               = ''
    'nf-fae-glass'                                   = ''
    'nf-fae-google_drive'                            = ''
    'nf-fae-google_play'                             = ''
    'nf-fae-gps'                                     = ''
    'nf-fae-grav'                                    = ''
    'nf-fae-guitar'                                  = ''
    'nf-fae-gut'                                     = ''
    'nf-fae-halter'                                  = ''
    'nf-fae-hamburger'                               = ''
    'nf-fae-hat'                                     = ''
    'nf-fae-hexagon'                                 = ''
    'nf-fae-high_heel'                               = ''
    'nf-fae-hotdog'                                  = ''
    'nf-fae-ice_cream'                               = ''
    'nf-fae-id_card'                                 = ''
    'nf-fae-imdb'                                    = ''
    'nf-fae-infinity'                                = ''
    'nf-fae-injection'                               = ''
    'nf-fae-isle'                                    = ''
    'nf-fae-java'                                    = ''
    'nf-fae-layers'                                  = ''
    'nf-fae-lips'                                    = ''
    'nf-fae-lipstick'                                = ''
    'nf-fae-liver'                                   = ''
    'nf-fae-lollipop'                                = ''
    'nf-fae-loyalty_card'                            = ''
    'nf-fae-lung'                                    = ''
    'nf-fae-makeup_brushes'                          = ''
    'nf-fae-maximize'                                = ''
    'nf-fae-meat'                                    = ''
    'nf-fae-medicine'                                = ''
    'nf-fae-microscope'                              = ''
    'nf-fae-milk_bottle'                             = ''
    'nf-fae-minimize'                                = ''
    'nf-fae-molecule'                                = ''
    'nf-fae-moon_cloud'                              = ''
    'nf-fae-mountains'                               = ''
    'nf-fae-mushroom'                                = ''
    'nf-fae-mustache'                                = ''
    'nf-fae-mysql'                                   = ''
    'nf-fae-nintendo'                                = ''
    'nf-fae-orange'                                  = ''
    'nf-fae-palette_color'                           = ''
    'nf-fae-peach'                                   = ''
    'nf-fae-pear'                                    = ''
    'nf-fae-pi'                                      = ''
    'nf-fae-pizza'                                   = ''
    'nf-fae-planet'                                  = ''
    'nf-fae-plant'                                   = ''
    'nf-fae-playstation'                             = ''
    'nf-fae-poison'                                  = ''
    'nf-fae-popcorn'                                 = ''
    'nf-fae-popsicle'                                = ''
    'nf-fae-pulse'                                   = ''
    'nf-fae-python'                                  = ''
    'nf-fae-quora_circle'                            = ''
    'nf-fae-quora_square'                            = ''
    'nf-fae-radioactive'                             = ''
    'nf-fae-raining'                                 = ''
    'nf-fae-real_heart'                              = ''
    'nf-fae-refrigerator'                            = ''
    'nf-fae-restore'                                 = ''
    'nf-fae-ring'                                    = ''
    'nf-fae-ruby'                                    = ''
    'nf-fae-ruby_o'                                  = ''
    'nf-fae-ruler'                                   = ''
    'nf-fae-shirt'                                   = ''
    'nf-fae-slash'                                   = ''
    'nf-fae-smaller'                                 = ''
    'nf-fae-snowing'                                 = ''
    'nf-fae-soda'                                    = ''
    'nf-fae-sofa'                                    = ''
    'nf-fae-soup'                                    = ''
    'nf-fae-spermatozoon'                            = ''
    'nf-fae-spin_double'                             = ''
    'nf-fae-stomach'                                 = ''
    'nf-fae-storm'                                   = ''
    'nf-fae-sun_cloud'                               = ''
    'nf-fae-sushi'                                   = ''
    'nf-fae-tacos'                                   = ''
    'nf-fae-telegram'                                = ''
    'nf-fae-telegram_circle'                         = ''
    'nf-fae-telescope'                               = ''
    'nf-fae-thermometer'                             = ''
    'nf-fae-thermometer_high'                        = ''
    'nf-fae-thermometer_low'                         = ''
    'nf-fae-thin_close'                              = ''
    'nf-fae-toilet'                                  = ''
    'nf-fae-tools'                                   = ''
    'nf-fae-tooth'                                   = ''
    'nf-fae-tree'                                    = ''
    'nf-fae-triangle_ruler'                          = ''
    'nf-fae-umbrella'                                = ''
    'nf-fae-uterus'                                  = ''
    'nf-fae-virus'                                   = ''
    'nf-fae-w3c'                                     = ''
    'nf-fae-walking'                                 = ''
    'nf-fae-wallet'                                  = ''
    'nf-fae-wind'                                    = ''
    'nf-fae-xbox'                                    = ''
    'nf-iec-power'                                   = '⏻'
    'nf-iec-power_off'                               = '⭘'
    'nf-iec-power_on'                                = '⏽'
    'nf-iec-sleep_mode'                              = '⏾'
    'nf-iec-toggle_power'                            = '⏼'
    'nf-indent-dotted_guide'                         = ''
    'nf-indent-line'                                 = ''
    'nf-indentation-line'                            = ''
    'nf-linux-almalinux'                             = ''
    'nf-linux-alpine'                                = ''
    'nf-linux-aosc'                                  = ''
    'nf-linux-apple'                                 = ''
    'nf-linux-archlabs'                              = ''
    'nf-linux-archlinux'                             = ''
    'nf-linux-artix'                                 = ''
    'nf-linux-budgie'                                = ''
    'nf-linux-centos'                                = ''
    'nf-linux-coreos'                                = ''
    'nf-linux-debian'                                = ''
    'nf-linux-deepin'                                = ''
    'nf-linux-devuan'                                = ''
    'nf-linux-docker'                                = ''
    'nf-linux-elementary'                            = ''
    'nf-linux-endeavour'                             = ''
    'nf-linux-fedora'                                = ''
    'nf-linux-fedora_inverse'                        = ''
    'nf-linux-ferris'                                = ''
    'nf-linux-flathub'                               = ''
    'nf-linux-freebsd'                               = ''
    'nf-linux-gentoo'                                = ''
    'nf-linux-gnu_guix'                              = ''
    'nf-linux-illumos'                               = ''
    'nf-linux-kali_linux'                            = ''
    'nf-linux-linuxmint'                             = ''
    'nf-linux-linuxmint_inverse'                     = ''
    'nf-linux-mageia'                                = ''
    'nf-linux-mandriva'                              = ''
    'nf-linux-manjaro'                               = ''
    'nf-linux-nixos'                                 = ''
    'nf-linux-openbsd'                               = ''
    'nf-linux-opensuse'                              = ''
    'nf-linux-parrot'                                = ''
    'nf-linux-pop_os'                                = ''
    'nf-linux-raspberry_pi'                          = ''
    'nf-linux-redhat'                                = ''
    'nf-linux-rocky_linux'                           = ''
    'nf-linux-sabayon'                               = ''
    'nf-linux-slackware'                             = ''
    'nf-linux-slackware_inverse'                     = ''
    'nf-linux-snappy'                                = ''
    'nf-linux-solus'                                 = ''
    'nf-linux-tux'                                   = ''
    'nf-linux-ubuntu'                                = ''
    'nf-linux-ubuntu_inverse'                        = ''
    'nf-linux-void'                                  = ''
    'nf-linux-zorin'                                 = ''
    'nf-md-ab_testing'                               = '󰇉'
    'nf-md-abacus'                                   = '󱛠'
    'nf-md-abjad_arabic'                             = '󱌨'
    'nf-md-abjad_hebrew'                             = '󱌩'
    'nf-md-abugida_devanagari'                       = '󱌪'
    'nf-md-abugida_thai'                             = '󱌫'
    'nf-md-access_point'                             = '󰀃'
    'nf-md-access_point_check'                       = '󱔸'
    'nf-md-access_point_minus'                       = '󱔹'
    'nf-md-access_point_network'                     = '󰀂'
    'nf-md-access_point_network_off'                 = '󰯡'
    'nf-md-access_point_off'                         = '󱔑'
    'nf-md-access_point_plus'                        = '󱔺'
    'nf-md-access_point_remove'                      = '󱔻'
    'nf-md-account'                                  = '󰀄'
    'nf-md-account_alert'                            = '󰀅'
    'nf-md-account_alert_outline'                    = '󰭐'
    'nf-md-account_arrow_down'                       = '󱡨'
    'nf-md-account_arrow_down_outline'               = '󱡩'
    'nf-md-account_arrow_left'                       = '󰭑'
    'nf-md-account_arrow_left_outline'               = '󰭒'
    'nf-md-account_arrow_right'                      = '󰭓'
    'nf-md-account_arrow_right_outline'              = '󰭔'
    'nf-md-account_arrow_up'                         = '󱡧'
    'nf-md-account_arrow_up_outline'                 = '󱡪'
    'nf-md-account_box'                              = '󰀆'
    'nf-md-account_box_multiple'                     = '󰤴'
    'nf-md-account_box_multiple_outline'             = '󱀊'
    'nf-md-account_box_outline'                      = '󰀇'
    'nf-md-account_cancel'                           = '󱋟'
    'nf-md-account_cancel_outline'                   = '󱋠'
    'nf-md-account_cash'                             = '󱂗'
    'nf-md-account_cash_outline'                     = '󱂘'
    'nf-md-account_check'                            = '󰀈'
    'nf-md-account_check_outline'                    = '󰯢'
    'nf-md-account_child'                            = '󰪉'
    'nf-md-account_child_circle'                     = '󰪊'
    'nf-md-account_child_outline'                    = '󱃈'
    'nf-md-account_circle'                           = '󰀉'
    'nf-md-account_circle_outline'                   = '󰭕'
    'nf-md-account_clock'                            = '󰭖'
    'nf-md-account_clock_outline'                    = '󰭗'
    'nf-md-account_cog'                              = '󱍰'
    'nf-md-account_cog_outline'                      = '󱍱'
    'nf-md-account_convert'                          = '󰀊'
    'nf-md-account_convert_outline'                  = '󱌁'
    'nf-md-account_cowboy_hat'                       = '󰺛'
    'nf-md-account_cowboy_hat_outline'               = '󱟳'
    'nf-md-account_details'                          = '󰘱'
    'nf-md-account_details_outline'                  = '󱍲'
    'nf-md-account_edit'                             = '󰚼'
    'nf-md-account_edit_outline'                     = '󰿻'
    'nf-md-account_eye'                              = '󰐠'
    'nf-md-account_eye_outline'                      = '󱉻'
    'nf-md-account_filter'                           = '󰤶'
    'nf-md-account_filter_outline'                   = '󰾝'
    'nf-md-account_group'                            = '󰡉'
    'nf-md-account_group_outline'                    = '󰭘'
    'nf-md-account_hard_hat'                         = '󰖵'
    'nf-md-account_hard_hat_outline'                 = '󱨟'
    'nf-md-account_heart'                            = '󰢙'
    'nf-md-account_heart_outline'                    = '󰯣'
    'nf-md-account_injury'                           = '󱠕'
    'nf-md-account_injury_outline'                   = '󱠖'
    'nf-md-account_key'                              = '󰀋'
    'nf-md-account_key_outline'                      = '󰯤'
    'nf-md-account_lock'                             = '󱅞'
    'nf-md-account_lock_open'                        = '󱥠'
    'nf-md-account_lock_open_outline'                = '󱥡'
    'nf-md-account_lock_outline'                     = '󱅟'
    'nf-md-account_minus'                            = '󰀍'
    'nf-md-account_minus_outline'                    = '󰫬'
    'nf-md-account_multiple'                         = '󰀎'
    'nf-md-account_multiple_check'                   = '󰣅'
    'nf-md-account_multiple_check_outline'           = '󱇾'
    'nf-md-account_multiple_minus'                   = '󰗓'
    'nf-md-account_multiple_minus_outline'           = '󰯥'
    'nf-md-account_multiple_outline'                 = '󰀏'
    'nf-md-account_multiple_plus'                    = '󰀐'
    'nf-md-account_multiple_plus_outline'            = '󰠀'
    'nf-md-account_multiple_remove'                  = '󱈊'
    'nf-md-account_multiple_remove_outline'          = '󱈋'
    'nf-md-account_music'                            = '󰠃'
    'nf-md-account_music_outline'                    = '󰳩'
    'nf-md-account_network'                          = '󰀑'
    'nf-md-account_network_outline'                  = '󰯦'
    'nf-md-account_off'                              = '󰀒'
    'nf-md-account_off_outline'                      = '󰯧'
    'nf-md-account_outline'                          = '󰀓'
    'nf-md-account_plus'                             = '󰀔'
    'nf-md-account_plus_outline'                     = '󰠁'
    'nf-md-account_question'                         = '󰭙'
    'nf-md-account_question_outline'                 = '󰭚'
    'nf-md-account_reactivate'                       = '󱔫'
    'nf-md-account_reactivate_outline'               = '󱔬'
    'nf-md-account_remove'                           = '󰀕'
    'nf-md-account_remove_outline'                   = '󰫭'
    'nf-md-account_school'                           = '󱨠'
    'nf-md-account_school_outline'                   = '󱨡'
    'nf-md-account_search'                           = '󰀖'
    'nf-md-account_search_outline'                   = '󰤵'
    'nf-md-account_settings'                         = '󰘰'
    'nf-md-account_settings_outline'                 = '󱃉'
    'nf-md-account_star'                             = '󰀗'
    'nf-md-account_star_outline'                     = '󰯨'
    'nf-md-account_supervisor'                       = '󰪋'
    'nf-md-account_supervisor_circle'                = '󰪌'
    'nf-md-account_supervisor_circle_outline'        = '󱓬'
    'nf-md-account_supervisor_outline'               = '󱄭'
    'nf-md-account_switch'                           = '󰀙'
    'nf-md-account_switch_outline'                   = '󰓋'
    'nf-md-account_sync'                             = '󱤛'
    'nf-md-account_sync_outline'                     = '󱤜'
    'nf-md-account_tie'                              = '󰳣'
    'nf-md-account_tie_hat'                          = '󱢘'
    'nf-md-account_tie_hat_outline'                  = '󱢙'
    'nf-md-account_tie_outline'                      = '󱃊'
    'nf-md-account_tie_voice'                        = '󱌈'
    'nf-md-account_tie_voice_off'                    = '󱌊'
    'nf-md-account_tie_voice_off_outline'            = '󱌋'
    'nf-md-account_tie_voice_outline'                = '󱌉'
    'nf-md-account_tie_woman'                        = '󱪌'
    'nf-md-account_voice'                            = '󰗋'
    'nf-md-account_voice_off'                        = '󰻔'
    'nf-md-account_wrench'                           = '󱢚'
    'nf-md-account_wrench_outline'                   = '󱢛'
    'nf-md-adjust'                                   = '󰀚'
    'nf-md-advertisements'                           = '󱤪'
    'nf-md-advertisements_off'                       = '󱤫'
    'nf-md-air_conditioner'                          = '󰀛'
    'nf-md-air_filter'                               = '󰵃'
    'nf-md-air_horn'                                 = '󰶬'
    'nf-md-air_humidifier'                           = '󱂙'
    'nf-md-air_humidifier_off'                       = '󱑦'
    'nf-md-air_purifier'                             = '󰵄'
    'nf-md-airbag'                                   = '󰯩'
    'nf-md-airballoon'                               = '󰀜'
    'nf-md-airballoon_outline'                       = '󱀋'
    'nf-md-airplane'                                 = '󰀝'
    'nf-md-airplane_alert'                           = '󱡺'
    'nf-md-airplane_check'                           = '󱡻'
    'nf-md-airplane_clock'                           = '󱡼'
    'nf-md-airplane_cog'                             = '󱡽'
    'nf-md-airplane_edit'                            = '󱡾'
    'nf-md-airplane_landing'                         = '󰗔'
    'nf-md-airplane_marker'                          = '󱡿'
    'nf-md-airplane_minus'                           = '󱢀'
    'nf-md-airplane_off'                             = '󰀞'
    'nf-md-airplane_plus'                            = '󱢁'
    'nf-md-airplane_remove'                          = '󱢂'
    'nf-md-airplane_search'                          = '󱢃'
    'nf-md-airplane_settings'                        = '󱢄'
    'nf-md-airplane_takeoff'                         = '󰗕'
    'nf-md-airport'                                  = '󰡋'
    'nf-md-alarm'                                    = '󰀠'
    'nf-md-alarm_bell'                               = '󰞎'
    'nf-md-alarm_check'                              = '󰀡'
    'nf-md-alarm_light'                              = '󰞏'
    'nf-md-alarm_light_off'                          = '󱜞'
    'nf-md-alarm_light_off_outline'                  = '󱜟'
    'nf-md-alarm_light_outline'                      = '󰯪'
    'nf-md-alarm_multiple'                           = '󰀢'
    'nf-md-alarm_note'                               = '󰹱'
    'nf-md-alarm_note_off'                           = '󰹲'
    'nf-md-alarm_off'                                = '󰀣'
    'nf-md-alarm_panel'                              = '󱗄'
    'nf-md-alarm_panel_outline'                      = '󱗅'
    'nf-md-alarm_plus'                               = '󰀤'
    'nf-md-alarm_snooze'                             = '󰚎'
    'nf-md-album'                                    = '󰀥'
    'nf-md-alert'                                    = '󰀦'
    'nf-md-alert_box'                                = '󰀧'
    'nf-md-alert_box_outline'                        = '󰳤'
    'nf-md-alert_circle'                             = '󰀨'
    'nf-md-alert_circle_check'                       = '󱇭'
    'nf-md-alert_circle_check_outline'               = '󱇮'
    'nf-md-alert_circle_outline'                     = '󰗖'
    'nf-md-alert_decagram'                           = '󰚽'
    'nf-md-alert_decagram_outline'                   = '󰳥'
    'nf-md-alert_minus'                              = '󱒻'
    'nf-md-alert_minus_outline'                      = '󱒾'
    'nf-md-alert_octagon'                            = '󰀩'
    'nf-md-alert_octagon_outline'                    = '󰳦'
    'nf-md-alert_octagram'                           = '󰝧'
    'nf-md-alert_octagram_outline'                   = '󰳧'
    'nf-md-alert_outline'                            = '󰀪'
    'nf-md-alert_plus'                               = '󱒺'
    'nf-md-alert_plus_outline'                       = '󱒽'
    'nf-md-alert_remove'                             = '󱒼'
    'nf-md-alert_remove_outline'                     = '󱒿'
    'nf-md-alert_rhombus'                            = '󱇎'
    'nf-md-alert_rhombus_outline'                    = '󱇏'
    'nf-md-alien'                                    = '󰢚'
    'nf-md-alien_outline'                            = '󱃋'
    'nf-md-align_horizontal_center'                  = '󱇃'
    'nf-md-align_horizontal_distribute'              = '󱥢'
    'nf-md-align_horizontal_left'                    = '󱇂'
    'nf-md-align_horizontal_right'                   = '󱇄'
    'nf-md-align_vertical_bottom'                    = '󱇅'
    'nf-md-align_vertical_center'                    = '󱇆'
    'nf-md-align_vertical_distribute'                = '󱥣'
    'nf-md-align_vertical_top'                       = '󱇇'
    'nf-md-all_inclusive'                            = '󰚾'
    'nf-md-all_inclusive_box'                        = '󱢍'
    'nf-md-all_inclusive_box_outline'                = '󱢎'
    'nf-md-allergy'                                  = '󱉘'
    'nf-md-alpha'                                    = '󰀫'
    'nf-md-alpha_a'                                  = '󰫮'
    'nf-md-alpha_a_box'                              = '󰬈'
    'nf-md-alpha_a_box_outline'                      = '󰯫'
    'nf-md-alpha_a_circle'                           = '󰯬'
    'nf-md-alpha_a_circle_outline'                   = '󰯭'
    'nf-md-alpha_b'                                  = '󰫯'
    'nf-md-alpha_b_box'                              = '󰬉'
    'nf-md-alpha_b_box_outline'                      = '󰯮'
    'nf-md-alpha_b_circle'                           = '󰯯'
    'nf-md-alpha_b_circle_outline'                   = '󰯰'
    'nf-md-alpha_c'                                  = '󰫰'
    'nf-md-alpha_c_box'                              = '󰬊'
    'nf-md-alpha_c_box_outline'                      = '󰯱'
    'nf-md-alpha_c_circle'                           = '󰯲'
    'nf-md-alpha_c_circle_outline'                   = '󰯳'
    'nf-md-alpha_d'                                  = '󰫱'
    'nf-md-alpha_d_box'                              = '󰬋'
    'nf-md-alpha_d_box_outline'                      = '󰯴'
    'nf-md-alpha_d_circle'                           = '󰯵'
    'nf-md-alpha_d_circle_outline'                   = '󰯶'
    'nf-md-alpha_e'                                  = '󰫲'
    'nf-md-alpha_e_box'                              = '󰬌'
    'nf-md-alpha_e_box_outline'                      = '󰯷'
    'nf-md-alpha_e_circle'                           = '󰯸'
    'nf-md-alpha_e_circle_outline'                   = '󰯹'
    'nf-md-alpha_f'                                  = '󰫳'
    'nf-md-alpha_f_box'                              = '󰬍'
    'nf-md-alpha_f_box_outline'                      = '󰯺'
    'nf-md-alpha_f_circle'                           = '󰯻'
    'nf-md-alpha_f_circle_outline'                   = '󰯼'
    'nf-md-alpha_g'                                  = '󰫴'
    'nf-md-alpha_g_box'                              = '󰬎'
    'nf-md-alpha_g_box_outline'                      = '󰯽'
    'nf-md-alpha_g_circle'                           = '󰯾'
    'nf-md-alpha_g_circle_outline'                   = '󰯿'
    'nf-md-alpha_h'                                  = '󰫵'
    'nf-md-alpha_h_box'                              = '󰬏'
    'nf-md-alpha_h_box_outline'                      = '󰰀'
    'nf-md-alpha_h_circle'                           = '󰰁'
    'nf-md-alpha_h_circle_outline'                   = '󰰂'
    'nf-md-alpha_i'                                  = '󱂈'
    'nf-md-alpha_i_box'                              = '󰬐'
    'nf-md-alpha_i_box_outline'                      = '󰰃'
    'nf-md-alpha_i_circle'                           = '󰰄'
    'nf-md-alpha_i_circle_outline'                   = '󰰅'
    'nf-md-alpha_j'                                  = '󰫷'
    'nf-md-alpha_j_box'                              = '󰬑'
    'nf-md-alpha_j_box_outline'                      = '󰰆'
    'nf-md-alpha_j_circle'                           = '󰰇'
    'nf-md-alpha_j_circle_outline'                   = '󰰈'
    'nf-md-alpha_k'                                  = '󰫸'
    'nf-md-alpha_k_box'                              = '󰬒'
    'nf-md-alpha_k_box_outline'                      = '󰰉'
    'nf-md-alpha_k_circle'                           = '󰰊'
    'nf-md-alpha_k_circle_outline'                   = '󰰋'
    'nf-md-alpha_l'                                  = '󱎦'
    'nf-md-alpha_l_box'                              = '󰬓'
    'nf-md-alpha_l_box_outline'                      = '󰰌'
    'nf-md-alpha_l_circle'                           = '󰰍'
    'nf-md-alpha_l_circle_outline'                   = '󰰎'
    'nf-md-alpha_m'                                  = '󰫺'
    'nf-md-alpha_m_box'                              = '󰬔'
    'nf-md-alpha_m_box_outline'                      = '󰰏'
    'nf-md-alpha_m_circle'                           = '󰰐'
    'nf-md-alpha_m_circle_outline'                   = '󰰑'
    'nf-md-alpha_n'                                  = '󰫻'
    'nf-md-alpha_n_box'                              = '󰬕'
    'nf-md-alpha_n_box_outline'                      = '󰰒'
    'nf-md-alpha_n_circle'                           = '󰰓'
    'nf-md-alpha_n_circle_outline'                   = '󰰔'
    'nf-md-alpha_o'                                  = '󰬹'
    'nf-md-alpha_o_box'                              = '󰬖'
    'nf-md-alpha_o_box_outline'                      = '󰰕'
    'nf-md-alpha_o_circle'                           = '󰲞'
    'nf-md-alpha_o_circle_outline'                   = '󰲟'
    'nf-md-alpha_p'                                  = '󰫽'
    'nf-md-alpha_p_box'                              = '󰬗'
    'nf-md-alpha_p_box_outline'                      = '󰰘'
    'nf-md-alpha_p_circle'                           = '󰰙'
    'nf-md-alpha_p_circle_outline'                   = '󰰚'
    'nf-md-alpha_q'                                  = '󰫾'
    'nf-md-alpha_q_box'                              = '󰬘'
    'nf-md-alpha_q_box_outline'                      = '󰰛'
    'nf-md-alpha_q_circle'                           = '󰰜'
    'nf-md-alpha_q_circle_outline'                   = '󰰝'
    'nf-md-alpha_r'                                  = '󰫿'
    'nf-md-alpha_r_box'                              = '󰬙'
    'nf-md-alpha_r_box_outline'                      = '󰰞'
    'nf-md-alpha_r_circle'                           = '󰰟'
    'nf-md-alpha_r_circle_outline'                   = '󰰠'
    'nf-md-alpha_s'                                  = '󰬀'
    'nf-md-alpha_s_box'                              = '󰬚'
    'nf-md-alpha_s_box_outline'                      = '󰰡'
    'nf-md-alpha_s_circle'                           = '󰰢'
    'nf-md-alpha_s_circle_outline'                   = '󰰣'
    'nf-md-alpha_t'                                  = '󰬁'
    'nf-md-alpha_t_box'                              = '󰬛'
    'nf-md-alpha_t_box_outline'                      = '󰰤'
    'nf-md-alpha_t_circle'                           = '󰰥'
    'nf-md-alpha_t_circle_outline'                   = '󰰦'
    'nf-md-alpha_u'                                  = '󰬂'
    'nf-md-alpha_u_box'                              = '󰬜'
    'nf-md-alpha_u_box_outline'                      = '󰰧'
    'nf-md-alpha_u_circle'                           = '󰰨'
    'nf-md-alpha_u_circle_outline'                   = '󰰩'
    'nf-md-alpha_v'                                  = '󱂌'
    'nf-md-alpha_v_box'                              = '󰬝'
    'nf-md-alpha_v_box_outline'                      = '󰰪'
    'nf-md-alpha_v_circle'                           = '󰰫'
    'nf-md-alpha_v_circle_outline'                   = '󰰬'
    'nf-md-alpha_w'                                  = '󰬄'
    'nf-md-alpha_w_box'                              = '󰬞'
    'nf-md-alpha_w_box_outline'                      = '󰰭'
    'nf-md-alpha_w_circle'                           = '󰰮'
    'nf-md-alpha_w_circle_outline'                   = '󰰯'
    'nf-md-alpha_x'                                  = '󱂑'
    'nf-md-alpha_x_box'                              = '󰬟'
    'nf-md-alpha_x_box_outline'                      = '󰰰'
    'nf-md-alpha_x_circle'                           = '󰰱'
    'nf-md-alpha_x_circle_outline'                   = '󰰲'
    'nf-md-alpha_y'                                  = '󰬆'
    'nf-md-alpha_y_box'                              = '󰬠'
    'nf-md-alpha_y_box_outline'                      = '󰰳'
    'nf-md-alpha_y_circle'                           = '󰰴'
    'nf-md-alpha_y_circle_outline'                   = '󰰵'
    'nf-md-alpha_z'                                  = '󰬇'
    'nf-md-alpha_z_box'                              = '󰬡'
    'nf-md-alpha_z_box_outline'                      = '󰰶'
    'nf-md-alpha_z_circle'                           = '󰰷'
    'nf-md-alpha_z_circle_outline'                   = '󰰸'
    'nf-md-alphabet_aurebesh'                        = '󱌬'
    'nf-md-alphabet_cyrillic'                        = '󱌭'
    'nf-md-alphabet_greek'                           = '󱌮'
    'nf-md-alphabet_latin'                           = '󱌯'
    'nf-md-alphabet_piqad'                           = '󱌰'
    'nf-md-alphabet_tengwar'                         = '󱌷'
    'nf-md-alphabetical'                             = '󰀬'
    'nf-md-alphabetical_off'                         = '󱀌'
    'nf-md-alphabetical_variant'                     = '󱀍'
    'nf-md-alphabetical_variant_off'                 = '󱀎'
    'nf-md-altimeter'                                = '󰗗'
    'nf-md-ambulance'                                = '󰀯'
    'nf-md-ammunition'                               = '󰳨'
    'nf-md-ampersand'                                = '󰪍'
    'nf-md-amplifier'                                = '󰀰'
    'nf-md-amplifier_off'                            = '󱆵'
    'nf-md-anchor'                                   = '󰀱'
    'nf-md-android'                                  = '󰀲'
    'nf-md-android_messages'                         = '󰵅'
    'nf-md-android_studio'                           = '󰀴'
    'nf-md-angle_acute'                              = '󰤷'
    'nf-md-angle_obtuse'                             = '󰤸'
    'nf-md-angle_right'                              = '󰤹'
    'nf-md-angular'                                  = '󰚲'
    'nf-md-angularjs'                                = '󰚿'
    'nf-md-animation'                                = '󰗘'
    'nf-md-animation_outline'                        = '󰪏'
    'nf-md-animation_play'                           = '󰤺'
    'nf-md-animation_play_outline'                   = '󰪐'
    'nf-md-ansible'                                  = '󱂚'
    'nf-md-antenna'                                  = '󱄙'
    'nf-md-anvil'                                    = '󰢛'
    'nf-md-apache_kafka'                             = '󱀏'
    'nf-md-api'                                      = '󱂛'
    'nf-md-api_off'                                  = '󱉗'
    'nf-md-apple'                                    = '󰀵'
    'nf-md-apple_finder'                             = '󰀶'
    'nf-md-apple_icloud'                             = '󰀸'
    'nf-md-apple_ios'                                = '󰀷'
    'nf-md-apple_keyboard_caps'                      = '󰘲'
    'nf-md-apple_keyboard_command'                   = '󰘳'
    'nf-md-apple_keyboard_control'                   = '󰘴'
    'nf-md-apple_keyboard_option'                    = '󰘵'
    'nf-md-apple_keyboard_shift'                     = '󰘶'
    'nf-md-apple_safari'                             = '󰀹'
    'nf-md-application'                              = '󰣆'
    'nf-md-application_array'                        = '󱃵'
    'nf-md-application_array_outline'                = '󱃶'
    'nf-md-application_braces'                       = '󱃷'
    'nf-md-application_braces_outline'               = '󱃸'
    'nf-md-application_brackets'                     = '󰲋'
    'nf-md-application_brackets_outline'             = '󰲌'
    'nf-md-application_cog'                          = '󰙵'
    'nf-md-application_cog_outline'                  = '󱕷'
    'nf-md-application_edit'                         = '󰂮'
    'nf-md-application_edit_outline'                 = '󰘙'
    'nf-md-application_export'                       = '󰶭'
    'nf-md-application_import'                       = '󰶮'
    'nf-md-application_outline'                      = '󰘔'
    'nf-md-application_parentheses'                  = '󱃹'
    'nf-md-application_parentheses_outline'          = '󱃺'
    'nf-md-application_settings'                     = '󰭠'
    'nf-md-application_settings_outline'             = '󱕕'
    'nf-md-application_variable'                     = '󱃻'
    'nf-md-application_variable_outline'             = '󱃼'
    'nf-md-approximately_equal'                      = '󰾞'
    'nf-md-approximately_equal_box'                  = '󰾟'
    'nf-md-apps'                                     = '󰀻'
    'nf-md-apps_box'                                 = '󰵆'
    'nf-md-arch'                                     = '󰣇'
    'nf-md-archive'                                  = '󰀼'
    'nf-md-archive_alert'                            = '󱓽'
    'nf-md-archive_alert_outline'                    = '󱓾'
    'nf-md-archive_arrow_down'                       = '󱉙'
    'nf-md-archive_arrow_down_outline'               = '󱉚'
    'nf-md-archive_arrow_up'                         = '󱉛'
    'nf-md-archive_arrow_up_outline'                 = '󱉜'
    'nf-md-archive_cancel'                           = '󱝋'
    'nf-md-archive_cancel_outline'                   = '󱝌'
    'nf-md-archive_check'                            = '󱝍'
    'nf-md-archive_check_outline'                    = '󱝎'
    'nf-md-archive_clock'                            = '󱝏'
    'nf-md-archive_clock_outline'                    = '󱝐'
    'nf-md-archive_cog'                              = '󱝑'
    'nf-md-archive_cog_outline'                      = '󱝒'
    'nf-md-archive_edit'                             = '󱝓'
    'nf-md-archive_edit_outline'                     = '󱝔'
    'nf-md-archive_eye'                              = '󱝕'
    'nf-md-archive_eye_outline'                      = '󱝖'
    'nf-md-archive_lock'                             = '󱝗'
    'nf-md-archive_lock_open'                        = '󱝘'
    'nf-md-archive_lock_open_outline'                = '󱝙'
    'nf-md-archive_lock_outline'                     = '󱝚'
    'nf-md-archive_marker'                           = '󱝛'
    'nf-md-archive_marker_outline'                   = '󱝜'
    'nf-md-archive_minus'                            = '󱝝'
    'nf-md-archive_minus_outline'                    = '󱝞'
    'nf-md-archive_music'                            = '󱝟'
    'nf-md-archive_music_outline'                    = '󱝠'
    'nf-md-archive_off'                              = '󱝡'
    'nf-md-archive_off_outline'                      = '󱝢'
    'nf-md-archive_outline'                          = '󱈎'
    'nf-md-archive_plus'                             = '󱝣'
    'nf-md-archive_plus_outline'                     = '󱝤'
    'nf-md-archive_refresh'                          = '󱝥'
    'nf-md-archive_refresh_outline'                  = '󱝦'
    'nf-md-archive_remove'                           = '󱝧'
    'nf-md-archive_remove_outline'                   = '󱝨'
    'nf-md-archive_search'                           = '󱝩'
    'nf-md-archive_search_outline'                   = '󱝪'
    'nf-md-archive_settings'                         = '󱝫'
    'nf-md-archive_settings_outline'                 = '󱝬'
    'nf-md-archive_star'                             = '󱝭'
    'nf-md-archive_star_outline'                     = '󱝮'
    'nf-md-archive_sync'                             = '󱝯'
    'nf-md-archive_sync_outline'                     = '󱝰'
    'nf-md-arm_flex'                                 = '󰿗'
    'nf-md-arm_flex_outline'                         = '󰿖'
    'nf-md-arrange_bring_forward'                    = '󰀽'
    'nf-md-arrange_bring_to_front'                   = '󰀾'
    'nf-md-arrange_send_backward'                    = '󰀿'
    'nf-md-arrange_send_to_back'                     = '󰁀'
    'nf-md-arrow_all'                                = '󰁁'
    'nf-md-arrow_bottom_left'                        = '󰁂'
    'nf-md-arrow_bottom_left_bold_box'               = '󱥤'
    'nf-md-arrow_bottom_left_bold_box_outline'       = '󱥥'
    'nf-md-arrow_bottom_left_bold_outline'           = '󰦷'
    'nf-md-arrow_bottom_left_thick'                  = '󰦸'
    'nf-md-arrow_bottom_left_thin'                   = '󱦶'
    'nf-md-arrow_bottom_left_thin_circle_outline'    = '󱖖'
    'nf-md-arrow_bottom_right'                       = '󰁃'
    'nf-md-arrow_bottom_right_bold_box'              = '󱥦'
    'nf-md-arrow_bottom_right_bold_box_outline'      = '󱥧'
    'nf-md-arrow_bottom_right_bold_outline'          = '󰦹'
    'nf-md-arrow_bottom_right_thick'                 = '󰦺'
    'nf-md-arrow_bottom_right_thin'                  = '󱦷'
    'nf-md-arrow_bottom_right_thin_circle_outline'   = '󱖕'
    'nf-md-arrow_collapse'                           = '󰘕'
    'nf-md-arrow_collapse_all'                       = '󰁄'
    'nf-md-arrow_collapse_down'                      = '󰞒'
    'nf-md-arrow_collapse_horizontal'                = '󰡌'
    'nf-md-arrow_collapse_left'                      = '󰞓'
    'nf-md-arrow_collapse_right'                     = '󰞔'
    'nf-md-arrow_collapse_up'                        = '󰞕'
    'nf-md-arrow_collapse_vertical'                  = '󰡍'
    'nf-md-arrow_decision'                           = '󰦻'
    'nf-md-arrow_decision_auto'                      = '󰦼'
    'nf-md-arrow_decision_auto_outline'              = '󰦽'
    'nf-md-arrow_decision_outline'                   = '󰦾'
    'nf-md-arrow_down'                               = '󰁅'
    'nf-md-arrow_down_bold'                          = '󰜮'
    'nf-md-arrow_down_bold_box'                      = '󰜯'
    'nf-md-arrow_down_bold_box_outline'              = '󰜰'
    'nf-md-arrow_down_bold_circle'                   = '󰁇'
    'nf-md-arrow_down_bold_circle_outline'           = '󰁈'
    'nf-md-arrow_down_bold_hexagon_outline'          = '󰁉'
    'nf-md-arrow_down_bold_outline'                  = '󰦿'
    'nf-md-arrow_down_box'                           = '󰛀'
    'nf-md-arrow_down_circle'                        = '󰳛'
    'nf-md-arrow_down_circle_outline'                = '󰳜'
    'nf-md-arrow_down_drop_circle'                   = '󰁊'
    'nf-md-arrow_down_drop_circle_outline'           = '󰁋'
    'nf-md-arrow_down_left'                          = '󱞡'
    'nf-md-arrow_down_left_bold'                     = '󱞢'
    'nf-md-arrow_down_right'                         = '󱞣'
    'nf-md-arrow_down_right_bold'                    = '󱞤'
    'nf-md-arrow_down_thick'                         = '󰁆'
    'nf-md-arrow_down_thin'                          = '󱦳'
    'nf-md-arrow_down_thin_circle_outline'           = '󱖙'
    'nf-md-arrow_expand'                             = '󰘖'
    'nf-md-arrow_expand_all'                         = '󰁌'
    'nf-md-arrow_expand_down'                        = '󰞖'
    'nf-md-arrow_expand_horizontal'                  = '󰡎'
    'nf-md-arrow_expand_left'                        = '󰞗'
    'nf-md-arrow_expand_right'                       = '󰞘'
    'nf-md-arrow_expand_up'                          = '󰞙'
    'nf-md-arrow_expand_vertical'                    = '󰡏'
    'nf-md-arrow_horizontal_lock'                    = '󱅛'
    'nf-md-arrow_left'                               = '󰁍'
    'nf-md-arrow_left_bold'                          = '󰜱'
    'nf-md-arrow_left_bold_box'                      = '󰜲'
    'nf-md-arrow_left_bold_box_outline'              = '󰜳'
    'nf-md-arrow_left_bold_circle'                   = '󰁏'
    'nf-md-arrow_left_bold_circle_outline'           = '󰁐'
    'nf-md-arrow_left_bold_hexagon_outline'          = '󰁑'
    'nf-md-arrow_left_bold_outline'                  = '󰧀'
    'nf-md-arrow_left_bottom'                        = '󱞥'
    'nf-md-arrow_left_bottom_bold'                   = '󱞦'
    'nf-md-arrow_left_box'                           = '󰛁'
    'nf-md-arrow_left_circle'                        = '󰳝'
    'nf-md-arrow_left_circle_outline'                = '󰳞'
    'nf-md-arrow_left_drop_circle'                   = '󰁒'
    'nf-md-arrow_left_drop_circle_outline'           = '󰁓'
    'nf-md-arrow_left_right'                         = '󰹳'
    'nf-md-arrow_left_right_bold'                    = '󰹴'
    'nf-md-arrow_left_right_bold_outline'            = '󰧁'
    'nf-md-arrow_left_thick'                         = '󰁎'
    'nf-md-arrow_left_thin'                          = '󱦱'
    'nf-md-arrow_left_thin_circle_outline'           = '󱖚'
    'nf-md-arrow_left_top'                           = '󱞧'
    'nf-md-arrow_left_top_bold'                      = '󱞨'
    'nf-md-arrow_projectile'                         = '󱡀'
    'nf-md-arrow_projectile_multiple'                = '󱠿'
    'nf-md-arrow_right'                              = '󰁔'
    'nf-md-arrow_right_bold'                         = '󰜴'
    'nf-md-arrow_right_bold_box'                     = '󰜵'
    'nf-md-arrow_right_bold_box_outline'             = '󰜶'
    'nf-md-arrow_right_bold_circle'                  = '󰁖'
    'nf-md-arrow_right_bold_circle_outline'          = '󰁗'
    'nf-md-arrow_right_bold_hexagon_outline'         = '󰁘'
    'nf-md-arrow_right_bold_outline'                 = '󰧂'
    'nf-md-arrow_right_bottom'                       = '󱞩'
    'nf-md-arrow_right_bottom_bold'                  = '󱞪'
    'nf-md-arrow_right_box'                          = '󰛂'
    'nf-md-arrow_right_circle'                       = '󰳟'
    'nf-md-arrow_right_circle_outline'               = '󰳠'
    'nf-md-arrow_right_drop_circle'                  = '󰁙'
    'nf-md-arrow_right_drop_circle_outline'          = '󰁚'
    'nf-md-arrow_right_thick'                        = '󰁕'
    'nf-md-arrow_right_thin'                         = '󱦰'
    'nf-md-arrow_right_thin_circle_outline'          = '󱖘'
    'nf-md-arrow_right_top'                          = '󱞫'
    'nf-md-arrow_right_top_bold'                     = '󱞬'
    'nf-md-arrow_split_horizontal'                   = '󰤻'
    'nf-md-arrow_split_vertical'                     = '󰤼'
    'nf-md-arrow_top_left'                           = '󰁛'
    'nf-md-arrow_top_left_bold_box'                  = '󱥨'
    'nf-md-arrow_top_left_bold_box_outline'          = '󱥩'
    'nf-md-arrow_top_left_bold_outline'              = '󰧃'
    'nf-md-arrow_top_left_bottom_right'              = '󰹵'
    'nf-md-arrow_top_left_bottom_right_bold'         = '󰹶'
    'nf-md-arrow_top_left_thick'                     = '󰧄'
    'nf-md-arrow_top_left_thin'                      = '󱦵'
    'nf-md-arrow_top_left_thin_circle_outline'       = '󱖓'
    'nf-md-arrow_top_right'                          = '󰁜'
    'nf-md-arrow_top_right_bold_box'                 = '󱥪'
    'nf-md-arrow_top_right_bold_box_outline'         = '󱥫'
    'nf-md-arrow_top_right_bold_outline'             = '󰧅'
    'nf-md-arrow_top_right_bottom_left'              = '󰹷'
    'nf-md-arrow_top_right_bottom_left_bold'         = '󰹸'
    'nf-md-arrow_top_right_thick'                    = '󰧆'
    'nf-md-arrow_top_right_thin'                     = '󱦴'
    'nf-md-arrow_top_right_thin_circle_outline'      = '󱖔'
    'nf-md-arrow_u_down_left'                        = '󱞭'
    'nf-md-arrow_u_down_left_bold'                   = '󱞮'
    'nf-md-arrow_u_down_right'                       = '󱞯'
    'nf-md-arrow_u_down_right_bold'                  = '󱞰'
    'nf-md-arrow_u_left_bottom'                      = '󱞱'
    'nf-md-arrow_u_left_bottom_bold'                 = '󱞲'
    'nf-md-arrow_u_left_top'                         = '󱞳'
    'nf-md-arrow_u_left_top_bold'                    = '󱞴'
    'nf-md-arrow_u_right_bottom'                     = '󱞵'
    'nf-md-arrow_u_right_bottom_bold'                = '󱞶'
    'nf-md-arrow_u_right_top'                        = '󱞷'
    'nf-md-arrow_u_right_top_bold'                   = '󱞸'
    'nf-md-arrow_u_up_left'                          = '󱞹'
    'nf-md-arrow_u_up_left_bold'                     = '󱞺'
    'nf-md-arrow_u_up_right'                         = '󱞻'
    'nf-md-arrow_u_up_right_bold'                    = '󱞼'
    'nf-md-arrow_up'                                 = '󰁝'
    'nf-md-arrow_up_bold'                            = '󰜷'
    'nf-md-arrow_up_bold_box'                        = '󰜸'
    'nf-md-arrow_up_bold_box_outline'                = '󰜹'
    'nf-md-arrow_up_bold_circle'                     = '󰁟'
    'nf-md-arrow_up_bold_circle_outline'             = '󰁠'
    'nf-md-arrow_up_bold_hexagon_outline'            = '󰁡'
    'nf-md-arrow_up_bold_outline'                    = '󰧇'
    'nf-md-arrow_up_box'                             = '󰛃'
    'nf-md-arrow_up_circle'                          = '󰳡'
    'nf-md-arrow_up_circle_outline'                  = '󰳢'
    'nf-md-arrow_up_down'                            = '󰹹'
    'nf-md-arrow_up_down_bold'                       = '󰹺'
    'nf-md-arrow_up_down_bold_outline'               = '󰧈'
    'nf-md-arrow_up_drop_circle'                     = '󰁢'
    'nf-md-arrow_up_drop_circle_outline'             = '󰁣'
    'nf-md-arrow_up_left'                            = '󱞽'
    'nf-md-arrow_up_left_bold'                       = '󱞾'
    'nf-md-arrow_up_right'                           = '󱞿'
    'nf-md-arrow_up_right_bold'                      = '󱟀'
    'nf-md-arrow_up_thick'                           = '󰁞'
    'nf-md-arrow_up_thin'                            = '󱦲'
    'nf-md-arrow_up_thin_circle_outline'             = '󱖗'
    'nf-md-arrow_vertical_lock'                      = '󱅜'
    'nf-md-artstation'                               = '󰭛'
    'nf-md-aspect_ratio'                             = '󰨤'
    'nf-md-assistant'                                = '󰁤'
    'nf-md-asterisk'                                 = '󰛄'
    'nf-md-asterisk_circle_outline'                  = '󱨧'
    'nf-md-at'                                       = '󰁥'
    'nf-md-atlassian'                                = '󰠄'
    'nf-md-atm'                                      = '󰵇'
    'nf-md-atom'                                     = '󰝨'
    'nf-md-atom_variant'                             = '󰹻'
    'nf-md-attachment'                               = '󰁦'
    'nf-md-attachment_check'                         = '󱫁'
    'nf-md-attachment_lock'                          = '󱧄'
    'nf-md-attachment_minus'                         = '󱫂'
    'nf-md-attachment_off'                           = '󱫃'
    'nf-md-attachment_plus'                          = '󱫄'
    'nf-md-attachment_remove'                        = '󱫅'
    'nf-md-audio_input_rca'                          = '󱡫'
    'nf-md-audio_input_stereo_minijack'              = '󱡬'
    'nf-md-audio_input_xlr'                          = '󱡭'
    'nf-md-audio_video'                              = '󰤽'
    'nf-md-audio_video_off'                          = '󱆶'
    'nf-md-augmented_reality'                        = '󰡐'
    'nf-md-auto_download'                            = '󱍾'
    'nf-md-auto_fix'                                 = '󰁨'
    'nf-md-auto_upload'                              = '󰁩'
    'nf-md-autorenew'                                = '󰁪'
    'nf-md-autorenew_off'                            = '󱧧'
    'nf-md-av_timer'                                 = '󰁫'
    'nf-md-aws'                                      = '󰸏'
    'nf-md-axe'                                      = '󰣈'
    'nf-md-axe_battle'                               = '󱡂'
    'nf-md-axis'                                     = '󰵈'
    'nf-md-axis_arrow'                               = '󰵉'
    'nf-md-axis_arrow_info'                          = '󱐎'
    'nf-md-axis_arrow_lock'                          = '󰵊'
    'nf-md-axis_lock'                                = '󰵋'
    'nf-md-axis_x_arrow'                             = '󰵌'
    'nf-md-axis_x_arrow_lock'                        = '󰵍'
    'nf-md-axis_x_rotate_clockwise'                  = '󰵎'
    'nf-md-axis_x_rotate_counterclockwise'           = '󰵏'
    'nf-md-axis_x_y_arrow_lock'                      = '󰵐'
    'nf-md-axis_y_arrow'                             = '󰵑'
    'nf-md-axis_y_arrow_lock'                        = '󰵒'
    'nf-md-axis_y_rotate_clockwise'                  = '󰵓'
    'nf-md-axis_y_rotate_counterclockwise'           = '󰵔'
    'nf-md-axis_z_arrow'                             = '󰵕'
    'nf-md-axis_z_arrow_lock'                        = '󰵖'
    'nf-md-axis_z_rotate_clockwise'                  = '󰵗'
    'nf-md-axis_z_rotate_counterclockwise'           = '󰵘'
    'nf-md-babel'                                    = '󰨥'
    'nf-md-baby'                                     = '󰁬'
    'nf-md-baby_bottle'                              = '󰼹'
    'nf-md-baby_bottle_outline'                      = '󰼺'
    'nf-md-baby_buggy'                               = '󱏠'
    'nf-md-baby_carriage'                            = '󰚏'
    'nf-md-baby_carriage_off'                        = '󰾠'
    'nf-md-baby_face'                                = '󰹼'
    'nf-md-baby_face_outline'                        = '󰹽'
    'nf-md-backburger'                               = '󰁭'
    'nf-md-backspace'                                = '󰁮'
    'nf-md-backspace_outline'                        = '󰭜'
    'nf-md-backspace_reverse'                        = '󰹾'
    'nf-md-backspace_reverse_outline'                = '󰹿'
    'nf-md-backup_restore'                           = '󰁯'
    'nf-md-bacteria'                                 = '󰻕'
    'nf-md-bacteria_outline'                         = '󰻖'
    'nf-md-badge_account'                            = '󰶧'
    'nf-md-badge_account_alert'                      = '󰶨'
    'nf-md-badge_account_alert_outline'              = '󰶩'
    'nf-md-badge_account_horizontal'                 = '󰸍'
    'nf-md-badge_account_horizontal_outline'         = '󰸎'
    'nf-md-badge_account_outline'                    = '󰶪'
    'nf-md-badminton'                                = '󰡑'
    'nf-md-bag_carry_on'                             = '󰼻'
    'nf-md-bag_carry_on_check'                       = '󰵥'
    'nf-md-bag_carry_on_off'                         = '󰼼'
    'nf-md-bag_checked'                              = '󰼽'
    'nf-md-bag_personal'                             = '󰸐'
    'nf-md-bag_personal_off'                         = '󰸑'
    'nf-md-bag_personal_off_outline'                 = '󰸒'
    'nf-md-bag_personal_outline'                     = '󰸓'
    'nf-md-bag_suitcase'                             = '󱖋'
    'nf-md-bag_suitcase_off'                         = '󱖍'
    'nf-md-bag_suitcase_off_outline'                 = '󱖎'
    'nf-md-bag_suitcase_outline'                     = '󱖌'
    'nf-md-baguette'                                 = '󰼾'
    'nf-md-balcony'                                  = '󱠗'
    'nf-md-balloon'                                  = '󰨦'
    'nf-md-ballot'                                   = '󰧉'
    'nf-md-ballot_outline'                           = '󰧊'
    'nf-md-ballot_recount'                           = '󰰹'
    'nf-md-ballot_recount_outline'                   = '󰰺'
    'nf-md-bandage'                                  = '󰶯'
    'nf-md-bank'                                     = '󰁰'
    'nf-md-bank_check'                               = '󱙕'
    'nf-md-bank_minus'                               = '󰶰'
    'nf-md-bank_off'                                 = '󱙖'
    'nf-md-bank_off_outline'                         = '󱙗'
    'nf-md-bank_outline'                             = '󰺀'
    'nf-md-bank_plus'                                = '󰶱'
    'nf-md-bank_remove'                              = '󰶲'
    'nf-md-bank_transfer'                            = '󰨧'
    'nf-md-bank_transfer_in'                         = '󰨨'
    'nf-md-bank_transfer_out'                        = '󰨩'
    'nf-md-barcode'                                  = '󰁱'
    'nf-md-barcode_off'                              = '󱈶'
    'nf-md-barcode_scan'                             = '󰁲'
    'nf-md-barley'                                   = '󰁳'
    'nf-md-barley_off'                               = '󰭝'
    'nf-md-barn'                                     = '󰭞'
    'nf-md-barrel'                                   = '󰁴'
    'nf-md-barrel_outline'                           = '󱨨'
    'nf-md-baseball'                                 = '󰡒'
    'nf-md-baseball_bat'                             = '󰡓'
    'nf-md-baseball_diamond'                         = '󱗬'
    'nf-md-baseball_diamond_outline'                 = '󱗭'
    'nf-md-bash'                                     = '󱆃'
    'nf-md-basket'                                   = '󰁶'
    'nf-md-basket_check'                             = '󱣥'
    'nf-md-basket_check_outline'                     = '󱣦'
    'nf-md-basket_fill'                              = '󰁷'
    'nf-md-basket_minus'                             = '󱔣'
    'nf-md-basket_minus_outline'                     = '󱔤'
    'nf-md-basket_off'                               = '󱔥'
    'nf-md-basket_off_outline'                       = '󱔦'
    'nf-md-basket_outline'                           = '󱆁'
    'nf-md-basket_plus'                              = '󱔧'
    'nf-md-basket_plus_outline'                      = '󱔨'
    'nf-md-basket_remove'                            = '󱔩'
    'nf-md-basket_remove_outline'                    = '󱔪'
    'nf-md-basket_unfill'                            = '󰁸'
    'nf-md-basketball'                               = '󰠆'
    'nf-md-basketball_hoop'                          = '󰰻'
    'nf-md-basketball_hoop_outline'                  = '󰰼'
    'nf-md-bat'                                      = '󰭟'
    'nf-md-bathtub'                                  = '󱠘'
    'nf-md-bathtub_outline'                          = '󱠙'
    'nf-md-battery'                                  = '󰁹'
    'nf-md-battery_10'                               = '󰁺'
    'nf-md-battery_10_bluetooth'                     = '󰤾'
    'nf-md-battery_20'                               = '󰁻'
    'nf-md-battery_20_bluetooth'                     = '󰤿'
    'nf-md-battery_30'                               = '󰁼'
    'nf-md-battery_30_bluetooth'                     = '󰥀'
    'nf-md-battery_40'                               = '󰁽'
    'nf-md-battery_40_bluetooth'                     = '󰥁'
    'nf-md-battery_50'                               = '󰁾'
    'nf-md-battery_50_bluetooth'                     = '󰥂'
    'nf-md-battery_60'                               = '󰁿'
    'nf-md-battery_60_bluetooth'                     = '󰥃'
    'nf-md-battery_70'                               = '󰂀'
    'nf-md-battery_70_bluetooth'                     = '󰥄'
    'nf-md-battery_80'                               = '󰂁'
    'nf-md-battery_80_bluetooth'                     = '󰥅'
    'nf-md-battery_90'                               = '󰂂'
    'nf-md-battery_90_bluetooth'                     = '󰥆'
    'nf-md-battery_alert'                            = '󰂃'
    'nf-md-battery_alert_bluetooth'                  = '󰥇'
    'nf-md-battery_alert_variant'                    = '󱃌'
    'nf-md-battery_alert_variant_outline'            = '󱃍'
    'nf-md-battery_arrow_down'                       = '󱟞'
    'nf-md-battery_arrow_down_outline'               = '󱟟'
    'nf-md-battery_arrow_up'                         = '󱟠'
    'nf-md-battery_arrow_up_outline'                 = '󱟡'
    'nf-md-battery_bluetooth'                        = '󰥈'
    'nf-md-battery_bluetooth_variant'                = '󰥉'
    'nf-md-battery_charging'                         = '󰂄'
    'nf-md-battery_charging_10'                      = '󰢜'
    'nf-md-battery_charging_100'                     = '󰂅'
    'nf-md-battery_charging_20'                      = '󰂆'
    'nf-md-battery_charging_30'                      = '󰂇'
    'nf-md-battery_charging_40'                      = '󰂈'
    'nf-md-battery_charging_50'                      = '󰢝'
    'nf-md-battery_charging_60'                      = '󰂉'
    'nf-md-battery_charging_70'                      = '󰢞'
    'nf-md-battery_charging_80'                      = '󰂊'
    'nf-md-battery_charging_90'                      = '󰂋'
    'nf-md-battery_charging_high'                    = '󱊦'
    'nf-md-battery_charging_low'                     = '󱊤'
    'nf-md-battery_charging_medium'                  = '󱊥'
    'nf-md-battery_charging_outline'                 = '󰢟'
    'nf-md-battery_charging_wireless'                = '󰠇'
    'nf-md-battery_charging_wireless_10'             = '󰠈'
    'nf-md-battery_charging_wireless_20'             = '󰠉'
    'nf-md-battery_charging_wireless_30'             = '󰠊'
    'nf-md-battery_charging_wireless_40'             = '󰠋'
    'nf-md-battery_charging_wireless_50'             = '󰠌'
    'nf-md-battery_charging_wireless_60'             = '󰠍'
    'nf-md-battery_charging_wireless_70'             = '󰠎'
    'nf-md-battery_charging_wireless_80'             = '󰠏'
    'nf-md-battery_charging_wireless_90'             = '󰠐'
    'nf-md-battery_charging_wireless_alert'          = '󰠑'
    'nf-md-battery_charging_wireless_outline'        = '󰠒'
    'nf-md-battery_check'                            = '󱟢'
    'nf-md-battery_check_outline'                    = '󱟣'
    'nf-md-battery_clock'                            = '󱧥'
    'nf-md-battery_clock_outline'                    = '󱧦'
    'nf-md-battery_heart'                            = '󱈏'
    'nf-md-battery_heart_outline'                    = '󱈐'
    'nf-md-battery_heart_variant'                    = '󱈑'
    'nf-md-battery_high'                             = '󱊣'
    'nf-md-battery_lock'                             = '󱞜'
    'nf-md-battery_lock_open'                        = '󱞝'
    'nf-md-battery_low'                              = '󱊡'
    'nf-md-battery_medium'                           = '󱊢'
    'nf-md-battery_minus'                            = '󱟤'
    'nf-md-battery_minus_outline'                    = '󱟥'
    'nf-md-battery_minus_variant'                    = '󰂌'
    'nf-md-battery_negative'                         = '󰂍'
    'nf-md-battery_off'                              = '󱉝'
    'nf-md-battery_off_outline'                      = '󱉞'
    'nf-md-battery_outline'                          = '󰂎'
    'nf-md-battery_plus'                             = '󱟦'
    'nf-md-battery_plus_outline'                     = '󱟧'
    'nf-md-battery_plus_variant'                     = '󰂏'
    'nf-md-battery_positive'                         = '󰂐'
    'nf-md-battery_remove'                           = '󱟨'
    'nf-md-battery_remove_outline'                   = '󱟩'
    'nf-md-battery_sync'                             = '󱠴'
    'nf-md-battery_sync_outline'                     = '󱠵'
    'nf-md-battery_unknown'                          = '󰂑'
    'nf-md-battery_unknown_bluetooth'                = '󰥊'
    'nf-md-beach'                                    = '󰂒'
    'nf-md-beaker'                                   = '󰳪'
    'nf-md-beaker_alert'                             = '󱈩'
    'nf-md-beaker_alert_outline'                     = '󱈪'
    'nf-md-beaker_check'                             = '󱈫'
    'nf-md-beaker_check_outline'                     = '󱈬'
    'nf-md-beaker_minus'                             = '󱈭'
    'nf-md-beaker_minus_outline'                     = '󱈮'
    'nf-md-beaker_outline'                           = '󰚐'
    'nf-md-beaker_plus'                              = '󱈯'
    'nf-md-beaker_plus_outline'                      = '󱈰'
    'nf-md-beaker_question'                          = '󱈱'
    'nf-md-beaker_question_outline'                  = '󱈲'
    'nf-md-beaker_remove'                            = '󱈳'
    'nf-md-beaker_remove_outline'                    = '󱈴'
    'nf-md-bed'                                      = '󰋣'
    'nf-md-bed_double'                               = '󰿔'
    'nf-md-bed_double_outline'                       = '󰿓'
    'nf-md-bed_empty'                                = '󰢠'
    'nf-md-bed_king'                                 = '󰿒'
    'nf-md-bed_king_outline'                         = '󰿑'
    'nf-md-bed_outline'                              = '󰂙'
    'nf-md-bed_queen'                                = '󰿐'
    'nf-md-bed_queen_outline'                        = '󰿛'
    'nf-md-bed_single'                               = '󱁭'
    'nf-md-bed_single_outline'                       = '󱁮'
    'nf-md-bee'                                      = '󰾡'
    'nf-md-bee_flower'                               = '󰾢'
    'nf-md-beehive_off_outline'                      = '󱏭'
    'nf-md-beehive_outline'                          = '󱃎'
    'nf-md-beekeeper'                                = '󱓢'
    'nf-md-beer'                                     = '󰂘'
    'nf-md-beer_outline'                             = '󱌌'
    'nf-md-bell'                                     = '󰂚'
    'nf-md-bell_alert'                               = '󰵙'
    'nf-md-bell_alert_outline'                       = '󰺁'
    'nf-md-bell_badge'                               = '󱅫'
    'nf-md-bell_badge_outline'                       = '󰅸'
    'nf-md-bell_cancel'                              = '󱏧'
    'nf-md-bell_cancel_outline'                      = '󱏨'
    'nf-md-bell_check'                               = '󱇥'
    'nf-md-bell_check_outline'                       = '󱇦'
    'nf-md-bell_circle'                              = '󰵚'
    'nf-md-bell_circle_outline'                      = '󰵛'
    'nf-md-bell_cog'                                 = '󱨩'
    'nf-md-bell_cog_outline'                         = '󱨪'
    'nf-md-bell_minus'                               = '󱏩'
    'nf-md-bell_minus_outline'                       = '󱏪'
    'nf-md-bell_off'                                 = '󰂛'
    'nf-md-bell_off_outline'                         = '󰪑'
    'nf-md-bell_outline'                             = '󰂜'
    'nf-md-bell_plus'                                = '󰂝'
    'nf-md-bell_plus_outline'                        = '󰪒'
    'nf-md-bell_remove'                              = '󱏫'
    'nf-md-bell_remove_outline'                      = '󱏬'
    'nf-md-bell_ring'                                = '󰂞'
    'nf-md-bell_ring_outline'                        = '󰂟'
    'nf-md-bell_sleep'                               = '󰂠'
    'nf-md-bell_sleep_outline'                       = '󰪓'
    'nf-md-beta'                                     = '󰂡'
    'nf-md-betamax'                                  = '󰧋'
    'nf-md-biathlon'                                 = '󰸔'
    'nf-md-bicycle'                                  = '󱂜'
    'nf-md-bicycle_basket'                           = '󱈵'
    'nf-md-bicycle_cargo'                            = '󱢜'
    'nf-md-bicycle_electric'                         = '󱖴'
    'nf-md-bicycle_penny_farthing'                   = '󱗩'
    'nf-md-bike'                                     = '󰂣'
    'nf-md-bike_fast'                                = '󱄟'
    'nf-md-billboard'                                = '󱀐'
    'nf-md-billiards'                                = '󰭡'
    'nf-md-billiards_rack'                           = '󰭢'
    'nf-md-binoculars'                               = '󰂥'
    'nf-md-bio'                                      = '󰂦'
    'nf-md-biohazard'                                = '󰂧'
    'nf-md-bird'                                     = '󱗆'
    'nf-md-bitbucket'                                = '󰂨'
    'nf-md-bitcoin'                                  = '󰠓'
    'nf-md-black_mesa'                               = '󰂩'
    'nf-md-blender'                                  = '󰳫'
    'nf-md-blender_outline'                          = '󱠚'
    'nf-md-blender_software'                         = '󰂫'
    'nf-md-blinds'                                   = '󰂬'
    'nf-md-blinds_horizontal'                        = '󱨫'
    'nf-md-blinds_horizontal_closed'                 = '󱨬'
    'nf-md-blinds_open'                              = '󱀑'
    'nf-md-blinds_vertical'                          = '󱨭'
    'nf-md-blinds_vertical_closed'                   = '󱨮'
    'nf-md-block_helper'                             = '󰂭'
    'nf-md-blood_bag'                                = '󰳬'
    'nf-md-bluetooth'                                = '󰂯'
    'nf-md-bluetooth_audio'                          = '󰂰'
    'nf-md-bluetooth_connect'                        = '󰂱'
    'nf-md-bluetooth_off'                            = '󰂲'
    'nf-md-bluetooth_settings'                       = '󰂳'
    'nf-md-bluetooth_transfer'                       = '󰂴'
    'nf-md-blur'                                     = '󰂵'
    'nf-md-blur_linear'                              = '󰂶'
    'nf-md-blur_off'                                 = '󰂷'
    'nf-md-blur_radial'                              = '󰂸'
    'nf-md-bolt'                                     = '󰶳'
    'nf-md-bomb'                                     = '󰚑'
    'nf-md-bomb_off'                                 = '󰛅'
    'nf-md-bone'                                     = '󰂹'
    'nf-md-bone_off'                                 = '󱧠'
    'nf-md-book'                                     = '󰂺'
    'nf-md-book_account'                             = '󱎭'
    'nf-md-book_account_outline'                     = '󱎮'
    'nf-md-book_alert'                               = '󱙼'
    'nf-md-book_alert_outline'                       = '󱙽'
    'nf-md-book_alphabet'                            = '󰘝'
    'nf-md-book_arrow_down'                          = '󱙾'
    'nf-md-book_arrow_down_outline'                  = '󱙿'
    'nf-md-book_arrow_left'                          = '󱚀'
    'nf-md-book_arrow_left_outline'                  = '󱚁'
    'nf-md-book_arrow_right'                         = '󱚂'
    'nf-md-book_arrow_right_outline'                 = '󱚃'
    'nf-md-book_arrow_up'                            = '󱚄'
    'nf-md-book_arrow_up_outline'                    = '󱚅'
    'nf-md-book_cancel'                              = '󱚆'
    'nf-md-book_cancel_outline'                      = '󱚇'
    'nf-md-book_check'                               = '󱓳'
    'nf-md-book_check_outline'                       = '󱓴'
    'nf-md-book_clock'                               = '󱚈'
    'nf-md-book_clock_outline'                       = '󱚉'
    'nf-md-book_cog'                                 = '󱚊'
    'nf-md-book_cog_outline'                         = '󱚋'
    'nf-md-book_cross'                               = '󰂢'
    'nf-md-book_edit'                                = '󱚌'
    'nf-md-book_edit_outline'                        = '󱚍'
    'nf-md-book_education'                           = '󱛉'
    'nf-md-book_education_outline'                   = '󱛊'
    'nf-md-book_heart'                               = '󱨝'
    'nf-md-book_heart_outline'                       = '󱨞'
    'nf-md-book_information_variant'                 = '󱁯'
    'nf-md-book_lock'                                = '󰞚'
    'nf-md-book_lock_open'                           = '󰞛'
    'nf-md-book_lock_open_outline'                   = '󱚎'
    'nf-md-book_lock_outline'                        = '󱚏'
    'nf-md-book_marker'                              = '󱚐'
    'nf-md-book_marker_outline'                      = '󱚑'
    'nf-md-book_minus'                               = '󰗙'
    'nf-md-book_minus_multiple'                      = '󰪔'
    'nf-md-book_minus_multiple_outline'              = '󰤋'
    'nf-md-book_minus_outline'                       = '󱚒'
    'nf-md-book_multiple'                            = '󰂻'
    'nf-md-book_multiple_outline'                    = '󰐶'
    'nf-md-book_music'                               = '󰁧'
    'nf-md-book_music_outline'                       = '󱚓'
    'nf-md-book_off'                                 = '󱚔'
    'nf-md-book_off_outline'                         = '󱚕'
    'nf-md-book_open'                                = '󰂽'
    'nf-md-book_open_blank_variant'                  = '󰂾'
    'nf-md-book_open_outline'                        = '󰭣'
    'nf-md-book_open_page_variant'                   = '󰗚'
    'nf-md-book_open_page_variant_outline'           = '󱗖'
    'nf-md-book_open_variant'                        = '󱓷'
    'nf-md-book_outline'                             = '󰭤'
    'nf-md-book_play'                                = '󰺂'
    'nf-md-book_play_outline'                        = '󰺃'
    'nf-md-book_plus'                                = '󰗛'
    'nf-md-book_plus_multiple'                       = '󰪕'
    'nf-md-book_plus_multiple_outline'               = '󰫞'
    'nf-md-book_plus_outline'                        = '󱚖'
    'nf-md-book_refresh'                             = '󱚗'
    'nf-md-book_refresh_outline'                     = '󱚘'
    'nf-md-book_remove'                              = '󰪗'
    'nf-md-book_remove_multiple'                     = '󰪖'
    'nf-md-book_remove_multiple_outline'             = '󰓊'
    'nf-md-book_remove_outline'                      = '󱚙'
    'nf-md-book_search'                              = '󰺄'
    'nf-md-book_search_outline'                      = '󰺅'
    'nf-md-book_settings'                            = '󱚚'
    'nf-md-book_settings_outline'                    = '󱚛'
    'nf-md-book_sync'                                = '󱚜'
    'nf-md-book_sync_outline'                        = '󱛈'
    'nf-md-book_variant'                             = '󰂿'
    'nf-md-book_variant_multiple'                    = '󰂼'
    'nf-md-bookmark'                                 = '󰃀'
    'nf-md-bookmark_box_multiple'                    = '󱥬'
    'nf-md-bookmark_box_multiple_outline'            = '󱥭'
    'nf-md-bookmark_check'                           = '󰃁'
    'nf-md-bookmark_check_outline'                   = '󱍻'
    'nf-md-bookmark_minus'                           = '󰧌'
    'nf-md-bookmark_minus_outline'                   = '󰧍'
    'nf-md-bookmark_multiple'                        = '󰸕'
    'nf-md-bookmark_multiple_outline'                = '󰸖'
    'nf-md-bookmark_music'                           = '󰃂'
    'nf-md-bookmark_music_outline'                   = '󱍹'
    'nf-md-bookmark_off'                             = '󰧎'
    'nf-md-bookmark_off_outline'                     = '󰧏'
    'nf-md-bookmark_outline'                         = '󰃃'
    'nf-md-bookmark_plus'                            = '󰃅'
    'nf-md-bookmark_plus_outline'                    = '󰃄'
    'nf-md-bookmark_remove'                          = '󰃆'
    'nf-md-bookmark_remove_outline'                  = '󱍺'
    'nf-md-bookshelf'                                = '󱉟'
    'nf-md-boom_gate'                                = '󰺆'
    'nf-md-boom_gate_alert'                          = '󰺇'
    'nf-md-boom_gate_alert_outline'                  = '󰺈'
    'nf-md-boom_gate_arrow_down'                     = '󰺉'
    'nf-md-boom_gate_arrow_down_outline'             = '󰺊'
    'nf-md-boom_gate_arrow_up'                       = '󰺌'
    'nf-md-boom_gate_arrow_up_outline'               = '󰺍'
    'nf-md-boom_gate_outline'                        = '󰺋'
    'nf-md-boom_gate_up'                             = '󱟹'
    'nf-md-boom_gate_up_outline'                     = '󱟺'
    'nf-md-boombox'                                  = '󰗜'
    'nf-md-boomerang'                                = '󱃏'
    'nf-md-bootstrap'                                = '󰛆'
    'nf-md-border_all'                               = '󰃇'
    'nf-md-border_all_variant'                       = '󰢡'
    'nf-md-border_bottom'                            = '󰃈'
    'nf-md-border_bottom_variant'                    = '󰢢'
    'nf-md-border_color'                             = '󰃉'
    'nf-md-border_horizontal'                        = '󰃊'
    'nf-md-border_inside'                            = '󰃋'
    'nf-md-border_left'                              = '󰃌'
    'nf-md-border_left_variant'                      = '󰢣'
    'nf-md-border_none'                              = '󰃍'
    'nf-md-border_none_variant'                      = '󰢤'
    'nf-md-border_outside'                           = '󰃎'
    'nf-md-border_right'                             = '󰃏'
    'nf-md-border_right_variant'                     = '󰢥'
    'nf-md-border_style'                             = '󰃐'
    'nf-md-border_top'                               = '󰃑'
    'nf-md-border_top_variant'                       = '󰢦'
    'nf-md-border_vertical'                          = '󰃒'
    'nf-md-bottle_soda'                              = '󱁰'
    'nf-md-bottle_soda_classic'                      = '󱁱'
    'nf-md-bottle_soda_classic_outline'              = '󱍣'
    'nf-md-bottle_soda_outline'                      = '󱁲'
    'nf-md-bottle_tonic'                             = '󱄮'
    'nf-md-bottle_tonic_outline'                     = '󱄯'
    'nf-md-bottle_tonic_plus'                        = '󱄰'
    'nf-md-bottle_tonic_plus_outline'                = '󱄱'
    'nf-md-bottle_tonic_skull'                       = '󱄲'
    'nf-md-bottle_tonic_skull_outline'               = '󱄳'
    'nf-md-bottle_wine'                              = '󰡔'
    'nf-md-bottle_wine_outline'                      = '󱌐'
    'nf-md-bow_arrow'                                = '󱡁'
    'nf-md-bow_tie'                                  = '󰙸'
    'nf-md-bowl'                                     = '󰊎'
    'nf-md-bowl_mix'                                 = '󰘗'
    'nf-md-bowl_mix_outline'                         = '󰋤'
    'nf-md-bowl_outline'                             = '󰊩'
    'nf-md-bowling'                                  = '󰃓'
    'nf-md-box'                                      = '󰃔'
    'nf-md-box_cutter'                               = '󰃕'
    'nf-md-box_cutter_off'                           = '󰭊'
    'nf-md-box_shadow'                               = '󰘷'
    'nf-md-boxing_glove'                             = '󰭥'
    'nf-md-braille'                                  = '󰧐'
    'nf-md-brain'                                    = '󰧑'
    'nf-md-bread_slice'                              = '󰳮'
    'nf-md-bread_slice_outline'                      = '󰳯'
    'nf-md-bridge'                                   = '󰘘'
    'nf-md-briefcase'                                = '󰃖'
    'nf-md-briefcase_account'                        = '󰳰'
    'nf-md-briefcase_account_outline'                = '󰳱'
    'nf-md-briefcase_arrow_left_right'               = '󱪍'
    'nf-md-briefcase_arrow_left_right_outline'       = '󱪎'
    'nf-md-briefcase_arrow_up_down'                  = '󱪏'
    'nf-md-briefcase_arrow_up_down_outline'          = '󱪐'
    'nf-md-briefcase_check'                          = '󰃗'
    'nf-md-briefcase_check_outline'                  = '󱌞'
    'nf-md-briefcase_clock'                          = '󱃐'
    'nf-md-briefcase_clock_outline'                  = '󱃑'
    'nf-md-briefcase_download'                       = '󰃘'
    'nf-md-briefcase_download_outline'               = '󰰽'
    'nf-md-briefcase_edit'                           = '󰪘'
    'nf-md-briefcase_edit_outline'                   = '󰰾'
    'nf-md-briefcase_eye'                            = '󱟙'
    'nf-md-briefcase_eye_outline'                    = '󱟚'
    'nf-md-briefcase_minus'                          = '󰨪'
    'nf-md-briefcase_minus_outline'                  = '󰰿'
    'nf-md-briefcase_off'                            = '󱙘'
    'nf-md-briefcase_off_outline'                    = '󱙙'
    'nf-md-briefcase_outline'                        = '󰠔'
    'nf-md-briefcase_plus'                           = '󰨫'
    'nf-md-briefcase_plus_outline'                   = '󰱀'
    'nf-md-briefcase_remove'                         = '󰨬'
    'nf-md-briefcase_remove_outline'                 = '󰱁'
    'nf-md-briefcase_search'                         = '󰨭'
    'nf-md-briefcase_search_outline'                 = '󰱂'
    'nf-md-briefcase_upload'                         = '󰃙'
    'nf-md-briefcase_upload_outline'                 = '󰱃'
    'nf-md-briefcase_variant'                        = '󱒔'
    'nf-md-briefcase_variant_off'                    = '󱙚'
    'nf-md-briefcase_variant_off_outline'            = '󱙛'
    'nf-md-briefcase_variant_outline'                = '󱒕'
    'nf-md-brightness_1'                             = '󰃚'
    'nf-md-brightness_2'                             = '󰃛'
    'nf-md-brightness_3'                             = '󰃜'
    'nf-md-brightness_4'                             = '󰃝'
    'nf-md-brightness_5'                             = '󰃞'
    'nf-md-brightness_6'                             = '󰃟'
    'nf-md-brightness_7'                             = '󰃠'
    'nf-md-brightness_auto'                          = '󰃡'
    'nf-md-brightness_percent'                       = '󰳲'
    'nf-md-broadcast'                                = '󱜠'
    'nf-md-broadcast_off'                            = '󱜡'
    'nf-md-broom'                                    = '󰃢'
    'nf-md-brush'                                    = '󰃣'
    'nf-md-brush_off'                                = '󱝱'
    'nf-md-brush_outline'                            = '󱨍'
    'nf-md-brush_variant'                            = '󱠓'
    'nf-md-bucket'                                   = '󱐕'
    'nf-md-bucket_outline'                           = '󱐖'
    'nf-md-buffet'                                   = '󰕸'
    'nf-md-bug'                                      = '󰃤'
    'nf-md-bug_check'                                = '󰨮'
    'nf-md-bug_check_outline'                        = '󰨯'
    'nf-md-bug_outline'                              = '󰨰'
    'nf-md-bugle'                                    = '󰶴'
    'nf-md-bulkhead_light'                           = '󱨯'
    'nf-md-bulldozer'                                = '󰬢'
    'nf-md-bullet'                                   = '󰳳'
    'nf-md-bulletin_board'                           = '󰃥'
    'nf-md-bullhorn'                                 = '󰃦'
    'nf-md-bullhorn_outline'                         = '󰬣'
    'nf-md-bullhorn_variant'                         = '󱥮'
    'nf-md-bullhorn_variant_outline'                 = '󱥯'
    'nf-md-bullseye'                                 = '󰗝'
    'nf-md-bullseye_arrow'                           = '󰣉'
    'nf-md-bulma'                                    = '󱋧'
    'nf-md-bunk_bed'                                 = '󱌂'
    'nf-md-bunk_bed_outline'                         = '󰂗'
    'nf-md-bus'                                      = '󰃧'
    'nf-md-bus_alert'                                = '󰪙'
    'nf-md-bus_articulated_end'                      = '󰞜'
    'nf-md-bus_articulated_front'                    = '󰞝'
    'nf-md-bus_clock'                                = '󰣊'
    'nf-md-bus_double_decker'                        = '󰞞'
    'nf-md-bus_electric'                             = '󱤝'
    'nf-md-bus_marker'                               = '󱈒'
    'nf-md-bus_multiple'                             = '󰼿'
    'nf-md-bus_school'                               = '󰞟'
    'nf-md-bus_side'                                 = '󰞠'
    'nf-md-bus_stop'                                 = '󱀒'
    'nf-md-bus_stop_covered'                         = '󱀓'
    'nf-md-bus_stop_uncovered'                       = '󱀔'
    'nf-md-butterfly'                                = '󱖉'
    'nf-md-butterfly_outline'                        = '󱖊'
    'nf-md-cabin_a_frame'                            = '󱢌'
    'nf-md-cable_data'                               = '󱎔'
    'nf-md-cached'                                   = '󰃨'
    'nf-md-cactus'                                   = '󰶵'
    'nf-md-cake'                                     = '󰃩'
    'nf-md-cake_layered'                             = '󰃪'
    'nf-md-cake_variant'                             = '󰃫'
    'nf-md-cake_variant_outline'                     = '󱟰'
    'nf-md-calculator'                               = '󰃬'
    'nf-md-calculator_variant'                       = '󰪚'
    'nf-md-calculator_variant_outline'               = '󱖦'
    'nf-md-calendar'                                 = '󰃭'
    'nf-md-calendar_account'                         = '󰻗'
    'nf-md-calendar_account_outline'                 = '󰻘'
    'nf-md-calendar_alert'                           = '󰨱'
    'nf-md-calendar_arrow_left'                      = '󱄴'
    'nf-md-calendar_arrow_right'                     = '󱄵'
    'nf-md-calendar_blank'                           = '󰃮'
    'nf-md-calendar_blank_multiple'                  = '󱁳'
    'nf-md-calendar_blank_outline'                   = '󰭦'
    'nf-md-calendar_check'                           = '󰃯'
    'nf-md-calendar_check_outline'                   = '󰱄'
    'nf-md-calendar_clock'                           = '󰃰'
    'nf-md-calendar_clock_outline'                   = '󱛡'
    'nf-md-calendar_collapse_horizontal'             = '󱢝'
    'nf-md-calendar_cursor'                          = '󱕻'
    'nf-md-calendar_edit'                            = '󰢧'
    'nf-md-calendar_end'                             = '󱙬'
    'nf-md-calendar_expand_horizontal'               = '󱢞'
    'nf-md-calendar_export'                          = '󰬤'
    'nf-md-calendar_heart'                           = '󰧒'
    'nf-md-calendar_import'                          = '󰬥'
    'nf-md-calendar_lock'                            = '󱙁'
    'nf-md-calendar_lock_outline'                    = '󱙂'
    'nf-md-calendar_minus'                           = '󰵜'
    'nf-md-calendar_month'                           = '󰸗'
    'nf-md-calendar_month_outline'                   = '󰸘'
    'nf-md-calendar_multiple'                        = '󰃱'
    'nf-md-calendar_multiple_check'                  = '󰃲'
    'nf-md-calendar_multiselect'                     = '󰨲'
    'nf-md-calendar_outline'                         = '󰭧'
    'nf-md-calendar_plus'                            = '󰃳'
    'nf-md-calendar_question'                        = '󰚒'
    'nf-md-calendar_range'                           = '󰙹'
    'nf-md-calendar_range_outline'                   = '󰭨'
    'nf-md-calendar_refresh'                         = '󰇡'
    'nf-md-calendar_refresh_outline'                 = '󰈃'
    'nf-md-calendar_remove'                          = '󰃴'
    'nf-md-calendar_remove_outline'                  = '󰱅'
    'nf-md-calendar_search'                          = '󰥌'
    'nf-md-calendar_star'                            = '󰧓'
    'nf-md-calendar_start'                           = '󱙭'
    'nf-md-calendar_sync'                            = '󰺎'
    'nf-md-calendar_sync_outline'                    = '󰺏'
    'nf-md-calendar_text'                            = '󰃵'
    'nf-md-calendar_text_outline'                    = '󰱆'
    'nf-md-calendar_today'                           = '󰃶'
    'nf-md-calendar_today_outline'                   = '󱨰'
    'nf-md-calendar_week'                            = '󰨳'
    'nf-md-calendar_week_begin'                      = '󰨴'
    'nf-md-calendar_week_begin_outline'              = '󱨱'
    'nf-md-calendar_week_end'                        = '󱨲'
    'nf-md-calendar_week_end_outline'                = '󱨳'
    'nf-md-calendar_week_outline'                    = '󱨴'
    'nf-md-calendar_weekend'                         = '󰻙'
    'nf-md-calendar_weekend_outline'                 = '󰻚'
    'nf-md-call_made'                                = '󰃷'
    'nf-md-call_merge'                               = '󰃸'
    'nf-md-call_missed'                              = '󰃹'
    'nf-md-call_received'                            = '󰃺'
    'nf-md-call_split'                               = '󰃻'
    'nf-md-camcorder'                                = '󰃼'
    'nf-md-camcorder_off'                            = '󰃿'
    'nf-md-camera'                                   = '󰄀'
    'nf-md-camera_account'                           = '󰣋'
    'nf-md-camera_burst'                             = '󰚓'
    'nf-md-camera_control'                           = '󰭩'
    'nf-md-camera_document'                          = '󱡱'
    'nf-md-camera_document_off'                      = '󱡲'
    'nf-md-camera_enhance'                           = '󰄁'
    'nf-md-camera_enhance_outline'                   = '󰭪'
    'nf-md-camera_flip'                              = '󱗙'
    'nf-md-camera_flip_outline'                      = '󱗚'
    'nf-md-camera_front'                             = '󰄂'
    'nf-md-camera_front_variant'                     = '󰄃'
    'nf-md-camera_gopro'                             = '󰞡'
    'nf-md-camera_image'                             = '󰣌'
    'nf-md-camera_iris'                              = '󰄄'
    'nf-md-camera_lock'                              = '󱨔'
    'nf-md-camera_lock_outline'                      = '󱨕'
    'nf-md-camera_marker'                            = '󱦧'
    'nf-md-camera_marker_outline'                    = '󱦨'
    'nf-md-camera_metering_center'                   = '󰞢'
    'nf-md-camera_metering_matrix'                   = '󰞣'
    'nf-md-camera_metering_partial'                  = '󰞤'
    'nf-md-camera_metering_spot'                     = '󰞥'
    'nf-md-camera_off'                               = '󰗟'
    'nf-md-camera_off_outline'                       = '󱦿'
    'nf-md-camera_outline'                           = '󰵝'
    'nf-md-camera_party_mode'                        = '󰄅'
    'nf-md-camera_plus'                              = '󰻛'
    'nf-md-camera_plus_outline'                      = '󰻜'
    'nf-md-camera_rear'                              = '󰄆'
    'nf-md-camera_rear_variant'                      = '󰄇'
    'nf-md-camera_retake'                            = '󰸙'
    'nf-md-camera_retake_outline'                    = '󰸚'
    'nf-md-camera_switch'                            = '󰄈'
    'nf-md-camera_switch_outline'                    = '󰡊'
    'nf-md-camera_timer'                             = '󰄉'
    'nf-md-camera_wireless'                          = '󰶶'
    'nf-md-camera_wireless_outline'                  = '󰶷'
    'nf-md-campfire'                                 = '󰻝'
    'nf-md-cancel'                                   = '󰜺'
    'nf-md-candelabra'                               = '󱟒'
    'nf-md-candelabra_fire'                          = '󱟓'
    'nf-md-candle'                                   = '󰗢'
    'nf-md-candy'                                    = '󱥰'
    'nf-md-candy_off'                                = '󱥱'
    'nf-md-candy_off_outline'                        = '󱥲'
    'nf-md-candy_outline'                            = '󱥳'
    'nf-md-candycane'                                = '󰄊'
    'nf-md-cannabis'                                 = '󰞦'
    'nf-md-cannabis_off'                             = '󱙮'
    'nf-md-caps_lock'                                = '󰪛'
    'nf-md-car'                                      = '󰄋'
    'nf-md-car_2_plus'                               = '󱀕'
    'nf-md-car_3_plus'                               = '󱀖'
    'nf-md-car_arrow_left'                           = '󱎲'
    'nf-md-car_arrow_right'                          = '󱎳'
    'nf-md-car_back'                                 = '󰸛'
    'nf-md-car_battery'                              = '󰄌'
    'nf-md-car_brake_abs'                            = '󰱇'
    'nf-md-car_brake_alert'                          = '󰱈'
    'nf-md-car_brake_fluid_level'                    = '󱤉'
    'nf-md-car_brake_hold'                           = '󰵞'
    'nf-md-car_brake_low_pressure'                   = '󱤊'
    'nf-md-car_brake_parking'                        = '󰵟'
    'nf-md-car_brake_retarder'                       = '󱀗'
    'nf-md-car_brake_temperature'                    = '󱤋'
    'nf-md-car_brake_worn_linings'                   = '󱤌'
    'nf-md-car_child_seat'                           = '󰾣'
    'nf-md-car_clock'                                = '󱥴'
    'nf-md-car_clutch'                               = '󱀘'
    'nf-md-car_cog'                                  = '󱏌'
    'nf-md-car_connected'                            = '󰄍'
    'nf-md-car_convertible'                          = '󰞧'
    'nf-md-car_coolant_level'                        = '󱀙'
    'nf-md-car_cruise_control'                       = '󰵠'
    'nf-md-car_defrost_front'                        = '󰵡'
    'nf-md-car_defrost_rear'                         = '󰵢'
    'nf-md-car_door'                                 = '󰭫'
    'nf-md-car_door_lock'                            = '󱂝'
    'nf-md-car_electric'                             = '󰭬'
    'nf-md-car_electric_outline'                     = '󱖵'
    'nf-md-car_emergency'                            = '󱘏'
    'nf-md-car_esp'                                  = '󰱉'
    'nf-md-car_estate'                               = '󰞨'
    'nf-md-car_hatchback'                            = '󰞩'
    'nf-md-car_info'                                 = '󱆾'
    'nf-md-car_key'                                  = '󰭭'
    'nf-md-car_lifted_pickup'                        = '󱔭'
    'nf-md-car_light_alert'                          = '󱤍'
    'nf-md-car_light_dimmed'                         = '󰱊'
    'nf-md-car_light_fog'                            = '󰱋'
    'nf-md-car_light_high'                           = '󰱌'
    'nf-md-car_limousine'                            = '󰣍'
    'nf-md-car_multiple'                             = '󰭮'
    'nf-md-car_off'                                  = '󰸜'
    'nf-md-car_outline'                              = '󱓭'
    'nf-md-car_parking_lights'                       = '󰵣'
    'nf-md-car_pickup'                               = '󰞪'
    'nf-md-car_seat'                                 = '󰾤'
    'nf-md-car_seat_cooler'                          = '󰾥'
    'nf-md-car_seat_heater'                          = '󰾦'
    'nf-md-car_select'                               = '󱡹'
    'nf-md-car_settings'                             = '󱏍'
    'nf-md-car_shift_pattern'                        = '󰽀'
    'nf-md-car_side'                                 = '󰞫'
    'nf-md-car_speed_limiter'                        = '󱤎'
    'nf-md-car_sports'                               = '󰞬'
    'nf-md-car_tire_alert'                           = '󰱍'
    'nf-md-car_traction_control'                     = '󰵤'
    'nf-md-car_turbocharger'                         = '󱀚'
    'nf-md-car_wash'                                 = '󰄎'
    'nf-md-car_windshield'                           = '󱀛'
    'nf-md-car_windshield_outline'                   = '󱀜'
    'nf-md-car_wireless'                             = '󱡸'
    'nf-md-car_wrench'                               = '󱠔'
    'nf-md-carabiner'                                = '󱓀'
    'nf-md-caravan'                                  = '󰞭'
    'nf-md-card'                                     = '󰭯'
    'nf-md-card_account_details'                     = '󰗒'
    'nf-md-card_account_details_outline'             = '󰶫'
    'nf-md-card_account_details_star'                = '󰊣'
    'nf-md-card_account_details_star_outline'        = '󰛛'
    'nf-md-card_account_mail'                        = '󰆎'
    'nf-md-card_account_mail_outline'                = '󰺘'
    'nf-md-card_account_phone'                       = '󰺙'
    'nf-md-card_account_phone_outline'               = '󰺚'
    'nf-md-card_bulleted'                            = '󰭰'
    'nf-md-card_bulleted_off'                        = '󰭱'
    'nf-md-card_bulleted_off_outline'                = '󰭲'
    'nf-md-card_bulleted_outline'                    = '󰭳'
    'nf-md-card_bulleted_settings'                   = '󰭴'
    'nf-md-card_bulleted_settings_outline'           = '󰭵'
    'nf-md-card_minus'                               = '󱘀'
    'nf-md-card_minus_outline'                       = '󱘁'
    'nf-md-card_multiple'                            = '󱟱'
    'nf-md-card_multiple_outline'                    = '󱟲'
    'nf-md-card_off'                                 = '󱘂'
    'nf-md-card_off_outline'                         = '󱘃'
    'nf-md-card_outline'                             = '󰭶'
    'nf-md-card_plus'                                = '󱇿'
    'nf-md-card_plus_outline'                        = '󱈀'
    'nf-md-card_remove'                              = '󱘄'
    'nf-md-card_remove_outline'                      = '󱘅'
    'nf-md-card_search'                              = '󱁴'
    'nf-md-card_search_outline'                      = '󱁵'
    'nf-md-card_text'                                = '󰭷'
    'nf-md-card_text_outline'                        = '󰭸'
    'nf-md-cards'                                    = '󰘸'
    'nf-md-cards_club'                               = '󰣎'
    'nf-md-cards_club_outline'                       = '󱢟'
    'nf-md-cards_diamond'                            = '󰣏'
    'nf-md-cards_diamond_outline'                    = '󱀝'
    'nf-md-cards_outline'                            = '󰘹'
    'nf-md-cards_playing'                            = '󱢡'
    'nf-md-cards_playing_club'                       = '󱢢'
    'nf-md-cards_playing_club_multiple'              = '󱢣'
    'nf-md-cards_playing_club_multiple_outline'      = '󱢤'
    'nf-md-cards_playing_club_outline'               = '󱢥'
    'nf-md-cards_playing_diamond'                    = '󱢦'
    'nf-md-cards_playing_diamond_multiple'           = '󱢧'
    'nf-md-cards_playing_diamond_multiple_outline'   = '󱢨'
    'nf-md-cards_playing_diamond_outline'            = '󱢩'
    'nf-md-cards_playing_heart'                      = '󱢪'
    'nf-md-cards_playing_heart_multiple'             = '󱢫'
    'nf-md-cards_playing_heart_multiple_outline'     = '󱢬'
    'nf-md-cards_playing_heart_outline'              = '󱢭'
    'nf-md-cards_playing_outline'                    = '󰘺'
    'nf-md-cards_playing_spade'                      = '󱢮'
    'nf-md-cards_playing_spade_multiple'             = '󱢯'
    'nf-md-cards_playing_spade_multiple_outline'     = '󱢰'
    'nf-md-cards_playing_spade_outline'              = '󱢱'
    'nf-md-cards_spade'                              = '󰣑'
    'nf-md-cards_spade_outline'                      = '󱢲'
    'nf-md-cards_variant'                            = '󰛇'
    'nf-md-carrot'                                   = '󰄏'
    'nf-md-cart'                                     = '󰄐'
    'nf-md-cart_arrow_down'                          = '󰵦'
    'nf-md-cart_arrow_right'                         = '󰱎'
    'nf-md-cart_arrow_up'                            = '󰵧'
    'nf-md-cart_check'                               = '󱗪'
    'nf-md-cart_heart'                               = '󱣠'
    'nf-md-cart_minus'                               = '󰵨'
    'nf-md-cart_off'                                 = '󰙫'
    'nf-md-cart_outline'                             = '󰄑'
    'nf-md-cart_plus'                                = '󰄒'
    'nf-md-cart_remove'                              = '󰵩'
    'nf-md-cart_variant'                             = '󱗫'
    'nf-md-case_sensitive_alt'                       = '󰄓'
    'nf-md-cash'                                     = '󰄔'
    'nf-md-cash_100'                                 = '󰄕'
    'nf-md-cash_check'                               = '󱓮'
    'nf-md-cash_clock'                               = '󱪑'
    'nf-md-cash_fast'                                = '󱡜'
    'nf-md-cash_lock'                                = '󱓪'
    'nf-md-cash_lock_open'                           = '󱓫'
    'nf-md-cash_marker'                              = '󰶸'
    'nf-md-cash_minus'                               = '󱉠'
    'nf-md-cash_multiple'                            = '󰄖'
    'nf-md-cash_plus'                                = '󱉡'
    'nf-md-cash_refund'                              = '󰪜'
    'nf-md-cash_register'                            = '󰳴'
    'nf-md-cash_remove'                              = '󱉢'
    'nf-md-cash_sync'                                = '󱪒'
    'nf-md-cassette'                                 = '󰧔'
    'nf-md-cast'                                     = '󰄘'
    'nf-md-cast_audio'                               = '󱀞'
    'nf-md-cast_audio_variant'                       = '󱝉'
    'nf-md-cast_connected'                           = '󰄙'
    'nf-md-cast_education'                           = '󰸝'
    'nf-md-cast_off'                                 = '󰞊'
    'nf-md-cast_variant'                             = '󰀟'
    'nf-md-castle'                                   = '󰄚'
    'nf-md-cat'                                      = '󰄛'
    'nf-md-cctv'                                     = '󰞮'
    'nf-md-cctv_off'                                 = '󱡟'
    'nf-md-ceiling_fan'                              = '󱞗'
    'nf-md-ceiling_fan_light'                        = '󱞘'
    'nf-md-ceiling_light'                            = '󰝩'
    'nf-md-ceiling_light_multiple'                   = '󱣝'
    'nf-md-ceiling_light_multiple_outline'           = '󱣞'
    'nf-md-ceiling_light_outline'                    = '󱟇'
    'nf-md-cellphone'                                = '󰄜'
    'nf-md-cellphone_arrow_down'                     = '󰧕'
    'nf-md-cellphone_arrow_down_variant'             = '󱧅'
    'nf-md-cellphone_basic'                          = '󰄞'
    'nf-md-cellphone_charging'                       = '󱎗'
    'nf-md-cellphone_check'                          = '󱟽'
    'nf-md-cellphone_cog'                            = '󰥑'
    'nf-md-cellphone_dock'                           = '󰄟'
    'nf-md-cellphone_information'                    = '󰽁'
    'nf-md-cellphone_key'                            = '󰥎'
    'nf-md-cellphone_link'                           = '󰄡'
    'nf-md-cellphone_link_off'                       = '󰄢'
    'nf-md-cellphone_lock'                           = '󰥏'
    'nf-md-cellphone_marker'                         = '󱠺'
    'nf-md-cellphone_message'                        = '󰣓'
    'nf-md-cellphone_message_off'                    = '󱃒'
    'nf-md-cellphone_nfc'                            = '󰺐'
    'nf-md-cellphone_nfc_off'                        = '󱋘'
    'nf-md-cellphone_off'                            = '󰥐'
    'nf-md-cellphone_play'                           = '󱀟'
    'nf-md-cellphone_remove'                         = '󰥍'
    'nf-md-cellphone_screenshot'                     = '󰨵'
    'nf-md-cellphone_settings'                       = '󰄣'
    'nf-md-cellphone_sound'                          = '󰥒'
    'nf-md-cellphone_text'                           = '󰣒'
    'nf-md-cellphone_wireless'                       = '󰠕'
    'nf-md-centos'                                   = '󱄚'
    'nf-md-certificate'                              = '󰄤'
    'nf-md-certificate_outline'                      = '󱆈'
    'nf-md-chair_rolling'                            = '󰽈'
    'nf-md-chair_school'                             = '󰄥'
    'nf-md-chandelier'                               = '󱞓'
    'nf-md-charity'                                  = '󰱏'
    'nf-md-chart_arc'                                = '󰄦'
    'nf-md-chart_areaspline'                         = '󰄧'
    'nf-md-chart_areaspline_variant'                 = '󰺑'
    'nf-md-chart_bar'                                = '󰄨'
    'nf-md-chart_bar_stacked'                        = '󰝪'
    'nf-md-chart_bell_curve'                         = '󰱐'
    'nf-md-chart_bell_curve_cumulative'              = '󰾧'
    'nf-md-chart_box'                                = '󱕍'
    'nf-md-chart_box_outline'                        = '󱕎'
    'nf-md-chart_box_plus_outline'                   = '󱕏'
    'nf-md-chart_bubble'                             = '󰗣'
    'nf-md-chart_donut'                              = '󰞯'
    'nf-md-chart_donut_variant'                      = '󰞰'
    'nf-md-chart_gantt'                              = '󰙬'
    'nf-md-chart_histogram'                          = '󰄩'
    'nf-md-chart_line'                               = '󰄪'
    'nf-md-chart_line_stacked'                       = '󰝫'
    'nf-md-chart_line_variant'                       = '󰞱'
    'nf-md-chart_multiline'                          = '󰣔'
    'nf-md-chart_multiple'                           = '󱈓'
    'nf-md-chart_pie'                                = '󰄫'
    'nf-md-chart_ppf'                                = '󱎀'
    'nf-md-chart_sankey'                             = '󱇟'
    'nf-md-chart_sankey_variant'                     = '󱇠'
    'nf-md-chart_scatter_plot'                       = '󰺒'
    'nf-md-chart_scatter_plot_hexbin'                = '󰙭'
    'nf-md-chart_timeline'                           = '󰙮'
    'nf-md-chart_timeline_variant'                   = '󰺓'
    'nf-md-chart_timeline_variant_shimmer'           = '󱖶'
    'nf-md-chart_tree'                               = '󰺔'
    'nf-md-chart_waterfall'                          = '󱤘'
    'nf-md-chat'                                     = '󰭹'
    'nf-md-chat_alert'                               = '󰭺'
    'nf-md-chat_alert_outline'                       = '󱋉'
    'nf-md-chat_minus'                               = '󱐐'
    'nf-md-chat_minus_outline'                       = '󱐓'
    'nf-md-chat_outline'                             = '󰻞'
    'nf-md-chat_plus'                                = '󱐏'
    'nf-md-chat_plus_outline'                        = '󱐒'
    'nf-md-chat_processing'                          = '󰭻'
    'nf-md-chat_processing_outline'                  = '󱋊'
    'nf-md-chat_question'                            = '󱜸'
    'nf-md-chat_question_outline'                    = '󱜹'
    'nf-md-chat_remove'                              = '󱐑'
    'nf-md-chat_remove_outline'                      = '󱐔'
    'nf-md-chat_sleep'                               = '󱋑'
    'nf-md-chat_sleep_outline'                       = '󱋒'
    'nf-md-check'                                    = '󰄬'
    'nf-md-check_all'                                = '󰄭'
    'nf-md-check_bold'                               = '󰸞'
    'nf-md-check_circle'                             = '󰗠'
    'nf-md-check_circle_outline'                     = '󰗡'
    'nf-md-check_decagram'                           = '󰞑'
    'nf-md-check_decagram_outline'                   = '󱝀'
    'nf-md-check_network'                            = '󰱓'
    'nf-md-check_network_outline'                    = '󰱔'
    'nf-md-check_outline'                            = '󰡕'
    'nf-md-check_underline'                          = '󰸟'
    'nf-md-check_underline_circle'                   = '󰸠'
    'nf-md-check_underline_circle_outline'           = '󰸡'
    'nf-md-checkbook'                                = '󰪝'
    'nf-md-checkbox_blank'                           = '󰄮'
    'nf-md-checkbox_blank_badge'                     = '󱅶'
    'nf-md-checkbox_blank_badge_outline'             = '󰄗'
    'nf-md-checkbox_blank_circle'                    = '󰝥'
    'nf-md-checkbox_blank_circle_outline'            = '󰝦'
    'nf-md-checkbox_blank_off'                       = '󱋬'
    'nf-md-checkbox_blank_off_outline'               = '󱋭'
    'nf-md-checkbox_blank_outline'                   = '󰄱'
    'nf-md-checkbox_intermediate'                    = '󰡖'
    'nf-md-checkbox_marked'                          = '󰄲'
    'nf-md-checkbox_marked_circle'                   = '󰄳'
    'nf-md-checkbox_marked_circle_outline'           = '󰄴'
    'nf-md-checkbox_marked_circle_plus_outline'      = '󱤧'
    'nf-md-checkbox_marked_outline'                  = '󰄵'
    'nf-md-checkbox_multiple_blank'                  = '󰄶'
    'nf-md-checkbox_multiple_blank_circle'           = '󰘻'
    'nf-md-checkbox_multiple_blank_circle_outline'   = '󰘼'
    'nf-md-checkbox_multiple_blank_outline'          = '󰄷'
    'nf-md-checkbox_multiple_marked'                 = '󰄸'
    'nf-md-checkbox_multiple_marked_circle'          = '󰘽'
    'nf-md-checkbox_multiple_marked_circle_outline'  = '󰘾'
    'nf-md-checkbox_multiple_marked_outline'         = '󰄹'
    'nf-md-checkbox_multiple_outline'                = '󰱑'
    'nf-md-checkbox_outline'                         = '󰱒'
    'nf-md-checkerboard'                             = '󰄺'
    'nf-md-checkerboard_minus'                       = '󱈂'
    'nf-md-checkerboard_plus'                        = '󱈁'
    'nf-md-checkerboard_remove'                      = '󱈃'
    'nf-md-cheese'                                   = '󱊹'
    'nf-md-cheese_off'                               = '󱏮'
    'nf-md-chef_hat'                                 = '󰭼'
    'nf-md-chemical_weapon'                          = '󰄻'
    'nf-md-chess_bishop'                             = '󰡜'
    'nf-md-chess_king'                               = '󰡗'
    'nf-md-chess_knight'                             = '󰡘'
    'nf-md-chess_pawn'                               = '󰡙'
    'nf-md-chess_queen'                              = '󰡚'
    'nf-md-chess_rook'                               = '󰡛'
    'nf-md-chevron_double_down'                      = '󰄼'
    'nf-md-chevron_double_left'                      = '󰄽'
    'nf-md-chevron_double_right'                     = '󰄾'
    'nf-md-chevron_double_up'                        = '󰄿'
    'nf-md-chevron_down'                             = '󰅀'
    'nf-md-chevron_down_box'                         = '󰧖'
    'nf-md-chevron_down_box_outline'                 = '󰧗'
    'nf-md-chevron_down_circle'                      = '󰬦'
    'nf-md-chevron_down_circle_outline'              = '󰬧'
    'nf-md-chevron_left'                             = '󰅁'
    'nf-md-chevron_left_box'                         = '󰧘'
    'nf-md-chevron_left_box_outline'                 = '󰧙'
    'nf-md-chevron_left_circle'                      = '󰬨'
    'nf-md-chevron_left_circle_outline'              = '󰬩'
    'nf-md-chevron_right'                            = '󰅂'
    'nf-md-chevron_right_box'                        = '󰧚'
    'nf-md-chevron_right_box_outline'                = '󰧛'
    'nf-md-chevron_right_circle'                     = '󰬪'
    'nf-md-chevron_right_circle_outline'             = '󰬫'
    'nf-md-chevron_triple_down'                      = '󰶹'
    'nf-md-chevron_triple_left'                      = '󰶺'
    'nf-md-chevron_triple_right'                     = '󰶻'
    'nf-md-chevron_triple_up'                        = '󰶼'
    'nf-md-chevron_up'                               = '󰅃'
    'nf-md-chevron_up_box'                           = '󰧜'
    'nf-md-chevron_up_box_outline'                   = '󰧝'
    'nf-md-chevron_up_circle'                        = '󰬬'
    'nf-md-chevron_up_circle_outline'                = '󰬭'
    'nf-md-chili_alert'                              = '󱟪'
    'nf-md-chili_alert_outline'                      = '󱟫'
    'nf-md-chili_hot'                                = '󰞲'
    'nf-md-chili_hot_outline'                        = '󱟬'
    'nf-md-chili_medium'                             = '󰞳'
    'nf-md-chili_medium_outline'                     = '󱟭'
    'nf-md-chili_mild'                               = '󰞴'
    'nf-md-chili_mild_outline'                       = '󱟮'
    'nf-md-chili_off'                                = '󱑧'
    'nf-md-chili_off_outline'                        = '󱟯'
    'nf-md-chip'                                     = '󰘚'
    'nf-md-church'                                   = '󰅄'
    'nf-md-cigar'                                    = '󱆉'
    'nf-md-cigar_off'                                = '󱐛'
    'nf-md-circle_box'                               = '󱗜'
    'nf-md-circle_box_outline'                       = '󱗝'
    'nf-md-circle_double'                            = '󰺕'
    'nf-md-circle_edit_outline'                      = '󰣕'
    'nf-md-circle_expand'                            = '󰺖'
    'nf-md-circle_half'                              = '󱎕'
    'nf-md-circle_half_full'                         = '󱎖'
    'nf-md-circle_medium'                            = '󰧞'
    'nf-md-circle_multiple'                          = '󰬸'
    'nf-md-circle_multiple_outline'                  = '󰚕'
    'nf-md-circle_off_outline'                       = '󱃓'
    'nf-md-circle_opacity'                           = '󱡓'
    'nf-md-circle_slice_1'                           = '󰪞'
    'nf-md-circle_slice_2'                           = '󰪟'
    'nf-md-circle_slice_3'                           = '󰪠'
    'nf-md-circle_slice_4'                           = '󰪡'
    'nf-md-circle_slice_5'                           = '󰪢'
    'nf-md-circle_slice_6'                           = '󰪣'
    'nf-md-circle_slice_7'                           = '󰪤'
    'nf-md-circle_slice_8'                           = '󰪥'
    'nf-md-circle_small'                             = '󰧟'
    'nf-md-circular_saw'                             = '󰸢'
    'nf-md-city'                                     = '󰅆'
    'nf-md-city_variant'                             = '󰨶'
    'nf-md-city_variant_outline'                     = '󰨷'
    'nf-md-clipboard'                                = '󰅇'
    'nf-md-clipboard_account'                        = '󰅈'
    'nf-md-clipboard_account_outline'                = '󰱕'
    'nf-md-clipboard_alert'                          = '󰅉'
    'nf-md-clipboard_alert_outline'                  = '󰳷'
    'nf-md-clipboard_arrow_down'                     = '󰅊'
    'nf-md-clipboard_arrow_down_outline'             = '󰱖'
    'nf-md-clipboard_arrow_left'                     = '󰅋'
    'nf-md-clipboard_arrow_left_outline'             = '󰳸'
    'nf-md-clipboard_arrow_right'                    = '󰳹'
    'nf-md-clipboard_arrow_right_outline'            = '󰳺'
    'nf-md-clipboard_arrow_up'                       = '󰱗'
    'nf-md-clipboard_arrow_up_outline'               = '󰱘'
    'nf-md-clipboard_check'                          = '󰅎'
    'nf-md-clipboard_check_multiple'                 = '󱉣'
    'nf-md-clipboard_check_multiple_outline'         = '󱉤'
    'nf-md-clipboard_check_outline'                  = '󰢨'
    'nf-md-clipboard_clock'                          = '󱛢'
    'nf-md-clipboard_clock_outline'                  = '󱛣'
    'nf-md-clipboard_edit'                           = '󱓥'
    'nf-md-clipboard_edit_outline'                   = '󱓦'
    'nf-md-clipboard_file'                           = '󱉥'
    'nf-md-clipboard_file_outline'                   = '󱉦'
    'nf-md-clipboard_flow'                           = '󰛈'
    'nf-md-clipboard_flow_outline'                   = '󱄗'
    'nf-md-clipboard_list'                           = '󱃔'
    'nf-md-clipboard_list_outline'                   = '󱃕'
    'nf-md-clipboard_minus'                          = '󱘘'
    'nf-md-clipboard_minus_outline'                  = '󱘙'
    'nf-md-clipboard_multiple'                       = '󱉧'
    'nf-md-clipboard_multiple_outline'               = '󱉨'
    'nf-md-clipboard_off'                            = '󱘚'
    'nf-md-clipboard_off_outline'                    = '󱘛'
    'nf-md-clipboard_outline'                        = '󰅌'
    'nf-md-clipboard_play'                           = '󰱙'
    'nf-md-clipboard_play_multiple'                  = '󱉩'
    'nf-md-clipboard_play_multiple_outline'          = '󱉪'
    'nf-md-clipboard_play_outline'                   = '󰱚'
    'nf-md-clipboard_plus'                           = '󰝑'
    'nf-md-clipboard_plus_outline'                   = '󱌟'
    'nf-md-clipboard_pulse'                          = '󰡝'
    'nf-md-clipboard_pulse_outline'                  = '󰡞'
    'nf-md-clipboard_remove'                         = '󱘜'
    'nf-md-clipboard_remove_outline'                 = '󱘝'
    'nf-md-clipboard_search'                         = '󱘞'
    'nf-md-clipboard_search_outline'                 = '󱘟'
    'nf-md-clipboard_text'                           = '󰅍'
    'nf-md-clipboard_text_clock'                     = '󱣹'
    'nf-md-clipboard_text_clock_outline'             = '󱣺'
    'nf-md-clipboard_text_multiple'                  = '󱉫'
    'nf-md-clipboard_text_multiple_outline'          = '󱉬'
    'nf-md-clipboard_text_off'                       = '󱘠'
    'nf-md-clipboard_text_off_outline'               = '󱘡'
    'nf-md-clipboard_text_outline'                   = '󰨸'
    'nf-md-clipboard_text_play'                      = '󰱛'
    'nf-md-clipboard_text_play_outline'              = '󰱜'
    'nf-md-clipboard_text_search'                    = '󱘢'
    'nf-md-clipboard_text_search_outline'            = '󱘣'
    'nf-md-clippy'                                   = '󰅏'
    'nf-md-clock'                                    = '󰥔'
    'nf-md-clock_alert'                              = '󰥕'
    'nf-md-clock_alert_outline'                      = '󰗎'
    'nf-md-clock_check'                              = '󰾨'
    'nf-md-clock_check_outline'                      = '󰾩'
    'nf-md-clock_digital'                            = '󰺗'
    'nf-md-clock_edit'                               = '󱦺'
    'nf-md-clock_edit_outline'                       = '󱦻'
    'nf-md-clock_end'                                = '󰅑'
    'nf-md-clock_fast'                               = '󰅒'
    'nf-md-clock_in'                                 = '󰅓'
    'nf-md-clock_minus'                              = '󱡣'
    'nf-md-clock_minus_outline'                      = '󱡤'
    'nf-md-clock_out'                                = '󰅔'
    'nf-md-clock_outline'                            = '󰅐'
    'nf-md-clock_plus'                               = '󱡡'
    'nf-md-clock_plus_outline'                       = '󱡢'
    'nf-md-clock_remove'                             = '󱡥'
    'nf-md-clock_remove_outline'                     = '󱡦'
    'nf-md-clock_start'                              = '󰅕'
    'nf-md-clock_time_eight'                         = '󱑆'
    'nf-md-clock_time_eight_outline'                 = '󱑒'
    'nf-md-clock_time_eleven'                        = '󱑉'
    'nf-md-clock_time_eleven_outline'                = '󱑕'
    'nf-md-clock_time_five'                          = '󱑃'
    'nf-md-clock_time_five_outline'                  = '󱑏'
    'nf-md-clock_time_four'                          = '󱑂'
    'nf-md-clock_time_four_outline'                  = '󱑎'
    'nf-md-clock_time_nine'                          = '󱑇'
    'nf-md-clock_time_nine_outline'                  = '󱑓'
    'nf-md-clock_time_one'                           = '󱐿'
    'nf-md-clock_time_one_outline'                   = '󱑋'
    'nf-md-clock_time_seven'                         = '󱑅'
    'nf-md-clock_time_seven_outline'                 = '󱑑'
    'nf-md-clock_time_six'                           = '󱑄'
    'nf-md-clock_time_six_outline'                   = '󱑐'
    'nf-md-clock_time_ten'                           = '󱑈'
    'nf-md-clock_time_ten_outline'                   = '󱑔'
    'nf-md-clock_time_three'                         = '󱑁'
    'nf-md-clock_time_three_outline'                 = '󱑍'
    'nf-md-clock_time_twelve'                        = '󱑊'
    'nf-md-clock_time_twelve_outline'                = '󱑖'
    'nf-md-clock_time_two'                           = '󱑀'
    'nf-md-clock_time_two_outline'                   = '󱑌'
    'nf-md-close'                                    = '󰅖'
    'nf-md-close_box'                                = '󰅗'
    'nf-md-close_box_multiple'                       = '󰱝'
    'nf-md-close_box_multiple_outline'               = '󰱞'
    'nf-md-close_box_outline'                        = '󰅘'
    'nf-md-close_circle'                             = '󰅙'
    'nf-md-close_circle_multiple'                    = '󰘪'
    'nf-md-close_circle_multiple_outline'            = '󰢃'
    'nf-md-close_circle_outline'                     = '󰅚'
    'nf-md-close_network'                            = '󰅛'
    'nf-md-close_network_outline'                    = '󰱟'
    'nf-md-close_octagon'                            = '󰅜'
    'nf-md-close_octagon_outline'                    = '󰅝'
    'nf-md-close_outline'                            = '󰛉'
    'nf-md-close_thick'                              = '󱎘'
    'nf-md-closed_caption'                           = '󰅞'
    'nf-md-closed_caption_outline'                   = '󰶽'
    'nf-md-cloud'                                    = '󰅟'
    'nf-md-cloud_alert'                              = '󰧠'
    'nf-md-cloud_braces'                             = '󰞵'
    'nf-md-cloud_check'                              = '󰅠'
    'nf-md-cloud_check_outline'                      = '󱋌'
    'nf-md-cloud_circle'                             = '󰅡'
    'nf-md-cloud_download'                           = '󰅢'
    'nf-md-cloud_download_outline'                   = '󰭽'
    'nf-md-cloud_lock'                               = '󱇱'
    'nf-md-cloud_lock_outline'                       = '󱇲'
    'nf-md-cloud_off_outline'                        = '󰅤'
    'nf-md-cloud_outline'                            = '󰅣'
    'nf-md-cloud_percent'                            = '󱨵'
    'nf-md-cloud_percent_outline'                    = '󱨶'
    'nf-md-cloud_print'                              = '󰅥'
    'nf-md-cloud_print_outline'                      = '󰅦'
    'nf-md-cloud_question'                           = '󰨹'
    'nf-md-cloud_refresh'                            = '󰔪'
    'nf-md-cloud_search'                             = '󰥖'
    'nf-md-cloud_search_outline'                     = '󰥗'
    'nf-md-cloud_sync'                               = '󰘿'
    'nf-md-cloud_sync_outline'                       = '󱋖'
    'nf-md-cloud_tags'                               = '󰞶'
    'nf-md-cloud_upload'                             = '󰅧'
    'nf-md-cloud_upload_outline'                     = '󰭾'
    'nf-md-clover'                                   = '󰠖'
    'nf-md-coach_lamp'                               = '󱀠'
    'nf-md-coach_lamp_variant'                       = '󱨷'
    'nf-md-coat_rack'                                = '󱂞'
    'nf-md-code_array'                               = '󰅨'
    'nf-md-code_braces'                              = '󰅩'
    'nf-md-code_braces_box'                          = '󱃖'
    'nf-md-code_brackets'                            = '󰅪'
    'nf-md-code_equal'                               = '󰅫'
    'nf-md-code_greater_than'                        = '󰅬'
    'nf-md-code_greater_than_or_equal'               = '󰅭'
    'nf-md-code_json'                                = '󰘦'
    'nf-md-code_less_than'                           = '󰅮'
    'nf-md-code_less_than_or_equal'                  = '󰅯'
    'nf-md-code_not_equal'                           = '󰅰'
    'nf-md-code_not_equal_variant'                   = '󰅱'
    'nf-md-code_parentheses'                         = '󰅲'
    'nf-md-code_parentheses_box'                     = '󱃗'
    'nf-md-code_string'                              = '󰅳'
    'nf-md-code_tags'                                = '󰅴'
    'nf-md-code_tags_check'                          = '󰚔'
    'nf-md-codepen'                                  = '󰅵'
    'nf-md-coffee'                                   = '󰅶'
    'nf-md-coffee_maker'                             = '󱂟'
    'nf-md-coffee_maker_check'                       = '󱤱'
    'nf-md-coffee_maker_check_outline'               = '󱤲'
    'nf-md-coffee_maker_outline'                     = '󱠛'
    'nf-md-coffee_off'                               = '󰾪'
    'nf-md-coffee_off_outline'                       = '󰾫'
    'nf-md-coffee_outline'                           = '󰛊'
    'nf-md-coffee_to_go'                             = '󰅷'
    'nf-md-coffee_to_go_outline'                     = '󱌎'
    'nf-md-coffin'                                   = '󰭿'
    'nf-md-cog'                                      = '󰒓'
    'nf-md-cog_box'                                  = '󰒔'
    'nf-md-cog_clockwise'                            = '󱇝'
    'nf-md-cog_counterclockwise'                     = '󱇞'
    'nf-md-cog_off'                                  = '󱏎'
    'nf-md-cog_off_outline'                          = '󱏏'
    'nf-md-cog_outline'                              = '󰢻'
    'nf-md-cog_pause'                                = '󱤳'
    'nf-md-cog_pause_outline'                        = '󱤴'
    'nf-md-cog_play'                                 = '󱤵'
    'nf-md-cog_play_outline'                         = '󱤶'
    'nf-md-cog_refresh'                              = '󱑞'
    'nf-md-cog_refresh_outline'                      = '󱑟'
    'nf-md-cog_stop'                                 = '󱤷'
    'nf-md-cog_stop_outline'                         = '󱤸'
    'nf-md-cog_sync'                                 = '󱑠'
    'nf-md-cog_sync_outline'                         = '󱑡'
    'nf-md-cog_transfer'                             = '󱁛'
    'nf-md-cog_transfer_outline'                     = '󱁜'
    'nf-md-cogs'                                     = '󰣖'
    'nf-md-collage'                                  = '󰙀'
    'nf-md-collapse_all'                             = '󰪦'
    'nf-md-collapse_all_outline'                     = '󰪧'
    'nf-md-color_helper'                             = '󰅹'
    'nf-md-comma'                                    = '󰸣'
    'nf-md-comma_box'                                = '󰸫'
    'nf-md-comma_box_outline'                        = '󰸤'
    'nf-md-comma_circle'                             = '󰸥'
    'nf-md-comma_circle_outline'                     = '󰸦'
    'nf-md-comment'                                  = '󰅺'
    'nf-md-comment_account'                          = '󰅻'
    'nf-md-comment_account_outline'                  = '󰅼'
    'nf-md-comment_alert'                            = '󰅽'
    'nf-md-comment_alert_outline'                    = '󰅾'
    'nf-md-comment_arrow_left'                       = '󰧡'
    'nf-md-comment_arrow_left_outline'               = '󰧢'
    'nf-md-comment_arrow_right'                      = '󰧣'
    'nf-md-comment_arrow_right_outline'              = '󰧤'
    'nf-md-comment_bookmark'                         = '󱖮'
    'nf-md-comment_bookmark_outline'                 = '󱖯'
    'nf-md-comment_check'                            = '󰅿'
    'nf-md-comment_check_outline'                    = '󰆀'
    'nf-md-comment_edit'                             = '󱆿'
    'nf-md-comment_edit_outline'                     = '󱋄'
    'nf-md-comment_eye'                              = '󰨺'
    'nf-md-comment_eye_outline'                      = '󰨻'
    'nf-md-comment_flash'                            = '󱖰'
    'nf-md-comment_flash_outline'                    = '󱖱'
    'nf-md-comment_minus'                            = '󱗟'
    'nf-md-comment_minus_outline'                    = '󱗠'
    'nf-md-comment_multiple'                         = '󰡟'
    'nf-md-comment_multiple_outline'                 = '󰆁'
    'nf-md-comment_off'                              = '󱗡'
    'nf-md-comment_off_outline'                      = '󱗢'
    'nf-md-comment_outline'                          = '󰆂'
    'nf-md-comment_plus'                             = '󰧥'
    'nf-md-comment_plus_outline'                     = '󰆃'
    'nf-md-comment_processing'                       = '󰆄'
    'nf-md-comment_processing_outline'               = '󰆅'
    'nf-md-comment_question'                         = '󰠗'
    'nf-md-comment_question_outline'                 = '󰆆'
    'nf-md-comment_quote'                            = '󱀡'
    'nf-md-comment_quote_outline'                    = '󱀢'
    'nf-md-comment_remove'                           = '󰗞'
    'nf-md-comment_remove_outline'                   = '󰆇'
    'nf-md-comment_search'                           = '󰨼'
    'nf-md-comment_search_outline'                   = '󰨽'
    'nf-md-comment_text'                             = '󰆈'
    'nf-md-comment_text_multiple'                    = '󰡠'
    'nf-md-comment_text_multiple_outline'            = '󰡡'
    'nf-md-comment_text_outline'                     = '󰆉'
    'nf-md-compare'                                  = '󰆊'
    'nf-md-compare_horizontal'                       = '󱒒'
    'nf-md-compare_remove'                           = '󱢳'
    'nf-md-compare_vertical'                         = '󱒓'
    'nf-md-compass'                                  = '󰆋'
    'nf-md-compass_off'                              = '󰮀'
    'nf-md-compass_off_outline'                      = '󰮁'
    'nf-md-compass_outline'                          = '󰆌'
    'nf-md-compass_rose'                             = '󱎂'
    'nf-md-compost'                                  = '󱨸'
    'nf-md-cone'                                     = '󱥌'
    'nf-md-cone_off'                                 = '󱥍'
    'nf-md-connection'                               = '󱘖'
    'nf-md-console'                                  = '󰆍'
    'nf-md-console_line'                             = '󰞷'
    'nf-md-console_network'                          = '󰢩'
    'nf-md-console_network_outline'                  = '󰱠'
    'nf-md-consolidate'                              = '󱃘'
    'nf-md-contactless_payment'                      = '󰵪'
    'nf-md-contactless_payment_circle'               = '󰌡'
    'nf-md-contactless_payment_circle_outline'       = '󰐈'
    'nf-md-contacts'                                 = '󰛋'
    'nf-md-contacts_outline'                         = '󰖸'
    'nf-md-contain'                                  = '󰨾'
    'nf-md-contain_end'                              = '󰨿'
    'nf-md-contain_start'                            = '󰩀'
    'nf-md-content_copy'                             = '󰆏'
    'nf-md-content_cut'                              = '󰆐'
    'nf-md-content_duplicate'                        = '󰆑'
    'nf-md-content_paste'                            = '󰆒'
    'nf-md-content_save'                             = '󰆓'
    'nf-md-content_save_alert'                       = '󰽂'
    'nf-md-content_save_alert_outline'               = '󰽃'
    'nf-md-content_save_all'                         = '󰆔'
    'nf-md-content_save_all_outline'                 = '󰽄'
    'nf-md-content_save_check'                       = '󱣪'
    'nf-md-content_save_check_outline'               = '󱣫'
    'nf-md-content_save_cog'                         = '󱑛'
    'nf-md-content_save_cog_outline'                 = '󱑜'
    'nf-md-content_save_edit'                        = '󰳻'
    'nf-md-content_save_edit_outline'                = '󰳼'
    'nf-md-content_save_move'                        = '󰸧'
    'nf-md-content_save_move_outline'                = '󰸨'
    'nf-md-content_save_off'                         = '󱙃'
    'nf-md-content_save_off_outline'                 = '󱙄'
    'nf-md-content_save_outline'                     = '󰠘'
    'nf-md-content_save_settings'                    = '󰘛'
    'nf-md-content_save_settings_outline'            = '󰬮'
    'nf-md-contrast'                                 = '󰆕'
    'nf-md-contrast_box'                             = '󰆖'
    'nf-md-contrast_circle'                          = '󰆗'
    'nf-md-controller_classic'                       = '󰮂'
    'nf-md-controller_classic_outline'               = '󰮃'
    'nf-md-cookie'                                   = '󰆘'
    'nf-md-cookie_alert'                             = '󱛐'
    'nf-md-cookie_alert_outline'                     = '󱛑'
    'nf-md-cookie_check'                             = '󱛒'
    'nf-md-cookie_check_outline'                     = '󱛓'
    'nf-md-cookie_clock'                             = '󱛤'
    'nf-md-cookie_clock_outline'                     = '󱛥'
    'nf-md-cookie_cog'                               = '󱛔'
    'nf-md-cookie_cog_outline'                       = '󱛕'
    'nf-md-cookie_edit'                              = '󱛦'
    'nf-md-cookie_edit_outline'                      = '󱛧'
    'nf-md-cookie_lock'                              = '󱛨'
    'nf-md-cookie_lock_outline'                      = '󱛩'
    'nf-md-cookie_minus'                             = '󱛚'
    'nf-md-cookie_minus_outline'                     = '󱛛'
    'nf-md-cookie_off'                               = '󱛪'
    'nf-md-cookie_off_outline'                       = '󱛫'
    'nf-md-cookie_outline'                           = '󱛞'
    'nf-md-cookie_plus'                              = '󱛖'
    'nf-md-cookie_plus_outline'                      = '󱛗'
    'nf-md-cookie_refresh'                           = '󱛬'
    'nf-md-cookie_refresh_outline'                   = '󱛭'
    'nf-md-cookie_remove'                            = '󱛘'
    'nf-md-cookie_remove_outline'                    = '󱛙'
    'nf-md-cookie_settings'                          = '󱛜'
    'nf-md-cookie_settings_outline'                  = '󱛝'
    'nf-md-coolant_temperature'                      = '󰏈'
    'nf-md-copyleft'                                 = '󱤹'
    'nf-md-copyright'                                = '󰗦'
    'nf-md-cordova'                                  = '󰥘'
    'nf-md-corn'                                     = '󰞸'
    'nf-md-corn_off'                                 = '󱏯'
    'nf-md-cosine_wave'                              = '󱑹'
    'nf-md-counter'                                  = '󰆙'
    'nf-md-countertop'                               = '󱠜'
    'nf-md-countertop_outline'                       = '󱠝'
    'nf-md-cow'                                      = '󰆚'
    'nf-md-cow_off'                                  = '󱣼'
    'nf-md-cpu_32_bit'                               = '󰻟'
    'nf-md-cpu_64_bit'                               = '󰻠'
    'nf-md-cradle'                                   = '󱦋'
    'nf-md-cradle_outline'                           = '󱦑'
    'nf-md-crane'                                    = '󰡢'
    'nf-md-creation'                                 = '󰙴'
    'nf-md-creative_commons'                         = '󰵫'
    'nf-md-credit_card'                              = '󰿯'
    'nf-md-credit_card_check'                        = '󱏐'
    'nf-md-credit_card_check_outline'                = '󱏑'
    'nf-md-credit_card_chip'                         = '󱤏'
    'nf-md-credit_card_chip_outline'                 = '󱤐'
    'nf-md-credit_card_clock'                        = '󰻡'
    'nf-md-credit_card_clock_outline'                = '󰻢'
    'nf-md-credit_card_edit'                         = '󱟗'
    'nf-md-credit_card_edit_outline'                 = '󱟘'
    'nf-md-credit_card_fast'                         = '󱤑'
    'nf-md-credit_card_fast_outline'                 = '󱤒'
    'nf-md-credit_card_lock'                         = '󱣧'
    'nf-md-credit_card_lock_outline'                 = '󱣨'
    'nf-md-credit_card_marker'                       = '󰚨'
    'nf-md-credit_card_marker_outline'               = '󰶾'
    'nf-md-credit_card_minus'                        = '󰾬'
    'nf-md-credit_card_minus_outline'                = '󰾭'
    'nf-md-credit_card_multiple'                     = '󰿰'
    'nf-md-credit_card_multiple_outline'             = '󰆜'
    'nf-md-credit_card_off'                          = '󰿱'
    'nf-md-credit_card_off_outline'                  = '󰗤'
    'nf-md-credit_card_outline'                      = '󰆛'
    'nf-md-credit_card_plus'                         = '󰿲'
    'nf-md-credit_card_plus_outline'                 = '󰙶'
    'nf-md-credit_card_refresh'                      = '󱙅'
    'nf-md-credit_card_refresh_outline'              = '󱙆'
    'nf-md-credit_card_refund'                       = '󰿳'
    'nf-md-credit_card_refund_outline'               = '󰪨'
    'nf-md-credit_card_remove'                       = '󰾮'
    'nf-md-credit_card_remove_outline'               = '󰾯'
    'nf-md-credit_card_scan'                         = '󰿴'
    'nf-md-credit_card_scan_outline'                 = '󰆝'
    'nf-md-credit_card_search'                       = '󱙇'
    'nf-md-credit_card_search_outline'               = '󱙈'
    'nf-md-credit_card_settings'                     = '󰿵'
    'nf-md-credit_card_settings_outline'             = '󰣗'
    'nf-md-credit_card_sync'                         = '󱙉'
    'nf-md-credit_card_sync_outline'                 = '󱙊'
    'nf-md-credit_card_wireless'                     = '󰠂'
    'nf-md-credit_card_wireless_off'                 = '󰕺'
    'nf-md-credit_card_wireless_off_outline'         = '󰕻'
    'nf-md-credit_card_wireless_outline'             = '󰵬'
    'nf-md-cricket'                                  = '󰵭'
    'nf-md-crop'                                     = '󰆞'
    'nf-md-crop_free'                                = '󰆟'
    'nf-md-crop_landscape'                           = '󰆠'
    'nf-md-crop_portrait'                            = '󰆡'
    'nf-md-crop_rotate'                              = '󰚖'
    'nf-md-crop_square'                              = '󰆢'
    'nf-md-cross'                                    = '󰥓'
    'nf-md-cross_bolnisi'                            = '󰳭'
    'nf-md-cross_celtic'                             = '󰳵'
    'nf-md-cross_outline'                            = '󰳶'
    'nf-md-crosshairs'                               = '󰆣'
    'nf-md-crosshairs_gps'                           = '󰆤'
    'nf-md-crosshairs_off'                           = '󰽅'
    'nf-md-crosshairs_question'                      = '󱄶'
    'nf-md-crowd'                                    = '󱥵'
    'nf-md-crown'                                    = '󰆥'
    'nf-md-crown_circle'                             = '󱟜'
    'nf-md-crown_circle_outline'                     = '󱟝'
    'nf-md-crown_outline'                            = '󱇐'
    'nf-md-cryengine'                                = '󰥙'
    'nf-md-crystal_ball'                             = '󰬯'
    'nf-md-cube'                                     = '󰆦'
    'nf-md-cube_off'                                 = '󱐜'
    'nf-md-cube_off_outline'                         = '󱐝'
    'nf-md-cube_outline'                             = '󰆧'
    'nf-md-cube_scan'                                = '󰮄'
    'nf-md-cube_send'                                = '󰆨'
    'nf-md-cube_unfolded'                            = '󰆩'
    'nf-md-cup'                                      = '󰆪'
    'nf-md-cup_off'                                  = '󰗥'
    'nf-md-cup_off_outline'                          = '󱍽'
    'nf-md-cup_outline'                              = '󱌏'
    'nf-md-cup_water'                                = '󰆫'
    'nf-md-cupboard'                                 = '󰽆'
    'nf-md-cupboard_outline'                         = '󰽇'
    'nf-md-cupcake'                                  = '󰥚'
    'nf-md-curling'                                  = '󰡣'
    'nf-md-currency_bdt'                             = '󰡤'
    'nf-md-currency_brl'                             = '󰮅'
    'nf-md-currency_btc'                             = '󰆬'
    'nf-md-currency_cny'                             = '󰞺'
    'nf-md-currency_eth'                             = '󰞻'
    'nf-md-currency_eur'                             = '󰆭'
    'nf-md-currency_eur_off'                         = '󱌕'
    'nf-md-currency_fra'                             = '󱨹'
    'nf-md-currency_gbp'                             = '󰆮'
    'nf-md-currency_ils'                             = '󰱡'
    'nf-md-currency_inr'                             = '󰆯'
    'nf-md-currency_jpy'                             = '󰞼'
    'nf-md-currency_krw'                             = '󰞽'
    'nf-md-currency_kzt'                             = '󰡥'
    'nf-md-currency_mnt'                             = '󱔒'
    'nf-md-currency_ngn'                             = '󰆰'
    'nf-md-currency_php'                             = '󰧦'
    'nf-md-currency_rial'                            = '󰺜'
    'nf-md-currency_rub'                             = '󰆱'
    'nf-md-currency_rupee'                           = '󱥶'
    'nf-md-currency_sign'                            = '󰞾'
    'nf-md-currency_try'                             = '󰆲'
    'nf-md-currency_twd'                             = '󰞿'
    'nf-md-currency_usd'                             = '󰇁'
    'nf-md-currency_usd_off'                         = '󰙺'
    'nf-md-current_ac'                               = '󱒀'
    'nf-md-current_dc'                               = '󰥜'
    'nf-md-cursor_default'                           = '󰇀'
    'nf-md-cursor_default_click'                     = '󰳽'
    'nf-md-cursor_default_click_outline'             = '󰳾'
    'nf-md-cursor_default_gesture'                   = '󱄧'
    'nf-md-cursor_default_gesture_outline'           = '󱄨'
    'nf-md-cursor_default_outline'                   = '󰆿'
    'nf-md-cursor_move'                              = '󰆾'
    'nf-md-cursor_pointer'                           = '󰆽'
    'nf-md-cursor_text'                              = '󰗧'
    'nf-md-curtains'                                 = '󱡆'
    'nf-md-curtains_closed'                          = '󱡇'
    'nf-md-cylinder'                                 = '󱥎'
    'nf-md-cylinder_off'                             = '󱥏'
    'nf-md-dance_ballroom'                           = '󱗻'
    'nf-md-dance_pole'                               = '󱕸'
    'nf-md-data_matrix'                              = '󱔼'
    'nf-md-data_matrix_edit'                         = '󱔽'
    'nf-md-data_matrix_minus'                        = '󱔾'
    'nf-md-data_matrix_plus'                         = '󱔿'
    'nf-md-data_matrix_remove'                       = '󱕀'
    'nf-md-data_matrix_scan'                         = '󱕁'
    'nf-md-database'                                 = '󰆼'
    'nf-md-database_alert'                           = '󱘺'
    'nf-md-database_alert_outline'                   = '󱘤'
    'nf-md-database_arrow_down'                      = '󱘻'
    'nf-md-database_arrow_down_outline'              = '󱘥'
    'nf-md-database_arrow_left'                      = '󱘼'
    'nf-md-database_arrow_left_outline'              = '󱘦'
    'nf-md-database_arrow_right'                     = '󱘽'
    'nf-md-database_arrow_right_outline'             = '󱘧'
    'nf-md-database_arrow_up'                        = '󱘾'
    'nf-md-database_arrow_up_outline'                = '󱘨'
    'nf-md-database_check'                           = '󰪩'
    'nf-md-database_check_outline'                   = '󱘩'
    'nf-md-database_clock'                           = '󱘿'
    'nf-md-database_clock_outline'                   = '󱘪'
    'nf-md-database_cog'                             = '󱙋'
    'nf-md-database_cog_outline'                     = '󱙌'
    'nf-md-database_edit'                            = '󰮆'
    'nf-md-database_edit_outline'                    = '󱘫'
    'nf-md-database_export'                          = '󰥞'
    'nf-md-database_export_outline'                  = '󱘬'
    'nf-md-database_eye'                             = '󱤟'
    'nf-md-database_eye_off'                         = '󱤠'
    'nf-md-database_eye_off_outline'                 = '󱤡'
    'nf-md-database_eye_outline'                     = '󱤢'
    'nf-md-database_import'                          = '󰥝'
    'nf-md-database_import_outline'                  = '󱘭'
    'nf-md-database_lock'                            = '󰪪'
    'nf-md-database_lock_outline'                    = '󱘮'
    'nf-md-database_marker'                          = '󱋶'
    'nf-md-database_marker_outline'                  = '󱘯'
    'nf-md-database_minus'                           = '󰆻'
    'nf-md-database_minus_outline'                   = '󱘰'
    'nf-md-database_off'                             = '󱙀'
    'nf-md-database_off_outline'                     = '󱘱'
    'nf-md-database_outline'                         = '󱘲'
    'nf-md-database_plus'                            = '󰆺'
    'nf-md-database_plus_outline'                    = '󱘳'
    'nf-md-database_refresh'                         = '󰗂'
    'nf-md-database_refresh_outline'                 = '󱘴'
    'nf-md-database_remove'                          = '󰴀'
    'nf-md-database_remove_outline'                  = '󱘵'
    'nf-md-database_search'                          = '󰡦'
    'nf-md-database_search_outline'                  = '󱘶'
    'nf-md-database_settings'                        = '󰴁'
    'nf-md-database_settings_outline'                = '󱘷'
    'nf-md-database_sync'                            = '󰳿'
    'nf-md-database_sync_outline'                    = '󱘸'
    'nf-md-death_star'                               = '󰣘'
    'nf-md-death_star_variant'                       = '󰣙'
    'nf-md-deathly_hallows'                          = '󰮇'
    'nf-md-debian'                                   = '󰣚'
    'nf-md-debug_step_into'                          = '󰆹'
    'nf-md-debug_step_out'                           = '󰆸'
    'nf-md-debug_step_over'                          = '󰆷'
    'nf-md-decagram'                                 = '󰝬'
    'nf-md-decagram_outline'                         = '󰝭'
    'nf-md-decimal'                                  = '󱂡'
    'nf-md-decimal_comma'                            = '󱂢'
    'nf-md-decimal_comma_decrease'                   = '󱂣'
    'nf-md-decimal_comma_increase'                   = '󱂤'
    'nf-md-decimal_decrease'                         = '󰆶'
    'nf-md-decimal_increase'                         = '󰆵'
    'nf-md-delete'                                   = '󰆴'
    'nf-md-delete_alert'                             = '󱂥'
    'nf-md-delete_alert_outline'                     = '󱂦'
    'nf-md-delete_circle'                            = '󰚃'
    'nf-md-delete_circle_outline'                    = '󰮈'
    'nf-md-delete_clock'                             = '󱕖'
    'nf-md-delete_clock_outline'                     = '󱕗'
    'nf-md-delete_empty'                             = '󰛌'
    'nf-md-delete_empty_outline'                     = '󰺝'
    'nf-md-delete_forever'                           = '󰗨'
    'nf-md-delete_forever_outline'                   = '󰮉'
    'nf-md-delete_off'                               = '󱂧'
    'nf-md-delete_off_outline'                       = '󱂨'
    'nf-md-delete_outline'                           = '󰧧'
    'nf-md-delete_restore'                           = '󰠙'
    'nf-md-delete_sweep'                             = '󰗩'
    'nf-md-delete_sweep_outline'                     = '󰱢'
    'nf-md-delete_variant'                           = '󰆳'
    'nf-md-delta'                                    = '󰇂'
    'nf-md-desk'                                     = '󱈹'
    'nf-md-desk_lamp'                                = '󰥟'
    'nf-md-deskphone'                                = '󰇃'
    'nf-md-desktop_classic'                          = '󰟀'
    'nf-md-desktop_mac'                              = '󰇄'
    'nf-md-desktop_mac_dashboard'                    = '󰧨'
    'nf-md-desktop_tower'                            = '󰇅'
    'nf-md-desktop_tower_monitor'                    = '󰪫'
    'nf-md-details'                                  = '󰇆'
    'nf-md-dev_to'                                   = '󰵮'
    'nf-md-developer_board'                          = '󰚗'
    'nf-md-deviantart'                               = '󰇇'
    'nf-md-devices'                                  = '󰾰'
    'nf-md-dharmachakra'                             = '󰥋'
    'nf-md-diabetes'                                 = '󱄦'
    'nf-md-dialpad'                                  = '󰘜'
    'nf-md-diameter'                                 = '󰱣'
    'nf-md-diameter_outline'                         = '󰱤'
    'nf-md-diameter_variant'                         = '󰱥'
    'nf-md-diamond'                                  = '󰮊'
    'nf-md-diamond_outline'                          = '󰮋'
    'nf-md-diamond_stone'                            = '󰇈'
    'nf-md-dice_1'                                   = '󰇊'
    'nf-md-dice_1_outline'                           = '󱅊'
    'nf-md-dice_2'                                   = '󰇋'
    'nf-md-dice_2_outline'                           = '󱅋'
    'nf-md-dice_3'                                   = '󰇌'
    'nf-md-dice_3_outline'                           = '󱅌'
    'nf-md-dice_4'                                   = '󰇍'
    'nf-md-dice_4_outline'                           = '󱅍'
    'nf-md-dice_5'                                   = '󰇎'
    'nf-md-dice_5_outline'                           = '󱅎'
    'nf-md-dice_6'                                   = '󰇏'
    'nf-md-dice_6_outline'                           = '󱅏'
    'nf-md-dice_d10'                                 = '󱅓'
    'nf-md-dice_d10_outline'                         = '󰝯'
    'nf-md-dice_d12'                                 = '󱅔'
    'nf-md-dice_d12_outline'                         = '󰡧'
    'nf-md-dice_d20'                                 = '󱅕'
    'nf-md-dice_d20_outline'                         = '󰗪'
    'nf-md-dice_d4'                                  = '󱅐'
    'nf-md-dice_d4_outline'                          = '󰗫'
    'nf-md-dice_d6'                                  = '󱅑'
    'nf-md-dice_d6_outline'                          = '󰗭'
    'nf-md-dice_d8'                                  = '󱅒'
    'nf-md-dice_d8_outline'                          = '󰗬'
    'nf-md-dice_multiple'                            = '󰝮'
    'nf-md-dice_multiple_outline'                    = '󱅖'
    'nf-md-digital_ocean'                            = '󱈷'
    'nf-md-dip_switch'                               = '󰟁'
    'nf-md-directions'                               = '󰇐'
    'nf-md-directions_fork'                          = '󰙁'
    'nf-md-disc'                                     = '󰗮'
    'nf-md-disc_alert'                               = '󰇑'
    'nf-md-disc_player'                              = '󰥠'
    'nf-md-discord'                                  = '󰙯'
    'nf-md-dishwasher'                               = '󰪬'
    'nf-md-dishwasher_alert'                         = '󱆸'
    'nf-md-dishwasher_off'                           = '󱆹'
    'nf-md-disqus'                                   = '󰇒'
    'nf-md-distribute_horizontal_center'             = '󱇉'
    'nf-md-distribute_horizontal_left'               = '󱇈'
    'nf-md-distribute_horizontal_right'              = '󱇊'
    'nf-md-distribute_vertical_bottom'               = '󱇋'
    'nf-md-distribute_vertical_center'               = '󱇌'
    'nf-md-distribute_vertical_top'                  = '󱇍'
    'nf-md-diversify'                                = '󱡷'
    'nf-md-diving'                                   = '󱥷'
    'nf-md-diving_flippers'                          = '󰶿'
    'nf-md-diving_helmet'                            = '󰷀'
    'nf-md-diving_scuba'                             = '󰷁'
    'nf-md-diving_scuba_flag'                        = '󰷂'
    'nf-md-diving_scuba_tank'                        = '󰷃'
    'nf-md-diving_scuba_tank_multiple'               = '󰷄'
    'nf-md-diving_snorkel'                           = '󰷅'
    'nf-md-division'                                 = '󰇔'
    'nf-md-division_box'                             = '󰇕'
    'nf-md-dlna'                                     = '󰩁'
    'nf-md-dna'                                      = '󰚄'
    'nf-md-dns'                                      = '󰇖'
    'nf-md-dns_outline'                              = '󰮌'
    'nf-md-dock_bottom'                              = '󱂩'
    'nf-md-dock_left'                                = '󱂪'
    'nf-md-dock_right'                               = '󱂫'
    'nf-md-dock_top'                                 = '󱔓'
    'nf-md-dock_window'                              = '󱂬'
    'nf-md-docker'                                   = '󰡨'
    'nf-md-doctor'                                   = '󰩂'
    'nf-md-dog'                                      = '󰩃'
    'nf-md-dog_service'                              = '󰪭'
    'nf-md-dog_side'                                 = '󰩄'
    'nf-md-dog_side_off'                             = '󱛮'
    'nf-md-dolby'                                    = '󰚳'
    'nf-md-dolly'                                    = '󰺞'
    'nf-md-dolphin'                                  = '󱢴'
    'nf-md-domain'                                   = '󰇗'
    'nf-md-domain_off'                               = '󰵯'
    'nf-md-domain_plus'                              = '󱂭'
    'nf-md-domain_remove'                            = '󱂮'
    'nf-md-dome_light'                               = '󱐞'
    'nf-md-domino_mask'                              = '󱀣'
    'nf-md-donkey'                                   = '󰟂'
    'nf-md-door'                                     = '󰠚'
    'nf-md-door_closed'                              = '󰠛'
    'nf-md-door_closed_lock'                         = '󱂯'
    'nf-md-door_open'                                = '󰠜'
    'nf-md-door_sliding'                             = '󱠞'
    'nf-md-door_sliding_lock'                        = '󱠟'
    'nf-md-door_sliding_open'                        = '󱠠'
    'nf-md-doorbell'                                 = '󱋦'
    'nf-md-doorbell_video'                           = '󰡩'
    'nf-md-dot_net'                                  = '󰪮'
    'nf-md-dots_circle'                              = '󱥸'
    'nf-md-dots_grid'                                = '󱗼'
    'nf-md-dots_hexagon'                             = '󱗿'
    'nf-md-dots_horizontal'                          = '󰇘'
    'nf-md-dots_horizontal_circle'                   = '󰟃'
    'nf-md-dots_horizontal_circle_outline'           = '󰮍'
    'nf-md-dots_square'                              = '󱗽'
    'nf-md-dots_triangle'                            = '󱗾'
    'nf-md-dots_vertical'                            = '󰇙'
    'nf-md-dots_vertical_circle'                     = '󰟄'
    'nf-md-dots_vertical_circle_outline'             = '󰮎'
    'nf-md-download'                                 = '󰇚'
    'nf-md-download_box'                             = '󱑢'
    'nf-md-download_box_outline'                     = '󱑣'
    'nf-md-download_circle'                          = '󱑤'
    'nf-md-download_circle_outline'                  = '󱑥'
    'nf-md-download_lock'                            = '󱌠'
    'nf-md-download_lock_outline'                    = '󱌡'
    'nf-md-download_multiple'                        = '󰧩'
    'nf-md-download_network'                         = '󰛴'
    'nf-md-download_network_outline'                 = '󰱦'
    'nf-md-download_off'                             = '󱂰'
    'nf-md-download_off_outline'                     = '󱂱'
    'nf-md-download_outline'                         = '󰮏'
    'nf-md-drag'                                     = '󰇛'
    'nf-md-drag_horizontal'                          = '󰇜'
    'nf-md-drag_horizontal_variant'                  = '󱋰'
    'nf-md-drag_variant'                             = '󰮐'
    'nf-md-drag_vertical'                            = '󰇝'
    'nf-md-drag_vertical_variant'                    = '󱋱'
    'nf-md-drama_masks'                              = '󰴂'
    'nf-md-draw'                                     = '󰽉'
    'nf-md-draw_pen'                                 = '󱦹'
    'nf-md-drawing'                                  = '󰇞'
    'nf-md-drawing_box'                              = '󰇟'
    'nf-md-dresser'                                  = '󰽊'
    'nf-md-dresser_outline'                          = '󰽋'
    'nf-md-drone'                                    = '󰇢'
    'nf-md-dropbox'                                  = '󰇣'
    'nf-md-drupal'                                   = '󰇤'
    'nf-md-duck'                                     = '󰇥'
    'nf-md-dumbbell'                                 = '󰇦'
    'nf-md-dump_truck'                               = '󰱧'
    'nf-md-ear_hearing'                              = '󰟅'
    'nf-md-ear_hearing_loop'                         = '󱫮'
    'nf-md-ear_hearing_off'                          = '󰩅'
    'nf-md-earbuds'                                  = '󱡏'
    'nf-md-earbuds_off'                              = '󱡐'
    'nf-md-earbuds_off_outline'                      = '󱡑'
    'nf-md-earbuds_outline'                          = '󱡒'
    'nf-md-earth'                                    = '󰇧'
    'nf-md-earth_arrow_right'                        = '󱌑'
    'nf-md-earth_box'                                = '󰛍'
    'nf-md-earth_box_minus'                          = '󱐇'
    'nf-md-earth_box_off'                            = '󰛎'
    'nf-md-earth_box_plus'                           = '󱐆'
    'nf-md-earth_box_remove'                         = '󱐈'
    'nf-md-earth_minus'                              = '󱐄'
    'nf-md-earth_off'                                = '󰇨'
    'nf-md-earth_plus'                               = '󱐃'
    'nf-md-earth_remove'                             = '󱐅'
    'nf-md-egg'                                      = '󰪯'
    'nf-md-egg_easter'                               = '󰪰'
    'nf-md-egg_fried'                                = '󱡊'
    'nf-md-egg_off'                                  = '󱏰'
    'nf-md-egg_off_outline'                          = '󱏱'
    'nf-md-egg_outline'                              = '󱏲'
    'nf-md-eiffel_tower'                             = '󱕫'
    'nf-md-eight_track'                              = '󰧪'
    'nf-md-eject'                                    = '󰇪'
    'nf-md-eject_outline'                            = '󰮑'
    'nf-md-electric_switch'                          = '󰺟'
    'nf-md-electric_switch_closed'                   = '󱃙'
    'nf-md-electron_framework'                       = '󱀤'
    'nf-md-elephant'                                 = '󰟆'
    'nf-md-elevation_decline'                        = '󰇫'
    'nf-md-elevation_rise'                           = '󰇬'
    'nf-md-elevator'                                 = '󰇭'
    'nf-md-elevator_down'                            = '󱋂'
    'nf-md-elevator_passenger'                       = '󱎁'
    'nf-md-elevator_passenger_off'                   = '󱥹'
    'nf-md-elevator_passenger_off_outline'           = '󱥺'
    'nf-md-elevator_passenger_outline'               = '󱥻'
    'nf-md-elevator_up'                              = '󱋁'
    'nf-md-ellipse'                                  = '󰺠'
    'nf-md-ellipse_outline'                          = '󰺡'
    'nf-md-email'                                    = '󰇮'
    'nf-md-email_alert'                              = '󰛏'
    'nf-md-email_alert_outline'                      = '󰵂'
    'nf-md-email_box'                                = '󰴃'
    'nf-md-email_check'                              = '󰪱'
    'nf-md-email_check_outline'                      = '󰪲'
    'nf-md-email_edit'                               = '󰻣'
    'nf-md-email_edit_outline'                       = '󰻤'
    'nf-md-email_fast'                               = '󱡯'
    'nf-md-email_fast_outline'                       = '󱡰'
    'nf-md-email_lock'                               = '󰇱'
    'nf-md-email_mark_as_unread'                     = '󰮒'
    'nf-md-email_minus'                              = '󰻥'
    'nf-md-email_minus_outline'                      = '󰻦'
    'nf-md-email_multiple'                           = '󰻧'
    'nf-md-email_multiple_outline'                   = '󰻨'
    'nf-md-email_newsletter'                         = '󰾱'
    'nf-md-email_off'                                = '󱏣'
    'nf-md-email_off_outline'                        = '󱏤'
    'nf-md-email_open'                               = '󰇯'
    'nf-md-email_open_multiple'                      = '󰻩'
    'nf-md-email_open_multiple_outline'              = '󰻪'
    'nf-md-email_open_outline'                       = '󰗯'
    'nf-md-email_outline'                            = '󰇰'
    'nf-md-email_plus'                               = '󰧫'
    'nf-md-email_plus_outline'                       = '󰧬'
    'nf-md-email_receive'                            = '󱃚'
    'nf-md-email_receive_outline'                    = '󱃛'
    'nf-md-email_remove'                             = '󱙡'
    'nf-md-email_remove_outline'                     = '󱙢'
    'nf-md-email_seal'                               = '󱥛'
    'nf-md-email_seal_outline'                       = '󱥜'
    'nf-md-email_search'                             = '󰥡'
    'nf-md-email_search_outline'                     = '󰥢'
    'nf-md-email_send'                               = '󱃜'
    'nf-md-email_send_outline'                       = '󱃝'
    'nf-md-email_sync'                               = '󱋇'
    'nf-md-email_sync_outline'                       = '󱋈'
    'nf-md-email_variant'                            = '󰗰'
    'nf-md-ember'                                    = '󰬰'
    'nf-md-emby'                                     = '󰚴'
    'nf-md-emoticon'                                 = '󰱨'
    'nf-md-emoticon_angry'                           = '󰱩'
    'nf-md-emoticon_angry_outline'                   = '󰱪'
    'nf-md-emoticon_confused'                        = '󱃞'
    'nf-md-emoticon_confused_outline'                = '󱃟'
    'nf-md-emoticon_cool'                            = '󰱫'
    'nf-md-emoticon_cool_outline'                    = '󰇳'
    'nf-md-emoticon_cry'                             = '󰱬'
    'nf-md-emoticon_cry_outline'                     = '󰱭'
    'nf-md-emoticon_dead'                            = '󰱮'
    'nf-md-emoticon_dead_outline'                    = '󰚛'
    'nf-md-emoticon_devil'                           = '󰱯'
    'nf-md-emoticon_devil_outline'                   = '󰇴'
    'nf-md-emoticon_excited'                         = '󰱰'
    'nf-md-emoticon_excited_outline'                 = '󰚜'
    'nf-md-emoticon_frown'                           = '󰽌'
    'nf-md-emoticon_frown_outline'                   = '󰽍'
    'nf-md-emoticon_happy'                           = '󰱱'
    'nf-md-emoticon_happy_outline'                   = '󰇵'
    'nf-md-emoticon_kiss'                            = '󰱲'
    'nf-md-emoticon_kiss_outline'                    = '󰱳'
    'nf-md-emoticon_lol'                             = '󱈔'
    'nf-md-emoticon_lol_outline'                     = '󱈕'
    'nf-md-emoticon_neutral'                         = '󰱴'
    'nf-md-emoticon_neutral_outline'                 = '󰇶'
    'nf-md-emoticon_outline'                         = '󰇲'
    'nf-md-emoticon_poop'                            = '󰇷'
    'nf-md-emoticon_poop_outline'                    = '󰱵'
    'nf-md-emoticon_sad'                             = '󰱶'
    'nf-md-emoticon_sad_outline'                     = '󰇸'
    'nf-md-emoticon_sick'                            = '󱕼'
    'nf-md-emoticon_sick_outline'                    = '󱕽'
    'nf-md-emoticon_tongue'                          = '󰇹'
    'nf-md-emoticon_tongue_outline'                  = '󰱷'
    'nf-md-emoticon_wink'                            = '󰱸'
    'nf-md-emoticon_wink_outline'                    = '󰱹'
    'nf-md-engine'                                   = '󰇺'
    'nf-md-engine_off'                               = '󰩆'
    'nf-md-engine_off_outline'                       = '󰩇'
    'nf-md-engine_outline'                           = '󰇻'
    'nf-md-epsilon'                                  = '󱃠'
    'nf-md-equal'                                    = '󰇼'
    'nf-md-equal_box'                                = '󰇽'
    'nf-md-equalizer'                                = '󰺢'
    'nf-md-equalizer_outline'                        = '󰺣'
    'nf-md-eraser'                                   = '󰇾'
    'nf-md-eraser_variant'                           = '󰙂'
    'nf-md-escalator'                                = '󰇿'
    'nf-md-escalator_box'                            = '󱎙'
    'nf-md-escalator_down'                           = '󱋀'
    'nf-md-escalator_up'                             = '󱊿'
    'nf-md-eslint'                                   = '󰱺'
    'nf-md-et'                                       = '󰪳'
    'nf-md-ethereum'                                 = '󰡪'
    'nf-md-ethernet'                                 = '󰈀'
    'nf-md-ethernet_cable'                           = '󰈁'
    'nf-md-ethernet_cable_off'                       = '󰈂'
    'nf-md-ev_plug_ccs1'                             = '󱔙'
    'nf-md-ev_plug_ccs2'                             = '󱔚'
    'nf-md-ev_plug_chademo'                          = '󱔛'
    'nf-md-ev_plug_tesla'                            = '󱔜'
    'nf-md-ev_plug_type1'                            = '󱔝'
    'nf-md-ev_plug_type2'                            = '󱔞'
    'nf-md-ev_station'                               = '󰗱'
    'nf-md-evernote'                                 = '󰈄'
    'nf-md-excavator'                                = '󱀥'
    'nf-md-exclamation'                              = '󰈅'
    'nf-md-exclamation_thick'                        = '󱈸'
    'nf-md-exit_run'                                 = '󰩈'
    'nf-md-exit_to_app'                              = '󰗼'
    'nf-md-expand_all'                               = '󰪴'
    'nf-md-expand_all_outline'                       = '󰪵'
    'nf-md-expansion_card'                           = '󰢮'
    'nf-md-expansion_card_variant'                   = '󰾲'
    'nf-md-exponent'                                 = '󰥣'
    'nf-md-exponent_box'                             = '󰥤'
    'nf-md-export'                                   = '󰈇'
    'nf-md-export_variant'                           = '󰮓'
    'nf-md-eye'                                      = '󰈈'
    'nf-md-eye_arrow_left'                           = '󱣽'
    'nf-md-eye_arrow_left_outline'                   = '󱣾'
    'nf-md-eye_arrow_right'                          = '󱣿'
    'nf-md-eye_arrow_right_outline'                  = '󱤀'
    'nf-md-eye_check'                                = '󰴄'
    'nf-md-eye_check_outline'                        = '󰴅'
    'nf-md-eye_circle'                               = '󰮔'
    'nf-md-eye_circle_outline'                       = '󰮕'
    'nf-md-eye_minus'                                = '󱀦'
    'nf-md-eye_minus_outline'                        = '󱀧'
    'nf-md-eye_off'                                  = '󰈉'
    'nf-md-eye_off_outline'                          = '󰛑'
    'nf-md-eye_outline'                              = '󰛐'
    'nf-md-eye_plus'                                 = '󰡫'
    'nf-md-eye_plus_outline'                         = '󰡬'
    'nf-md-eye_refresh'                              = '󱥼'
    'nf-md-eye_refresh_outline'                      = '󱥽'
    'nf-md-eye_remove'                               = '󱗣'
    'nf-md-eye_remove_outline'                       = '󱗤'
    'nf-md-eye_settings'                             = '󰡭'
    'nf-md-eye_settings_outline'                     = '󰡮'
    'nf-md-eyedropper'                               = '󰈊'
    'nf-md-eyedropper_minus'                         = '󱏝'
    'nf-md-eyedropper_off'                           = '󱏟'
    'nf-md-eyedropper_plus'                          = '󱏜'
    'nf-md-eyedropper_remove'                        = '󱏞'
    'nf-md-eyedropper_variant'                       = '󰈋'
    'nf-md-face_agent'                               = '󰵰'
    'nf-md-face_man'                                 = '󰙃'
    'nf-md-face_man_outline'                         = '󰮖'
    'nf-md-face_man_profile'                         = '󰙄'
    'nf-md-face_man_shimmer'                         = '󱗌'
    'nf-md-face_man_shimmer_outline'                 = '󱗍'
    'nf-md-face_mask'                                = '󱖆'
    'nf-md-face_mask_outline'                        = '󱖇'
    'nf-md-face_recognition'                         = '󰱻'
    'nf-md-face_woman'                               = '󱁷'
    'nf-md-face_woman_outline'                       = '󱁸'
    'nf-md-face_woman_profile'                       = '󱁶'
    'nf-md-face_woman_shimmer'                       = '󱗎'
    'nf-md-face_woman_shimmer_outline'               = '󱗏'
    'nf-md-facebook'                                 = '󰈌'
    'nf-md-facebook_gaming'                          = '󰟝'
    'nf-md-facebook_messenger'                       = '󰈎'
    'nf-md-facebook_workplace'                       = '󰬱'
    'nf-md-factory'                                  = '󰈏'
    'nf-md-family_tree'                              = '󱘎'
    'nf-md-fan'                                      = '󰈐'
    'nf-md-fan_alert'                                = '󱑬'
    'nf-md-fan_auto'                                 = '󱜝'
    'nf-md-fan_chevron_down'                         = '󱑭'
    'nf-md-fan_chevron_up'                           = '󱑮'
    'nf-md-fan_clock'                                = '󱨺'
    'nf-md-fan_minus'                                = '󱑰'
    'nf-md-fan_off'                                  = '󰠝'
    'nf-md-fan_plus'                                 = '󱑯'
    'nf-md-fan_remove'                               = '󱑱'
    'nf-md-fan_speed_1'                              = '󱑲'
    'nf-md-fan_speed_2'                              = '󱑳'
    'nf-md-fan_speed_3'                              = '󱑴'
    'nf-md-fast_forward'                             = '󰈑'
    'nf-md-fast_forward_10'                          = '󰵱'
    'nf-md-fast_forward_15'                          = '󱤺'
    'nf-md-fast_forward_30'                          = '󰴆'
    'nf-md-fast_forward_5'                           = '󱇸'
    'nf-md-fast_forward_60'                          = '󱘋'
    'nf-md-fast_forward_outline'                     = '󰛒'
    'nf-md-fax'                                      = '󰈒'
    'nf-md-feather'                                  = '󰛓'
    'nf-md-feature_search'                           = '󰩉'
    'nf-md-feature_search_outline'                   = '󰩊'
    'nf-md-fedora'                                   = '󰣛'
    'nf-md-fence'                                    = '󱞚'
    'nf-md-fence_electric'                           = '󱟶'
    'nf-md-fencing'                                  = '󱓁'
    'nf-md-ferris_wheel'                             = '󰺤'
    'nf-md-ferry'                                    = '󰈓'
    'nf-md-file'                                     = '󰈔'
    'nf-md-file_account'                             = '󰜻'
    'nf-md-file_account_outline'                     = '󱀨'
    'nf-md-file_alert'                               = '󰩋'
    'nf-md-file_alert_outline'                       = '󰩌'
    'nf-md-file_arrow_left_right'                    = '󱪓'
    'nf-md-file_arrow_left_right_outline'            = '󱪔'
    'nf-md-file_arrow_up_down'                       = '󱪕'
    'nf-md-file_arrow_up_down_outline'               = '󱪖'
    'nf-md-file_cabinet'                             = '󰪶'
    'nf-md-file_cad'                                 = '󰻫'
    'nf-md-file_cad_box'                             = '󰻬'
    'nf-md-file_cancel'                              = '󰷆'
    'nf-md-file_cancel_outline'                      = '󰷇'
    'nf-md-file_certificate'                         = '󱆆'
    'nf-md-file_certificate_outline'                 = '󱆇'
    'nf-md-file_chart'                               = '󰈕'
    'nf-md-file_chart_check'                         = '󱧆'
    'nf-md-file_chart_check_outline'                 = '󱧇'
    'nf-md-file_chart_outline'                       = '󱀩'
    'nf-md-file_check'                               = '󰈖'
    'nf-md-file_check_outline'                       = '󰸩'
    'nf-md-file_clock'                               = '󱋡'
    'nf-md-file_clock_outline'                       = '󱋢'
    'nf-md-file_cloud'                               = '󰈗'
    'nf-md-file_cloud_outline'                       = '󱀪'
    'nf-md-file_code'                                = '󰈮'
    'nf-md-file_code_outline'                        = '󱀫'
    'nf-md-file_cog'                                 = '󱁻'
    'nf-md-file_cog_outline'                         = '󱁼'
    'nf-md-file_compare'                             = '󰢪'
    'nf-md-file_delimited'                           = '󰈘'
    'nf-md-file_delimited_outline'                   = '󰺥'
    'nf-md-file_document'                            = '󰈙'
    'nf-md-file_document_alert'                      = '󱪗'
    'nf-md-file_document_alert_outline'              = '󱪘'
    'nf-md-file_document_check'                      = '󱪙'
    'nf-md-file_document_check_outline'              = '󱪚'
    'nf-md-file_document_edit'                       = '󰷈'
    'nf-md-file_document_edit_outline'               = '󰷉'
    'nf-md-file_document_minus'                      = '󱪛'
    'nf-md-file_document_minus_outline'              = '󱪜'
    'nf-md-file_document_multiple'                   = '󱔗'
    'nf-md-file_document_multiple_outline'           = '󱔘'
    'nf-md-file_document_outline'                    = '󰧮'
    'nf-md-file_document_plus'                       = '󱪝'
    'nf-md-file_document_plus_outline'               = '󱪞'
    'nf-md-file_document_remove'                     = '󱪟'
    'nf-md-file_document_remove_outline'             = '󱪠'
    'nf-md-file_download'                            = '󰥥'
    'nf-md-file_download_outline'                    = '󰥦'
    'nf-md-file_edit'                                = '󱇧'
    'nf-md-file_edit_outline'                        = '󱇨'
    'nf-md-file_excel'                               = '󰈛'
    'nf-md-file_excel_box'                           = '󰈜'
    'nf-md-file_excel_box_outline'                   = '󱀬'
    'nf-md-file_excel_outline'                       = '󱀭'
    'nf-md-file_export'                              = '󰈝'
    'nf-md-file_export_outline'                      = '󱀮'
    'nf-md-file_eye'                                 = '󰷊'
    'nf-md-file_eye_outline'                         = '󰷋'
    'nf-md-file_find'                                = '󰈞'
    'nf-md-file_find_outline'                        = '󰮗'
    'nf-md-file_gif_box'                             = '󰵸'
    'nf-md-file_hidden'                              = '󰘓'
    'nf-md-file_image'                               = '󰈟'
    'nf-md-file_image_marker'                        = '󱝲'
    'nf-md-file_image_marker_outline'                = '󱝳'
    'nf-md-file_image_minus'                         = '󱤻'
    'nf-md-file_image_minus_outline'                 = '󱤼'
    'nf-md-file_image_outline'                       = '󰺰'
    'nf-md-file_image_plus'                          = '󱤽'
    'nf-md-file_image_plus_outline'                  = '󱤾'
    'nf-md-file_image_remove'                        = '󱤿'
    'nf-md-file_image_remove_outline'                = '󱥀'
    'nf-md-file_import'                              = '󰈠'
    'nf-md-file_import_outline'                      = '󱀯'
    'nf-md-file_jpg_box'                             = '󰈥'
    'nf-md-file_key'                                 = '󱆄'
    'nf-md-file_key_outline'                         = '󱆅'
    'nf-md-file_link'                                = '󱅷'
    'nf-md-file_link_outline'                        = '󱅸'
    'nf-md-file_lock'                                = '󰈡'
    'nf-md-file_lock_open'                           = '󱧈'
    'nf-md-file_lock_open_outline'                   = '󱧉'
    'nf-md-file_lock_outline'                        = '󱀰'
    'nf-md-file_marker'                              = '󱝴'
    'nf-md-file_marker_outline'                      = '󱝵'
    'nf-md-file_minus'                               = '󱪡'
    'nf-md-file_minus_outline'                       = '󱪢'
    'nf-md-file_move'                                = '󰪹'
    'nf-md-file_move_outline'                        = '󱀱'
    'nf-md-file_multiple'                            = '󰈢'
    'nf-md-file_multiple_outline'                    = '󱀲'
    'nf-md-file_music'                               = '󰈣'
    'nf-md-file_music_outline'                       = '󰸪'
    'nf-md-file_outline'                             = '󰈤'
    'nf-md-file_pdf_box'                             = '󰈦'
    'nf-md-file_percent'                             = '󰠞'
    'nf-md-file_percent_outline'                     = '󱀳'
    'nf-md-file_phone'                               = '󱅹'
    'nf-md-file_phone_outline'                       = '󱅺'
    'nf-md-file_plus'                                = '󰝒'
    'nf-md-file_plus_outline'                        = '󰻭'
    'nf-md-file_png_box'                             = '󰸭'
    'nf-md-file_powerpoint'                          = '󰈧'
    'nf-md-file_powerpoint_box'                      = '󰈨'
    'nf-md-file_powerpoint_box_outline'              = '󱀴'
    'nf-md-file_powerpoint_outline'                  = '󱀵'
    'nf-md-file_presentation_box'                    = '󰈩'
    'nf-md-file_question'                            = '󰡯'
    'nf-md-file_question_outline'                    = '󱀶'
    'nf-md-file_refresh'                             = '󰤘'
    'nf-md-file_refresh_outline'                     = '󰕁'
    'nf-md-file_remove'                              = '󰮘'
    'nf-md-file_remove_outline'                      = '󱀷'
    'nf-md-file_replace'                             = '󰬲'
    'nf-md-file_replace_outline'                     = '󰬳'
    'nf-md-file_restore'                             = '󰙰'
    'nf-md-file_restore_outline'                     = '󱀸'
    'nf-md-file_rotate_left'                         = '󱨻'
    'nf-md-file_rotate_left_outline'                 = '󱨼'
    'nf-md-file_rotate_right'                        = '󱨽'
    'nf-md-file_rotate_right_outline'                = '󱨾'
    'nf-md-file_search'                              = '󰱼'
    'nf-md-file_search_outline'                      = '󰱽'
    'nf-md-file_send'                                = '󰈪'
    'nf-md-file_send_outline'                        = '󱀹'
    'nf-md-file_settings'                            = '󱁹'
    'nf-md-file_settings_outline'                    = '󱁺'
    'nf-md-file_sign'                                = '󱧃'
    'nf-md-file_star'                                = '󱀺'
    'nf-md-file_star_outline'                        = '󱀻'
    'nf-md-file_swap'                                = '󰾴'
    'nf-md-file_swap_outline'                        = '󰾵'
    'nf-md-file_sync'                                = '󱈖'
    'nf-md-file_sync_outline'                        = '󱈗'
    'nf-md-file_table'                               = '󰱾'
    'nf-md-file_table_box'                           = '󱃡'
    'nf-md-file_table_box_multiple'                  = '󱃢'
    'nf-md-file_table_box_multiple_outline'          = '󱃣'
    'nf-md-file_table_box_outline'                   = '󱃤'
    'nf-md-file_table_outline'                       = '󰱿'
    'nf-md-file_tree'                                = '󰙅'
    'nf-md-file_tree_outline'                        = '󱏒'
    'nf-md-file_undo'                                = '󰣜'
    'nf-md-file_undo_outline'                        = '󱀼'
    'nf-md-file_upload'                              = '󰩍'
    'nf-md-file_upload_outline'                      = '󰩎'
    'nf-md-file_video'                               = '󰈫'
    'nf-md-file_video_outline'                       = '󰸬'
    'nf-md-file_word'                                = '󰈬'
    'nf-md-file_word_box'                            = '󰈭'
    'nf-md-file_word_box_outline'                    = '󱀽'
    'nf-md-file_word_outline'                        = '󱀾'
    'nf-md-film'                                     = '󰈯'
    'nf-md-filmstrip'                                = '󰈰'
    'nf-md-filmstrip_box'                            = '󰌲'
    'nf-md-filmstrip_box_multiple'                   = '󰴘'
    'nf-md-filmstrip_off'                            = '󰈱'
    'nf-md-filter'                                   = '󰈲'
    'nf-md-filter_check'                             = '󱣬'
    'nf-md-filter_check_outline'                     = '󱣭'
    'nf-md-filter_cog'                               = '󱪣'
    'nf-md-filter_cog_outline'                       = '󱪤'
    'nf-md-filter_menu'                              = '󱃥'
    'nf-md-filter_menu_outline'                      = '󱃦'
    'nf-md-filter_minus'                             = '󰻮'
    'nf-md-filter_minus_outline'                     = '󰻯'
    'nf-md-filter_multiple'                          = '󱨿'
    'nf-md-filter_multiple_outline'                  = '󱩀'
    'nf-md-filter_off'                               = '󱓯'
    'nf-md-filter_off_outline'                       = '󱓰'
    'nf-md-filter_outline'                           = '󰈳'
    'nf-md-filter_plus'                              = '󰻰'
    'nf-md-filter_plus_outline'                      = '󰻱'
    'nf-md-filter_remove'                            = '󰈴'
    'nf-md-filter_remove_outline'                    = '󰈵'
    'nf-md-filter_settings'                          = '󱪥'
    'nf-md-filter_settings_outline'                  = '󱪦'
    'nf-md-filter_variant'                           = '󰈶'
    'nf-md-filter_variant_minus'                     = '󱄒'
    'nf-md-filter_variant_plus'                      = '󱄓'
    'nf-md-filter_variant_remove'                    = '󱀿'
    'nf-md-finance'                                  = '󰠟'
    'nf-md-find_replace'                             = '󰛔'
    'nf-md-fingerprint'                              = '󰈷'
    'nf-md-fingerprint_off'                          = '󰺱'
    'nf-md-fire'                                     = '󰈸'
    'nf-md-fire_alert'                               = '󱗗'
    'nf-md-fire_circle'                              = '󱠇'
    'nf-md-fire_extinguisher'                        = '󰻲'
    'nf-md-fire_hydrant'                             = '󱄷'
    'nf-md-fire_hydrant_alert'                       = '󱄸'
    'nf-md-fire_hydrant_off'                         = '󱄹'
    'nf-md-fire_off'                                 = '󱜢'
    'nf-md-fire_truck'                               = '󰢫'
    'nf-md-firebase'                                 = '󰥧'
    'nf-md-firefox'                                  = '󰈹'
    'nf-md-fireplace'                                = '󰸮'
    'nf-md-fireplace_off'                            = '󰸯'
    'nf-md-firewire'                                 = '󰖾'
    'nf-md-firework'                                 = '󰸰'
    'nf-md-firework_off'                             = '󱜣'
    'nf-md-fish'                                     = '󰈺'
    'nf-md-fish_off'                                 = '󱏳'
    'nf-md-fishbowl'                                 = '󰻳'
    'nf-md-fishbowl_outline'                         = '󰻴'
    'nf-md-fit_to_page'                              = '󰻵'
    'nf-md-fit_to_page_outline'                      = '󰻶'
    'nf-md-fit_to_screen'                            = '󱣴'
    'nf-md-fit_to_screen_outline'                    = '󱣵'
    'nf-md-flag'                                     = '󰈻'
    'nf-md-flag_checkered'                           = '󰈼'
    'nf-md-flag_minus'                               = '󰮙'
    'nf-md-flag_minus_outline'                       = '󱂲'
    'nf-md-flag_off'                                 = '󱣮'
    'nf-md-flag_off_outline'                         = '󱣯'
    'nf-md-flag_outline'                             = '󰈽'
    'nf-md-flag_plus'                                = '󰮚'
    'nf-md-flag_plus_outline'                        = '󱂳'
    'nf-md-flag_remove'                              = '󰮛'
    'nf-md-flag_remove_outline'                      = '󱂴'
    'nf-md-flag_triangle'                            = '󰈿'
    'nf-md-flag_variant'                             = '󰉀'
    'nf-md-flag_variant_outline'                     = '󰈾'
    'nf-md-flare'                                    = '󰵲'
    'nf-md-flash'                                    = '󰉁'
    'nf-md-flash_alert'                              = '󰻷'
    'nf-md-flash_alert_outline'                      = '󰻸'
    'nf-md-flash_auto'                               = '󰉂'
    'nf-md-flash_off'                                = '󰉃'
    'nf-md-flash_outline'                            = '󰛕'
    'nf-md-flash_red_eye'                            = '󰙻'
    'nf-md-flashlight'                               = '󰉄'
    'nf-md-flashlight_off'                           = '󰉅'
    'nf-md-flask'                                    = '󰂓'
    'nf-md-flask_empty'                              = '󰂔'
    'nf-md-flask_empty_minus'                        = '󱈺'
    'nf-md-flask_empty_minus_outline'                = '󱈻'
    'nf-md-flask_empty_off'                          = '󱏴'
    'nf-md-flask_empty_off_outline'                  = '󱏵'
    'nf-md-flask_empty_outline'                      = '󰂕'
    'nf-md-flask_empty_plus'                         = '󱈼'
    'nf-md-flask_empty_plus_outline'                 = '󱈽'
    'nf-md-flask_empty_remove'                       = '󱈾'
    'nf-md-flask_empty_remove_outline'               = '󱈿'
    'nf-md-flask_minus'                              = '󱉀'
    'nf-md-flask_minus_outline'                      = '󱉁'
    'nf-md-flask_off'                                = '󱏶'
    'nf-md-flask_off_outline'                        = '󱏷'
    'nf-md-flask_outline'                            = '󰂖'
    'nf-md-flask_plus'                               = '󱉂'
    'nf-md-flask_plus_outline'                       = '󱉃'
    'nf-md-flask_remove'                             = '󱉄'
    'nf-md-flask_remove_outline'                     = '󱉅'
    'nf-md-flask_round_bottom'                       = '󱉋'
    'nf-md-flask_round_bottom_empty'                 = '󱉌'
    'nf-md-flask_round_bottom_empty_outline'         = '󱉍'
    'nf-md-flask_round_bottom_outline'               = '󱉎'
    'nf-md-fleur_de_lis'                             = '󱌃'
    'nf-md-flip_horizontal'                          = '󱃧'
    'nf-md-flip_to_back'                             = '󰉇'
    'nf-md-flip_to_front'                            = '󰉈'
    'nf-md-flip_vertical'                            = '󱃨'
    'nf-md-floor_lamp'                               = '󰣝'
    'nf-md-floor_lamp_dual'                          = '󱁀'
    'nf-md-floor_lamp_dual_outline'                  = '󱟎'
    'nf-md-floor_lamp_outline'                       = '󱟈'
    'nf-md-floor_lamp_torchiere'                     = '󱝇'
    'nf-md-floor_lamp_torchiere_outline'             = '󱟖'
    'nf-md-floor_lamp_torchiere_variant'             = '󱁁'
    'nf-md-floor_lamp_torchiere_variant_outline'     = '󱟏'
    'nf-md-floor_plan'                               = '󰠡'
    'nf-md-floppy'                                   = '󰉉'
    'nf-md-floppy_variant'                           = '󰧯'
    'nf-md-flower'                                   = '󰉊'
    'nf-md-flower_outline'                           = '󰧰'
    'nf-md-flower_pollen'                            = '󱢅'
    'nf-md-flower_pollen_outline'                    = '󱢆'
    'nf-md-flower_poppy'                             = '󰴈'
    'nf-md-flower_tulip'                             = '󰧱'
    'nf-md-flower_tulip_outline'                     = '󰧲'
    'nf-md-focus_auto'                               = '󰽎'
    'nf-md-focus_field'                              = '󰽏'
    'nf-md-focus_field_horizontal'                   = '󰽐'
    'nf-md-focus_field_vertical'                     = '󰽑'
    'nf-md-folder'                                   = '󰉋'
    'nf-md-folder_account'                           = '󰉌'
    'nf-md-folder_account_outline'                   = '󰮜'
    'nf-md-folder_alert'                             = '󰷌'
    'nf-md-folder_alert_outline'                     = '󰷍'
    'nf-md-folder_arrow_down'                        = '󱧨'
    'nf-md-folder_arrow_down_outline'                = '󱧩'
    'nf-md-folder_arrow_left'                        = '󱧪'
    'nf-md-folder_arrow_left_outline'                = '󱧫'
    'nf-md-folder_arrow_left_right'                  = '󱧬'
    'nf-md-folder_arrow_left_right_outline'          = '󱧭'
    'nf-md-folder_arrow_right'                       = '󱧮'
    'nf-md-folder_arrow_right_outline'               = '󱧯'
    'nf-md-folder_arrow_up'                          = '󱧰'
    'nf-md-folder_arrow_up_down'                     = '󱧱'
    'nf-md-folder_arrow_up_down_outline'             = '󱧲'
    'nf-md-folder_arrow_up_outline'                  = '󱧳'
    'nf-md-folder_cancel'                            = '󱧴'
    'nf-md-folder_cancel_outline'                    = '󱧵'
    'nf-md-folder_check'                             = '󱥾'
    'nf-md-folder_check_outline'                     = '󱥿'
    'nf-md-folder_clock'                             = '󰪺'
    'nf-md-folder_clock_outline'                     = '󰪻'
    'nf-md-folder_cog'                               = '󱁿'
    'nf-md-folder_cog_outline'                       = '󱂀'
    'nf-md-folder_download'                          = '󰉍'
    'nf-md-folder_download_outline'                  = '󱃩'
    'nf-md-folder_edit'                              = '󰣞'
    'nf-md-folder_edit_outline'                      = '󰷎'
    'nf-md-folder_eye'                               = '󱞊'
    'nf-md-folder_eye_outline'                       = '󱞋'
    'nf-md-folder_file'                              = '󱧶'
    'nf-md-folder_file_outline'                      = '󱧷'
    'nf-md-folder_google_drive'                      = '󰉎'
    'nf-md-folder_heart'                             = '󱃪'
    'nf-md-folder_heart_outline'                     = '󱃫'
    'nf-md-folder_hidden'                            = '󱞞'
    'nf-md-folder_home'                              = '󱂵'
    'nf-md-folder_home_outline'                      = '󱂶'
    'nf-md-folder_image'                             = '󰉏'
    'nf-md-folder_information'                       = '󱂷'
    'nf-md-folder_information_outline'               = '󱂸'
    'nf-md-folder_key'                               = '󰢬'
    'nf-md-folder_key_network'                       = '󰢭'
    'nf-md-folder_key_network_outline'               = '󰲀'
    'nf-md-folder_key_outline'                       = '󱃬'
    'nf-md-folder_lock'                              = '󰉐'
    'nf-md-folder_lock_open'                         = '󰉑'
    'nf-md-folder_lock_open_outline'                 = '󱪧'
    'nf-md-folder_lock_outline'                      = '󱪨'
    'nf-md-folder_marker'                            = '󱉭'
    'nf-md-folder_marker_outline'                    = '󱉮'
    'nf-md-folder_move'                              = '󰉒'
    'nf-md-folder_move_outline'                      = '󱉆'
    'nf-md-folder_multiple'                          = '󰉓'
    'nf-md-folder_multiple_image'                    = '󰉔'
    'nf-md-folder_multiple_outline'                  = '󰉕'
    'nf-md-folder_multiple_plus'                     = '󱑾'
    'nf-md-folder_multiple_plus_outline'             = '󱑿'
    'nf-md-folder_music'                             = '󱍙'
    'nf-md-folder_music_outline'                     = '󱍚'
    'nf-md-folder_network'                           = '󰡰'
    'nf-md-folder_network_outline'                   = '󰲁'
    'nf-md-folder_off'                               = '󱧸'
    'nf-md-folder_off_outline'                       = '󱧹'
    'nf-md-folder_open'                              = '󰝰'
    'nf-md-folder_open_outline'                      = '󰷏'
    'nf-md-folder_outline'                           = '󰉖'
    'nf-md-folder_play'                              = '󱧺'
    'nf-md-folder_play_outline'                      = '󱧻'
    'nf-md-folder_plus'                              = '󰉗'
    'nf-md-folder_plus_outline'                      = '󰮝'
    'nf-md-folder_pound'                             = '󰴉'
    'nf-md-folder_pound_outline'                     = '󰴊'
    'nf-md-folder_question'                          = '󱧊'
    'nf-md-folder_question_outline'                  = '󱧋'
    'nf-md-folder_refresh'                           = '󰝉'
    'nf-md-folder_refresh_outline'                   = '󰕂'
    'nf-md-folder_remove'                            = '󰉘'
    'nf-md-folder_remove_outline'                    = '󰮞'
    'nf-md-folder_search'                            = '󰥨'
    'nf-md-folder_search_outline'                    = '󰥩'
    'nf-md-folder_settings'                          = '󱁽'
    'nf-md-folder_settings_outline'                  = '󱁾'
    'nf-md-folder_star'                              = '󰚝'
    'nf-md-folder_star_multiple'                     = '󱏓'
    'nf-md-folder_star_multiple_outline'             = '󱏔'
    'nf-md-folder_star_outline'                      = '󰮟'
    'nf-md-folder_swap'                              = '󰾶'
    'nf-md-folder_swap_outline'                      = '󰾷'
    'nf-md-folder_sync'                              = '󰴋'
    'nf-md-folder_sync_outline'                      = '󰴌'
    'nf-md-folder_table'                             = '󱋣'
    'nf-md-folder_table_outline'                     = '󱋤'
    'nf-md-folder_text'                              = '󰲂'
    'nf-md-folder_text_outline'                      = '󰲃'
    'nf-md-folder_upload'                            = '󰉙'
    'nf-md-folder_upload_outline'                    = '󱃭'
    'nf-md-folder_wrench'                            = '󱧼'
    'nf-md-folder_wrench_outline'                    = '󱧽'
    'nf-md-folder_zip'                               = '󰛫'
    'nf-md-folder_zip_outline'                       = '󰞹'
    'nf-md-font_awesome'                             = '󰀺'
    'nf-md-food'                                     = '󰉚'
    'nf-md-food_apple'                               = '󰉛'
    'nf-md-food_apple_outline'                       = '󰲄'
    'nf-md-food_croissant'                           = '󰟈'
    'nf-md-food_drumstick'                           = '󱐟'
    'nf-md-food_drumstick_off'                       = '󱑨'
    'nf-md-food_drumstick_off_outline'               = '󱑩'
    'nf-md-food_drumstick_outline'                   = '󱐠'
    'nf-md-food_fork_drink'                          = '󰗲'
    'nf-md-food_halal'                               = '󱕲'
    'nf-md-food_hot_dog'                             = '󱡋'
    'nf-md-food_kosher'                              = '󱕳'
    'nf-md-food_off'                                 = '󰗳'
    'nf-md-food_off_outline'                         = '󱤕'
    'nf-md-food_outline'                             = '󱤖'
    'nf-md-food_steak'                               = '󱑪'
    'nf-md-food_steak_off'                           = '󱑫'
    'nf-md-food_takeout_box'                         = '󱠶'
    'nf-md-food_takeout_box_outline'                 = '󱠷'
    'nf-md-food_turkey'                              = '󱜜'
    'nf-md-food_variant'                             = '󰉜'
    'nf-md-food_variant_off'                         = '󱏥'
    'nf-md-foot_print'                               = '󰽒'
    'nf-md-football'                                 = '󰉝'
    'nf-md-football_australian'                      = '󰉞'
    'nf-md-football_helmet'                          = '󰉟'
    'nf-md-forest'                                   = '󱢗'
    'nf-md-forklift'                                 = '󰟉'
    'nf-md-form_dropdown'                            = '󱐀'
    'nf-md-form_select'                              = '󱐁'
    'nf-md-form_textarea'                            = '󱂕'
    'nf-md-form_textbox'                             = '󰘎'
    'nf-md-form_textbox_lock'                        = '󱍝'
    'nf-md-form_textbox_password'                    = '󰟵'
    'nf-md-format_align_bottom'                      = '󰝓'
    'nf-md-format_align_center'                      = '󰉠'
    'nf-md-format_align_justify'                     = '󰉡'
    'nf-md-format_align_left'                        = '󰉢'
    'nf-md-format_align_middle'                      = '󰝔'
    'nf-md-format_align_right'                       = '󰉣'
    'nf-md-format_align_top'                         = '󰝕'
    'nf-md-format_annotation_minus'                  = '󰪼'
    'nf-md-format_annotation_plus'                   = '󰙆'
    'nf-md-format_bold'                              = '󰉤'
    'nf-md-format_clear'                             = '󰉥'
    'nf-md-format_color_fill'                        = '󰉦'
    'nf-md-format_color_highlight'                   = '󰸱'
    'nf-md-format_color_marker_cancel'               = '󱌓'
    'nf-md-format_color_text'                        = '󰚞'
    'nf-md-format_columns'                           = '󰣟'
    'nf-md-format_float_center'                      = '󰉧'
    'nf-md-format_float_left'                        = '󰉨'
    'nf-md-format_float_none'                        = '󰉩'
    'nf-md-format_float_right'                       = '󰉪'
    'nf-md-format_font'                              = '󰛖'
    'nf-md-format_font_size_decrease'                = '󰧳'
    'nf-md-format_font_size_increase'                = '󰧴'
    'nf-md-format_header_1'                          = '󰉫'
    'nf-md-format_header_2'                          = '󰉬'
    'nf-md-format_header_3'                          = '󰉭'
    'nf-md-format_header_4'                          = '󰉮'
    'nf-md-format_header_5'                          = '󰉯'
    'nf-md-format_header_6'                          = '󰉰'
    'nf-md-format_header_decrease'                   = '󰉱'
    'nf-md-format_header_equal'                      = '󰉲'
    'nf-md-format_header_increase'                   = '󰉳'
    'nf-md-format_header_pound'                      = '󰉴'
    'nf-md-format_horizontal_align_center'           = '󰘞'
    'nf-md-format_horizontal_align_left'             = '󰘟'
    'nf-md-format_horizontal_align_right'            = '󰘠'
    'nf-md-format_indent_decrease'                   = '󰉵'
    'nf-md-format_indent_increase'                   = '󰉶'
    'nf-md-format_italic'                            = '󰉷'
    'nf-md-format_letter_case'                       = '󰬴'
    'nf-md-format_letter_case_lower'                 = '󰬵'
    'nf-md-format_letter_case_upper'                 = '󰬶'
    'nf-md-format_letter_ends_with'                  = '󰾸'
    'nf-md-format_letter_matches'                    = '󰾹'
    'nf-md-format_letter_spacing'                    = '󱥖'
    'nf-md-format_letter_starts_with'                = '󰾺'
    'nf-md-format_line_spacing'                      = '󰉸'
    'nf-md-format_line_style'                        = '󰗈'
    'nf-md-format_line_weight'                       = '󰗉'
    'nf-md-format_list_bulleted'                     = '󰉹'
    'nf-md-format_list_bulleted_square'              = '󰷐'
    'nf-md-format_list_bulleted_triangle'            = '󰺲'
    'nf-md-format_list_bulleted_type'                = '󰉺'
    'nf-md-format_list_checkbox'                     = '󰥪'
    'nf-md-format_list_checks'                       = '󰝖'
    'nf-md-format_list_group'                        = '󱡠'
    'nf-md-format_list_numbered'                     = '󰉻'
    'nf-md-format_list_numbered_rtl'                 = '󰴍'
    'nf-md-format_list_text'                         = '󱉯'
    'nf-md-format_overline'                          = '󰺳'
    'nf-md-format_page_break'                        = '󰛗'
    'nf-md-format_page_split'                        = '󱤗'
    'nf-md-format_paint'                             = '󰉼'
    'nf-md-format_paragraph'                         = '󰉽'
    'nf-md-format_pilcrow'                           = '󰛘'
    'nf-md-format_quote_close'                       = '󰉾'
    'nf-md-format_quote_close_outline'               = '󱆨'
    'nf-md-format_quote_open'                        = '󰝗'
    'nf-md-format_quote_open_outline'                = '󱆧'
    'nf-md-format_rotate_90'                         = '󰚪'
    'nf-md-format_section'                           = '󰚟'
    'nf-md-format_size'                              = '󰉿'
    'nf-md-format_strikethrough'                     = '󰊀'
    'nf-md-format_strikethrough_variant'             = '󰊁'
    'nf-md-format_subscript'                         = '󰊂'
    'nf-md-format_superscript'                       = '󰊃'
    'nf-md-format_text'                              = '󰊄'
    'nf-md-format_text_rotation_angle_down'          = '󰾻'
    'nf-md-format_text_rotation_angle_up'            = '󰾼'
    'nf-md-format_text_rotation_down'                = '󰵳'
    'nf-md-format_text_rotation_down_vertical'       = '󰾽'
    'nf-md-format_text_rotation_none'                = '󰵴'
    'nf-md-format_text_rotation_up'                  = '󰾾'
    'nf-md-format_text_rotation_vertical'            = '󰾿'
    'nf-md-format_text_variant'                      = '󰸲'
    'nf-md-format_text_variant_outline'              = '󱔏'
    'nf-md-format_text_wrapping_clip'                = '󰴎'
    'nf-md-format_text_wrapping_overflow'            = '󰴏'
    'nf-md-format_text_wrapping_wrap'                = '󰴐'
    'nf-md-format_textbox'                           = '󰴑'
    'nf-md-format_textdirection_l_to_r'              = '󰊅'
    'nf-md-format_textdirection_r_to_l'              = '󰊆'
    'nf-md-format_title'                             = '󰗴'
    'nf-md-format_underline'                         = '󰊇'
    'nf-md-format_underline_wavy'                    = '󱣩'
    'nf-md-format_vertical_align_bottom'             = '󰘡'
    'nf-md-format_vertical_align_center'             = '󰘢'
    'nf-md-format_vertical_align_top'                = '󰘣'
    'nf-md-format_wrap_inline'                       = '󰊈'
    'nf-md-format_wrap_square'                       = '󰊉'
    'nf-md-format_wrap_tight'                        = '󰊊'
    'nf-md-format_wrap_top_bottom'                   = '󰊋'
    'nf-md-forum'                                    = '󰊌'
    'nf-md-forum_minus'                              = '󱪩'
    'nf-md-forum_minus_outline'                      = '󱪪'
    'nf-md-forum_outline'                            = '󰠢'
    'nf-md-forum_plus'                               = '󱪫'
    'nf-md-forum_plus_outline'                       = '󱪬'
    'nf-md-forum_remove'                             = '󱪭'
    'nf-md-forum_remove_outline'                     = '󱪮'
    'nf-md-forward'                                  = '󰊍'
    'nf-md-forwardburger'                            = '󰵵'
    'nf-md-fountain'                                 = '󰥫'
    'nf-md-fountain_pen'                             = '󰴒'
    'nf-md-fountain_pen_tip'                         = '󰴓'
    'nf-md-fraction_one_half'                        = '󱦒'
    'nf-md-freebsd'                                  = '󰣠'
    'nf-md-french_fries'                             = '󱥗'
    'nf-md-frequently_asked_questions'               = '󰺴'
    'nf-md-fridge'                                   = '󰊐'
    'nf-md-fridge_alert'                             = '󱆱'
    'nf-md-fridge_alert_outline'                     = '󱆲'
    'nf-md-fridge_bottom'                            = '󰊒'
    'nf-md-fridge_industrial'                        = '󱗮'
    'nf-md-fridge_industrial_alert'                  = '󱗯'
    'nf-md-fridge_industrial_alert_outline'          = '󱗰'
    'nf-md-fridge_industrial_off'                    = '󱗱'
    'nf-md-fridge_industrial_off_outline'            = '󱗲'
    'nf-md-fridge_industrial_outline'                = '󱗳'
    'nf-md-fridge_off'                               = '󱆯'
    'nf-md-fridge_off_outline'                       = '󱆰'
    'nf-md-fridge_outline'                           = '󰊏'
    'nf-md-fridge_top'                               = '󰊑'
    'nf-md-fridge_variant'                           = '󱗴'
    'nf-md-fridge_variant_alert'                     = '󱗵'
    'nf-md-fridge_variant_alert_outline'             = '󱗶'
    'nf-md-fridge_variant_off'                       = '󱗷'
    'nf-md-fridge_variant_off_outline'               = '󱗸'
    'nf-md-fridge_variant_outline'                   = '󱗹'
    'nf-md-fruit_cherries'                           = '󱁂'
    'nf-md-fruit_cherries_off'                       = '󱏸'
    'nf-md-fruit_citrus'                             = '󱁃'
    'nf-md-fruit_citrus_off'                         = '󱏹'
    'nf-md-fruit_grapes'                             = '󱁄'
    'nf-md-fruit_grapes_outline'                     = '󱁅'
    'nf-md-fruit_pear'                               = '󱨎'
    'nf-md-fruit_pineapple'                          = '󱁆'
    'nf-md-fruit_watermelon'                         = '󱁇'
    'nf-md-fuel'                                     = '󰟊'
    'nf-md-fuel_cell'                                = '󱢵'
    'nf-md-fullscreen'                               = '󰊓'
    'nf-md-fullscreen_exit'                          = '󰊔'
    'nf-md-function'                                 = '󰊕'
    'nf-md-function_variant'                         = '󰡱'
    'nf-md-furigana_horizontal'                      = '󱂁'
    'nf-md-furigana_vertical'                        = '󱂂'
    'nf-md-fuse'                                     = '󰲅'
    'nf-md-fuse_alert'                               = '󱐭'
    'nf-md-fuse_blade'                               = '󰲆'
    'nf-md-fuse_off'                                 = '󱐬'
    'nf-md-gamepad'                                  = '󰊖'
    'nf-md-gamepad_circle'                           = '󰸳'
    'nf-md-gamepad_circle_down'                      = '󰸴'
    'nf-md-gamepad_circle_left'                      = '󰸵'
    'nf-md-gamepad_circle_outline'                   = '󰸶'
    'nf-md-gamepad_circle_right'                     = '󰸷'
    'nf-md-gamepad_circle_up'                        = '󰸸'
    'nf-md-gamepad_down'                             = '󰸹'
    'nf-md-gamepad_left'                             = '󰸺'
    'nf-md-gamepad_outline'                          = '󱤙'
    'nf-md-gamepad_right'                            = '󰸻'
    'nf-md-gamepad_round'                            = '󰸼'
    'nf-md-gamepad_round_down'                       = '󰸽'
    'nf-md-gamepad_round_left'                       = '󰸾'
    'nf-md-gamepad_round_outline'                    = '󰸿'
    'nf-md-gamepad_round_right'                      = '󰹀'
    'nf-md-gamepad_round_up'                         = '󰹁'
    'nf-md-gamepad_square'                           = '󰺵'
    'nf-md-gamepad_square_outline'                   = '󰺶'
    'nf-md-gamepad_up'                               = '󰹂'
    'nf-md-gamepad_variant'                          = '󰊗'
    'nf-md-gamepad_variant_outline'                  = '󰺷'
    'nf-md-gamma'                                    = '󱃮'
    'nf-md-gantry_crane'                             = '󰷑'
    'nf-md-garage'                                   = '󰛙'
    'nf-md-garage_alert'                             = '󰡲'
    'nf-md-garage_alert_variant'                     = '󱋕'
    'nf-md-garage_lock'                              = '󱟻'
    'nf-md-garage_open'                              = '󰛚'
    'nf-md-garage_open_variant'                      = '󱋔'
    'nf-md-garage_variant'                           = '󱋓'
    'nf-md-garage_variant_lock'                      = '󱟼'
    'nf-md-gas_burner'                               = '󱨛'
    'nf-md-gas_cylinder'                             = '󰙇'
    'nf-md-gas_station'                              = '󰊘'
    'nf-md-gas_station_off'                          = '󱐉'
    'nf-md-gas_station_off_outline'                  = '󱐊'
    'nf-md-gas_station_outline'                      = '󰺸'
    'nf-md-gate'                                     = '󰊙'
    'nf-md-gate_alert'                               = '󱟸'
    'nf-md-gate_and'                                 = '󰣡'
    'nf-md-gate_arrow_left'                          = '󱟷'
    'nf-md-gate_arrow_right'                         = '󱅩'
    'nf-md-gate_nand'                                = '󰣢'
    'nf-md-gate_nor'                                 = '󰣣'
    'nf-md-gate_not'                                 = '󰣤'
    'nf-md-gate_open'                                = '󱅪'
    'nf-md-gate_or'                                  = '󰣥'
    'nf-md-gate_xnor'                                = '󰣦'
    'nf-md-gate_xor'                                 = '󰣧'
    'nf-md-gatsby'                                   = '󰹃'
    'nf-md-gauge'                                    = '󰊚'
    'nf-md-gauge_empty'                              = '󰡳'
    'nf-md-gauge_full'                               = '󰡴'
    'nf-md-gauge_low'                                = '󰡵'
    'nf-md-gavel'                                    = '󰊛'
    'nf-md-gender_female'                            = '󰊜'
    'nf-md-gender_male'                              = '󰊝'
    'nf-md-gender_male_female'                       = '󰊞'
    'nf-md-gender_male_female_variant'               = '󱄿'
    'nf-md-gender_non_binary'                        = '󱅀'
    'nf-md-gender_transgender'                       = '󰊟'
    'nf-md-gentoo'                                   = '󰣨'
    'nf-md-gesture'                                  = '󰟋'
    'nf-md-gesture_double_tap'                       = '󰜼'
    'nf-md-gesture_pinch'                            = '󰪽'
    'nf-md-gesture_spread'                           = '󰪾'
    'nf-md-gesture_swipe'                            = '󰵶'
    'nf-md-gesture_swipe_down'                       = '󰜽'
    'nf-md-gesture_swipe_horizontal'                 = '󰪿'
    'nf-md-gesture_swipe_left'                       = '󰜾'
    'nf-md-gesture_swipe_right'                      = '󰜿'
    'nf-md-gesture_swipe_up'                         = '󰝀'
    'nf-md-gesture_swipe_vertical'                   = '󰫀'
    'nf-md-gesture_tap'                              = '󰝁'
    'nf-md-gesture_tap_box'                          = '󱊩'
    'nf-md-gesture_tap_button'                       = '󱊨'
    'nf-md-gesture_tap_hold'                         = '󰵷'
    'nf-md-gesture_two_double_tap'                   = '󰝂'
    'nf-md-gesture_two_tap'                          = '󰝃'
    'nf-md-ghost'                                    = '󰊠'
    'nf-md-ghost_off'                                = '󰧵'
    'nf-md-ghost_off_outline'                        = '󱙜'
    'nf-md-ghost_outline'                            = '󱙝'
    'nf-md-gift'                                     = '󰹄'
    'nf-md-gift_off'                                 = '󱛯'
    'nf-md-gift_off_outline'                         = '󱛰'
    'nf-md-gift_open'                                = '󱛱'
    'nf-md-gift_open_outline'                        = '󱛲'
    'nf-md-gift_outline'                             = '󰊡'
    'nf-md-git'                                      = '󰊢'
    'nf-md-github'                                   = '󰊤'
    'nf-md-gitlab'                                   = '󰮠'
    'nf-md-glass_cocktail'                           = '󰍖'
    'nf-md-glass_cocktail_off'                       = '󱗦'
    'nf-md-glass_flute'                              = '󰊥'
    'nf-md-glass_fragile'                            = '󱡳'
    'nf-md-glass_mug'                                = '󰊦'
    'nf-md-glass_mug_off'                            = '󱗧'
    'nf-md-glass_mug_variant'                        = '󱄖'
    'nf-md-glass_mug_variant_off'                    = '󱗨'
    'nf-md-glass_pint_outline'                       = '󱌍'
    'nf-md-glass_stange'                             = '󰊧'
    'nf-md-glass_tulip'                              = '󰊨'
    'nf-md-glass_wine'                               = '󰡶'
    'nf-md-glasses'                                  = '󰊪'
    'nf-md-globe_light'                              = '󱋗'
    'nf-md-globe_model'                              = '󰣩'
    'nf-md-gmail'                                    = '󰊫'
    'nf-md-gnome'                                    = '󰊬'
    'nf-md-go_kart'                                  = '󰵹'
    'nf-md-go_kart_track'                            = '󰵺'
    'nf-md-gog'                                      = '󰮡'
    'nf-md-gold'                                     = '󱉏'
    'nf-md-golf'                                     = '󰠣'
    'nf-md-golf_cart'                                = '󱆤'
    'nf-md-golf_tee'                                 = '󱂃'
    'nf-md-gondola'                                  = '󰚆'
    'nf-md-goodreads'                                = '󰵻'
    'nf-md-google'                                   = '󰊭'
    'nf-md-google_ads'                               = '󰲇'
    'nf-md-google_analytics'                         = '󰟌'
    'nf-md-google_assistant'                         = '󰟍'
    'nf-md-google_cardboard'                         = '󰊮'
    'nf-md-google_chrome'                            = '󰊯'
    'nf-md-google_circles'                           = '󰊰'
    'nf-md-google_circles_communities'               = '󰊱'
    'nf-md-google_circles_extended'                  = '󰊲'
    'nf-md-google_circles_group'                     = '󰊳'
    'nf-md-google_classroom'                         = '󰋀'
    'nf-md-google_cloud'                             = '󱇶'
    'nf-md-google_controller'                        = '󰊴'
    'nf-md-google_controller_off'                    = '󰊵'
    'nf-md-google_downasaur'                         = '󱍢'
    'nf-md-google_drive'                             = '󰊶'
    'nf-md-google_earth'                             = '󰊷'
    'nf-md-google_fit'                               = '󰥬'
    'nf-md-google_glass'                             = '󰊸'
    'nf-md-google_hangouts'                          = '󰋉'
    'nf-md-google_home'                              = '󰠤'
    'nf-md-google_keep'                              = '󰛜'
    'nf-md-google_lens'                              = '󰧶'
    'nf-md-google_maps'                              = '󰗵'
    'nf-md-google_my_business'                       = '󱁈'
    'nf-md-google_nearby'                            = '󰊹'
    'nf-md-google_play'                              = '󰊼'
    'nf-md-google_plus'                              = '󰊽'
    'nf-md-google_podcast'                           = '󰺹'
    'nf-md-google_spreadsheet'                       = '󰧷'
    'nf-md-google_street_view'                       = '󰲈'
    'nf-md-google_translate'                         = '󰊿'
    'nf-md-gradient_horizontal'                      = '󱝊'
    'nf-md-gradient_vertical'                        = '󰚠'
    'nf-md-grain'                                    = '󰵼'
    'nf-md-graph'                                    = '󱁉'
    'nf-md-graph_outline'                            = '󱁊'
    'nf-md-graphql'                                  = '󰡷'
    'nf-md-grass'                                    = '󱔐'
    'nf-md-grave_stone'                              = '󰮢'
    'nf-md-grease_pencil'                            = '󰙈'
    'nf-md-greater_than'                             = '󰥭'
    'nf-md-greater_than_or_equal'                    = '󰥮'
    'nf-md-greenhouse'                               = '󰀭'
    'nf-md-grid'                                     = '󰋁'
    'nf-md-grid_large'                               = '󰝘'
    'nf-md-grid_off'                                 = '󰋂'
    'nf-md-grill'                                    = '󰹅'
    'nf-md-grill_outline'                            = '󱆊'
    'nf-md-group'                                    = '󰋃'
    'nf-md-guitar_acoustic'                          = '󰝱'
    'nf-md-guitar_electric'                          = '󰋄'
    'nf-md-guitar_pick'                              = '󰋅'
    'nf-md-guitar_pick_outline'                      = '󰋆'
    'nf-md-guy_fawkes_mask'                          = '󰠥'
    'nf-md-gymnastics'                               = '󱩁'
    'nf-md-hail'                                     = '󰫁'
    'nf-md-hair_dryer'                               = '󱃯'
    'nf-md-hair_dryer_outline'                       = '󱃰'
    'nf-md-halloween'                                = '󰮣'
    'nf-md-hamburger'                                = '󰚅'
    'nf-md-hamburger_check'                          = '󱝶'
    'nf-md-hamburger_minus'                          = '󱝷'
    'nf-md-hamburger_off'                            = '󱝸'
    'nf-md-hamburger_plus'                           = '󱝹'
    'nf-md-hamburger_remove'                         = '󱝺'
    'nf-md-hammer'                                   = '󰣪'
    'nf-md-hammer_screwdriver'                       = '󱌢'
    'nf-md-hammer_sickle'                            = '󱢇'
    'nf-md-hammer_wrench'                            = '󱌣'
    'nf-md-hand_back_left'                           = '󰹆'
    'nf-md-hand_back_left_off'                       = '󱠰'
    'nf-md-hand_back_left_off_outline'               = '󱠲'
    'nf-md-hand_back_left_outline'                   = '󱠬'
    'nf-md-hand_back_right'                          = '󰹇'
    'nf-md-hand_back_right_off'                      = '󱠱'
    'nf-md-hand_back_right_off_outline'              = '󱠳'
    'nf-md-hand_back_right_outline'                  = '󱠭'
    'nf-md-hand_clap'                                = '󱥋'
    'nf-md-hand_clap_off'                            = '󱩂'
    'nf-md-hand_coin'                                = '󱢏'
    'nf-md-hand_coin_outline'                        = '󱢐'
    'nf-md-hand_extended'                            = '󱢶'
    'nf-md-hand_extended_outline'                    = '󱢷'
    'nf-md-hand_front_left'                          = '󱠫'
    'nf-md-hand_front_left_outline'                  = '󱠮'
    'nf-md-hand_front_right'                         = '󰩏'
    'nf-md-hand_front_right_outline'                 = '󱠯'
    'nf-md-hand_heart'                               = '󱃱'
    'nf-md-hand_heart_outline'                       = '󱕾'
    'nf-md-hand_okay'                                = '󰩐'
    'nf-md-hand_peace'                               = '󰩑'
    'nf-md-hand_peace_variant'                       = '󰩒'
    'nf-md-hand_pointing_down'                       = '󰩓'
    'nf-md-hand_pointing_left'                       = '󰩔'
    'nf-md-hand_pointing_right'                      = '󰋇'
    'nf-md-hand_pointing_up'                         = '󰩕'
    'nf-md-hand_saw'                                 = '󰹈'
    'nf-md-hand_wash'                                = '󱕿'
    'nf-md-hand_wash_outline'                        = '󱖀'
    'nf-md-hand_water'                               = '󱎟'
    'nf-md-hand_wave'                                = '󱠡'
    'nf-md-hand_wave_outline'                        = '󱠢'
    'nf-md-handball'                                 = '󰽓'
    'nf-md-handcuffs'                                = '󱄾'
    'nf-md-hands_pray'                               = '󰕹'
    'nf-md-handshake'                                = '󱈘'
    'nf-md-handshake_outline'                        = '󱖡'
    'nf-md-hanger'                                   = '󰋈'
    'nf-md-hard_hat'                                 = '󰥯'
    'nf-md-harddisk'                                 = '󰋊'
    'nf-md-harddisk_plus'                            = '󱁋'
    'nf-md-harddisk_remove'                          = '󱁌'
    'nf-md-hat_fedora'                               = '󰮤'
    'nf-md-hazard_lights'                            = '󰲉'
    'nf-md-hdr'                                      = '󰵽'
    'nf-md-hdr_off'                                  = '󰵾'
    'nf-md-head'                                     = '󱍞'
    'nf-md-head_alert'                               = '󱌸'
    'nf-md-head_alert_outline'                       = '󱌹'
    'nf-md-head_check'                               = '󱌺'
    'nf-md-head_check_outline'                       = '󱌻'
    'nf-md-head_cog'                                 = '󱌼'
    'nf-md-head_cog_outline'                         = '󱌽'
    'nf-md-head_dots_horizontal'                     = '󱌾'
    'nf-md-head_dots_horizontal_outline'             = '󱌿'
    'nf-md-head_flash'                               = '󱍀'
    'nf-md-head_flash_outline'                       = '󱍁'
    'nf-md-head_heart'                               = '󱍂'
    'nf-md-head_heart_outline'                       = '󱍃'
    'nf-md-head_lightbulb'                           = '󱍄'
    'nf-md-head_lightbulb_outline'                   = '󱍅'
    'nf-md-head_minus'                               = '󱍆'
    'nf-md-head_minus_outline'                       = '󱍇'
    'nf-md-head_outline'                             = '󱍟'
    'nf-md-head_plus'                                = '󱍈'
    'nf-md-head_plus_outline'                        = '󱍉'
    'nf-md-head_question'                            = '󱍊'
    'nf-md-head_question_outline'                    = '󱍋'
    'nf-md-head_remove'                              = '󱍌'
    'nf-md-head_remove_outline'                      = '󱍍'
    'nf-md-head_snowflake'                           = '󱍎'
    'nf-md-head_snowflake_outline'                   = '󱍏'
    'nf-md-head_sync'                                = '󱍐'
    'nf-md-head_sync_outline'                        = '󱍑'
    'nf-md-headphones'                               = '󰋋'
    'nf-md-headphones_bluetooth'                     = '󰥰'
    'nf-md-headphones_box'                           = '󰋌'
    'nf-md-headphones_off'                           = '󰟎'
    'nf-md-headphones_settings'                      = '󰋍'
    'nf-md-headset'                                  = '󰋎'
    'nf-md-headset_dock'                             = '󰋏'
    'nf-md-headset_off'                              = '󰋐'
    'nf-md-heart'                                    = '󰣐'
    'nf-md-heart_box'                                = '󰋒'
    'nf-md-heart_box_outline'                        = '󰋓'
    'nf-md-heart_broken'                             = '󰋔'
    'nf-md-heart_broken_outline'                     = '󰴔'
    'nf-md-heart_circle'                             = '󰥱'
    'nf-md-heart_circle_outline'                     = '󰥲'
    'nf-md-heart_cog'                                = '󱙣'
    'nf-md-heart_cog_outline'                        = '󱙤'
    'nf-md-heart_flash'                              = '󰻹'
    'nf-md-heart_half'                               = '󰛟'
    'nf-md-heart_half_full'                          = '󰛞'
    'nf-md-heart_half_outline'                       = '󰛠'
    'nf-md-heart_minus'                              = '󱐯'
    'nf-md-heart_minus_outline'                      = '󱐲'
    'nf-md-heart_multiple'                           = '󰩖'
    'nf-md-heart_multiple_outline'                   = '󰩗'
    'nf-md-heart_off'                                = '󰝙'
    'nf-md-heart_off_outline'                        = '󱐴'
    'nf-md-heart_outline'                            = '󱢠'
    'nf-md-heart_plus'                               = '󱐮'
    'nf-md-heart_plus_outline'                       = '󱐱'
    'nf-md-heart_pulse'                              = '󰗶'
    'nf-md-heart_remove'                             = '󱐰'
    'nf-md-heart_remove_outline'                     = '󱐳'
    'nf-md-heart_settings'                           = '󱙥'
    'nf-md-heart_settings_outline'                   = '󱙦'
    'nf-md-heat_pump'                                = '󱩃'
    'nf-md-heat_pump_outline'                        = '󱩄'
    'nf-md-heat_wave'                                = '󱩅'
    'nf-md-heating_coil'                             = '󱪯'
    'nf-md-helicopter'                               = '󰫂'
    'nf-md-help'                                     = '󰋖'
    'nf-md-help_box'                                 = '󰞋'
    'nf-md-help_circle'                              = '󰋗'
    'nf-md-help_circle_outline'                      = '󰘥'
    'nf-md-help_network'                             = '󰛵'
    'nf-md-help_network_outline'                     = '󰲊'
    'nf-md-help_rhombus'                             = '󰮥'
    'nf-md-help_rhombus_outline'                     = '󰮦'
    'nf-md-hexadecimal'                              = '󱊧'
    'nf-md-hexagon'                                  = '󰋘'
    'nf-md-hexagon_multiple'                         = '󰛡'
    'nf-md-hexagon_multiple_outline'                 = '󱃲'
    'nf-md-hexagon_outline'                          = '󰋙'
    'nf-md-hexagon_slice_1'                          = '󰫃'
    'nf-md-hexagon_slice_2'                          = '󰫄'
    'nf-md-hexagon_slice_3'                          = '󰫅'
    'nf-md-hexagon_slice_4'                          = '󰫆'
    'nf-md-hexagon_slice_5'                          = '󰫇'
    'nf-md-hexagon_slice_6'                          = '󰫈'
    'nf-md-hexagram'                                 = '󰫉'
    'nf-md-hexagram_outline'                         = '󰫊'
    'nf-md-high_definition'                          = '󰟏'
    'nf-md-high_definition_box'                      = '󰡸'
    'nf-md-highway'                                  = '󰗷'
    'nf-md-hiking'                                   = '󰵿'
    'nf-md-history'                                  = '󰋚'
    'nf-md-hockey_puck'                              = '󰡹'
    'nf-md-hockey_sticks'                            = '󰡺'
    'nf-md-hololens'                                 = '󰋛'
    'nf-md-home'                                     = '󰋜'
    'nf-md-home_account'                             = '󰠦'
    'nf-md-home_alert'                               = '󰡻'
    'nf-md-home_alert_outline'                       = '󱗐'
    'nf-md-home_analytics'                           = '󰺺'
    'nf-md-home_assistant'                           = '󰟐'
    'nf-md-home_automation'                          = '󰟑'
    'nf-md-home_battery'                             = '󱤁'
    'nf-md-home_battery_outline'                     = '󱤂'
    'nf-md-home_circle'                              = '󰟒'
    'nf-md-home_circle_outline'                      = '󱁍'
    'nf-md-home_city'                                = '󰴕'
    'nf-md-home_city_outline'                        = '󰴖'
    'nf-md-home_clock'                               = '󱨒'
    'nf-md-home_clock_outline'                       = '󱨓'
    'nf-md-home_edit'                                = '󱅙'
    'nf-md-home_edit_outline'                        = '󱅚'
    'nf-md-home_export_outline'                      = '󰾛'
    'nf-md-home_flood'                               = '󰻺'
    'nf-md-home_floor_0'                             = '󰷒'
    'nf-md-home_floor_1'                             = '󰶀'
    'nf-md-home_floor_2'                             = '󰶁'
    'nf-md-home_floor_3'                             = '󰶂'
    'nf-md-home_floor_a'                             = '󰶃'
    'nf-md-home_floor_b'                             = '󰶄'
    'nf-md-home_floor_g'                             = '󰶅'
    'nf-md-home_floor_l'                             = '󰶆'
    'nf-md-home_floor_negative_1'                    = '󰷓'
    'nf-md-home_group'                               = '󰷔'
    'nf-md-home_group_minus'                         = '󱧁'
    'nf-md-home_group_plus'                          = '󱧀'
    'nf-md-home_group_remove'                        = '󱧂'
    'nf-md-home_heart'                               = '󰠧'
    'nf-md-home_import_outline'                      = '󰾜'
    'nf-md-home_lightbulb'                           = '󱉑'
    'nf-md-home_lightbulb_outline'                   = '󱉒'
    'nf-md-home_lightning_bolt'                      = '󱤃'
    'nf-md-home_lightning_bolt_outline'              = '󱤄'
    'nf-md-home_lock'                                = '󰣫'
    'nf-md-home_lock_open'                           = '󰣬'
    'nf-md-home_map_marker'                          = '󰗸'
    'nf-md-home_minus'                               = '󰥴'
    'nf-md-home_minus_outline'                       = '󱏕'
    'nf-md-home_modern'                              = '󰋝'
    'nf-md-home_off'                                 = '󱩆'
    'nf-md-home_off_outline'                         = '󱩇'
    'nf-md-home_outline'                             = '󰚡'
    'nf-md-home_plus'                                = '󰥵'
    'nf-md-home_plus_outline'                        = '󱏖'
    'nf-md-home_remove'                              = '󱉇'
    'nf-md-home_remove_outline'                      = '󱏗'
    'nf-md-home_roof'                                = '󱄫'
    'nf-md-home_search'                              = '󱎰'
    'nf-md-home_search_outline'                      = '󱎱'
    'nf-md-home_switch'                              = '󱞔'
    'nf-md-home_switch_outline'                      = '󱞕'
    'nf-md-home_thermometer'                         = '󰽔'
    'nf-md-home_thermometer_outline'                 = '󰽕'
    'nf-md-home_variant'                             = '󰋞'
    'nf-md-home_variant_outline'                     = '󰮧'
    'nf-md-hook'                                     = '󰛢'
    'nf-md-hook_off'                                 = '󰛣'
    'nf-md-hoop_house'                               = '󰹖'
    'nf-md-hops'                                     = '󰋟'
    'nf-md-horizontal_rotate_clockwise'              = '󱃳'
    'nf-md-horizontal_rotate_counterclockwise'       = '󱃴'
    'nf-md-horse'                                    = '󱖿'
    'nf-md-horse_human'                              = '󱗀'
    'nf-md-horse_variant'                            = '󱗁'
    'nf-md-horse_variant_fast'                       = '󱡮'
    'nf-md-horseshoe'                                = '󰩘'
    'nf-md-hospital'                                 = '󰿶'
    'nf-md-hospital_box'                             = '󰋠'
    'nf-md-hospital_box_outline'                     = '󰿷'
    'nf-md-hospital_building'                        = '󰋡'
    'nf-md-hospital_marker'                          = '󰋢'
    'nf-md-hot_tub'                                  = '󰠨'
    'nf-md-hours_24'                                 = '󱑸'
    'nf-md-hubspot'                                  = '󰴗'
    'nf-md-hulu'                                     = '󰠩'
    'nf-md-human'                                    = '󰋦'
    'nf-md-human_baby_changing_table'                = '󱎋'
    'nf-md-human_cane'                               = '󱖁'
    'nf-md-human_capacity_decrease'                  = '󱖛'
    'nf-md-human_capacity_increase'                  = '󱖜'
    'nf-md-human_child'                              = '󰋧'
    'nf-md-human_dolly'                              = '󱦀'
    'nf-md-human_edit'                               = '󱓨'
    'nf-md-human_female'                             = '󰙉'
    'nf-md-human_female_boy'                         = '󰩙'
    'nf-md-human_female_dance'                       = '󱗉'
    'nf-md-human_female_female'                      = '󰩚'
    'nf-md-human_female_girl'                        = '󰩛'
    'nf-md-human_greeting'                           = '󱟄'
    'nf-md-human_greeting_proximity'                 = '󱖝'
    'nf-md-human_greeting_variant'                   = '󰙊'
    'nf-md-human_handsdown'                          = '󰙋'
    'nf-md-human_handsup'                            = '󰙌'
    'nf-md-human_male'                               = '󰙍'
    'nf-md-human_male_board'                         = '󰢐'
    'nf-md-human_male_board_poll'                    = '󰡆'
    'nf-md-human_male_boy'                           = '󰩜'
    'nf-md-human_male_child'                         = '󱎌'
    'nf-md-human_male_female'                        = '󰋨'
    'nf-md-human_male_female_child'                  = '󱠣'
    'nf-md-human_male_girl'                          = '󰩝'
    'nf-md-human_male_height'                        = '󰻻'
    'nf-md-human_male_height_variant'                = '󰻼'
    'nf-md-human_male_male'                          = '󰩞'
    'nf-md-human_non_binary'                         = '󱡈'
    'nf-md-human_pregnant'                           = '󰗏'
    'nf-md-human_queue'                              = '󱕱'
    'nf-md-human_scooter'                            = '󱇩'
    'nf-md-human_wheelchair'                         = '󱎍'
    'nf-md-human_white_cane'                         = '󱦁'
    'nf-md-humble_bundle'                            = '󰝄'
    'nf-md-hvac'                                     = '󱍒'
    'nf-md-hvac_off'                                 = '󱖞'
    'nf-md-hydraulic_oil_level'                      = '󱌤'
    'nf-md-hydraulic_oil_temperature'                = '󱌥'
    'nf-md-hydro_power'                              = '󱋥'
    'nf-md-hydrogen_station'                         = '󱢔'
    'nf-md-ice_cream'                                = '󰠪'
    'nf-md-ice_cream_off'                            = '󰹒'
    'nf-md-ice_pop'                                  = '󰻽'
    'nf-md-id_card'                                  = '󰿀'
    'nf-md-identifier'                               = '󰻾'
    'nf-md-ideogram_cjk'                             = '󱌱'
    'nf-md-ideogram_cjk_variant'                     = '󱌲'
    'nf-md-image'                                    = '󰋩'
    'nf-md-image_album'                              = '󰋪'
    'nf-md-image_area'                               = '󰋫'
    'nf-md-image_area_close'                         = '󰋬'
    'nf-md-image_auto_adjust'                        = '󰿁'
    'nf-md-image_broken'                             = '󰋭'
    'nf-md-image_broken_variant'                     = '󰋮'
    'nf-md-image_edit'                               = '󱇣'
    'nf-md-image_edit_outline'                       = '󱇤'
    'nf-md-image_filter_black_white'                 = '󰋰'
    'nf-md-image_filter_center_focus'                = '󰋱'
    'nf-md-image_filter_center_focus_strong'         = '󰻿'
    'nf-md-image_filter_center_focus_strong_outline' = '󰼀'
    'nf-md-image_filter_center_focus_weak'           = '󰋲'
    'nf-md-image_filter_drama'                       = '󰋳'
    'nf-md-image_filter_frames'                      = '󰋴'
    'nf-md-image_filter_hdr'                         = '󰔉'
    'nf-md-image_filter_none'                        = '󰋶'
    'nf-md-image_filter_tilt_shift'                  = '󰋷'
    'nf-md-image_filter_vintage'                     = '󰋸'
    'nf-md-image_frame'                              = '󰹉'
    'nf-md-image_lock'                               = '󱪰'
    'nf-md-image_lock_outline'                       = '󱪱'
    'nf-md-image_marker'                             = '󱝻'
    'nf-md-image_marker_outline'                     = '󱝼'
    'nf-md-image_minus'                              = '󱐙'
    'nf-md-image_move'                               = '󰧸'
    'nf-md-image_multiple'                           = '󰋹'
    'nf-md-image_multiple_outline'                   = '󰋯'
    'nf-md-image_off'                                = '󰠫'
    'nf-md-image_off_outline'                        = '󱇑'
    'nf-md-image_outline'                            = '󰥶'
    'nf-md-image_plus'                               = '󰡼'
    'nf-md-image_refresh'                            = '󱧾'
    'nf-md-image_refresh_outline'                    = '󱧿'
    'nf-md-image_remove'                             = '󱐘'
    'nf-md-image_search'                             = '󰥷'
    'nf-md-image_search_outline'                     = '󰥸'
    'nf-md-image_size_select_actual'                 = '󰲍'
    'nf-md-image_size_select_large'                  = '󰲎'
    'nf-md-image_size_select_small'                  = '󰲏'
    'nf-md-image_sync'                               = '󱨀'
    'nf-md-image_sync_outline'                       = '󱨁'
    'nf-md-image_text'                               = '󱘍'
    'nf-md-import'                                   = '󰋺'
    'nf-md-inbox'                                    = '󰚇'
    'nf-md-inbox_arrow_down'                         = '󰋻'
    'nf-md-inbox_arrow_down_outline'                 = '󱉰'
    'nf-md-inbox_arrow_up'                           = '󰏑'
    'nf-md-inbox_arrow_up_outline'                   = '󱉱'
    'nf-md-inbox_full'                               = '󱉲'
    'nf-md-inbox_full_outline'                       = '󱉳'
    'nf-md-inbox_multiple'                           = '󰢰'
    'nf-md-inbox_multiple_outline'                   = '󰮨'
    'nf-md-inbox_outline'                            = '󱉴'
    'nf-md-inbox_remove'                             = '󱖟'
    'nf-md-inbox_remove_outline'                     = '󱖠'
    'nf-md-incognito'                                = '󰗹'
    'nf-md-incognito_circle'                         = '󱐡'
    'nf-md-incognito_circle_off'                     = '󱐢'
    'nf-md-incognito_off'                            = '󰁵'
    'nf-md-induction'                                = '󱡌'
    'nf-md-infinity'                                 = '󰛤'
    'nf-md-information'                              = '󰋼'
    'nf-md-information_off'                          = '󱞌'
    'nf-md-information_off_outline'                  = '󱞍'
    'nf-md-information_outline'                      = '󰋽'
    'nf-md-information_variant'                      = '󰙎'
    'nf-md-instagram'                                = '󰋾'
    'nf-md-instrument_triangle'                      = '󱁎'
    'nf-md-integrated_circuit_chip'                  = '󱤓'
    'nf-md-invert_colors'                            = '󰌁'
    'nf-md-invert_colors_off'                        = '󰹊'
    'nf-md-iobroker'                                 = '󱋨'
    'nf-md-ip'                                       = '󰩟'
    'nf-md-ip_network'                               = '󰩠'
    'nf-md-ip_network_outline'                       = '󰲐'
    'nf-md-ip_outline'                               = '󱦂'
    'nf-md-ipod'                                     = '󰲑'
    'nf-md-iron'                                     = '󱠤'
    'nf-md-iron_board'                               = '󱠸'
    'nf-md-iron_outline'                             = '󱠥'
    'nf-md-island'                                   = '󱁏'
    'nf-md-iv_bag'                                   = '󱂹'
    'nf-md-jabber'                                   = '󰷕'
    'nf-md-jeepney'                                  = '󰌂'
    'nf-md-jellyfish'                                = '󰼁'
    'nf-md-jellyfish_outline'                        = '󰼂'
    'nf-md-jira'                                     = '󰌃'
    'nf-md-jquery'                                   = '󰡽'
    'nf-md-jsfiddle'                                 = '󰌄'
    'nf-md-jump_rope'                                = '󱋿'
    'nf-md-kabaddi'                                  = '󰶇'
    'nf-md-kangaroo'                                 = '󱕘'
    'nf-md-karate'                                   = '󰠬'
    'nf-md-kayaking'                                 = '󰢯'
    'nf-md-keg'                                      = '󰌅'
    'nf-md-kettle'                                   = '󰗺'
    'nf-md-kettle_alert'                             = '󱌗'
    'nf-md-kettle_alert_outline'                     = '󱌘'
    'nf-md-kettle_off'                               = '󱌛'
    'nf-md-kettle_off_outline'                       = '󱌜'
    'nf-md-kettle_outline'                           = '󰽖'
    'nf-md-kettle_pour_over'                         = '󱜼'
    'nf-md-kettle_steam'                             = '󱌙'
    'nf-md-kettle_steam_outline'                     = '󱌚'
    'nf-md-kettlebell'                               = '󱌀'
    'nf-md-key'                                      = '󰌆'
    'nf-md-key_alert'                                = '󱦃'
    'nf-md-key_alert_outline'                        = '󱦄'
    'nf-md-key_arrow_right'                          = '󱌒'
    'nf-md-key_chain'                                = '󱕴'
    'nf-md-key_chain_variant'                        = '󱕵'
    'nf-md-key_change'                               = '󰌇'
    'nf-md-key_link'                                 = '󱆟'
    'nf-md-key_minus'                                = '󰌈'
    'nf-md-key_outline'                              = '󰷖'
    'nf-md-key_plus'                                 = '󰌉'
    'nf-md-key_remove'                               = '󰌊'
    'nf-md-key_star'                                 = '󱆞'
    'nf-md-key_variant'                              = '󰌋'
    'nf-md-key_wireless'                             = '󰿂'
    'nf-md-keyboard'                                 = '󰌌'
    'nf-md-keyboard_backspace'                       = '󰌍'
    'nf-md-keyboard_caps'                            = '󰌎'
    'nf-md-keyboard_close'                           = '󰌏'
    'nf-md-keyboard_esc'                             = '󱊷'
    'nf-md-keyboard_f1'                              = '󱊫'
    'nf-md-keyboard_f10'                             = '󱊴'
    'nf-md-keyboard_f11'                             = '󱊵'
    'nf-md-keyboard_f12'                             = '󱊶'
    'nf-md-keyboard_f2'                              = '󱊬'
    'nf-md-keyboard_f3'                              = '󱊭'
    'nf-md-keyboard_f4'                              = '󱊮'
    'nf-md-keyboard_f5'                              = '󱊯'
    'nf-md-keyboard_f6'                              = '󱊰'
    'nf-md-keyboard_f7'                              = '󱊱'
    'nf-md-keyboard_f8'                              = '󱊲'
    'nf-md-keyboard_f9'                              = '󱊳'
    'nf-md-keyboard_off'                             = '󰌐'
    'nf-md-keyboard_off_outline'                     = '󰹋'
    'nf-md-keyboard_outline'                         = '󰥻'
    'nf-md-keyboard_return'                          = '󰌑'
    'nf-md-keyboard_settings'                        = '󰧹'
    'nf-md-keyboard_settings_outline'                = '󰧺'
    'nf-md-keyboard_space'                           = '󱁐'
    'nf-md-keyboard_tab'                             = '󰌒'
    'nf-md-keyboard_tab_reverse'                     = '󰌥'
    'nf-md-keyboard_variant'                         = '󰌓'
    'nf-md-khanda'                                   = '󱃽'
    'nf-md-kickstarter'                              = '󰝅'
    'nf-md-kite'                                     = '󱦅'
    'nf-md-kite_outline'                             = '󱦆'
    'nf-md-kitesurfing'                              = '󱝄'
    'nf-md-klingon'                                  = '󱍛'
    'nf-md-knife'                                    = '󰧻'
    'nf-md-knife_military'                           = '󰧼'
    'nf-md-koala'                                    = '󱜿'
    'nf-md-kodi'                                     = '󰌔'
    'nf-md-kubernetes'                               = '󱃾'
    'nf-md-label'                                    = '󰌕'
    'nf-md-label_multiple'                           = '󱍵'
    'nf-md-label_multiple_outline'                   = '󱍶'
    'nf-md-label_off'                                = '󰫋'
    'nf-md-label_off_outline'                        = '󰫌'
    'nf-md-label_outline'                            = '󰌖'
    'nf-md-label_percent'                            = '󱋪'
    'nf-md-label_percent_outline'                    = '󱋫'
    'nf-md-label_variant'                            = '󰫍'
    'nf-md-label_variant_outline'                    = '󰫎'
    'nf-md-ladder'                                   = '󱖢'
    'nf-md-ladybug'                                  = '󰠭'
    'nf-md-lambda'                                   = '󰘧'
    'nf-md-lamp'                                     = '󰚵'
    'nf-md-lamp_outline'                             = '󱟐'
    'nf-md-lamps'                                    = '󱕶'
    'nf-md-lamps_outline'                            = '󱟑'
    'nf-md-lan'                                      = '󰌗'
    'nf-md-lan_check'                                = '󱊪'
    'nf-md-lan_connect'                              = '󰌘'
    'nf-md-lan_disconnect'                           = '󰌙'
    'nf-md-lan_pending'                              = '󰌚'
    'nf-md-land_fields'                              = '󱪲'
    'nf-md-land_plots'                               = '󱪳'
    'nf-md-land_plots_circle'                        = '󱪴'
    'nf-md-land_plots_circle_variant'                = '󱪵'
    'nf-md-land_rows_horizontal'                     = '󱪶'
    'nf-md-land_rows_vertical'                       = '󱪷'
    'nf-md-landslide'                                = '󱩈'
    'nf-md-landslide_outline'                        = '󱩉'
    'nf-md-language_c'                               = '󰙱'
    'nf-md-language_cpp'                             = '󰙲'
    'nf-md-language_csharp'                          = '󰌛'
    'nf-md-language_css3'                            = '󰌜'
    'nf-md-language_fortran'                         = '󱈚'
    'nf-md-language_go'                              = '󰟓'
    'nf-md-language_haskell'                         = '󰲒'
    'nf-md-language_html5'                           = '󰌝'
    'nf-md-language_java'                            = '󰬷'
    'nf-md-language_javascript'                      = '󰌞'
    'nf-md-language_kotlin'                          = '󱈙'
    'nf-md-language_lua'                             = '󰢱'
    'nf-md-language_markdown'                        = '󰍔'
    'nf-md-language_markdown_outline'                = '󰽛'
    'nf-md-language_php'                             = '󰌟'
    'nf-md-language_python'                          = '󰌠'
    'nf-md-language_r'                               = '󰟔'
    'nf-md-language_ruby'                            = '󰴭'
    'nf-md-language_ruby_on_rails'                   = '󰫏'
    'nf-md-language_rust'                            = '󱘗'
    'nf-md-language_swift'                           = '󰛥'
    'nf-md-language_typescript'                      = '󰛦'
    'nf-md-language_xaml'                            = '󰙳'
    'nf-md-laptop'                                   = '󰌢'
    'nf-md-laptop_account'                           = '󱩊'
    'nf-md-laptop_off'                               = '󰛧'
    'nf-md-laravel'                                  = '󰫐'
    'nf-md-laser_pointer'                            = '󱒄'
    'nf-md-lasso'                                    = '󰼃'
    'nf-md-lastpass'                                 = '󰑆'
    'nf-md-latitude'                                 = '󰽗'
    'nf-md-launch'                                   = '󰌧'
    'nf-md-lava_lamp'                                = '󰟕'
    'nf-md-layers'                                   = '󰌨'
    'nf-md-layers_edit'                              = '󱢒'
    'nf-md-layers_minus'                             = '󰹌'
    'nf-md-layers_off'                               = '󰌩'
    'nf-md-layers_off_outline'                       = '󰧽'
    'nf-md-layers_outline'                           = '󰧾'
    'nf-md-layers_plus'                              = '󰹍'
    'nf-md-layers_remove'                            = '󰹎'
    'nf-md-layers_search'                            = '󱈆'
    'nf-md-layers_search_outline'                    = '󱈇'
    'nf-md-layers_triple'                            = '󰽘'
    'nf-md-layers_triple_outline'                    = '󰽙'
    'nf-md-lead_pencil'                              = '󰙏'
    'nf-md-leaf'                                     = '󰌪'
    'nf-md-leaf_circle'                              = '󱤅'
    'nf-md-leaf_circle_outline'                      = '󱤆'
    'nf-md-leaf_maple'                               = '󰲓'
    'nf-md-leaf_maple_off'                           = '󱋚'
    'nf-md-leaf_off'                                 = '󱋙'
    'nf-md-leak'                                     = '󰷗'
    'nf-md-leak_off'                                 = '󰷘'
    'nf-md-lecturn'                                  = '󱫰'
    'nf-md-led_off'                                  = '󰌫'
    'nf-md-led_on'                                   = '󰌬'
    'nf-md-led_outline'                              = '󰌭'
    'nf-md-led_strip'                                = '󰟖'
    'nf-md-led_strip_variant'                        = '󱁑'
    'nf-md-led_strip_variant_off'                    = '󱩋'
    'nf-md-led_variant_off'                          = '󰌮'
    'nf-md-led_variant_on'                           = '󰌯'
    'nf-md-led_variant_outline'                      = '󰌰'
    'nf-md-leek'                                     = '󱅽'
    'nf-md-less_than'                                = '󰥼'
    'nf-md-less_than_or_equal'                       = '󰥽'
    'nf-md-library'                                  = '󰌱'
    'nf-md-library_outline'                          = '󱨢'
    'nf-md-library_shelves'                          = '󰮩'
    'nf-md-license'                                  = '󰿃'
    'nf-md-lifebuoy'                                 = '󰡾'
    'nf-md-light_flood_down'                         = '󱦇'
    'nf-md-light_flood_up'                           = '󱦈'
    'nf-md-light_recessed'                           = '󱞛'
    'nf-md-light_switch'                             = '󰥾'
    'nf-md-light_switch_off'                         = '󱨤'
    'nf-md-lightbulb'                                = '󰌵'
    'nf-md-lightbulb_alert'                          = '󱧡'
    'nf-md-lightbulb_alert_outline'                  = '󱧢'
    'nf-md-lightbulb_auto'                           = '󱠀'
    'nf-md-lightbulb_auto_outline'                   = '󱠁'
    'nf-md-lightbulb_cfl'                            = '󱈈'
    'nf-md-lightbulb_cfl_off'                        = '󱈉'
    'nf-md-lightbulb_cfl_spiral'                     = '󱉵'
    'nf-md-lightbulb_cfl_spiral_off'                 = '󱋃'
    'nf-md-lightbulb_fluorescent_tube'               = '󱠄'
    'nf-md-lightbulb_fluorescent_tube_outline'       = '󱠅'
    'nf-md-lightbulb_group'                          = '󱉓'
    'nf-md-lightbulb_group_off'                      = '󱋍'
    'nf-md-lightbulb_group_off_outline'              = '󱋎'
    'nf-md-lightbulb_group_outline'                  = '󱉔'
    'nf-md-lightbulb_multiple'                       = '󱉕'
    'nf-md-lightbulb_multiple_off'                   = '󱋏'
    'nf-md-lightbulb_multiple_off_outline'           = '󱋐'
    'nf-md-lightbulb_multiple_outline'               = '󱉖'
    'nf-md-lightbulb_night'                          = '󱩌'
    'nf-md-lightbulb_night_outline'                  = '󱩍'
    'nf-md-lightbulb_off'                            = '󰹏'
    'nf-md-lightbulb_off_outline'                    = '󰹐'
    'nf-md-lightbulb_on'                             = '󰛨'
    'nf-md-lightbulb_on_10'                          = '󱩎'
    'nf-md-lightbulb_on_20'                          = '󱩏'
    'nf-md-lightbulb_on_30'                          = '󱩐'
    'nf-md-lightbulb_on_40'                          = '󱩑'
    'nf-md-lightbulb_on_50'                          = '󱩒'
    'nf-md-lightbulb_on_60'                          = '󱩓'
    'nf-md-lightbulb_on_70'                          = '󱩔'
    'nf-md-lightbulb_on_80'                          = '󱩕'
    'nf-md-lightbulb_on_90'                          = '󱩖'
    'nf-md-lightbulb_on_outline'                     = '󰛩'
    'nf-md-lightbulb_outline'                        = '󰌶'
    'nf-md-lightbulb_question'                       = '󱧣'
    'nf-md-lightbulb_question_outline'               = '󱧤'
    'nf-md-lightbulb_spot'                           = '󱟴'
    'nf-md-lightbulb_spot_off'                       = '󱟵'
    'nf-md-lightbulb_variant'                        = '󱠂'
    'nf-md-lightbulb_variant_outline'                = '󱠃'
    'nf-md-lighthouse'                               = '󰧿'
    'nf-md-lighthouse_on'                            = '󰨀'
    'nf-md-lightning_bolt'                           = '󱐋'
    'nf-md-lightning_bolt_circle'                    = '󰠠'
    'nf-md-lightning_bolt_outline'                   = '󱐌'
    'nf-md-line_scan'                                = '󰘤'
    'nf-md-lingerie'                                 = '󱑶'
    'nf-md-link'                                     = '󰌷'
    'nf-md-link_box'                                 = '󰴚'
    'nf-md-link_box_outline'                         = '󰴛'
    'nf-md-link_box_variant'                         = '󰴜'
    'nf-md-link_box_variant_outline'                 = '󰴝'
    'nf-md-link_lock'                                = '󱂺'
    'nf-md-link_off'                                 = '󰌸'
    'nf-md-link_plus'                                = '󰲔'
    'nf-md-link_variant'                             = '󰌹'
    'nf-md-link_variant_minus'                       = '󱃿'
    'nf-md-link_variant_off'                         = '󰌺'
    'nf-md-link_variant_plus'                        = '󱄀'
    'nf-md-link_variant_remove'                      = '󱄁'
    'nf-md-linkedin'                                 = '󰌻'
    'nf-md-linux'                                    = '󰌽'
    'nf-md-linux_mint'                               = '󰣭'
    'nf-md-lipstick'                                 = '󱎵'
    'nf-md-liquid_spot'                              = '󱠦'
    'nf-md-liquor'                                   = '󱤞'
    'nf-md-list_status'                              = '󱖫'
    'nf-md-litecoin'                                 = '󰩡'
    'nf-md-loading'                                  = '󰝲'
    'nf-md-location_enter'                           = '󰿄'
    'nf-md-location_exit'                            = '󰿅'
    'nf-md-lock'                                     = '󰌾'
    'nf-md-lock_alert'                               = '󰣮'
    'nf-md-lock_alert_outline'                       = '󱗑'
    'nf-md-lock_check'                               = '󱎚'
    'nf-md-lock_check_outline'                       = '󱚨'
    'nf-md-lock_clock'                               = '󰥿'
    'nf-md-lock_minus'                               = '󱚩'
    'nf-md-lock_minus_outline'                       = '󱚪'
    'nf-md-lock_off'                                 = '󱙱'
    'nf-md-lock_off_outline'                         = '󱙲'
    'nf-md-lock_open'                                = '󰌿'
    'nf-md-lock_open_alert'                          = '󱎛'
    'nf-md-lock_open_alert_outline'                  = '󱗒'
    'nf-md-lock_open_check'                          = '󱎜'
    'nf-md-lock_open_check_outline'                  = '󱚫'
    'nf-md-lock_open_minus'                          = '󱚬'
    'nf-md-lock_open_minus_outline'                  = '󱚭'
    'nf-md-lock_open_outline'                        = '󰍀'
    'nf-md-lock_open_plus'                           = '󱚮'
    'nf-md-lock_open_plus_outline'                   = '󱚯'
    'nf-md-lock_open_remove'                         = '󱚰'
    'nf-md-lock_open_remove_outline'                 = '󱚱'
    'nf-md-lock_open_variant'                        = '󰿆'
    'nf-md-lock_open_variant_outline'                = '󰿇'
    'nf-md-lock_outline'                             = '󰍁'
    'nf-md-lock_pattern'                             = '󰛪'
    'nf-md-lock_plus'                                = '󰗻'
    'nf-md-lock_plus_outline'                        = '󱚲'
    'nf-md-lock_question'                            = '󰣯'
    'nf-md-lock_remove'                              = '󱚳'
    'nf-md-lock_remove_outline'                      = '󱚴'
    'nf-md-lock_reset'                               = '󰝳'
    'nf-md-lock_smart'                               = '󰢲'
    'nf-md-locker'                                   = '󰟗'
    'nf-md-locker_multiple'                          = '󰟘'
    'nf-md-login'                                    = '󰍂'
    'nf-md-logout'                                   = '󰍃'
    'nf-md-logout_variant'                           = '󰗽'
    'nf-md-longitude'                                = '󰽚'
    'nf-md-looks'                                    = '󰍄'
    'nf-md-lotion'                                   = '󱖂'
    'nf-md-lotion_outline'                           = '󱖃'
    'nf-md-lotion_plus'                              = '󱖄'
    'nf-md-lotion_plus_outline'                      = '󱖅'
    'nf-md-loupe'                                    = '󰍅'
    'nf-md-lumx'                                     = '󰍆'
    'nf-md-lungs'                                    = '󱂄'
    'nf-md-mace'                                     = '󱡃'
    'nf-md-magazine_pistol'                          = '󰌤'
    'nf-md-magazine_rifle'                           = '󰌣'
    'nf-md-magic_staff'                              = '󱡄'
    'nf-md-magnet'                                   = '󰍇'
    'nf-md-magnet_on'                                = '󰍈'
    'nf-md-magnify'                                  = '󰍉'
    'nf-md-magnify_close'                            = '󰦀'
    'nf-md-magnify_expand'                           = '󱡴'
    'nf-md-magnify_minus'                            = '󰍊'
    'nf-md-magnify_minus_cursor'                     = '󰩢'
    'nf-md-magnify_minus_outline'                    = '󰛬'
    'nf-md-magnify_plus'                             = '󰍋'
    'nf-md-magnify_plus_cursor'                      = '󰩣'
    'nf-md-magnify_plus_outline'                     = '󰛭'
    'nf-md-magnify_remove_cursor'                    = '󱈌'
    'nf-md-magnify_remove_outline'                   = '󱈍'
    'nf-md-magnify_scan'                             = '󱉶'
    'nf-md-mail'                                     = '󰺻'
    'nf-md-mailbox'                                  = '󰛮'
    'nf-md-mailbox_open'                             = '󰶈'
    'nf-md-mailbox_open_outline'                     = '󰶉'
    'nf-md-mailbox_open_up'                          = '󰶊'
    'nf-md-mailbox_open_up_outline'                  = '󰶋'
    'nf-md-mailbox_outline'                          = '󰶌'
    'nf-md-mailbox_up'                               = '󰶍'
    'nf-md-mailbox_up_outline'                       = '󰶎'
    'nf-md-manjaro'                                  = '󱘊'
    'nf-md-map'                                      = '󰍍'
    'nf-md-map_check'                                = '󰺼'
    'nf-md-map_check_outline'                        = '󰺽'
    'nf-md-map_clock'                                = '󰴞'
    'nf-md-map_clock_outline'                        = '󰴟'
    'nf-md-map_legend'                               = '󰨁'
    'nf-md-map_marker'                               = '󰍎'
    'nf-md-map_marker_account'                       = '󱣣'
    'nf-md-map_marker_account_outline'               = '󱣤'
    'nf-md-map_marker_alert'                         = '󰼅'
    'nf-md-map_marker_alert_outline'                 = '󰼆'
    'nf-md-map_marker_check'                         = '󰲕'
    'nf-md-map_marker_check_outline'                 = '󱋻'
    'nf-md-map_marker_circle'                        = '󰍏'
    'nf-md-map_marker_distance'                      = '󰣰'
    'nf-md-map_marker_down'                          = '󱄂'
    'nf-md-map_marker_left'                          = '󱋛'
    'nf-md-map_marker_left_outline'                  = '󱋝'
    'nf-md-map_marker_minus'                         = '󰙐'
    'nf-md-map_marker_minus_outline'                 = '󱋹'
    'nf-md-map_marker_multiple'                      = '󰍐'
    'nf-md-map_marker_multiple_outline'              = '󱉷'
    'nf-md-map_marker_off'                           = '󰍑'
    'nf-md-map_marker_off_outline'                   = '󱋽'
    'nf-md-map_marker_outline'                       = '󰟙'
    'nf-md-map_marker_path'                          = '󰴠'
    'nf-md-map_marker_plus'                          = '󰙑'
    'nf-md-map_marker_plus_outline'                  = '󱋸'
    'nf-md-map_marker_question'                      = '󰼇'
    'nf-md-map_marker_question_outline'              = '󰼈'
    'nf-md-map_marker_radius'                        = '󰍒'
    'nf-md-map_marker_radius_outline'                = '󱋼'
    'nf-md-map_marker_remove'                        = '󰼉'
    'nf-md-map_marker_remove_outline'                = '󱋺'
    'nf-md-map_marker_remove_variant'                = '󰼊'
    'nf-md-map_marker_right'                         = '󱋜'
    'nf-md-map_marker_right_outline'                 = '󱋞'
    'nf-md-map_marker_star'                          = '󱘈'
    'nf-md-map_marker_star_outline'                  = '󱘉'
    'nf-md-map_marker_up'                            = '󱄃'
    'nf-md-map_minus'                                = '󰦁'
    'nf-md-map_outline'                              = '󰦂'
    'nf-md-map_plus'                                 = '󰦃'
    'nf-md-map_search'                               = '󰦄'
    'nf-md-map_search_outline'                       = '󰦅'
    'nf-md-mapbox'                                   = '󰮪'
    'nf-md-margin'                                   = '󰍓'
    'nf-md-marker'                                   = '󰙒'
    'nf-md-marker_cancel'                            = '󰷙'
    'nf-md-marker_check'                             = '󰍕'
    'nf-md-mastodon'                                 = '󰫑'
    'nf-md-material_design'                          = '󰦆'
    'nf-md-material_ui'                              = '󰍗'
    'nf-md-math_compass'                             = '󰍘'
    'nf-md-math_cos'                                 = '󰲖'
    'nf-md-math_integral'                            = '󰿈'
    'nf-md-math_integral_box'                        = '󰿉'
    'nf-md-math_log'                                 = '󱂅'
    'nf-md-math_norm'                                = '󰿊'
    'nf-md-math_norm_box'                            = '󰿋'
    'nf-md-math_sin'                                 = '󰲗'
    'nf-md-math_tan'                                 = '󰲘'
    'nf-md-matrix'                                   = '󰘨'
    'nf-md-medal'                                    = '󰦇'
    'nf-md-medal_outline'                            = '󱌦'
    'nf-md-medical_bag'                              = '󰛯'
    'nf-md-medical_cotton_swab'                      = '󱪸'
    'nf-md-meditation'                               = '󱅻'
    'nf-md-memory'                                   = '󰍛'
    'nf-md-menorah'                                  = '󱟔'
    'nf-md-menorah_fire'                             = '󱟕'
    'nf-md-menu'                                     = '󰍜'
    'nf-md-menu_down'                                = '󰍝'
    'nf-md-menu_down_outline'                        = '󰚶'
    'nf-md-menu_left'                                = '󰍞'
    'nf-md-menu_left_outline'                        = '󰨂'
    'nf-md-menu_open'                                = '󰮫'
    'nf-md-menu_right'                               = '󰍟'
    'nf-md-menu_right_outline'                       = '󰨃'
    'nf-md-menu_swap'                                = '󰩤'
    'nf-md-menu_swap_outline'                        = '󰩥'
    'nf-md-menu_up'                                  = '󰍠'
    'nf-md-menu_up_outline'                          = '󰚷'
    'nf-md-merge'                                    = '󰽜'
    'nf-md-message'                                  = '󰍡'
    'nf-md-message_alert'                            = '󰍢'
    'nf-md-message_alert_outline'                    = '󰨄'
    'nf-md-message_arrow_left'                       = '󱋲'
    'nf-md-message_arrow_left_outline'               = '󱋳'
    'nf-md-message_arrow_right'                      = '󱋴'
    'nf-md-message_arrow_right_outline'              = '󱋵'
    'nf-md-message_badge'                            = '󱥁'
    'nf-md-message_badge_outline'                    = '󱥂'
    'nf-md-message_bookmark'                         = '󱖬'
    'nf-md-message_bookmark_outline'                 = '󱖭'
    'nf-md-message_bulleted'                         = '󰚢'
    'nf-md-message_bulleted_off'                     = '󰚣'
    'nf-md-message_cog'                              = '󰛱'
    'nf-md-message_cog_outline'                      = '󱅲'
    'nf-md-message_draw'                             = '󰍣'
    'nf-md-message_fast'                             = '󱧌'
    'nf-md-message_fast_outline'                     = '󱧍'
    'nf-md-message_flash'                            = '󱖩'
    'nf-md-message_flash_outline'                    = '󱖪'
    'nf-md-message_image'                            = '󰍤'
    'nf-md-message_image_outline'                    = '󱅬'
    'nf-md-message_lock'                             = '󰿌'
    'nf-md-message_lock_outline'                     = '󱅭'
    'nf-md-message_minus'                            = '󱅮'
    'nf-md-message_minus_outline'                    = '󱅯'
    'nf-md-message_off'                              = '󱙍'
    'nf-md-message_off_outline'                      = '󱙎'
    'nf-md-message_outline'                          = '󰍥'
    'nf-md-message_plus'                             = '󰙓'
    'nf-md-message_plus_outline'                     = '󱂻'
    'nf-md-message_processing'                       = '󰍦'
    'nf-md-message_processing_outline'               = '󱅰'
    'nf-md-message_question'                         = '󱜺'
    'nf-md-message_question_outline'                 = '󱜻'
    'nf-md-message_reply'                            = '󰍧'
    'nf-md-message_reply_outline'                    = '󱜽'
    'nf-md-message_reply_text'                       = '󰍨'
    'nf-md-message_reply_text_outline'               = '󱜾'
    'nf-md-message_settings'                         = '󰛰'
    'nf-md-message_settings_outline'                 = '󱅱'
    'nf-md-message_star'                             = '󰚚'
    'nf-md-message_star_outline'                     = '󱉐'
    'nf-md-message_text'                             = '󰍩'
    'nf-md-message_text_clock'                       = '󱅳'
    'nf-md-message_text_clock_outline'               = '󱅴'
    'nf-md-message_text_fast'                        = '󱧎'
    'nf-md-message_text_fast_outline'                = '󱧏'
    'nf-md-message_text_lock'                        = '󰿍'
    'nf-md-message_text_lock_outline'                = '󱅵'
    'nf-md-message_text_outline'                     = '󰍪'
    'nf-md-message_video'                            = '󰍫'
    'nf-md-meteor'                                   = '󰘩'
    'nf-md-meter_electric'                           = '󱩗'
    'nf-md-meter_electric_outline'                   = '󱩘'
    'nf-md-meter_gas'                                = '󱩙'
    'nf-md-meter_gas_outline'                        = '󱩚'
    'nf-md-metronome'                                = '󰟚'
    'nf-md-metronome_tick'                           = '󰟛'
    'nf-md-micro_sd'                                 = '󰟜'
    'nf-md-microphone'                               = '󰍬'
    'nf-md-microphone_minus'                         = '󰢳'
    'nf-md-microphone_off'                           = '󰍭'
    'nf-md-microphone_outline'                       = '󰍮'
    'nf-md-microphone_plus'                          = '󰢴'
    'nf-md-microphone_question'                      = '󱦉'
    'nf-md-microphone_question_outline'              = '󱦊'
    'nf-md-microphone_settings'                      = '󰍯'
    'nf-md-microphone_variant'                       = '󰍰'
    'nf-md-microphone_variant_off'                   = '󰍱'
    'nf-md-microscope'                               = '󰙔'
    'nf-md-microsoft'                                = '󰍲'
    'nf-md-microsoft_access'                         = '󱎎'
    'nf-md-microsoft_azure'                          = '󰠅'
    'nf-md-microsoft_azure_devops'                   = '󰿕'
    'nf-md-microsoft_bing'                           = '󰂤'
    'nf-md-microsoft_dynamics_365'                   = '󰦈'
    'nf-md-microsoft_edge'                           = '󰇩'
    'nf-md-microsoft_excel'                          = '󱎏'
    'nf-md-microsoft_internet_explorer'              = '󰌀'
    'nf-md-microsoft_office'                         = '󰏆'
    'nf-md-microsoft_onedrive'                       = '󰏊'
    'nf-md-microsoft_onenote'                        = '󰝇'
    'nf-md-microsoft_outlook'                        = '󰴢'
    'nf-md-microsoft_powerpoint'                     = '󱎐'
    'nf-md-microsoft_sharepoint'                     = '󱎑'
    'nf-md-microsoft_teams'                          = '󰊻'
    'nf-md-microsoft_visual_studio'                  = '󰘐'
    'nf-md-microsoft_visual_studio_code'             = '󰨞'
    'nf-md-microsoft_windows'                        = '󰖳'
    'nf-md-microsoft_windows_classic'                = '󰨡'
    'nf-md-microsoft_word'                           = '󱎒'
    'nf-md-microsoft_xbox'                           = '󰖹'
    'nf-md-microsoft_xbox_controller'                = '󰖺'
    'nf-md-microsoft_xbox_controller_battery_alert'  = '󰝋'
    'nf-md-microsoft_xbox_controller_battery_charging'   = '󰨢'
    'nf-md-microsoft_xbox_controller_battery_empty'  = '󰝌'
    'nf-md-microsoft_xbox_controller_battery_full'   = '󰝍'
    'nf-md-microsoft_xbox_controller_battery_low'    = '󰝎'
    'nf-md-microsoft_xbox_controller_battery_medium' = '󰝏'
    'nf-md-microsoft_xbox_controller_battery_unknown'  = '󰝐'
    'nf-md-microsoft_xbox_controller_menu'           = '󰹯'
    'nf-md-microsoft_xbox_controller_off'            = '󰖻'
    'nf-md-microsoft_xbox_controller_view'           = '󰹰'
    'nf-md-microwave'                                = '󰲙'
    'nf-md-microwave_off'                            = '󱐣'
    'nf-md-middleware'                               = '󰽝'
    'nf-md-middleware_outline'                       = '󰽞'
    'nf-md-midi'                                     = '󰣱'
    'nf-md-midi_port'                                = '󰣲'
    'nf-md-mine'                                     = '󰷚'
    'nf-md-minecraft'                                = '󰍳'
    'nf-md-mini_sd'                                  = '󰨅'
    'nf-md-minidisc'                                 = '󰨆'
    'nf-md-minus'                                    = '󰍴'
    'nf-md-minus_box'                                = '󰍵'
    'nf-md-minus_box_multiple'                       = '󱅁'
    'nf-md-minus_box_multiple_outline'               = '󱅂'
    'nf-md-minus_box_outline'                        = '󰛲'
    'nf-md-minus_circle'                             = '󰍶'
    'nf-md-minus_circle_multiple'                    = '󰍚'
    'nf-md-minus_circle_multiple_outline'            = '󰫓'
    'nf-md-minus_circle_off'                         = '󱑙'
    'nf-md-minus_circle_off_outline'                 = '󱑚'
    'nf-md-minus_circle_outline'                     = '󰍷'
    'nf-md-minus_network'                            = '󰍸'
    'nf-md-minus_network_outline'                    = '󰲚'
    'nf-md-minus_thick'                              = '󱘹'
    'nf-md-mirror'                                   = '󱇽'
    'nf-md-mirror_rectangle'                         = '󱞟'
    'nf-md-mirror_variant'                           = '󱞠'
    'nf-md-mixed_martial_arts'                       = '󰶏'
    'nf-md-mixed_reality'                            = '󰡿'
    'nf-md-molecule'                                 = '󰮬'
    'nf-md-molecule_co'                              = '󱋾'
    'nf-md-molecule_co2'                             = '󰟤'
    'nf-md-monitor'                                  = '󰍹'
    'nf-md-monitor_account'                          = '󱩛'
    'nf-md-monitor_arrow_down'                       = '󱧐'
    'nf-md-monitor_arrow_down_variant'               = '󱧑'
    'nf-md-monitor_cellphone'                        = '󰦉'
    'nf-md-monitor_cellphone_star'                   = '󰦊'
    'nf-md-monitor_dashboard'                        = '󰨇'
    'nf-md-monitor_edit'                             = '󱋆'
    'nf-md-monitor_eye'                              = '󱎴'
    'nf-md-monitor_lock'                             = '󰷛'
    'nf-md-monitor_multiple'                         = '󰍺'
    'nf-md-monitor_off'                              = '󰶐'
    'nf-md-monitor_screenshot'                       = '󰹑'
    'nf-md-monitor_share'                            = '󱒃'
    'nf-md-monitor_shimmer'                          = '󱄄'
    'nf-md-monitor_small'                            = '󱡶'
    'nf-md-monitor_speaker'                          = '󰽟'
    'nf-md-monitor_speaker_off'                      = '󰽠'
    'nf-md-monitor_star'                             = '󰷜'
    'nf-md-moon_first_quarter'                       = '󰽡'
    'nf-md-moon_full'                                = '󰽢'
    'nf-md-moon_last_quarter'                        = '󰽣'
    'nf-md-moon_new'                                 = '󰽤'
    'nf-md-moon_waning_crescent'                     = '󰽥'
    'nf-md-moon_waning_gibbous'                      = '󰽦'
    'nf-md-moon_waxing_crescent'                     = '󰽧'
    'nf-md-moon_waxing_gibbous'                      = '󰽨'
    'nf-md-moped'                                    = '󱂆'
    'nf-md-moped_electric'                           = '󱖷'
    'nf-md-moped_electric_outline'                   = '󱖸'
    'nf-md-moped_outline'                            = '󱖹'
    'nf-md-more'                                     = '󰍻'
    'nf-md-mortar_pestle'                            = '󱝈'
    'nf-md-mortar_pestle_plus'                       = '󰏱'
    'nf-md-mosque'                                   = '󱠧'
    'nf-md-mother_heart'                             = '󱌔'
    'nf-md-mother_nurse'                             = '󰴡'
    'nf-md-motion'                                   = '󱖲'
    'nf-md-motion_outline'                           = '󱖳'
    'nf-md-motion_pause'                             = '󱖐'
    'nf-md-motion_pause_outline'                     = '󱖒'
    'nf-md-motion_play'                              = '󱖏'
    'nf-md-motion_play_outline'                      = '󱖑'
    'nf-md-motion_sensor'                            = '󰶑'
    'nf-md-motion_sensor_off'                        = '󱐵'
    'nf-md-motorbike'                                = '󰍼'
    'nf-md-motorbike_electric'                       = '󱖺'
    'nf-md-mouse'                                    = '󰍽'
    'nf-md-mouse_bluetooth'                          = '󰦋'
    'nf-md-mouse_move_down'                          = '󱕐'
    'nf-md-mouse_move_up'                            = '󱕑'
    'nf-md-mouse_move_vertical'                      = '󱕒'
    'nf-md-mouse_off'                                = '󰍾'
    'nf-md-mouse_variant'                            = '󰍿'
    'nf-md-mouse_variant_off'                        = '󰎀'
    'nf-md-move_resize'                              = '󰙕'
    'nf-md-move_resize_variant'                      = '󰙖'
    'nf-md-movie'                                    = '󰎁'
    'nf-md-movie_check'                              = '󱛳'
    'nf-md-movie_check_outline'                      = '󱛴'
    'nf-md-movie_cog'                                = '󱛵'
    'nf-md-movie_cog_outline'                        = '󱛶'
    'nf-md-movie_edit'                               = '󱄢'
    'nf-md-movie_edit_outline'                       = '󱄣'
    'nf-md-movie_filter'                             = '󱄤'
    'nf-md-movie_filter_outline'                     = '󱄥'
    'nf-md-movie_minus'                              = '󱛷'
    'nf-md-movie_minus_outline'                      = '󱛸'
    'nf-md-movie_off'                                = '󱛹'
    'nf-md-movie_off_outline'                        = '󱛺'
    'nf-md-movie_open'                               = '󰿎'
    'nf-md-movie_open_check'                         = '󱛻'
    'nf-md-movie_open_check_outline'                 = '󱛼'
    'nf-md-movie_open_cog'                           = '󱛽'
    'nf-md-movie_open_cog_outline'                   = '󱛾'
    'nf-md-movie_open_edit'                          = '󱛿'
    'nf-md-movie_open_edit_outline'                  = '󱜀'
    'nf-md-movie_open_minus'                         = '󱜁'
    'nf-md-movie_open_minus_outline'                 = '󱜂'
    'nf-md-movie_open_off'                           = '󱜃'
    'nf-md-movie_open_off_outline'                   = '󱜄'
    'nf-md-movie_open_outline'                       = '󰿏'
    'nf-md-movie_open_play'                          = '󱜅'
    'nf-md-movie_open_play_outline'                  = '󱜆'
    'nf-md-movie_open_plus'                          = '󱜇'
    'nf-md-movie_open_plus_outline'                  = '󱜈'
    'nf-md-movie_open_remove'                        = '󱜉'
    'nf-md-movie_open_remove_outline'                = '󱜊'
    'nf-md-movie_open_settings'                      = '󱜋'
    'nf-md-movie_open_settings_outline'              = '󱜌'
    'nf-md-movie_open_star'                          = '󱜍'
    'nf-md-movie_open_star_outline'                  = '󱜎'
    'nf-md-movie_outline'                            = '󰷝'
    'nf-md-movie_play'                               = '󱜏'
    'nf-md-movie_play_outline'                       = '󱜐'
    'nf-md-movie_plus'                               = '󱜑'
    'nf-md-movie_plus_outline'                       = '󱜒'
    'nf-md-movie_remove'                             = '󱜓'
    'nf-md-movie_remove_outline'                     = '󱜔'
    'nf-md-movie_roll'                               = '󰟞'
    'nf-md-movie_search'                             = '󱇒'
    'nf-md-movie_search_outline'                     = '󱇓'
    'nf-md-movie_settings'                           = '󱜕'
    'nf-md-movie_settings_outline'                   = '󱜖'
    'nf-md-movie_star'                               = '󱜗'
    'nf-md-movie_star_outline'                       = '󱜘'
    'nf-md-mower'                                    = '󱙯'
    'nf-md-mower_bag'                                = '󱙰'
    'nf-md-muffin'                                   = '󰦌'
    'nf-md-multicast'                                = '󱢓'
    'nf-md-multiplication'                           = '󰎂'
    'nf-md-multiplication_box'                       = '󰎃'
    'nf-md-mushroom'                                 = '󰟟'
    'nf-md-mushroom_off'                             = '󱏺'
    'nf-md-mushroom_off_outline'                     = '󱏻'
    'nf-md-mushroom_outline'                         = '󰟠'
    'nf-md-music'                                    = '󰝚'
    'nf-md-music_accidental_double_flat'             = '󰽩'
    'nf-md-music_accidental_double_sharp'            = '󰽪'
    'nf-md-music_accidental_flat'                    = '󰽫'
    'nf-md-music_accidental_natural'                 = '󰽬'
    'nf-md-music_accidental_sharp'                   = '󰽭'
    'nf-md-music_box'                                = '󰎄'
    'nf-md-music_box_multiple'                       = '󰌳'
    'nf-md-music_box_multiple_outline'               = '󰼄'
    'nf-md-music_box_outline'                        = '󰎅'
    'nf-md-music_circle'                             = '󰎆'
    'nf-md-music_circle_outline'                     = '󰫔'
    'nf-md-music_clef_alto'                          = '󰽮'
    'nf-md-music_clef_bass'                          = '󰽯'
    'nf-md-music_clef_treble'                        = '󰽰'
    'nf-md-music_note'                               = '󰎈'
    'nf-md-music_note_bluetooth'                     = '󰗾'
    'nf-md-music_note_bluetooth_off'                 = '󰗿'
    'nf-md-music_note_eighth_dotted'                 = '󰽱'
    'nf-md-music_note_half'                          = '󰎉'
    'nf-md-music_note_half_dotted'                   = '󰽲'
    'nf-md-music_note_off'                           = '󰎊'
    'nf-md-music_note_off_outline'                   = '󰽳'
    'nf-md-music_note_outline'                       = '󰽴'
    'nf-md-music_note_plus'                          = '󰷞'
    'nf-md-music_note_quarter'                       = '󰎋'
    'nf-md-music_note_quarter_dotted'                = '󰽵'
    'nf-md-music_note_sixteenth'                     = '󰎌'
    'nf-md-music_note_sixteenth_dotted'              = '󰽶'
    'nf-md-music_note_whole'                         = '󰎍'
    'nf-md-music_note_whole_dotted'                  = '󰽷'
    'nf-md-music_off'                                = '󰝛'
    'nf-md-music_rest_eighth'                        = '󰽸'
    'nf-md-music_rest_half'                          = '󰽹'
    'nf-md-music_rest_quarter'                       = '󰽺'
    'nf-md-music_rest_sixteenth'                     = '󰽻'
    'nf-md-music_rest_whole'                         = '󰽼'
    'nf-md-mustache'                                 = '󱗞'
    'nf-md-nail'                                     = '󰷟'
    'nf-md-nas'                                      = '󰣳'
    'nf-md-nativescript'                             = '󰢀'
    'nf-md-nature'                                   = '󰎎'
    'nf-md-nature_people'                            = '󰎏'
    'nf-md-navigation'                               = '󰎐'
    'nf-md-navigation_outline'                       = '󱘇'
    'nf-md-navigation_variant_outline'               = '󱣱'
    'nf-md-near_me'                                  = '󱣰'
    'nf-md-necklace'                                 = '󰼋'
    'nf-md-needle'                                   = '󰎑'
    'nf-md-needle_off'                               = '󱧒'
    'nf-md-netflix'                                  = '󰝆'
    'nf-md-network'                                  = '󰛳'
    'nf-md-network_off'                              = '󰲛'
    'nf-md-network_off_outline'                      = '󰲜'
    'nf-md-network_outline'                          = '󰲝'
    'nf-md-network_pos'                              = '󱫋'
    'nf-md-network_strength_1'                       = '󰣴'
    'nf-md-network_strength_1_alert'                 = '󰣵'
    'nf-md-network_strength_2'                       = '󰣶'
    'nf-md-network_strength_2_alert'                 = '󰣷'
    'nf-md-network_strength_3'                       = '󰣸'
    'nf-md-network_strength_3_alert'                 = '󰣹'
    'nf-md-network_strength_4'                       = '󰣺'
    'nf-md-network_strength_4_alert'                 = '󰣻'
    'nf-md-network_strength_4_cog'                   = '󱤚'
    'nf-md-network_strength_off'                     = '󰣼'
    'nf-md-network_strength_off_outline'             = '󰣽'
    'nf-md-network_strength_outline'                 = '󰣾'
    'nf-md-new_box'                                  = '󰎔'
    'nf-md-newspaper'                                = '󰎕'
    'nf-md-newspaper_check'                          = '󱥃'
    'nf-md-newspaper_minus'                          = '󰼌'
    'nf-md-newspaper_plus'                           = '󰼍'
    'nf-md-newspaper_remove'                         = '󱥄'
    'nf-md-newspaper_variant'                        = '󱀁'
    'nf-md-newspaper_variant_multiple'               = '󱀂'
    'nf-md-newspaper_variant_multiple_outline'       = '󱀃'
    'nf-md-newspaper_variant_outline'                = '󱀄'
    'nf-md-nfc'                                      = '󰎖'
    'nf-md-nfc_search_variant'                       = '󰹓'
    'nf-md-nfc_tap'                                  = '󰎗'
    'nf-md-nfc_variant'                              = '󰎘'
    'nf-md-nfc_variant_off'                          = '󰹔'
    'nf-md-ninja'                                    = '󰝴'
    'nf-md-nintendo_game_boy'                        = '󱎓'
    'nf-md-nintendo_switch'                          = '󰟡'
    'nf-md-nintendo_wii'                             = '󰖫'
    'nf-md-nintendo_wiiu'                            = '󰜭'
    'nf-md-nix'                                      = '󱄅'
    'nf-md-nodejs'                                   = '󰎙'
    'nf-md-noodles'                                  = '󱅾'
    'nf-md-not_equal'                                = '󰦍'
    'nf-md-not_equal_variant'                        = '󰦎'
    'nf-md-note'                                     = '󰎚'
    'nf-md-note_alert'                               = '󱝽'
    'nf-md-note_alert_outline'                       = '󱝾'
    'nf-md-note_check'                               = '󱝿'
    'nf-md-note_check_outline'                       = '󱞀'
    'nf-md-note_edit'                                = '󱞁'
    'nf-md-note_edit_outline'                        = '󱞂'
    'nf-md-note_minus'                               = '󱙏'
    'nf-md-note_minus_outline'                       = '󱙐'
    'nf-md-note_multiple'                            = '󰚸'
    'nf-md-note_multiple_outline'                    = '󰚹'
    'nf-md-note_off'                                 = '󱞃'
    'nf-md-note_off_outline'                         = '󱞄'
    'nf-md-note_outline'                             = '󰎛'
    'nf-md-note_plus'                                = '󰎜'
    'nf-md-note_plus_outline'                        = '󰎝'
    'nf-md-note_remove'                              = '󱙑'
    'nf-md-note_remove_outline'                      = '󱙒'
    'nf-md-note_search'                              = '󱙓'
    'nf-md-note_search_outline'                      = '󱙔'
    'nf-md-note_text'                                = '󰎞'
    'nf-md-note_text_outline'                        = '󱇗'
    'nf-md-notebook'                                 = '󰠮'
    'nf-md-notebook_check'                           = '󱓵'
    'nf-md-notebook_check_outline'                   = '󱓶'
    'nf-md-notebook_edit'                            = '󱓧'
    'nf-md-notebook_edit_outline'                    = '󱓩'
    'nf-md-notebook_heart'                           = '󱨋'
    'nf-md-notebook_heart_outline'                   = '󱨌'
    'nf-md-notebook_minus'                           = '󱘐'
    'nf-md-notebook_minus_outline'                   = '󱘑'
    'nf-md-notebook_multiple'                        = '󰹕'
    'nf-md-notebook_outline'                         = '󰺿'
    'nf-md-notebook_plus'                            = '󱘒'
    'nf-md-notebook_plus_outline'                    = '󱘓'
    'nf-md-notebook_remove'                          = '󱘔'
    'nf-md-notebook_remove_outline'                  = '󱘕'
    'nf-md-notification_clear_all'                   = '󰎟'
    'nf-md-npm'                                      = '󰛷'
    'nf-md-nuke'                                     = '󰚤'
    'nf-md-null'                                     = '󰟢'
    'nf-md-numeric'                                  = '󰎠'
    'nf-md-numeric_0_box'                            = '󰎡'
    'nf-md-numeric_0_box_multiple'                   = '󰼎'
    'nf-md-numeric_0_box_multiple_outline'           = '󰎢'
    'nf-md-numeric_0_box_outline'                    = '󰎣'
    'nf-md-numeric_1'                                = '󰬺'
    'nf-md-numeric_1_box'                            = '󰎤'
    'nf-md-numeric_1_box_multiple'                   = '󰼏'
    'nf-md-numeric_1_box_multiple_outline'           = '󰎥'
    'nf-md-numeric_1_box_outline'                    = '󰎦'
    'nf-md-numeric_1_circle'                         = '󰲠'
    'nf-md-numeric_1_circle_outline'                 = '󰲡'
    'nf-md-numeric_10'                               = '󰿩'
    'nf-md-numeric_10_box'                           = '󰽽'
    'nf-md-numeric_10_box_multiple'                  = '󰿪'
    'nf-md-numeric_10_box_multiple_outline'          = '󰿫'
    'nf-md-numeric_10_box_outline'                   = '󰽾'
    'nf-md-numeric_10_circle'                        = '󰿬'
    'nf-md-numeric_10_circle_outline'                = '󰿭'
    'nf-md-numeric_2'                                = '󰬻'
    'nf-md-numeric_2_box'                            = '󰎧'
    'nf-md-numeric_2_box_multiple'                   = '󰼐'
    'nf-md-numeric_2_box_multiple_outline'           = '󰎨'
    'nf-md-numeric_2_box_outline'                    = '󰎩'
    'nf-md-numeric_2_circle'                         = '󰲢'
    'nf-md-numeric_2_circle_outline'                 = '󰲣'
    'nf-md-numeric_3'                                = '󰬼'
    'nf-md-numeric_3_box'                            = '󰎪'
    'nf-md-numeric_3_box_multiple'                   = '󰼑'
    'nf-md-numeric_3_box_multiple_outline'           = '󰎫'
    'nf-md-numeric_3_box_outline'                    = '󰎬'
    'nf-md-numeric_3_circle'                         = '󰲤'
    'nf-md-numeric_3_circle_outline'                 = '󰲥'
    'nf-md-numeric_4'                                = '󰬽'
    'nf-md-numeric_4_box'                            = '󰎭'
    'nf-md-numeric_4_box_multiple'                   = '󰼒'
    'nf-md-numeric_4_box_multiple_outline'           = '󰎲'
    'nf-md-numeric_4_box_outline'                    = '󰎮'
    'nf-md-numeric_4_circle'                         = '󰲦'
    'nf-md-numeric_4_circle_outline'                 = '󰲧'
    'nf-md-numeric_5'                                = '󰬾'
    'nf-md-numeric_5_box'                            = '󰎱'
    'nf-md-numeric_5_box_multiple'                   = '󰼓'
    'nf-md-numeric_5_box_multiple_outline'           = '󰎯'
    'nf-md-numeric_5_box_outline'                    = '󰎰'
    'nf-md-numeric_5_circle'                         = '󰲨'
    'nf-md-numeric_5_circle_outline'                 = '󰲩'
    'nf-md-numeric_6'                                = '󰬿'
    'nf-md-numeric_6_box'                            = '󰎳'
    'nf-md-numeric_6_box_multiple'                   = '󰼔'
    'nf-md-numeric_6_box_multiple_outline'           = '󰎴'
    'nf-md-numeric_6_box_outline'                    = '󰎵'
    'nf-md-numeric_6_circle'                         = '󰲪'
    'nf-md-numeric_6_circle_outline'                 = '󰲫'
    'nf-md-numeric_7'                                = '󰭀'
    'nf-md-numeric_7_box'                            = '󰎶'
    'nf-md-numeric_7_box_multiple'                   = '󰼕'
    'nf-md-numeric_7_box_multiple_outline'           = '󰎷'
    'nf-md-numeric_7_box_outline'                    = '󰎸'
    'nf-md-numeric_7_circle'                         = '󰲬'
    'nf-md-numeric_7_circle_outline'                 = '󰲭'
    'nf-md-numeric_8'                                = '󰭁'
    'nf-md-numeric_8_box'                            = '󰎹'
    'nf-md-numeric_8_box_multiple'                   = '󰼖'
    'nf-md-numeric_8_box_multiple_outline'           = '󰎺'
    'nf-md-numeric_8_box_outline'                    = '󰎻'
    'nf-md-numeric_8_circle'                         = '󰲮'
    'nf-md-numeric_8_circle_outline'                 = '󰲯'
    'nf-md-numeric_9'                                = '󰭂'
    'nf-md-numeric_9_box'                            = '󰎼'
    'nf-md-numeric_9_box_multiple'                   = '󰼗'
    'nf-md-numeric_9_box_multiple_outline'           = '󰎽'
    'nf-md-numeric_9_box_outline'                    = '󰎾'
    'nf-md-numeric_9_circle'                         = '󰲰'
    'nf-md-numeric_9_circle_outline'                 = '󰲱'
    'nf-md-numeric_9_plus'                           = '󰿮'
    'nf-md-numeric_9_plus_box'                       = '󰎿'
    'nf-md-numeric_9_plus_box_multiple'              = '󰼘'
    'nf-md-numeric_9_plus_box_multiple_outline'      = '󰏀'
    'nf-md-numeric_9_plus_box_outline'               = '󰏁'
    'nf-md-numeric_9_plus_circle'                    = '󰲲'
    'nf-md-numeric_9_plus_circle_outline'            = '󰲳'
    'nf-md-numeric_negative_1'                       = '󱁒'
    'nf-md-numeric_off'                              = '󱧓'
    'nf-md-numeric_positive_1'                       = '󱗋'
    'nf-md-nut'                                      = '󰛸'
    'nf-md-nutrition'                                = '󰏂'
    'nf-md-nuxt'                                     = '󱄆'
    'nf-md-oar'                                      = '󰙼'
    'nf-md-ocarina'                                  = '󰷠'
    'nf-md-oci'                                      = '󱋩'
    'nf-md-ocr'                                      = '󱄺'
    'nf-md-octagon'                                  = '󰏃'
    'nf-md-octagon_outline'                          = '󰏄'
    'nf-md-octagram'                                 = '󰛹'
    'nf-md-octagram_outline'                         = '󰝵'
    'nf-md-octahedron'                               = '󱥐'
    'nf-md-octahedron_off'                           = '󱥑'
    'nf-md-odnoklassniki'                            = '󰏅'
    'nf-md-offer'                                    = '󱈛'
    'nf-md-office_building'                          = '󰦑'
    'nf-md-office_building_cog'                      = '󱥉'
    'nf-md-office_building_cog_outline'              = '󱥊'
    'nf-md-office_building_marker'                   = '󱔠'
    'nf-md-office_building_marker_outline'           = '󱔡'
    'nf-md-office_building_outline'                  = '󱔟'
    'nf-md-oil'                                      = '󰏇'
    'nf-md-oil_lamp'                                 = '󰼙'
    'nf-md-oil_level'                                = '󱁓'
    'nf-md-oil_temperature'                          = '󰿸'
    'nf-md-om'                                       = '󰥳'
    'nf-md-omega'                                    = '󰏉'
    'nf-md-one_up'                                   = '󰮭'
    'nf-md-onepassword'                              = '󰢁'
    'nf-md-opacity'                                  = '󰗌'
    'nf-md-open_in_app'                              = '󰏋'
    'nf-md-open_in_new'                              = '󰏌'
    'nf-md-open_source_initiative'                   = '󰮮'
    'nf-md-openid'                                   = '󰏍'
    'nf-md-opera'                                    = '󰏎'
    'nf-md-orbit'                                    = '󰀘'
    'nf-md-orbit_variant'                            = '󱗛'
    'nf-md-order_alphabetical_ascending'             = '󰈍'
    'nf-md-order_alphabetical_descending'            = '󰴇'
    'nf-md-order_bool_ascending'                     = '󰊾'
    'nf-md-order_bool_ascending_variant'             = '󰦏'
    'nf-md-order_bool_descending'                    = '󱎄'
    'nf-md-order_bool_descending_variant'            = '󰦐'
    'nf-md-order_numeric_ascending'                  = '󰕅'
    'nf-md-order_numeric_descending'                 = '󰕆'
    'nf-md-origin'                                   = '󰭃'
    'nf-md-ornament'                                 = '󰏏'
    'nf-md-ornament_variant'                         = '󰏐'
    'nf-md-outdoor_lamp'                             = '󱁔'
    'nf-md-overscan'                                 = '󱀅'
    'nf-md-owl'                                      = '󰏒'
    'nf-md-pac_man'                                  = '󰮯'
    'nf-md-package'                                  = '󰏓'
    'nf-md-package_down'                             = '󰏔'
    'nf-md-package_up'                               = '󰏕'
    'nf-md-package_variant'                          = '󰏖'
    'nf-md-package_variant_closed'                   = '󰏗'
    'nf-md-package_variant_closed_minus'             = '󱧔'
    'nf-md-package_variant_closed_plus'              = '󱧕'
    'nf-md-package_variant_closed_remove'            = '󱧖'
    'nf-md-package_variant_minus'                    = '󱧗'
    'nf-md-package_variant_plus'                     = '󱧘'
    'nf-md-package_variant_remove'                   = '󱧙'
    'nf-md-page_first'                               = '󰘀'
    'nf-md-page_last'                                = '󰘁'
    'nf-md-page_layout_body'                         = '󰛺'
    'nf-md-page_layout_footer'                       = '󰛻'
    'nf-md-page_layout_header'                       = '󰛼'
    'nf-md-page_layout_header_footer'                = '󰽿'
    'nf-md-page_layout_sidebar_left'                 = '󰛽'
    'nf-md-page_layout_sidebar_right'                = '󰛾'
    'nf-md-page_next'                                = '󰮰'
    'nf-md-page_next_outline'                        = '󰮱'
    'nf-md-page_previous'                            = '󰮲'
    'nf-md-page_previous_outline'                    = '󰮳'
    'nf-md-pail'                                     = '󱐗'
    'nf-md-pail_minus'                               = '󱐷'
    'nf-md-pail_minus_outline'                       = '󱐼'
    'nf-md-pail_off'                                 = '󱐹'
    'nf-md-pail_off_outline'                         = '󱐾'
    'nf-md-pail_outline'                             = '󱐺'
    'nf-md-pail_plus'                                = '󱐶'
    'nf-md-pail_plus_outline'                        = '󱐻'
    'nf-md-pail_remove'                              = '󱐸'
    'nf-md-pail_remove_outline'                      = '󱐽'
    'nf-md-palette'                                  = '󰏘'
    'nf-md-palette_advanced'                         = '󰏙'
    'nf-md-palette_outline'                          = '󰸌'
    'nf-md-palette_swatch'                           = '󰢵'
    'nf-md-palette_swatch_outline'                   = '󱍜'
    'nf-md-palette_swatch_variant'                   = '󱥚'
    'nf-md-palm_tree'                                = '󱁕'
    'nf-md-pan'                                      = '󰮴'
    'nf-md-pan_bottom_left'                          = '󰮵'
    'nf-md-pan_bottom_right'                         = '󰮶'
    'nf-md-pan_down'                                 = '󰮷'
    'nf-md-pan_horizontal'                           = '󰮸'
    'nf-md-pan_left'                                 = '󰮹'
    'nf-md-pan_right'                                = '󰮺'
    'nf-md-pan_top_left'                             = '󰮻'
    'nf-md-pan_top_right'                            = '󰮼'
    'nf-md-pan_up'                                   = '󰮽'
    'nf-md-pan_vertical'                             = '󰮾'
    'nf-md-panda'                                    = '󰏚'
    'nf-md-pandora'                                  = '󰏛'
    'nf-md-panorama'                                 = '󰏜'
    'nf-md-panorama_fisheye'                         = '󰏝'
    'nf-md-panorama_horizontal'                      = '󱤨'
    'nf-md-panorama_horizontal_outline'              = '󰏞'
    'nf-md-panorama_outline'                         = '󱦌'
    'nf-md-panorama_sphere'                          = '󱦍'
    'nf-md-panorama_sphere_outline'                  = '󱦎'
    'nf-md-panorama_variant'                         = '󱦏'
    'nf-md-panorama_variant_outline'                 = '󱦐'
    'nf-md-panorama_vertical'                        = '󱤩'
    'nf-md-panorama_vertical_outline'                = '󰏟'
    'nf-md-panorama_wide_angle'                      = '󱥟'
    'nf-md-panorama_wide_angle_outline'              = '󰏠'
    'nf-md-paper_cut_vertical'                       = '󰏡'
    'nf-md-paper_roll'                               = '󱅗'
    'nf-md-paper_roll_outline'                       = '󱅘'
    'nf-md-paperclip'                                = '󰏢'
    'nf-md-paperclip_check'                          = '󱫆'
    'nf-md-paperclip_lock'                           = '󱧚'
    'nf-md-paperclip_minus'                          = '󱫇'
    'nf-md-paperclip_off'                            = '󱫈'
    'nf-md-paperclip_plus'                           = '󱫉'
    'nf-md-paperclip_remove'                         = '󱫊'
    'nf-md-parachute'                                = '󰲴'
    'nf-md-parachute_outline'                        = '󰲵'
    'nf-md-paragliding'                              = '󱝅'
    'nf-md-parking'                                  = '󰏣'
    'nf-md-party_popper'                             = '󱁖'
    'nf-md-passport'                                 = '󰟣'
    'nf-md-passport_biometric'                       = '󰷡'
    'nf-md-pasta'                                    = '󱅠'
    'nf-md-patio_heater'                             = '󰾀'
    'nf-md-patreon'                                  = '󰢂'
    'nf-md-pause'                                    = '󰏤'
    'nf-md-pause_circle'                             = '󰏥'
    'nf-md-pause_circle_outline'                     = '󰏦'
    'nf-md-pause_octagon'                            = '󰏧'
    'nf-md-pause_octagon_outline'                    = '󰏨'
    'nf-md-paw'                                      = '󰏩'
    'nf-md-paw_off'                                  = '󰙗'
    'nf-md-paw_off_outline'                          = '󱙶'
    'nf-md-paw_outline'                              = '󱙵'
    'nf-md-peace'                                    = '󰢄'
    'nf-md-peanut'                                   = '󰿼'
    'nf-md-peanut_off'                               = '󰿽'
    'nf-md-peanut_off_outline'                       = '󰿿'
    'nf-md-peanut_outline'                           = '󰿾'
    'nf-md-pen'                                      = '󰏪'
    'nf-md-pen_lock'                                 = '󰷢'
    'nf-md-pen_minus'                                = '󰷣'
    'nf-md-pen_off'                                  = '󰷤'
    'nf-md-pen_plus'                                 = '󰷥'
    'nf-md-pen_remove'                               = '󰷦'
    'nf-md-pencil'                                   = '󰏫'
    'nf-md-pencil_box'                               = '󰏬'
    'nf-md-pencil_box_multiple'                      = '󱅄'
    'nf-md-pencil_box_multiple_outline'              = '󱅅'
    'nf-md-pencil_box_outline'                       = '󰏭'
    'nf-md-pencil_circle'                            = '󰛿'
    'nf-md-pencil_circle_outline'                    = '󰝶'
    'nf-md-pencil_lock'                              = '󰏮'
    'nf-md-pencil_lock_outline'                      = '󰷧'
    'nf-md-pencil_minus'                             = '󰷨'
    'nf-md-pencil_minus_outline'                     = '󰷩'
    'nf-md-pencil_off'                               = '󰏯'
    'nf-md-pencil_off_outline'                       = '󰷪'
    'nf-md-pencil_outline'                           = '󰲶'
    'nf-md-pencil_plus'                              = '󰷫'
    'nf-md-pencil_plus_outline'                      = '󰷬'
    'nf-md-pencil_remove'                            = '󰷭'
    'nf-md-pencil_remove_outline'                    = '󰷮'
    'nf-md-pencil_ruler'                             = '󱍓'
    'nf-md-penguin'                                  = '󰻀'
    'nf-md-pentagon'                                 = '󰜁'
    'nf-md-pentagon_outline'                         = '󰜀'
    'nf-md-pentagram'                                = '󱙧'
    'nf-md-percent'                                  = '󰏰'
    'nf-md-percent_box'                              = '󱨂'
    'nf-md-percent_box_outline'                      = '󱨃'
    'nf-md-percent_circle'                           = '󱨄'
    'nf-md-percent_circle_outline'                   = '󱨅'
    'nf-md-percent_outline'                          = '󱉸'
    'nf-md-periodic_table'                           = '󰢶'
    'nf-md-perspective_less'                         = '󰴣'
    'nf-md-perspective_more'                         = '󰴤'
    'nf-md-ph'                                       = '󱟅'
    'nf-md-phone'                                    = '󰏲'
    'nf-md-phone_alert'                              = '󰼚'
    'nf-md-phone_alert_outline'                      = '󱆎'
    'nf-md-phone_bluetooth'                          = '󰏳'
    'nf-md-phone_bluetooth_outline'                  = '󱆏'
    'nf-md-phone_cancel'                             = '󱂼'
    'nf-md-phone_cancel_outline'                     = '󱆐'
    'nf-md-phone_check'                              = '󱆩'
    'nf-md-phone_check_outline'                      = '󱆪'
    'nf-md-phone_classic'                            = '󰘂'
    'nf-md-phone_classic_off'                        = '󱉹'
    'nf-md-phone_clock'                              = '󱧛'
    'nf-md-phone_dial'                               = '󱕙'
    'nf-md-phone_dial_outline'                       = '󱕚'
    'nf-md-phone_forward'                            = '󰏴'
    'nf-md-phone_forward_outline'                    = '󱆑'
    'nf-md-phone_hangup'                             = '󰏵'
    'nf-md-phone_hangup_outline'                     = '󱆒'
    'nf-md-phone_in_talk'                            = '󰏶'
    'nf-md-phone_in_talk_outline'                    = '󱆂'
    'nf-md-phone_incoming'                           = '󰏷'
    'nf-md-phone_incoming_outline'                   = '󱆓'
    'nf-md-phone_lock'                               = '󰏸'
    'nf-md-phone_lock_outline'                       = '󱆔'
    'nf-md-phone_log'                                = '󰏹'
    'nf-md-phone_log_outline'                        = '󱆕'
    'nf-md-phone_message'                            = '󱆖'
    'nf-md-phone_message_outline'                    = '󱆗'
    'nf-md-phone_minus'                              = '󰙘'
    'nf-md-phone_minus_outline'                      = '󱆘'
    'nf-md-phone_missed'                             = '󰏺'
    'nf-md-phone_missed_outline'                     = '󱆥'
    'nf-md-phone_off'                                = '󰷯'
    'nf-md-phone_off_outline'                        = '󱆦'
    'nf-md-phone_outgoing'                           = '󰏻'
    'nf-md-phone_outgoing_outline'                   = '󱆙'
    'nf-md-phone_outline'                            = '󰷰'
    'nf-md-phone_paused'                             = '󰏼'
    'nf-md-phone_paused_outline'                     = '󱆚'
    'nf-md-phone_plus'                               = '󰙙'
    'nf-md-phone_plus_outline'                       = '󱆛'
    'nf-md-phone_refresh'                            = '󱦓'
    'nf-md-phone_refresh_outline'                    = '󱦔'
    'nf-md-phone_remove'                             = '󱔯'
    'nf-md-phone_remove_outline'                     = '󱔰'
    'nf-md-phone_return'                             = '󰠯'
    'nf-md-phone_return_outline'                     = '󱆜'
    'nf-md-phone_ring'                               = '󱆫'
    'nf-md-phone_ring_outline'                       = '󱆬'
    'nf-md-phone_rotate_landscape'                   = '󰢅'
    'nf-md-phone_rotate_portrait'                    = '󰢆'
    'nf-md-phone_settings'                           = '󰏽'
    'nf-md-phone_settings_outline'                   = '󱆝'
    'nf-md-phone_sync'                               = '󱦕'
    'nf-md-phone_sync_outline'                       = '󱦖'
    'nf-md-phone_voip'                               = '󰏾'
    'nf-md-pi'                                       = '󰏿'
    'nf-md-pi_box'                                   = '󰐀'
    'nf-md-pi_hole'                                  = '󰷱'
    'nf-md-piano'                                    = '󰙽'
    'nf-md-piano_off'                                = '󰚘'
    'nf-md-pickaxe'                                  = '󰢷'
    'nf-md-picture_in_picture_bottom_right'          = '󰹗'
    'nf-md-picture_in_picture_bottom_right_outline'  = '󰹘'
    'nf-md-picture_in_picture_top_right'             = '󰹙'
    'nf-md-picture_in_picture_top_right_outline'     = '󰹚'
    'nf-md-pier'                                     = '󰢇'
    'nf-md-pier_crane'                               = '󰢈'
    'nf-md-pig'                                      = '󰐁'
    'nf-md-pig_variant'                              = '󱀆'
    'nf-md-pig_variant_outline'                      = '󱙸'
    'nf-md-piggy_bank'                               = '󱀇'
    'nf-md-piggy_bank_outline'                       = '󱙹'
    'nf-md-pill'                                     = '󰐂'
    'nf-md-pill_off'                                 = '󱩜'
    'nf-md-pillar'                                   = '󰜂'
    'nf-md-pin'                                      = '󰐃'
    'nf-md-pin_off'                                  = '󰐄'
    'nf-md-pin_off_outline'                          = '󰤰'
    'nf-md-pin_outline'                              = '󰤱'
    'nf-md-pine_tree'                                = '󰐅'
    'nf-md-pine_tree_box'                            = '󰐆'
    'nf-md-pine_tree_fire'                           = '󱐚'
    'nf-md-pinterest'                                = '󰐇'
    'nf-md-pinwheel'                                 = '󰫕'
    'nf-md-pinwheel_outline'                         = '󰫖'
    'nf-md-pipe'                                     = '󰟥'
    'nf-md-pipe_disconnected'                        = '󰟦'
    'nf-md-pipe_leak'                                = '󰢉'
    'nf-md-pipe_valve'                               = '󱡍'
    'nf-md-pipe_wrench'                              = '󱍔'
    'nf-md-pirate'                                   = '󰨈'
    'nf-md-pistol'                                   = '󰜃'
    'nf-md-piston'                                   = '󰢊'
    'nf-md-pitchfork'                                = '󱕓'
    'nf-md-pizza'                                    = '󰐉'
    'nf-md-play'                                     = '󰐊'
    'nf-md-play_box'                                 = '󱉺'
    'nf-md-play_box_lock'                            = '󱨖'
    'nf-md-play_box_lock_open'                       = '󱨗'
    'nf-md-play_box_lock_open_outline'               = '󱨘'
    'nf-md-play_box_lock_outline'                    = '󱨙'
    'nf-md-play_box_multiple'                        = '󰴙'
    'nf-md-play_box_multiple_outline'                = '󱏦'
    'nf-md-play_box_outline'                         = '󰐋'
    'nf-md-play_circle'                              = '󰐌'
    'nf-md-play_circle_outline'                      = '󰐍'
    'nf-md-play_network'                             = '󰢋'
    'nf-md-play_network_outline'                     = '󰲷'
    'nf-md-play_outline'                             = '󰼛'
    'nf-md-play_pause'                               = '󰐎'
    'nf-md-play_protected_content'                   = '󰐏'
    'nf-md-play_speed'                               = '󰣿'
    'nf-md-playlist_check'                           = '󰗇'
    'nf-md-playlist_edit'                            = '󰤀'
    'nf-md-playlist_minus'                           = '󰐐'
    'nf-md-playlist_music'                           = '󰲸'
    'nf-md-playlist_music_outline'                   = '󰲹'
    'nf-md-playlist_play'                            = '󰐑'
    'nf-md-playlist_plus'                            = '󰐒'
    'nf-md-playlist_remove'                          = '󰐓'
    'nf-md-playlist_star'                            = '󰷲'
    'nf-md-plex'                                     = '󰚺'
    'nf-md-pliers'                                   = '󱦤'
    'nf-md-plus'                                     = '󰐕'
    'nf-md-plus_box'                                 = '󰐖'
    'nf-md-plus_box_multiple'                        = '󰌴'
    'nf-md-plus_box_multiple_outline'                = '󱅃'
    'nf-md-plus_box_outline'                         = '󰜄'
    'nf-md-plus_circle'                              = '󰐗'
    'nf-md-plus_circle_multiple'                     = '󰍌'
    'nf-md-plus_circle_multiple_outline'             = '󰐘'
    'nf-md-plus_circle_outline'                      = '󰐙'
    'nf-md-plus_lock'                                = '󱩝'
    'nf-md-plus_lock_open'                           = '󱩞'
    'nf-md-plus_minus'                               = '󰦒'
    'nf-md-plus_minus_box'                           = '󰦓'
    'nf-md-plus_minus_variant'                       = '󱓉'
    'nf-md-plus_network'                             = '󰐚'
    'nf-md-plus_network_outline'                     = '󰲺'
    'nf-md-plus_outline'                             = '󰜅'
    'nf-md-plus_thick'                               = '󱇬'
    'nf-md-podcast'                                  = '󰦔'
    'nf-md-podium'                                   = '󰴥'
    'nf-md-podium_bronze'                            = '󰴦'
    'nf-md-podium_gold'                              = '󰴧'
    'nf-md-podium_silver'                            = '󰴨'
    'nf-md-point_of_sale'                            = '󰶒'
    'nf-md-pokeball'                                 = '󰐝'
    'nf-md-pokemon_go'                               = '󰨉'
    'nf-md-poker_chip'                               = '󰠰'
    'nf-md-polaroid'                                 = '󰐞'
    'nf-md-police_badge'                             = '󱅧'
    'nf-md-police_badge_outline'                     = '󱅨'
    'nf-md-police_station'                           = '󱠹'
    'nf-md-poll'                                     = '󰐟'
    'nf-md-polo'                                     = '󱓃'
    'nf-md-polymer'                                  = '󰐡'
    'nf-md-pool'                                     = '󰘆'
    'nf-md-pool_thermometer'                         = '󱩟'
    'nf-md-popcorn'                                  = '󰐢'
    'nf-md-post'                                     = '󱀈'
    'nf-md-post_lamp'                                = '󱩠'
    'nf-md-post_outline'                             = '󱀉'
    'nf-md-postage_stamp'                            = '󰲻'
    'nf-md-pot'                                      = '󰋥'
    'nf-md-pot_mix'                                  = '󰙛'
    'nf-md-pot_mix_outline'                          = '󰙷'
    'nf-md-pot_outline'                              = '󰋿'
    'nf-md-pot_steam'                                = '󰙚'
    'nf-md-pot_steam_outline'                        = '󰌦'
    'nf-md-pound'                                    = '󰐣'
    'nf-md-pound_box'                                = '󰐤'
    'nf-md-pound_box_outline'                        = '󱅿'
    'nf-md-power'                                    = '󰐥'
    'nf-md-power_cycle'                              = '󰤁'
    'nf-md-power_off'                                = '󰤂'
    'nf-md-power_on'                                 = '󰤃'
    'nf-md-power_plug'                               = '󰚥'
    'nf-md-power_plug_off'                           = '󰚦'
    'nf-md-power_plug_off_outline'                   = '󱐤'
    'nf-md-power_plug_outline'                       = '󱐥'
    'nf-md-power_settings'                           = '󰐦'
    'nf-md-power_sleep'                              = '󰤄'
    'nf-md-power_socket'                             = '󰐧'
    'nf-md-power_socket_au'                          = '󰤅'
    'nf-md-power_socket_ch'                          = '󰾳'
    'nf-md-power_socket_de'                          = '󱄇'
    'nf-md-power_socket_eu'                          = '󰟧'
    'nf-md-power_socket_fr'                          = '󱄈'
    'nf-md-power_socket_it'                          = '󱓿'
    'nf-md-power_socket_jp'                          = '󱄉'
    'nf-md-power_socket_uk'                          = '󰟨'
    'nf-md-power_socket_us'                          = '󰟩'
    'nf-md-power_standby'                            = '󰤆'
    'nf-md-powershell'                               = '󰨊'
    'nf-md-prescription'                             = '󰜆'
    'nf-md-presentation'                             = '󰐨'
    'nf-md-presentation_play'                        = '󰐩'
    'nf-md-pretzel'                                  = '󱕢'
    'nf-md-printer'                                  = '󰐪'
    'nf-md-printer_3d'                               = '󰐫'
    'nf-md-printer_3d_nozzle'                        = '󰹛'
    'nf-md-printer_3d_nozzle_alert'                  = '󱇀'
    'nf-md-printer_3d_nozzle_alert_outline'          = '󱇁'
    'nf-md-printer_3d_nozzle_heat'                   = '󱢸'
    'nf-md-printer_3d_nozzle_heat_outline'           = '󱢹'
    'nf-md-printer_3d_nozzle_outline'                = '󰹜'
    'nf-md-printer_alert'                            = '󰐬'
    'nf-md-printer_check'                            = '󱅆'
    'nf-md-printer_eye'                              = '󱑘'
    'nf-md-printer_off'                              = '󰹝'
    'nf-md-printer_off_outline'                      = '󱞅'
    'nf-md-printer_outline'                          = '󱞆'
    'nf-md-printer_pos'                              = '󱁗'
    'nf-md-printer_search'                           = '󱑗'
    'nf-md-printer_settings'                         = '󰜇'
    'nf-md-printer_wireless'                         = '󰨋'
    'nf-md-priority_high'                            = '󰘃'
    'nf-md-priority_low'                             = '󰘄'
    'nf-md-professional_hexagon'                     = '󰐭'
    'nf-md-progress_alert'                           = '󰲼'
    'nf-md-progress_check'                           = '󰦕'
    'nf-md-progress_clock'                           = '󰦖'
    'nf-md-progress_close'                           = '󱄊'
    'nf-md-progress_download'                        = '󰦗'
    'nf-md-progress_pencil'                          = '󱞇'
    'nf-md-progress_question'                        = '󱔢'
    'nf-md-progress_star'                            = '󱞈'
    'nf-md-progress_upload'                          = '󰦘'
    'nf-md-progress_wrench'                          = '󰲽'
    'nf-md-projector'                                = '󰐮'
    'nf-md-projector_off'                            = '󱨣'
    'nf-md-projector_screen'                         = '󰐯'
    'nf-md-projector_screen_off'                     = '󱠍'
    'nf-md-projector_screen_off_outline'             = '󱠎'
    'nf-md-projector_screen_outline'                 = '󱜤'
    'nf-md-projector_screen_variant'                 = '󱠏'
    'nf-md-projector_screen_variant_off'             = '󱠐'
    'nf-md-projector_screen_variant_off_outline'     = '󱠑'
    'nf-md-projector_screen_variant_outline'         = '󱠒'
    'nf-md-propane_tank'                             = '󱍗'
    'nf-md-propane_tank_outline'                     = '󱍘'
    'nf-md-protocol'                                 = '󰿘'
    'nf-md-publish'                                  = '󰚧'
    'nf-md-publish_off'                              = '󱥅'
    'nf-md-pulse'                                    = '󰐰'
    'nf-md-pump'                                     = '󱐂'
    'nf-md-pumpkin'                                  = '󰮿'
    'nf-md-purse'                                    = '󰼜'
    'nf-md-purse_outline'                            = '󰼝'
    'nf-md-puzzle'                                   = '󰐱'
    'nf-md-puzzle_check'                             = '󱐦'
    'nf-md-puzzle_check_outline'                     = '󱐧'
    'nf-md-puzzle_edit'                              = '󱓓'
    'nf-md-puzzle_edit_outline'                      = '󱓙'
    'nf-md-puzzle_heart'                             = '󱓔'
    'nf-md-puzzle_heart_outline'                     = '󱓚'
    'nf-md-puzzle_minus'                             = '󱓑'
    'nf-md-puzzle_minus_outline'                     = '󱓗'
    'nf-md-puzzle_outline'                           = '󰩦'
    'nf-md-puzzle_plus'                              = '󱓐'
    'nf-md-puzzle_plus_outline'                      = '󱓖'
    'nf-md-puzzle_remove'                            = '󱓒'
    'nf-md-puzzle_remove_outline'                    = '󱓘'
    'nf-md-puzzle_star'                              = '󱓕'
    'nf-md-puzzle_star_outline'                      = '󱓛'
    'nf-md-pyramid'                                  = '󱥒'
    'nf-md-pyramid_off'                              = '󱥓'
    'nf-md-qi'                                       = '󰦙'
    'nf-md-qqchat'                                   = '󰘅'
    'nf-md-qrcode'                                   = '󰐲'
    'nf-md-qrcode_edit'                              = '󰢸'
    'nf-md-qrcode_minus'                             = '󱆌'
    'nf-md-qrcode_plus'                              = '󱆋'
    'nf-md-qrcode_remove'                            = '󱆍'
    'nf-md-qrcode_scan'                              = '󰐳'
    'nf-md-quadcopter'                               = '󰐴'
    'nf-md-quality_high'                             = '󰐵'
    'nf-md-quality_low'                              = '󰨌'
    'nf-md-quality_medium'                           = '󰨍'
    'nf-md-quora'                                    = '󰴩'
    'nf-md-rabbit'                                   = '󰤇'
    'nf-md-rabbit_variant'                           = '󱩡'
    'nf-md-rabbit_variant_outline'                   = '󱩢'
    'nf-md-racing_helmet'                            = '󰶓'
    'nf-md-racquetball'                              = '󰶔'
    'nf-md-radar'                                    = '󰐷'
    'nf-md-radiator'                                 = '󰐸'
    'nf-md-radiator_disabled'                        = '󰫗'
    'nf-md-radiator_off'                             = '󰫘'
    'nf-md-radio'                                    = '󰐹'
    'nf-md-radio_am'                                 = '󰲾'
    'nf-md-radio_fm'                                 = '󰲿'
    'nf-md-radio_handheld'                           = '󰐺'
    'nf-md-radio_off'                                = '󱈜'
    'nf-md-radio_tower'                              = '󰐻'
    'nf-md-radioactive'                              = '󰐼'
    'nf-md-radioactive_circle'                       = '󱡝'
    'nf-md-radioactive_circle_outline'               = '󱡞'
    'nf-md-radioactive_off'                          = '󰻁'
    'nf-md-radiobox_marked'                          = '󰐾'
    'nf-md-radiology_box'                            = '󱓅'
    'nf-md-radiology_box_outline'                    = '󱓆'
    'nf-md-radius'                                   = '󰳀'
    'nf-md-radius_outline'                           = '󰳁'
    'nf-md-railroad_light'                           = '󰼞'
    'nf-md-rake'                                     = '󱕄'
    'nf-md-raspberry_pi'                             = '󰐿'
    'nf-md-raw'                                      = '󱨏'
    'nf-md-raw_off'                                  = '󱨐'
    'nf-md-ray_end'                                  = '󰑀'
    'nf-md-ray_end_arrow'                            = '󰑁'
    'nf-md-ray_start'                                = '󰑂'
    'nf-md-ray_start_arrow'                          = '󰑃'
    'nf-md-ray_start_end'                            = '󰑄'
    'nf-md-ray_start_vertex_end'                     = '󱗘'
    'nf-md-ray_vertex'                               = '󰑅'
    'nf-md-razor_double_edge'                        = '󱦗'
    'nf-md-razor_single_edge'                        = '󱦘'
    'nf-md-react'                                    = '󰜈'
    'nf-md-read'                                     = '󰑇'
    'nf-md-receipt'                                  = '󰑉'
    'nf-md-receipt_outline'                          = '󱧜'
    'nf-md-receipt_text_check'                       = '󱩣'
    'nf-md-receipt_text_check_outline'               = '󱩤'
    'nf-md-receipt_text_minus'                       = '󱩥'
    'nf-md-receipt_text_minus_outline'               = '󱩦'
    'nf-md-receipt_text_plus'                        = '󱩧'
    'nf-md-receipt_text_plus_outline'                = '󱩨'
    'nf-md-receipt_text_remove'                      = '󱩩'
    'nf-md-receipt_text_remove_outline'              = '󱩪'
    'nf-md-record'                                   = '󰑊'
    'nf-md-record_circle'                            = '󰻂'
    'nf-md-record_circle_outline'                    = '󰻃'
    'nf-md-record_player'                            = '󰦚'
    'nf-md-record_rec'                               = '󰑋'
    'nf-md-rectangle'                                = '󰹞'
    'nf-md-rectangle_outline'                        = '󰹟'
    'nf-md-recycle'                                  = '󰑌'
    'nf-md-recycle_variant'                          = '󱎝'
    'nf-md-reddit'                                   = '󰑍'
    'nf-md-redhat'                                   = '󱄛'
    'nf-md-redo'                                     = '󰑎'
    'nf-md-redo_variant'                             = '󰑏'
    'nf-md-reflect_horizontal'                       = '󰨎'
    'nf-md-reflect_vertical'                         = '󰨏'
    'nf-md-refresh'                                  = '󰑐'
    'nf-md-refresh_auto'                             = '󱣲'
    'nf-md-refresh_circle'                           = '󱍷'
    'nf-md-regex'                                    = '󰑑'
    'nf-md-registered_trademark'                     = '󰩧'
    'nf-md-reiterate'                                = '󱖈'
    'nf-md-relation_many_to_many'                    = '󱒖'
    'nf-md-relation_many_to_one'                     = '󱒗'
    'nf-md-relation_many_to_one_or_many'             = '󱒘'
    'nf-md-relation_many_to_only_one'                = '󱒙'
    'nf-md-relation_many_to_zero_or_many'            = '󱒚'
    'nf-md-relation_many_to_zero_or_one'             = '󱒛'
    'nf-md-relation_one_or_many_to_many'             = '󱒜'
    'nf-md-relation_one_or_many_to_one'              = '󱒝'
    'nf-md-relation_one_or_many_to_one_or_many'      = '󱒞'
    'nf-md-relation_one_or_many_to_only_one'         = '󱒟'
    'nf-md-relation_one_or_many_to_zero_or_many'     = '󱒠'
    'nf-md-relation_one_or_many_to_zero_or_one'      = '󱒡'
    'nf-md-relation_one_to_many'                     = '󱒢'
    'nf-md-relation_one_to_one'                      = '󱒣'
    'nf-md-relation_one_to_one_or_many'              = '󱒤'
    'nf-md-relation_one_to_only_one'                 = '󱒥'
    'nf-md-relation_one_to_zero_or_many'             = '󱒦'
    'nf-md-relation_one_to_zero_or_one'              = '󱒧'
    'nf-md-relation_only_one_to_many'                = '󱒨'
    'nf-md-relation_only_one_to_one'                 = '󱒩'
    'nf-md-relation_only_one_to_one_or_many'         = '󱒪'
    'nf-md-relation_only_one_to_only_one'            = '󱒫'
    'nf-md-relation_only_one_to_zero_or_many'        = '󱒬'
    'nf-md-relation_only_one_to_zero_or_one'         = '󱒭'
    'nf-md-relation_zero_or_many_to_many'            = '󱒮'
    'nf-md-relation_zero_or_many_to_one'             = '󱒯'
    'nf-md-relation_zero_or_many_to_one_or_many'     = '󱒰'
    'nf-md-relation_zero_or_many_to_only_one'        = '󱒱'
    'nf-md-relation_zero_or_many_to_zero_or_many'    = '󱒲'
    'nf-md-relation_zero_or_many_to_zero_or_one'     = '󱒳'
    'nf-md-relation_zero_or_one_to_many'             = '󱒴'
    'nf-md-relation_zero_or_one_to_one'              = '󱒵'
    'nf-md-relation_zero_or_one_to_one_or_many'      = '󱒶'
    'nf-md-relation_zero_or_one_to_only_one'         = '󱒷'
    'nf-md-relation_zero_or_one_to_zero_or_many'     = '󱒸'
    'nf-md-relation_zero_or_one_to_zero_or_one'      = '󱒹'
    'nf-md-relative_scale'                           = '󰑒'
    'nf-md-reload'                                   = '󰑓'
    'nf-md-reload_alert'                             = '󱄋'
    'nf-md-reminder'                                 = '󰢌'
    'nf-md-remote'                                   = '󰑔'
    'nf-md-remote_desktop'                           = '󰢹'
    'nf-md-remote_off'                               = '󰻄'
    'nf-md-remote_tv'                                = '󰻅'
    'nf-md-remote_tv_off'                            = '󰻆'
    'nf-md-rename_box'                               = '󰑕'
    'nf-md-reorder_horizontal'                       = '󰚈'
    'nf-md-reorder_vertical'                         = '󰚉'
    'nf-md-repeat'                                   = '󰑖'
    'nf-md-repeat_off'                               = '󰑗'
    'nf-md-repeat_once'                              = '󰑘'
    'nf-md-repeat_variant'                           = '󰕇'
    'nf-md-replay'                                   = '󰑙'
    'nf-md-reply'                                    = '󰑚'
    'nf-md-reply_all'                                = '󰑛'
    'nf-md-reply_all_outline'                        = '󰼟'
    'nf-md-reply_circle'                             = '󱆮'
    'nf-md-reply_outline'                            = '󰼠'
    'nf-md-reproduction'                             = '󰑜'
    'nf-md-resistor'                                 = '󰭄'
    'nf-md-resistor_nodes'                           = '󰭅'
    'nf-md-resize'                                   = '󰩨'
    'nf-md-resize_bottom_right'                      = '󰑝'
    'nf-md-responsive'                               = '󰑞'
    'nf-md-restart'                                  = '󰜉'
    'nf-md-restart_alert'                            = '󱄌'
    'nf-md-restart_off'                              = '󰶕'
    'nf-md-restore'                                  = '󰦛'
    'nf-md-restore_alert'                            = '󱄍'
    'nf-md-rewind'                                   = '󰑟'
    'nf-md-rewind_10'                                = '󰴪'
    'nf-md-rewind_15'                                = '󱥆'
    'nf-md-rewind_30'                                = '󰶖'
    'nf-md-rewind_5'                                 = '󱇹'
    'nf-md-rewind_60'                                = '󱘌'
    'nf-md-rewind_outline'                           = '󰜊'
    'nf-md-rhombus'                                  = '󰜋'
    'nf-md-rhombus_medium'                           = '󰨐'
    'nf-md-rhombus_medium_outline'                   = '󱓜'
    'nf-md-rhombus_outline'                          = '󰜌'
    'nf-md-rhombus_split'                            = '󰨑'
    'nf-md-rhombus_split_outline'                    = '󱓝'
    'nf-md-ribbon'                                   = '󰑠'
    'nf-md-rice'                                     = '󰟪'
    'nf-md-rickshaw'                                 = '󱖻'
    'nf-md-rickshaw_electric'                        = '󱖼'
    'nf-md-ring'                                     = '󰟫'
    'nf-md-rivet'                                    = '󰹠'
    'nf-md-road'                                     = '󰑡'
    'nf-md-road_variant'                             = '󰑢'
    'nf-md-robber'                                   = '󱁘'
    'nf-md-robot'                                    = '󰚩'
    'nf-md-robot_angry'                              = '󱚝'
    'nf-md-robot_angry_outline'                      = '󱚞'
    'nf-md-robot_confused'                           = '󱚟'
    'nf-md-robot_confused_outline'                   = '󱚠'
    'nf-md-robot_dead'                               = '󱚡'
    'nf-md-robot_dead_outline'                       = '󱚢'
    'nf-md-robot_excited'                            = '󱚣'
    'nf-md-robot_excited_outline'                    = '󱚤'
    'nf-md-robot_happy'                              = '󱜙'
    'nf-md-robot_happy_outline'                      = '󱜚'
    'nf-md-robot_industrial'                         = '󰭆'
    'nf-md-robot_industrial_outline'                 = '󱨚'
    'nf-md-robot_love'                               = '󱚥'
    'nf-md-robot_love_outline'                       = '󱚦'
    'nf-md-robot_mower'                              = '󱇷'
    'nf-md-robot_mower_outline'                      = '󱇳'
    'nf-md-robot_off'                                = '󱚧'
    'nf-md-robot_off_outline'                        = '󱙻'
    'nf-md-robot_outline'                            = '󱙺'
    'nf-md-robot_vacuum'                             = '󰜍'
    'nf-md-robot_vacuum_variant'                     = '󰤈'
    'nf-md-rocket'                                   = '󰑣'
    'nf-md-rocket_launch'                            = '󱓞'
    'nf-md-rocket_launch_outline'                    = '󱓟'
    'nf-md-rocket_outline'                           = '󱎯'
    'nf-md-rodent'                                   = '󱌧'
    'nf-md-roller_shade'                             = '󱩫'
    'nf-md-roller_shade_closed'                      = '󱩬'
    'nf-md-roller_skate'                             = '󰴫'
    'nf-md-roller_skate_off'                         = '󰅅'
    'nf-md-rollerblade'                              = '󰴬'
    'nf-md-rollerblade_off'                          = '󰀮'
    'nf-md-rollupjs'                                 = '󰯀'
    'nf-md-rolodex'                                  = '󱪹'
    'nf-md-rolodex_outline'                          = '󱪺'
    'nf-md-roman_numeral_2'                          = '󱂉'
    'nf-md-roman_numeral_3'                          = '󱂊'
    'nf-md-roman_numeral_4'                          = '󱂋'
    'nf-md-roman_numeral_6'                          = '󱂍'
    'nf-md-roman_numeral_7'                          = '󱂎'
    'nf-md-roman_numeral_8'                          = '󱂏'
    'nf-md-roman_numeral_9'                          = '󱂐'
    'nf-md-room_service'                             = '󰢍'
    'nf-md-room_service_outline'                     = '󰶗'
    'nf-md-rotate_360'                               = '󱦙'
    'nf-md-rotate_3d'                                = '󰻇'
    'nf-md-rotate_3d_variant'                        = '󰑤'
    'nf-md-rotate_left'                              = '󰑥'
    'nf-md-rotate_left_variant'                      = '󰑦'
    'nf-md-rotate_orbit'                             = '󰶘'
    'nf-md-rotate_right'                             = '󰑧'
    'nf-md-rotate_right_variant'                     = '󰑨'
    'nf-md-rounded_corner'                           = '󰘇'
    'nf-md-router'                                   = '󱇢'
    'nf-md-router_network'                           = '󱂇'
    'nf-md-router_wireless'                          = '󰑩'
    'nf-md-router_wireless_off'                      = '󱖣'
    'nf-md-router_wireless_settings'                 = '󰩩'
    'nf-md-routes'                                   = '󰑪'
    'nf-md-routes_clock'                             = '󱁙'
    'nf-md-rowing'                                   = '󰘈'
    'nf-md-rss'                                      = '󰑫'
    'nf-md-rss_box'                                  = '󰑬'
    'nf-md-rss_off'                                  = '󰼡'
    'nf-md-rug'                                      = '󱑵'
    'nf-md-rugby'                                    = '󰶙'
    'nf-md-ruler'                                    = '󰑭'
    'nf-md-ruler_square'                             = '󰳂'
    'nf-md-ruler_square_compass'                     = '󰺾'
    'nf-md-run'                                      = '󰜎'
    'nf-md-run_fast'                                 = '󰑮'
    'nf-md-rv_truck'                                 = '󱇔'
    'nf-md-sack'                                     = '󰴮'
    'nf-md-sack_percent'                             = '󰴯'
    'nf-md-safe'                                     = '󰩪'
    'nf-md-safe_square'                              = '󱉼'
    'nf-md-safe_square_outline'                      = '󱉽'
    'nf-md-safety_goggles'                           = '󰴰'
    'nf-md-sail_boat'                                = '󰻈'
    'nf-md-sail_boat_sink'                           = '󱫯'
    'nf-md-sale'                                     = '󰑯'
    'nf-md-sale_outline'                             = '󱨆'
    'nf-md-salesforce'                               = '󰢎'
    'nf-md-sass'                                     = '󰟬'
    'nf-md-satellite'                                = '󰑰'
    'nf-md-satellite_uplink'                         = '󰤉'
    'nf-md-satellite_variant'                        = '󰑱'
    'nf-md-sausage'                                  = '󰢺'
    'nf-md-sausage_off'                              = '󱞉'
    'nf-md-saw_blade'                                = '󰹡'
    'nf-md-sawtooth_wave'                            = '󱑺'
    'nf-md-saxophone'                                = '󰘉'
    'nf-md-scale'                                    = '󰑲'
    'nf-md-scale_balance'                            = '󰗑'
    'nf-md-scale_bathroom'                           = '󰑳'
    'nf-md-scale_off'                                = '󱁚'
    'nf-md-scale_unbalanced'                         = '󱦸'
    'nf-md-scan_helper'                              = '󱏘'
    'nf-md-scanner'                                  = '󰚫'
    'nf-md-scanner_off'                              = '󰤊'
    'nf-md-scatter_plot'                             = '󰻉'
    'nf-md-scatter_plot_outline'                     = '󰻊'
    'nf-md-scent'                                    = '󱥘'
    'nf-md-scent_off'                                = '󱥙'
    'nf-md-school'                                   = '󰑴'
    'nf-md-school_outline'                           = '󱆀'
    'nf-md-scissors_cutting'                         = '󰩫'
    'nf-md-scooter'                                  = '󱖽'
    'nf-md-scooter_electric'                         = '󱖾'
    'nf-md-scoreboard'                               = '󱉾'
    'nf-md-scoreboard_outline'                       = '󱉿'
    'nf-md-screen_rotation'                          = '󰑵'
    'nf-md-screen_rotation_lock'                     = '󰑸'
    'nf-md-screw_flat_top'                           = '󰷳'
    'nf-md-screw_lag'                                = '󰷴'
    'nf-md-screw_machine_flat_top'                   = '󰷵'
    'nf-md-screw_machine_round_top'                  = '󰷶'
    'nf-md-screw_round_top'                          = '󰷷'
    'nf-md-screwdriver'                              = '󰑶'
    'nf-md-script'                                   = '󰯁'
    'nf-md-script_outline'                           = '󰑷'
    'nf-md-script_text'                              = '󰯂'
    'nf-md-script_text_key'                          = '󱜥'
    'nf-md-script_text_key_outline'                  = '󱜦'
    'nf-md-script_text_outline'                      = '󰯃'
    'nf-md-script_text_play'                         = '󱜧'
    'nf-md-script_text_play_outline'                 = '󱜨'
    'nf-md-sd'                                       = '󰑹'
    'nf-md-seal'                                     = '󰑺'
    'nf-md-seal_variant'                             = '󰿙'
    'nf-md-search_web'                               = '󰜏'
    'nf-md-seat'                                     = '󰳃'
    'nf-md-seat_flat'                                = '󰑻'
    'nf-md-seat_flat_angled'                         = '󰑼'
    'nf-md-seat_individual_suite'                    = '󰑽'
    'nf-md-seat_legroom_extra'                       = '󰑾'
    'nf-md-seat_legroom_normal'                      = '󰑿'
    'nf-md-seat_legroom_reduced'                     = '󰒀'
    'nf-md-seat_outline'                             = '󰳄'
    'nf-md-seat_passenger'                           = '󱉉'
    'nf-md-seat_recline_extra'                       = '󰒁'
    'nf-md-seat_recline_normal'                      = '󰒂'
    'nf-md-seatbelt'                                 = '󰳅'
    'nf-md-security'                                 = '󰒃'
    'nf-md-security_network'                         = '󰒄'
    'nf-md-seed'                                     = '󰹢'
    'nf-md-seed_off'                                 = '󱏽'
    'nf-md-seed_off_outline'                         = '󱏾'
    'nf-md-seed_outline'                             = '󰹣'
    'nf-md-seed_plus'                                = '󱩭'
    'nf-md-seed_plus_outline'                        = '󱩮'
    'nf-md-seesaw'                                   = '󱖤'
    'nf-md-segment'                                  = '󰻋'
    'nf-md-select'                                   = '󰒅'
    'nf-md-select_all'                               = '󰒆'
    'nf-md-select_color'                             = '󰴱'
    'nf-md-select_compare'                           = '󰫙'
    'nf-md-select_drag'                              = '󰩬'
    'nf-md-select_group'                             = '󰾂'
    'nf-md-select_inverse'                           = '󰒇'
    'nf-md-select_marker'                            = '󱊀'
    'nf-md-select_multiple'                          = '󱊁'
    'nf-md-select_multiple_marker'                   = '󱊂'
    'nf-md-select_off'                               = '󰒈'
    'nf-md-select_place'                             = '󰿚'
    'nf-md-select_remove'                            = '󱟁'
    'nf-md-select_search'                            = '󱈄'
    'nf-md-selection'                                = '󰒉'
    'nf-md-selection_drag'                           = '󰩭'
    'nf-md-selection_ellipse'                        = '󰴲'
    'nf-md-selection_ellipse_arrow_inside'           = '󰼢'
    'nf-md-selection_ellipse_remove'                 = '󱟂'
    'nf-md-selection_marker'                         = '󱊃'
    'nf-md-selection_multiple'                       = '󱊅'
    'nf-md-selection_multiple_marker'                = '󱊄'
    'nf-md-selection_off'                            = '󰝷'
    'nf-md-selection_remove'                         = '󱟃'
    'nf-md-selection_search'                         = '󱈅'
    'nf-md-semantic_web'                             = '󱌖'
    'nf-md-send'                                     = '󰒊'
    'nf-md-send_check'                               = '󱅡'
    'nf-md-send_check_outline'                       = '󱅢'
    'nf-md-send_circle'                              = '󰷸'
    'nf-md-send_circle_outline'                      = '󰷹'
    'nf-md-send_clock'                               = '󱅣'
    'nf-md-send_clock_outline'                       = '󱅤'
    'nf-md-send_lock'                                = '󰟭'
    'nf-md-send_lock_outline'                        = '󱅦'
    'nf-md-send_outline'                             = '󱅥'
    'nf-md-serial_port'                              = '󰙜'
    'nf-md-server'                                   = '󰒋'
    'nf-md-server_minus'                             = '󰒌'
    'nf-md-server_network'                           = '󰒍'
    'nf-md-server_network_off'                       = '󰒎'
    'nf-md-server_off'                               = '󰒏'
    'nf-md-server_plus'                              = '󰒐'
    'nf-md-server_remove'                            = '󰒑'
    'nf-md-server_security'                          = '󰒒'
    'nf-md-set_all'                                  = '󰝸'
    'nf-md-set_center'                               = '󰝹'
    'nf-md-set_center_right'                         = '󰝺'
    'nf-md-set_left'                                 = '󰝻'
    'nf-md-set_left_center'                          = '󰝼'
    'nf-md-set_left_right'                           = '󰝽'
    'nf-md-set_merge'                                = '󱓠'
    'nf-md-set_none'                                 = '󰝾'
    'nf-md-set_right'                                = '󰝿'
    'nf-md-set_split'                                = '󱓡'
    'nf-md-set_square'                               = '󱑝'
    'nf-md-set_top_box'                              = '󰦟'
    'nf-md-settings_helper'                          = '󰩮'
    'nf-md-shaker'                                   = '󱄎'
    'nf-md-shaker_outline'                           = '󱄏'
    'nf-md-shape'                                    = '󰠱'
    'nf-md-shape_circle_plus'                        = '󰙝'
    'nf-md-shape_outline'                            = '󰠲'
    'nf-md-shape_oval_plus'                          = '󱇺'
    'nf-md-shape_plus'                               = '󰒕'
    'nf-md-shape_polygon_plus'                       = '󰙞'
    'nf-md-shape_rectangle_plus'                     = '󰙟'
    'nf-md-shape_square_plus'                        = '󰙠'
    'nf-md-shape_square_rounded_plus'                = '󱓺'
    'nf-md-share'                                    = '󰒖'
    'nf-md-share_all'                                = '󱇴'
    'nf-md-share_all_outline'                        = '󱇵'
    'nf-md-share_circle'                             = '󱆭'
    'nf-md-share_off'                                = '󰼣'
    'nf-md-share_off_outline'                        = '󰼤'
    'nf-md-share_outline'                            = '󰤲'
    'nf-md-share_variant'                            = '󰒗'
    'nf-md-share_variant_outline'                    = '󱔔'
    'nf-md-shark'                                    = '󱢺'
    'nf-md-shark_fin'                                = '󱙳'
    'nf-md-shark_fin_outline'                        = '󱙴'
    'nf-md-shark_off'                                = '󱢻'
    'nf-md-sheep'                                    = '󰳆'
    'nf-md-shield'                                   = '󰒘'
    'nf-md-shield_account'                           = '󰢏'
    'nf-md-shield_account_outline'                   = '󰨒'
    'nf-md-shield_account_variant'                   = '󱖧'
    'nf-md-shield_account_variant_outline'           = '󱖨'
    'nf-md-shield_airplane'                          = '󰚻'
    'nf-md-shield_airplane_outline'                  = '󰳇'
    'nf-md-shield_alert'                             = '󰻌'
    'nf-md-shield_alert_outline'                     = '󰻍'
    'nf-md-shield_bug'                               = '󱏚'
    'nf-md-shield_bug_outline'                       = '󱏛'
    'nf-md-shield_car'                               = '󰾃'
    'nf-md-shield_check'                             = '󰕥'
    'nf-md-shield_check_outline'                     = '󰳈'
    'nf-md-shield_cross'                             = '󰳉'
    'nf-md-shield_cross_outline'                     = '󰳊'
    'nf-md-shield_crown'                             = '󱢼'
    'nf-md-shield_crown_outline'                     = '󱢽'
    'nf-md-shield_edit'                              = '󱆠'
    'nf-md-shield_edit_outline'                      = '󱆡'
    'nf-md-shield_half'                              = '󱍠'
    'nf-md-shield_half_full'                         = '󰞀'
    'nf-md-shield_home'                              = '󰚊'
    'nf-md-shield_home_outline'                      = '󰳋'
    'nf-md-shield_key'                               = '󰯄'
    'nf-md-shield_key_outline'                       = '󰯅'
    'nf-md-shield_link_variant'                      = '󰴳'
    'nf-md-shield_link_variant_outline'              = '󰴴'
    'nf-md-shield_lock'                              = '󰦝'
    'nf-md-shield_lock_open'                         = '󱦚'
    'nf-md-shield_lock_open_outline'                 = '󱦛'
    'nf-md-shield_lock_outline'                      = '󰳌'
    'nf-md-shield_moon'                              = '󱠨'
    'nf-md-shield_moon_outline'                      = '󱠩'
    'nf-md-shield_off'                               = '󰦞'
    'nf-md-shield_off_outline'                       = '󰦜'
    'nf-md-shield_outline'                           = '󰒙'
    'nf-md-shield_plus'                              = '󰫚'
    'nf-md-shield_plus_outline'                      = '󰫛'
    'nf-md-shield_refresh'                           = '󰂪'
    'nf-md-shield_refresh_outline'                   = '󰇠'
    'nf-md-shield_remove'                            = '󰫜'
    'nf-md-shield_remove_outline'                    = '󰫝'
    'nf-md-shield_search'                            = '󰶚'
    'nf-md-shield_star'                              = '󱄻'
    'nf-md-shield_star_outline'                      = '󱄼'
    'nf-md-shield_sun'                               = '󱁝'
    'nf-md-shield_sun_outline'                       = '󱁞'
    'nf-md-shield_sword'                             = '󱢾'
    'nf-md-shield_sword_outline'                     = '󱢿'
    'nf-md-shield_sync'                              = '󱆢'
    'nf-md-shield_sync_outline'                      = '󱆣'
    'nf-md-shimmer'                                  = '󱕅'
    'nf-md-ship_wheel'                               = '󰠳'
    'nf-md-shipping_pallet'                          = '󱡎'
    'nf-md-shoe_ballet'                              = '󱗊'
    'nf-md-shoe_cleat'                               = '󱗇'
    'nf-md-shoe_formal'                              = '󰭇'
    'nf-md-shoe_heel'                                = '󰭈'
    'nf-md-shoe_print'                               = '󰷺'
    'nf-md-shoe_sneaker'                             = '󱗈'
    'nf-md-shopping'                                 = '󰒚'
    'nf-md-shopping_music'                           = '󰒛'
    'nf-md-shopping_outline'                         = '󱇕'
    'nf-md-shopping_search'                          = '󰾄'
    'nf-md-shopping_search_outline'                  = '󱩯'
    'nf-md-shore'                                    = '󱓹'
    'nf-md-shovel'                                   = '󰜐'
    'nf-md-shovel_off'                               = '󰜑'
    'nf-md-shower'                                   = '󰦠'
    'nf-md-shower_head'                              = '󰦡'
    'nf-md-shredder'                                 = '󰒜'
    'nf-md-shuffle'                                  = '󰒝'
    'nf-md-shuffle_disabled'                         = '󰒞'
    'nf-md-shuffle_variant'                          = '󰒟'
    'nf-md-shuriken'                                 = '󱍿'
    'nf-md-sickle'                                   = '󱣀'
    'nf-md-sigma'                                    = '󰒠'
    'nf-md-sigma_lower'                              = '󰘫'
    'nf-md-sign_caution'                             = '󰒡'
    'nf-md-sign_direction'                           = '󰞁'
    'nf-md-sign_direction_minus'                     = '󱀀'
    'nf-md-sign_direction_plus'                      = '󰿜'
    'nf-md-sign_direction_remove'                    = '󰿝'
    'nf-md-sign_pole'                                = '󱓸'
    'nf-md-sign_real_estate'                         = '󱄘'
    'nf-md-sign_text'                                = '󰞂'
    'nf-md-signal'                                   = '󰒢'
    'nf-md-signal_2g'                                = '󰜒'
    'nf-md-signal_3g'                                = '󰜓'
    'nf-md-signal_4g'                                = '󰜔'
    'nf-md-signal_5g'                                = '󰩯'
    'nf-md-signal_cellular_1'                        = '󰢼'
    'nf-md-signal_cellular_2'                        = '󰢽'
    'nf-md-signal_cellular_3'                        = '󰢾'
    'nf-md-signal_cellular_outline'                  = '󰢿'
    'nf-md-signal_distance_variant'                  = '󰹤'
    'nf-md-signal_hspa'                              = '󰜕'
    'nf-md-signal_hspa_plus'                         = '󰜖'
    'nf-md-signal_off'                               = '󰞃'
    'nf-md-signal_variant'                           = '󰘊'
    'nf-md-signature'                                = '󰷻'
    'nf-md-signature_freehand'                       = '󰷼'
    'nf-md-signature_image'                          = '󰷽'
    'nf-md-signature_text'                           = '󰷾'
    'nf-md-silo'                                     = '󰭉'
    'nf-md-silverware'                               = '󰒣'
    'nf-md-silverware_clean'                         = '󰿞'
    'nf-md-silverware_fork'                          = '󰒤'
    'nf-md-silverware_fork_knife'                    = '󰩰'
    'nf-md-silverware_spoon'                         = '󰒥'
    'nf-md-silverware_variant'                       = '󰒦'
    'nf-md-sim'                                      = '󰒧'
    'nf-md-sim_alert'                                = '󰒨'
    'nf-md-sim_alert_outline'                        = '󱗓'
    'nf-md-sim_off'                                  = '󰒩'
    'nf-md-sim_off_outline'                          = '󱗔'
    'nf-md-sim_outline'                              = '󱗕'
    'nf-md-simple_icons'                             = '󱌝'
    'nf-md-sina_weibo'                               = '󰫟'
    'nf-md-sine_wave'                                = '󰥛'
    'nf-md-sitemap'                                  = '󰒪'
    'nf-md-sitemap_outline'                          = '󱦜'
    'nf-md-size_m'                                   = '󱎥'
    'nf-md-size_s'                                   = '󱎤'
    'nf-md-size_xl'                                  = '󱎧'
    'nf-md-size_xs'                                  = '󱎣'
    'nf-md-size_xxl'                                 = '󱎨'
    'nf-md-size_xxs'                                 = '󱎢'
    'nf-md-size_xxxl'                                = '󱎩'
    'nf-md-skate'                                    = '󰴵'
    'nf-md-skate_off'                                = '󰚙'
    'nf-md-skateboard'                               = '󱓂'
    'nf-md-skateboarding'                            = '󰔁'
    'nf-md-skew_less'                                = '󰴶'
    'nf-md-skew_more'                                = '󰴷'
    'nf-md-ski'                                      = '󱌄'
    'nf-md-ski_cross_country'                        = '󱌅'
    'nf-md-ski_water'                                = '󱌆'
    'nf-md-skip_backward'                            = '󰒫'
    'nf-md-skip_backward_outline'                    = '󰼥'
    'nf-md-skip_forward'                             = '󰒬'
    'nf-md-skip_forward_outline'                     = '󰼦'
    'nf-md-skip_next'                                = '󰒭'
    'nf-md-skip_next_circle'                         = '󰙡'
    'nf-md-skip_next_circle_outline'                 = '󰙢'
    'nf-md-skip_next_outline'                        = '󰼧'
    'nf-md-skip_previous'                            = '󰒮'
    'nf-md-skip_previous_circle'                     = '󰙣'
    'nf-md-skip_previous_circle_outline'             = '󰙤'
    'nf-md-skip_previous_outline'                    = '󰼨'
    'nf-md-skull'                                    = '󰚌'
    'nf-md-skull_crossbones'                         = '󰯆'
    'nf-md-skull_crossbones_outline'                 = '󰯇'
    'nf-md-skull_outline'                            = '󰯈'
    'nf-md-skull_scan'                               = '󱓇'
    'nf-md-skull_scan_outline'                       = '󱓈'
    'nf-md-skype'                                    = '󰒯'
    'nf-md-skype_business'                           = '󰒰'
    'nf-md-slack'                                    = '󰒱'
    'nf-md-slash_forward'                            = '󰿟'
    'nf-md-slash_forward_box'                        = '󰿠'
    'nf-md-sledding'                                 = '󰐛'
    'nf-md-sleep'                                    = '󰒲'
    'nf-md-sleep_off'                                = '󰒳'
    'nf-md-slide'                                    = '󱖥'
    'nf-md-slope_downhill'                           = '󰷿'
    'nf-md-slope_uphill'                             = '󰸀'
    'nf-md-slot_machine'                             = '󱄔'
    'nf-md-slot_machine_outline'                     = '󱄕'
    'nf-md-smart_card'                               = '󱂽'
    'nf-md-smart_card_off'                           = '󱣷'
    'nf-md-smart_card_off_outline'                   = '󱣸'
    'nf-md-smart_card_outline'                       = '󱂾'
    'nf-md-smart_card_reader'                        = '󱂿'
    'nf-md-smart_card_reader_outline'                = '󱃀'
    'nf-md-smog'                                     = '󰩱'
    'nf-md-smoke'                                    = '󱞙'
    'nf-md-smoke_detector'                           = '󰎒'
    'nf-md-smoke_detector_alert'                     = '󱤮'
    'nf-md-smoke_detector_alert_outline'             = '󱤯'
    'nf-md-smoke_detector_off'                       = '󱠉'
    'nf-md-smoke_detector_off_outline'               = '󱠊'
    'nf-md-smoke_detector_outline'                   = '󱠈'
    'nf-md-smoke_detector_variant'                   = '󱠋'
    'nf-md-smoke_detector_variant_alert'             = '󱤰'
    'nf-md-smoke_detector_variant_off'               = '󱠌'
    'nf-md-smoking'                                  = '󰒴'
    'nf-md-smoking_off'                              = '󰒵'
    'nf-md-smoking_pipe'                             = '󱐍'
    'nf-md-smoking_pipe_off'                         = '󱐨'
    'nf-md-snail'                                    = '󱙷'
    'nf-md-snake'                                    = '󱔎'
    'nf-md-snapchat'                                 = '󰒶'
    'nf-md-snowboard'                                = '󱌇'
    'nf-md-snowflake'                                = '󰜗'
    'nf-md-snowflake_alert'                          = '󰼩'
    'nf-md-snowflake_check'                          = '󱩰'
    'nf-md-snowflake_melt'                           = '󱋋'
    'nf-md-snowflake_off'                            = '󱓣'
    'nf-md-snowflake_thermometer'                    = '󱩱'
    'nf-md-snowflake_variant'                        = '󰼪'
    'nf-md-snowman'                                  = '󰒷'
    'nf-md-snowmobile'                               = '󰛝'
    'nf-md-snowshoeing'                              = '󱩲'
    'nf-md-soccer'                                   = '󰒸'
    'nf-md-soccer_field'                             = '󰠴'
    'nf-md-social_distance_2_meters'                 = '󱕹'
    'nf-md-social_distance_6_feet'                   = '󱕺'
    'nf-md-sofa'                                     = '󰒹'
    'nf-md-sofa_outline'                             = '󱕭'
    'nf-md-sofa_single'                              = '󱕮'
    'nf-md-sofa_single_outline'                      = '󱕯'
    'nf-md-solar_panel'                              = '󰶛'
    'nf-md-solar_panel_large'                        = '󰶜'
    'nf-md-solar_power'                              = '󰩲'
    'nf-md-solar_power_variant'                      = '󱩳'
    'nf-md-solar_power_variant_outline'              = '󱩴'
    'nf-md-soldering_iron'                           = '󱂒'
    'nf-md-solid'                                    = '󰚍'
    'nf-md-sony_playstation'                         = '󰐔'
    'nf-md-sort'                                     = '󰒺'
    'nf-md-sort_alphabetical_ascending'              = '󰖽'
    'nf-md-sort_alphabetical_ascending_variant'      = '󱅈'
    'nf-md-sort_alphabetical_descending'             = '󰖿'
    'nf-md-sort_alphabetical_descending_variant'     = '󱅉'
    'nf-md-sort_alphabetical_variant'                = '󰒻'
    'nf-md-sort_ascending'                           = '󰒼'
    'nf-md-sort_bool_ascending'                      = '󱎅'
    'nf-md-sort_bool_ascending_variant'              = '󱎆'
    'nf-md-sort_bool_descending'                     = '󱎇'
    'nf-md-sort_bool_descending_variant'             = '󱎈'
    'nf-md-sort_calendar_ascending'                  = '󱕇'
    'nf-md-sort_calendar_descending'                 = '󱕈'
    'nf-md-sort_clock_ascending'                     = '󱕉'
    'nf-md-sort_clock_ascending_outline'             = '󱕊'
    'nf-md-sort_clock_descending'                    = '󱕋'
    'nf-md-sort_clock_descending_outline'            = '󱕌'
    'nf-md-sort_descending'                          = '󰒽'
    'nf-md-sort_numeric_ascending'                   = '󱎉'
    'nf-md-sort_numeric_ascending_variant'           = '󰤍'
    'nf-md-sort_numeric_descending'                  = '󱎊'
    'nf-md-sort_numeric_descending_variant'          = '󰫒'
    'nf-md-sort_numeric_variant'                     = '󰒾'
    'nf-md-sort_reverse_variant'                     = '󰌼'
    'nf-md-sort_variant'                             = '󰒿'
    'nf-md-sort_variant_lock'                        = '󰳍'
    'nf-md-sort_variant_lock_open'                   = '󰳎'
    'nf-md-sort_variant_off'                         = '󱪻'
    'nf-md-sort_variant_remove'                      = '󱅇'
    'nf-md-soundbar'                                 = '󱟛'
    'nf-md-soundcloud'                               = '󰓀'
    'nf-md-source_branch'                            = '󰘬'
    'nf-md-source_branch_check'                      = '󱓏'
    'nf-md-source_branch_minus'                      = '󱓋'
    'nf-md-source_branch_plus'                       = '󱓊'
    'nf-md-source_branch_refresh'                    = '󱓍'
    'nf-md-source_branch_remove'                     = '󱓌'
    'nf-md-source_branch_sync'                       = '󱓎'
    'nf-md-source_commit'                            = '󰜘'
    'nf-md-source_commit_end'                        = '󰜙'
    'nf-md-source_commit_end_local'                  = '󰜚'
    'nf-md-source_commit_local'                      = '󰜛'
    'nf-md-source_commit_next_local'                 = '󰜜'
    'nf-md-source_commit_start'                      = '󰜝'
    'nf-md-source_commit_start_next_local'           = '󰜞'
    'nf-md-source_fork'                              = '󰓁'
    'nf-md-source_merge'                             = '󰘭'
    'nf-md-source_pull'                              = '󰓂'
    'nf-md-source_repository'                        = '󰳏'
    'nf-md-source_repository_multiple'               = '󰳐'
    'nf-md-soy_sauce'                                = '󰟮'
    'nf-md-soy_sauce_off'                            = '󱏼'
    'nf-md-spa'                                      = '󰳑'
    'nf-md-spa_outline'                              = '󰳒'
    'nf-md-space_invaders'                           = '󰯉'
    'nf-md-space_station'                            = '󱎃'
    'nf-md-spade'                                    = '󰹥'
    'nf-md-speaker'                                  = '󰓃'
    'nf-md-speaker_bluetooth'                        = '󰦢'
    'nf-md-speaker_multiple'                         = '󰴸'
    'nf-md-speaker_off'                              = '󰓄'
    'nf-md-speaker_wireless'                         = '󰜟'
    'nf-md-spear'                                    = '󱡅'
    'nf-md-speedometer'                              = '󰓅'
    'nf-md-speedometer_medium'                       = '󰾅'
    'nf-md-speedometer_slow'                         = '󰾆'
    'nf-md-spellcheck'                               = '󰓆'
    'nf-md-sphere'                                   = '󱥔'
    'nf-md-sphere_off'                               = '󱥕'
    'nf-md-spider'                                   = '󱇪'
    'nf-md-spider_thread'                            = '󱇫'
    'nf-md-spider_web'                               = '󰯊'
    'nf-md-spirit_level'                             = '󱓱'
    'nf-md-spoon_sugar'                              = '󱐩'
    'nf-md-spotify'                                  = '󰓇'
    'nf-md-spotlight'                                = '󰓈'
    'nf-md-spotlight_beam'                           = '󰓉'
    'nf-md-spray'                                    = '󰙥'
    'nf-md-spray_bottle'                             = '󰫠'
    'nf-md-sprinkler'                                = '󱁟'
    'nf-md-sprinkler_fire'                           = '󱦝'
    'nf-md-sprinkler_variant'                        = '󱁠'
    'nf-md-sprout'                                   = '󰹦'
    'nf-md-sprout_outline'                           = '󰹧'
    'nf-md-square'                                   = '󰝤'
    'nf-md-square_circle'                            = '󱔀'
    'nf-md-square_edit_outline'                      = '󰤌'
    'nf-md-square_medium'                            = '󰨓'
    'nf-md-square_medium_outline'                    = '󰨔'
    'nf-md-square_off'                               = '󱋮'
    'nf-md-square_off_outline'                       = '󱋯'
    'nf-md-square_opacity'                           = '󱡔'
    'nf-md-square_outline'                           = '󰝣'
    'nf-md-square_root'                              = '󰞄'
    'nf-md-square_root_box'                          = '󰦣'
    'nf-md-square_rounded'                           = '󱓻'
    'nf-md-square_rounded_badge'                     = '󱨇'
    'nf-md-square_rounded_badge_outline'             = '󱨈'
    'nf-md-square_rounded_outline'                   = '󱓼'
    'nf-md-square_small'                             = '󰨕'
    'nf-md-square_wave'                              = '󱑻'
    'nf-md-squeegee'                                 = '󰫡'
    'nf-md-ssh'                                      = '󰣀'
    'nf-md-stack_exchange'                           = '󰘋'
    'nf-md-stack_overflow'                           = '󰓌'
    'nf-md-stackpath'                                = '󰍙'
    'nf-md-stadium'                                  = '󰿹'
    'nf-md-stadium_variant'                          = '󰜠'
    'nf-md-stairs'                                   = '󰓍'
    'nf-md-stairs_box'                               = '󱎞'
    'nf-md-stairs_down'                              = '󱊾'
    'nf-md-stairs_up'                                = '󱊽'
    'nf-md-stamper'                                  = '󰴹'
    'nf-md-standard_definition'                      = '󰟯'
    'nf-md-star'                                     = '󰓎'
    'nf-md-star_box'                                 = '󰩳'
    'nf-md-star_box_multiple'                        = '󱊆'
    'nf-md-star_box_multiple_outline'                = '󱊇'
    'nf-md-star_box_outline'                         = '󰩴'
    'nf-md-star_check'                               = '󱕦'
    'nf-md-star_check_outline'                       = '󱕪'
    'nf-md-star_circle'                              = '󰓏'
    'nf-md-star_circle_outline'                      = '󰦤'
    'nf-md-star_cog'                                 = '󱙨'
    'nf-md-star_cog_outline'                         = '󱙩'
    'nf-md-star_crescent'                            = '󰥹'
    'nf-md-star_david'                               = '󰥺'
    'nf-md-star_face'                                = '󰦥'
    'nf-md-star_four_points'                         = '󰫢'
    'nf-md-star_four_points_outline'                 = '󰫣'
    'nf-md-star_half'                                = '󰉆'
    'nf-md-star_half_full'                           = '󰓐'
    'nf-md-star_minus'                               = '󱕤'
    'nf-md-star_minus_outline'                       = '󱕨'
    'nf-md-star_off'                                 = '󰓑'
    'nf-md-star_off_outline'                         = '󱕛'
    'nf-md-star_outline'                             = '󰓒'
    'nf-md-star_plus'                                = '󱕣'
    'nf-md-star_plus_outline'                        = '󱕧'
    'nf-md-star_remove'                              = '󱕥'
    'nf-md-star_remove_outline'                      = '󱕩'
    'nf-md-star_settings'                            = '󱙪'
    'nf-md-star_settings_outline'                    = '󱙫'
    'nf-md-star_shooting'                            = '󱝁'
    'nf-md-star_shooting_outline'                    = '󱝂'
    'nf-md-star_three_points'                        = '󰫤'
    'nf-md-star_three_points_outline'                = '󰫥'
    'nf-md-state_machine'                            = '󱇯'
    'nf-md-steam'                                    = '󰓓'
    'nf-md-steering'                                 = '󰓔'
    'nf-md-steering_off'                             = '󰤎'
    'nf-md-step_backward'                            = '󰓕'
    'nf-md-step_backward_2'                          = '󰓖'
    'nf-md-step_forward'                             = '󰓗'
    'nf-md-step_forward_2'                           = '󰓘'
    'nf-md-stethoscope'                              = '󰓙'
    'nf-md-sticker'                                  = '󱍤'
    'nf-md-sticker_alert'                            = '󱍥'
    'nf-md-sticker_alert_outline'                    = '󱍦'
    'nf-md-sticker_check'                            = '󱍧'
    'nf-md-sticker_check_outline'                    = '󱍨'
    'nf-md-sticker_circle_outline'                   = '󰗐'
    'nf-md-sticker_emoji'                            = '󰞅'
    'nf-md-sticker_minus'                            = '󱍩'
    'nf-md-sticker_minus_outline'                    = '󱍪'
    'nf-md-sticker_outline'                          = '󱍫'
    'nf-md-sticker_plus'                             = '󱍬'
    'nf-md-sticker_plus_outline'                     = '󱍭'
    'nf-md-sticker_remove'                           = '󱍮'
    'nf-md-sticker_remove_outline'                   = '󱍯'
    'nf-md-sticker_text'                             = '󱞎'
    'nf-md-sticker_text_outline'                     = '󱞏'
    'nf-md-stocking'                                 = '󰓚'
    'nf-md-stomach'                                  = '󱂓'
    'nf-md-stool'                                    = '󱥝'
    'nf-md-stool_outline'                            = '󱥞'
    'nf-md-stop'                                     = '󰓛'
    'nf-md-stop_circle'                              = '󰙦'
    'nf-md-stop_circle_outline'                      = '󰙧'
    'nf-md-storage_tank'                             = '󱩵'
    'nf-md-storage_tank_outline'                     = '󱩶'
    'nf-md-store'                                    = '󰓜'
    'nf-md-store_24_hour'                            = '󰓝'
    'nf-md-store_alert'                              = '󱣁'
    'nf-md-store_alert_outline'                      = '󱣂'
    'nf-md-store_check'                              = '󱣃'
    'nf-md-store_check_outline'                      = '󱣄'
    'nf-md-store_clock'                              = '󱣅'
    'nf-md-store_clock_outline'                      = '󱣆'
    'nf-md-store_cog'                                = '󱣇'
    'nf-md-store_cog_outline'                        = '󱣈'
    'nf-md-store_edit'                               = '󱣉'
    'nf-md-store_edit_outline'                       = '󱣊'
    'nf-md-store_marker'                             = '󱣋'
    'nf-md-store_marker_outline'                     = '󱣌'
    'nf-md-store_minus'                              = '󱙞'
    'nf-md-store_minus_outline'                      = '󱣍'
    'nf-md-store_off'                                = '󱣎'
    'nf-md-store_off_outline'                        = '󱣏'
    'nf-md-store_outline'                            = '󱍡'
    'nf-md-store_plus'                               = '󱙟'
    'nf-md-store_plus_outline'                       = '󱣐'
    'nf-md-store_remove'                             = '󱙠'
    'nf-md-store_remove_outline'                     = '󱣑'
    'nf-md-store_search'                             = '󱣒'
    'nf-md-store_search_outline'                     = '󱣓'
    'nf-md-store_settings'                           = '󱣔'
    'nf-md-store_settings_outline'                   = '󱣕'
    'nf-md-storefront'                               = '󰟇'
    'nf-md-storefront_outline'                       = '󱃁'
    'nf-md-stove'                                    = '󰓞'
    'nf-md-strategy'                                 = '󱇖'
    'nf-md-stretch_to_page'                          = '󰼫'
    'nf-md-stretch_to_page_outline'                  = '󰼬'
    'nf-md-string_lights'                            = '󱊺'
    'nf-md-string_lights_off'                        = '󱊻'
    'nf-md-subdirectory_arrow_left'                  = '󰘌'
    'nf-md-subdirectory_arrow_right'                 = '󰘍'
    'nf-md-submarine'                                = '󱕬'
    'nf-md-subtitles'                                = '󰨖'
    'nf-md-subtitles_outline'                        = '󰨗'
    'nf-md-subway'                                   = '󰚬'
    'nf-md-subway_alert_variant'                     = '󰶝'
    'nf-md-subway_variant'                           = '󰓟'
    'nf-md-summit'                                   = '󰞆'
    'nf-md-sun_clock'                                = '󱩷'
    'nf-md-sun_clock_outline'                        = '󱩸'
    'nf-md-sun_compass'                              = '󱦥'
    'nf-md-sun_snowflake'                            = '󱞖'
    'nf-md-sun_snowflake_variant'                    = '󱩹'
    'nf-md-sun_thermometer'                          = '󱣖'
    'nf-md-sun_thermometer_outline'                  = '󱣗'
    'nf-md-sun_wireless'                             = '󱟾'
    'nf-md-sun_wireless_outline'                     = '󱟿'
    'nf-md-sunglasses'                               = '󰓠'
    'nf-md-surfing'                                  = '󱝆'
    'nf-md-surround_sound'                           = '󰗅'
    'nf-md-surround_sound_2_0'                       = '󰟰'
    'nf-md-surround_sound_2_1'                       = '󱜩'
    'nf-md-surround_sound_3_1'                       = '󰟱'
    'nf-md-surround_sound_5_1'                       = '󰟲'
    'nf-md-surround_sound_5_1_2'                     = '󱜪'
    'nf-md-surround_sound_7_1'                       = '󰟳'
    'nf-md-svg'                                      = '󰜡'
    'nf-md-swap_horizontal'                          = '󰓡'
    'nf-md-swap_horizontal_bold'                     = '󰯍'
    'nf-md-swap_horizontal_circle'                   = '󰿡'
    'nf-md-swap_horizontal_circle_outline'           = '󰿢'
    'nf-md-swap_horizontal_variant'                  = '󰣁'
    'nf-md-swap_vertical'                            = '󰓢'
    'nf-md-swap_vertical_bold'                       = '󰯎'
    'nf-md-swap_vertical_circle'                     = '󰿣'
    'nf-md-swap_vertical_circle_outline'             = '󰿤'
    'nf-md-swap_vertical_variant'                    = '󰣂'
    'nf-md-swim'                                     = '󰓣'
    'nf-md-switch'                                   = '󰓤'
    'nf-md-sword'                                    = '󰓥'
    'nf-md-sword_cross'                              = '󰞇'
    'nf-md-syllabary_hangul'                         = '󱌳'
    'nf-md-syllabary_hiragana'                       = '󱌴'
    'nf-md-syllabary_katakana'                       = '󱌵'
    'nf-md-syllabary_katakana_halfwidth'             = '󱌶'
    'nf-md-symbol'                                   = '󱔁'
    'nf-md-symfony'                                  = '󰫦'
    'nf-md-sync'                                     = '󰓦'
    'nf-md-sync_alert'                               = '󰓧'
    'nf-md-sync_circle'                              = '󱍸'
    'nf-md-sync_off'                                 = '󰓨'
    'nf-md-tab'                                      = '󰓩'
    'nf-md-tab_minus'                                = '󰭋'
    'nf-md-tab_plus'                                 = '󰝜'
    'nf-md-tab_remove'                               = '󰭌'
    'nf-md-tab_search'                               = '󱦞'
    'nf-md-tab_unselected'                           = '󰓪'
    'nf-md-table'                                    = '󰓫'
    'nf-md-table_account'                            = '󱎹'
    'nf-md-table_alert'                              = '󱎺'
    'nf-md-table_arrow_down'                         = '󱎻'
    'nf-md-table_arrow_left'                         = '󱎼'
    'nf-md-table_arrow_right'                        = '󱎽'
    'nf-md-table_arrow_up'                           = '󱎾'
    'nf-md-table_border'                             = '󰨘'
    'nf-md-table_cancel'                             = '󱎿'
    'nf-md-table_chair'                              = '󱁡'
    'nf-md-table_check'                              = '󱏀'
    'nf-md-table_clock'                              = '󱏁'
    'nf-md-table_cog'                                = '󱏂'
    'nf-md-table_column'                             = '󰠵'
    'nf-md-table_column_plus_after'                  = '󰓬'
    'nf-md-table_column_plus_before'                 = '󰓭'
    'nf-md-table_column_remove'                      = '󰓮'
    'nf-md-table_column_width'                       = '󰓯'
    'nf-md-table_edit'                               = '󰓰'
    'nf-md-table_eye'                                = '󱂔'
    'nf-md-table_eye_off'                            = '󱏃'
    'nf-md-table_furniture'                          = '󰖼'
    'nf-md-table_headers_eye'                        = '󱈝'
    'nf-md-table_headers_eye_off'                    = '󱈞'
    'nf-md-table_heart'                              = '󱏄'
    'nf-md-table_key'                                = '󱏅'
    'nf-md-table_large'                              = '󰓱'
    'nf-md-table_large_plus'                         = '󰾇'
    'nf-md-table_large_remove'                       = '󰾈'
    'nf-md-table_lock'                               = '󱏆'
    'nf-md-table_merge_cells'                        = '󰦦'
    'nf-md-table_minus'                              = '󱏇'
    'nf-md-table_multiple'                           = '󱏈'
    'nf-md-table_network'                            = '󱏉'
    'nf-md-table_of_contents'                        = '󰠶'
    'nf-md-table_off'                                = '󱏊'
    'nf-md-table_picnic'                             = '󱝃'
    'nf-md-table_pivot'                              = '󱠼'
    'nf-md-table_plus'                               = '󰩵'
    'nf-md-table_refresh'                            = '󱎠'
    'nf-md-table_remove'                             = '󰩶'
    'nf-md-table_row'                                = '󰠷'
    'nf-md-table_row_height'                         = '󰓲'
    'nf-md-table_row_plus_after'                     = '󰓳'
    'nf-md-table_row_plus_before'                    = '󰓴'
    'nf-md-table_row_remove'                         = '󰓵'
    'nf-md-table_search'                             = '󰤏'
    'nf-md-table_settings'                           = '󰠸'
    'nf-md-table_split_cell'                         = '󱐪'
    'nf-md-table_star'                               = '󱏋'
    'nf-md-table_sync'                               = '󱎡'
    'nf-md-table_tennis'                             = '󰹨'
    'nf-md-tablet'                                   = '󰓶'
    'nf-md-tablet_android'                           = '󰓷'
    'nf-md-tablet_cellphone'                         = '󰦧'
    'nf-md-tablet_dashboard'                         = '󰻎'
    'nf-md-taco'                                     = '󰝢'
    'nf-md-tag'                                      = '󰓹'
    'nf-md-tag_arrow_down'                           = '󱜫'
    'nf-md-tag_arrow_down_outline'                   = '󱜬'
    'nf-md-tag_arrow_left'                           = '󱜭'
    'nf-md-tag_arrow_left_outline'                   = '󱜮'
    'nf-md-tag_arrow_right'                          = '󱜯'
    'nf-md-tag_arrow_right_outline'                  = '󱜰'
    'nf-md-tag_arrow_up'                             = '󱜱'
    'nf-md-tag_arrow_up_outline'                     = '󱜲'
    'nf-md-tag_check'                                = '󱩺'
    'nf-md-tag_check_outline'                        = '󱩻'
    'nf-md-tag_faces'                                = '󰓺'
    'nf-md-tag_heart'                                = '󰚋'
    'nf-md-tag_heart_outline'                        = '󰯏'
    'nf-md-tag_minus'                                = '󰤐'
    'nf-md-tag_minus_outline'                        = '󱈟'
    'nf-md-tag_multiple'                             = '󰓻'
    'nf-md-tag_multiple_outline'                     = '󱋷'
    'nf-md-tag_off'                                  = '󱈠'
    'nf-md-tag_off_outline'                          = '󱈡'
    'nf-md-tag_outline'                              = '󰓼'
    'nf-md-tag_plus'                                 = '󰜢'
    'nf-md-tag_plus_outline'                         = '󱈢'
    'nf-md-tag_remove'                               = '󰜣'
    'nf-md-tag_remove_outline'                       = '󱈣'
    'nf-md-tag_search'                               = '󱤇'
    'nf-md-tag_search_outline'                       = '󱤈'
    'nf-md-tag_text'                                 = '󱈤'
    'nf-md-tag_text_outline'                         = '󰓽'
    'nf-md-tailwind'                                 = '󱏿'
    'nf-md-tally_mark_1'                             = '󱪼'
    'nf-md-tally_mark_2'                             = '󱪽'
    'nf-md-tally_mark_3'                             = '󱪾'
    'nf-md-tally_mark_4'                             = '󱪿'
    'nf-md-tally_mark_5'                             = '󱫀'
    'nf-md-tangram'                                  = '󰓸'
    'nf-md-tank'                                     = '󰴺'
    'nf-md-tanker_truck'                             = '󰿥'
    'nf-md-tape_drive'                               = '󱛟'
    'nf-md-tape_measure'                             = '󰭍'
    'nf-md-target'                                   = '󰓾'
    'nf-md-target_account'                           = '󰯐'
    'nf-md-target_variant'                           = '󰩷'
    'nf-md-taxi'                                     = '󰓿'
    'nf-md-tea'                                      = '󰶞'
    'nf-md-tea_outline'                              = '󰶟'
    'nf-md-teamviewer'                               = '󰔀'
    'nf-md-teddy_bear'                               = '󱣻'
    'nf-md-telescope'                                = '󰭎'
    'nf-md-television'                               = '󰔂'
    'nf-md-television_ambient_light'                 = '󱍖'
    'nf-md-television_box'                           = '󰠹'
    'nf-md-television_classic'                       = '󰟴'
    'nf-md-television_classic_off'                   = '󰠺'
    'nf-md-television_guide'                         = '󰔃'
    'nf-md-television_off'                           = '󰠻'
    'nf-md-television_pause'                         = '󰾉'
    'nf-md-television_play'                          = '󰻏'
    'nf-md-television_shimmer'                       = '󱄐'
    'nf-md-television_stop'                          = '󰾊'
    'nf-md-temperature_celsius'                      = '󰔄'
    'nf-md-temperature_fahrenheit'                   = '󰔅'
    'nf-md-temperature_kelvin'                       = '󰔆'
    'nf-md-tennis'                                   = '󰶠'
    'nf-md-tennis_ball'                              = '󰔇'
    'nf-md-tent'                                     = '󰔈'
    'nf-md-terraform'                                = '󱁢'
    'nf-md-test_tube'                                = '󰙨'
    'nf-md-test_tube_empty'                          = '󰤑'
    'nf-md-test_tube_off'                            = '󰤒'
    'nf-md-text'                                     = '󰦨'
    'nf-md-text_account'                             = '󱕰'
    'nf-md-text_box'                                 = '󰈚'
    'nf-md-text_box_check'                           = '󰺦'
    'nf-md-text_box_check_outline'                   = '󰺧'
    'nf-md-text_box_edit'                            = '󱩼'
    'nf-md-text_box_edit_outline'                    = '󱩽'
    'nf-md-text_box_minus'                           = '󰺨'
    'nf-md-text_box_minus_outline'                   = '󰺩'
    'nf-md-text_box_multiple'                        = '󰪷'
    'nf-md-text_box_multiple_outline'                = '󰪸'
    'nf-md-text_box_outline'                         = '󰧭'
    'nf-md-text_box_plus'                            = '󰺪'
    'nf-md-text_box_plus_outline'                    = '󰺫'
    'nf-md-text_box_remove'                          = '󰺬'
    'nf-md-text_box_remove_outline'                  = '󰺭'
    'nf-md-text_box_search'                          = '󰺮'
    'nf-md-text_box_search_outline'                  = '󰺯'
    'nf-md-text_long'                                = '󰦪'
    'nf-md-text_recognition'                         = '󱄽'
    'nf-md-text_search'                              = '󱎸'
    'nf-md-text_search_variant'                      = '󱩾'
    'nf-md-text_shadow'                              = '󰙩'
    'nf-md-text_short'                               = '󰦩'
    'nf-md-text_to_speech'                           = '󰔊'
    'nf-md-text_to_speech_off'                       = '󰔋'
    'nf-md-texture'                                  = '󰔌'
    'nf-md-texture_box'                              = '󰿦'
    'nf-md-theater'                                  = '󰔍'
    'nf-md-theme_light_dark'                         = '󰔎'
    'nf-md-thermometer'                              = '󰔏'
    'nf-md-thermometer_alert'                        = '󰸁'
    'nf-md-thermometer_bluetooth'                    = '󱢕'
    'nf-md-thermometer_check'                        = '󱩿'
    'nf-md-thermometer_chevron_down'                 = '󰸂'
    'nf-md-thermometer_chevron_up'                   = '󰸃'
    'nf-md-thermometer_high'                         = '󱃂'
    'nf-md-thermometer_lines'                        = '󰔐'
    'nf-md-thermometer_low'                          = '󱃃'
    'nf-md-thermometer_minus'                        = '󰸄'
    'nf-md-thermometer_off'                          = '󱔱'
    'nf-md-thermometer_plus'                         = '󰸅'
    'nf-md-thermometer_water'                        = '󱪀'
    'nf-md-thermostat'                               = '󰎓'
    'nf-md-thermostat_box'                           = '󰢑'
    'nf-md-thought_bubble'                           = '󰟶'
    'nf-md-thought_bubble_outline'                   = '󰟷'
    'nf-md-thumb_down'                               = '󰔑'
    'nf-md-thumb_down_outline'                       = '󰔒'
    'nf-md-thumb_up'                                 = '󰔓'
    'nf-md-thumb_up_outline'                         = '󰔔'
    'nf-md-thumbs_up_down'                           = '󰔕'
    'nf-md-thumbs_up_down_outline'                   = '󱤔'
    'nf-md-ticket'                                   = '󰔖'
    'nf-md-ticket_account'                           = '󰔗'
    'nf-md-ticket_confirmation'                      = '󰔘'
    'nf-md-ticket_confirmation_outline'              = '󱎪'
    'nf-md-ticket_outline'                           = '󰤓'
    'nf-md-ticket_percent'                           = '󰜤'
    'nf-md-ticket_percent_outline'                   = '󱐫'
    'nf-md-tie'                                      = '󰔙'
    'nf-md-tilde'                                    = '󰜥'
    'nf-md-tilde_off'                                = '󱣳'
    'nf-md-timelapse'                                = '󰔚'
    'nf-md-timeline'                                 = '󰯑'
    'nf-md-timeline_alert'                           = '󰾕'
    'nf-md-timeline_alert_outline'                   = '󰾘'
    'nf-md-timeline_check'                           = '󱔲'
    'nf-md-timeline_check_outline'                   = '󱔳'
    'nf-md-timeline_clock'                           = '󱇻'
    'nf-md-timeline_clock_outline'                   = '󱇼'
    'nf-md-timeline_help'                            = '󰾙'
    'nf-md-timeline_help_outline'                    = '󰾚'
    'nf-md-timeline_minus'                           = '󱔴'
    'nf-md-timeline_minus_outline'                   = '󱔵'
    'nf-md-timeline_outline'                         = '󰯒'
    'nf-md-timeline_plus'                            = '󰾖'
    'nf-md-timeline_plus_outline'                    = '󰾗'
    'nf-md-timeline_remove'                          = '󱔶'
    'nf-md-timeline_remove_outline'                  = '󱔷'
    'nf-md-timeline_text'                            = '󰯓'
    'nf-md-timeline_text_outline'                    = '󰯔'
    'nf-md-timer'                                    = '󱎫'
    'nf-md-timer_10'                                 = '󰔜'
    'nf-md-timer_3'                                  = '󰔝'
    'nf-md-timer_alert'                              = '󱫌'
    'nf-md-timer_alert_outline'                      = '󱫍'
    'nf-md-timer_cancel'                             = '󱫎'
    'nf-md-timer_cancel_outline'                     = '󱫏'
    'nf-md-timer_check'                              = '󱫐'
    'nf-md-timer_check_outline'                      = '󱫑'
    'nf-md-timer_cog'                                = '󱤥'
    'nf-md-timer_cog_outline'                        = '󱤦'
    'nf-md-timer_edit'                               = '󱫒'
    'nf-md-timer_edit_outline'                       = '󱫓'
    'nf-md-timer_lock'                               = '󱫔'
    'nf-md-timer_lock_open'                          = '󱫕'
    'nf-md-timer_lock_open_outline'                  = '󱫖'
    'nf-md-timer_lock_outline'                       = '󱫗'
    'nf-md-timer_marker'                             = '󱫘'
    'nf-md-timer_marker_outline'                     = '󱫙'
    'nf-md-timer_minus'                              = '󱫚'
    'nf-md-timer_minus_outline'                      = '󱫛'
    'nf-md-timer_music'                              = '󱫜'
    'nf-md-timer_music_outline'                      = '󱫝'
    'nf-md-timer_off'                                = '󱎬'
    'nf-md-timer_off_outline'                        = '󰔞'
    'nf-md-timer_outline'                            = '󰔛'
    'nf-md-timer_pause'                              = '󱫞'
    'nf-md-timer_pause_outline'                      = '󱫟'
    'nf-md-timer_play'                               = '󱫠'
    'nf-md-timer_play_outline'                       = '󱫡'
    'nf-md-timer_plus'                               = '󱫢'
    'nf-md-timer_plus_outline'                       = '󱫣'
    'nf-md-timer_refresh'                            = '󱫤'
    'nf-md-timer_refresh_outline'                    = '󱫥'
    'nf-md-timer_remove'                             = '󱫦'
    'nf-md-timer_remove_outline'                     = '󱫧'
    'nf-md-timer_sand'                               = '󰔟'
    'nf-md-timer_sand_complete'                      = '󱦟'
    'nf-md-timer_sand_empty'                         = '󰚭'
    'nf-md-timer_sand_full'                          = '󰞌'
    'nf-md-timer_sand_paused'                        = '󱦠'
    'nf-md-timer_settings'                           = '󱤣'
    'nf-md-timer_settings_outline'                   = '󱤤'
    'nf-md-timer_star'                               = '󱫨'
    'nf-md-timer_star_outline'                       = '󱫩'
    'nf-md-timer_stop'                               = '󱫪'
    'nf-md-timer_stop_outline'                       = '󱫫'
    'nf-md-timer_sync'                               = '󱫬'
    'nf-md-timer_sync_outline'                       = '󱫭'
    'nf-md-timetable'                                = '󰔠'
    'nf-md-tire'                                     = '󱢖'
    'nf-md-toaster'                                  = '󱁣'
    'nf-md-toaster_off'                              = '󱆷'
    'nf-md-toaster_oven'                             = '󰳓'
    'nf-md-toggle_switch'                            = '󰔡'
    'nf-md-toggle_switch_off'                        = '󰔢'
    'nf-md-toggle_switch_off_outline'                = '󰨙'
    'nf-md-toggle_switch_outline'                    = '󰨚'
    'nf-md-toggle_switch_variant'                    = '󱨥'
    'nf-md-toggle_switch_variant_off'                = '󱨦'
    'nf-md-toilet'                                   = '󰦫'
    'nf-md-toolbox'                                  = '󰦬'
    'nf-md-toolbox_outline'                          = '󰦭'
    'nf-md-tools'                                    = '󱁤'
    'nf-md-tooltip'                                  = '󰔣'
    'nf-md-tooltip_account'                          = '󰀌'
    'nf-md-tooltip_cellphone'                        = '󱠻'
    'nf-md-tooltip_check'                            = '󱕜'
    'nf-md-tooltip_check_outline'                    = '󱕝'
    'nf-md-tooltip_edit'                             = '󰔤'
    'nf-md-tooltip_edit_outline'                     = '󱋅'
    'nf-md-tooltip_image'                            = '󰔥'
    'nf-md-tooltip_image_outline'                    = '󰯕'
    'nf-md-tooltip_minus'                            = '󱕞'
    'nf-md-tooltip_minus_outline'                    = '󱕟'
    'nf-md-tooltip_outline'                          = '󰔦'
    'nf-md-tooltip_plus'                             = '󰯖'
    'nf-md-tooltip_plus_outline'                     = '󰔧'
    'nf-md-tooltip_remove'                           = '󱕠'
    'nf-md-tooltip_remove_outline'                   = '󱕡'
    'nf-md-tooltip_text'                             = '󰔨'
    'nf-md-tooltip_text_outline'                     = '󰯗'
    'nf-md-tooth'                                    = '󰣃'
    'nf-md-tooth_outline'                            = '󰔩'
    'nf-md-toothbrush'                               = '󱄩'
    'nf-md-toothbrush_electric'                      = '󱄬'
    'nf-md-toothbrush_paste'                         = '󱄪'
    'nf-md-torch'                                    = '󱘆'
    'nf-md-tortoise'                                 = '󰴻'
    'nf-md-toslink'                                  = '󱊸'
    'nf-md-tournament'                               = '󰦮'
    'nf-md-tow_truck'                                = '󰠼'
    'nf-md-tower_beach'                              = '󰚁'
    'nf-md-tower_fire'                               = '󰚂'
    'nf-md-town_hall'                                = '󱡵'
    'nf-md-toy_brick'                                = '󱊈'
    'nf-md-toy_brick_marker'                         = '󱊉'
    'nf-md-toy_brick_marker_outline'                 = '󱊊'
    'nf-md-toy_brick_minus'                          = '󱊋'
    'nf-md-toy_brick_minus_outline'                  = '󱊌'
    'nf-md-toy_brick_outline'                        = '󱊍'
    'nf-md-toy_brick_plus'                           = '󱊎'
    'nf-md-toy_brick_plus_outline'                   = '󱊏'
    'nf-md-toy_brick_remove'                         = '󱊐'
    'nf-md-toy_brick_remove_outline'                 = '󱊑'
    'nf-md-toy_brick_search'                         = '󱊒'
    'nf-md-toy_brick_search_outline'                 = '󱊓'
    'nf-md-track_light'                              = '󰤔'
    'nf-md-trackpad'                                 = '󰟸'
    'nf-md-trackpad_lock'                            = '󰤳'
    'nf-md-tractor'                                  = '󰢒'
    'nf-md-tractor_variant'                          = '󱓄'
    'nf-md-trademark'                                = '󰩸'
    'nf-md-traffic_cone'                             = '󱍼'
    'nf-md-traffic_light'                            = '󰔫'
    'nf-md-traffic_light_outline'                    = '󱠪'
    'nf-md-train'                                    = '󰔬'
    'nf-md-train_car'                                = '󰯘'
    'nf-md-train_car_passenger'                      = '󱜳'
    'nf-md-train_car_passenger_door'                 = '󱜴'
    'nf-md-train_car_passenger_door_open'            = '󱜵'
    'nf-md-train_car_passenger_variant'              = '󱜶'
    'nf-md-train_variant'                            = '󰣄'
    'nf-md-tram'                                     = '󰔭'
    'nf-md-tram_side'                                = '󰿧'
    'nf-md-transcribe'                               = '󰔮'
    'nf-md-transcribe_close'                         = '󰔯'
    'nf-md-transfer'                                 = '󱁥'
    'nf-md-transfer_down'                            = '󰶡'
    'nf-md-transfer_left'                            = '󰶢'
    'nf-md-transfer_right'                           = '󰔰'
    'nf-md-transfer_up'                              = '󰶣'
    'nf-md-transit_connection'                       = '󰴼'
    'nf-md-transit_connection_horizontal'            = '󱕆'
    'nf-md-transit_connection_variant'               = '󰴽'
    'nf-md-transit_detour'                           = '󰾋'
    'nf-md-transit_skip'                             = '󱔕'
    'nf-md-transit_transfer'                         = '󰚮'
    'nf-md-transition'                               = '󰤕'
    'nf-md-transition_masked'                        = '󰤖'
    'nf-md-translate'                                = '󰗊'
    'nf-md-translate_off'                            = '󰸆'
    'nf-md-transmission_tower'                       = '󰴾'
    'nf-md-transmission_tower_export'                = '󱤬'
    'nf-md-transmission_tower_import'                = '󱤭'
    'nf-md-transmission_tower_off'                   = '󱧝'
    'nf-md-trash_can'                                = '󰩹'
    'nf-md-trash_can_outline'                        = '󰩺'
    'nf-md-tray'                                     = '󱊔'
    'nf-md-tray_alert'                               = '󱊕'
    'nf-md-tray_arrow_down'                          = '󰄠'
    'nf-md-tray_arrow_up'                            = '󰄝'
    'nf-md-tray_full'                                = '󱊖'
    'nf-md-tray_minus'                               = '󱊗'
    'nf-md-tray_plus'                                = '󱊘'
    'nf-md-tray_remove'                              = '󱊙'
    'nf-md-treasure_chest'                           = '󰜦'
    'nf-md-tree'                                     = '󰔱'
    'nf-md-tree_outline'                             = '󰹩'
    'nf-md-trello'                                   = '󰔲'
    'nf-md-trending_down'                            = '󰔳'
    'nf-md-trending_neutral'                         = '󰔴'
    'nf-md-trending_up'                              = '󰔵'
    'nf-md-triangle'                                 = '󰔶'
    'nf-md-triangle_outline'                         = '󰔷'
    'nf-md-triangle_small_down'                      = '󱨉'
    'nf-md-triangle_small_up'                        = '󱨊'
    'nf-md-triangle_wave'                            = '󱑼'
    'nf-md-triforce'                                 = '󰯙'
    'nf-md-trophy'                                   = '󰔸'
    'nf-md-trophy_award'                             = '󰔹'
    'nf-md-trophy_broken'                            = '󰶤'
    'nf-md-trophy_outline'                           = '󰔺'
    'nf-md-trophy_variant'                           = '󰔻'
    'nf-md-trophy_variant_outline'                   = '󰔼'
    'nf-md-truck'                                    = '󰔽'
    'nf-md-truck_alert'                              = '󱧞'
    'nf-md-truck_alert_outline'                      = '󱧟'
    'nf-md-truck_cargo_container'                    = '󱣘'
    'nf-md-truck_check'                              = '󰳔'
    'nf-md-truck_check_outline'                      = '󱊚'
    'nf-md-truck_delivery'                           = '󰔾'
    'nf-md-truck_delivery_outline'                   = '󱊛'
    'nf-md-truck_fast'                               = '󰞈'
    'nf-md-truck_fast_outline'                       = '󱊜'
    'nf-md-truck_flatbed'                            = '󱢑'
    'nf-md-truck_minus'                              = '󱦮'
    'nf-md-truck_minus_outline'                      = '󱦽'
    'nf-md-truck_outline'                            = '󱊝'
    'nf-md-truck_plus'                               = '󱦭'
    'nf-md-truck_plus_outline'                       = '󱦼'
    'nf-md-truck_remove'                             = '󱦯'
    'nf-md-truck_remove_outline'                     = '󱦾'
    'nf-md-truck_snowflake'                          = '󱦦'
    'nf-md-truck_trailer'                            = '󰜧'
    'nf-md-trumpet'                                  = '󱂖'
    'nf-md-tshirt_crew'                              = '󰩻'
    'nf-md-tshirt_crew_outline'                      = '󰔿'
    'nf-md-tshirt_v'                                 = '󰩼'
    'nf-md-tshirt_v_outline'                         = '󰕀'
    'nf-md-tsunami'                                  = '󱪁'
    'nf-md-tumble_dryer'                             = '󰤗'
    'nf-md-tumble_dryer_alert'                       = '󱆺'
    'nf-md-tumble_dryer_off'                         = '󱆻'
    'nf-md-tune'                                     = '󰘮'
    'nf-md-tune_variant'                             = '󱕂'
    'nf-md-tune_vertical'                            = '󰙪'
    'nf-md-tune_vertical_variant'                    = '󱕃'
    'nf-md-tunnel'                                   = '󱠽'
    'nf-md-tunnel_outline'                           = '󱠾'
    'nf-md-turbine'                                  = '󱪂'
    'nf-md-turkey'                                   = '󱜛'
    'nf-md-turnstile'                                = '󰳕'
    'nf-md-turnstile_outline'                        = '󰳖'
    'nf-md-turtle'                                   = '󰳗'
    'nf-md-twitch'                                   = '󰕃'
    'nf-md-twitter'                                  = '󰕄'
    'nf-md-two_factor_authentication'                = '󰦯'
    'nf-md-typewriter'                               = '󰼭'
    'nf-md-ubisoft'                                  = '󰯚'
    'nf-md-ubuntu'                                   = '󰕈'
    'nf-md-ufo'                                      = '󱃄'
    'nf-md-ufo_outline'                              = '󱃅'
    'nf-md-ultra_high_definition'                    = '󰟹'
    'nf-md-umbraco'                                  = '󰕉'
    'nf-md-umbrella'                                 = '󰕊'
    'nf-md-umbrella_beach'                           = '󱢊'
    'nf-md-umbrella_beach_outline'                   = '󱢋'
    'nf-md-umbrella_closed'                          = '󰦰'
    'nf-md-umbrella_closed_outline'                  = '󱏢'
    'nf-md-umbrella_closed_variant'                  = '󱏡'
    'nf-md-umbrella_outline'                         = '󰕋'
    'nf-md-undo'                                     = '󰕌'
    'nf-md-undo_variant'                             = '󰕍'
    'nf-md-unfold_less_horizontal'                   = '󰕎'
    'nf-md-unfold_less_vertical'                     = '󰝠'
    'nf-md-unfold_more_horizontal'                   = '󰕏'
    'nf-md-unfold_more_vertical'                     = '󰝡'
    'nf-md-ungroup'                                  = '󰕐'
    'nf-md-unicode'                                  = '󰻐'
    'nf-md-unicorn'                                  = '󱗂'
    'nf-md-unicorn_variant'                          = '󱗃'
    'nf-md-unicycle'                                 = '󱗥'
    'nf-md-unity'                                    = '󰚯'
    'nf-md-unreal'                                   = '󰦱'
    'nf-md-update'                                   = '󰚰'
    'nf-md-upload'                                   = '󰕒'
    'nf-md-upload_lock'                              = '󱍳'
    'nf-md-upload_lock_outline'                      = '󱍴'
    'nf-md-upload_multiple'                          = '󰠽'
    'nf-md-upload_network'                           = '󰛶'
    'nf-md-upload_network_outline'                   = '󰳘'
    'nf-md-upload_off'                               = '󱃆'
    'nf-md-upload_off_outline'                       = '󱃇'
    'nf-md-upload_outline'                           = '󰸇'
    'nf-md-usb'                                      = '󰕓'
    'nf-md-usb_flash_drive'                          = '󱊞'
    'nf-md-usb_flash_drive_outline'                  = '󱊟'
    'nf-md-usb_port'                                 = '󱇰'
    'nf-md-vacuum'                                   = '󱦡'
    'nf-md-vacuum_outline'                           = '󱦢'
    'nf-md-valve'                                    = '󱁦'
    'nf-md-valve_closed'                             = '󱁧'
    'nf-md-valve_open'                               = '󱁨'
    'nf-md-van_passenger'                            = '󰟺'
    'nf-md-van_utility'                              = '󰟻'
    'nf-md-vanish'                                   = '󰟼'
    'nf-md-vanish_quarter'                           = '󱕔'
    'nf-md-vanity_light'                             = '󱇡'
    'nf-md-variable'                                 = '󰫧'
    'nf-md-variable_box'                             = '󱄑'
    'nf-md-vector_arrange_above'                     = '󰕔'
    'nf-md-vector_arrange_below'                     = '󰕕'
    'nf-md-vector_bezier'                            = '󰫨'
    'nf-md-vector_circle'                            = '󰕖'
    'nf-md-vector_circle_variant'                    = '󰕗'
    'nf-md-vector_combine'                           = '󰕘'
    'nf-md-vector_curve'                             = '󰕙'
    'nf-md-vector_difference'                        = '󰕚'
    'nf-md-vector_difference_ab'                     = '󰕛'
    'nf-md-vector_difference_ba'                     = '󰕜'
    'nf-md-vector_ellipse'                           = '󰢓'
    'nf-md-vector_intersection'                      = '󰕝'
    'nf-md-vector_line'                              = '󰕞'
    'nf-md-vector_link'                              = '󰿨'
    'nf-md-vector_point'                             = '󰕟'
    'nf-md-vector_polygon'                           = '󰕠'
    'nf-md-vector_polygon_variant'                   = '󱡖'
    'nf-md-vector_polyline'                          = '󰕡'
    'nf-md-vector_polyline_edit'                     = '󱈥'
    'nf-md-vector_polyline_minus'                    = '󱈦'
    'nf-md-vector_polyline_plus'                     = '󱈧'
    'nf-md-vector_polyline_remove'                   = '󱈨'
    'nf-md-vector_radius'                            = '󰝊'
    'nf-md-vector_rectangle'                         = '󰗆'
    'nf-md-vector_selection'                         = '󰕢'
    'nf-md-vector_square'                            = '󰀁'
    'nf-md-vector_square_close'                      = '󱡗'
    'nf-md-vector_square_edit'                       = '󱣙'
    'nf-md-vector_square_minus'                      = '󱣚'
    'nf-md-vector_square_open'                       = '󱡘'
    'nf-md-vector_square_plus'                       = '󱣛'
    'nf-md-vector_square_remove'                     = '󱣜'
    'nf-md-vector_triangle'                          = '󰕣'
    'nf-md-vector_union'                             = '󰕤'
    'nf-md-vhs'                                      = '󰨛'
    'nf-md-vibrate'                                  = '󰕦'
    'nf-md-vibrate_off'                              = '󰳙'
    'nf-md-video'                                    = '󰕧'
    'nf-md-video_2d'                                 = '󱨜'
    'nf-md-video_3d'                                 = '󰟽'
    'nf-md-video_3d_off'                             = '󱏙'
    'nf-md-video_3d_variant'                         = '󰻑'
    'nf-md-video_4k_box'                             = '󰠾'
    'nf-md-video_account'                            = '󰤙'
    'nf-md-video_box'                                = '󰃽'
    'nf-md-video_box_off'                            = '󰃾'
    'nf-md-video_check'                              = '󱁩'
    'nf-md-video_check_outline'                      = '󱁪'
    'nf-md-video_high_definition'                    = '󱔮'
    'nf-md-video_image'                              = '󰤚'
    'nf-md-video_input_antenna'                      = '󰠿'
    'nf-md-video_input_component'                    = '󰡀'
    'nf-md-video_input_hdmi'                         = '󰡁'
    'nf-md-video_input_scart'                        = '󰾌'
    'nf-md-video_input_svideo'                       = '󰡂'
    'nf-md-video_marker'                             = '󱦩'
    'nf-md-video_marker_outline'                     = '󱦪'
    'nf-md-video_minus'                              = '󰦲'
    'nf-md-video_minus_outline'                      = '󰊺'
    'nf-md-video_off'                                = '󰕨'
    'nf-md-video_off_outline'                        = '󰯛'
    'nf-md-video_outline'                            = '󰯜'
    'nf-md-video_plus'                               = '󰦳'
    'nf-md-video_plus_outline'                       = '󰇓'
    'nf-md-video_stabilization'                      = '󰤛'
    'nf-md-video_switch'                             = '󰕩'
    'nf-md-video_switch_outline'                     = '󰞐'
    'nf-md-video_vintage'                            = '󰨜'
    'nf-md-video_wireless'                           = '󰻒'
    'nf-md-video_wireless_outline'                   = '󰻓'
    'nf-md-view_agenda'                              = '󰕪'
    'nf-md-view_agenda_outline'                      = '󱇘'
    'nf-md-view_array'                               = '󰕫'
    'nf-md-view_array_outline'                       = '󱒅'
    'nf-md-view_carousel'                            = '󰕬'
    'nf-md-view_carousel_outline'                    = '󱒆'
    'nf-md-view_column'                              = '󰕭'
    'nf-md-view_column_outline'                      = '󱒇'
    'nf-md-view_comfy'                               = '󰹪'
    'nf-md-view_comfy_outline'                       = '󱒈'
    'nf-md-view_compact'                             = '󰹫'
    'nf-md-view_compact_outline'                     = '󰹬'
    'nf-md-view_dashboard'                           = '󰕮'
    'nf-md-view_dashboard_edit'                      = '󱥇'
    'nf-md-view_dashboard_edit_outline'              = '󱥈'
    'nf-md-view_dashboard_outline'                   = '󰨝'
    'nf-md-view_dashboard_variant'                   = '󰡃'
    'nf-md-view_dashboard_variant_outline'           = '󱒉'
    'nf-md-view_day'                                 = '󰕯'
    'nf-md-view_day_outline'                         = '󱒊'
    'nf-md-view_gallery'                             = '󱢈'
    'nf-md-view_gallery_outline'                     = '󱢉'
    'nf-md-view_grid'                                = '󰕰'
    'nf-md-view_grid_outline'                        = '󱇙'
    'nf-md-view_grid_plus'                           = '󰾍'
    'nf-md-view_grid_plus_outline'                   = '󱇚'
    'nf-md-view_headline'                            = '󰕱'
    'nf-md-view_list'                                = '󰕲'
    'nf-md-view_list_outline'                        = '󱒋'
    'nf-md-view_module'                              = '󰕳'
    'nf-md-view_module_outline'                      = '󱒌'
    'nf-md-view_parallel'                            = '󰜨'
    'nf-md-view_parallel_outline'                    = '󱒍'
    'nf-md-view_quilt'                               = '󰕴'
    'nf-md-view_quilt_outline'                       = '󱒎'
    'nf-md-view_sequential'                          = '󰜩'
    'nf-md-view_sequential_outline'                  = '󱒏'
    'nf-md-view_split_horizontal'                    = '󰯋'
    'nf-md-view_split_vertical'                      = '󰯌'
    'nf-md-view_stream'                              = '󰕵'
    'nf-md-view_stream_outline'                      = '󱒐'
    'nf-md-view_week'                                = '󰕶'
    'nf-md-view_week_outline'                        = '󱒑'
    'nf-md-vimeo'                                    = '󰕷'
    'nf-md-violin'                                   = '󰘏'
    'nf-md-virtual_reality'                          = '󰢔'
    'nf-md-virus'                                    = '󱎶'
    'nf-md-virus_off'                                = '󱣡'
    'nf-md-virus_off_outline'                        = '󱣢'
    'nf-md-virus_outline'                            = '󱎷'
    'nf-md-vlc'                                      = '󰕼'
    'nf-md-voicemail'                                = '󰕽'
    'nf-md-volcano'                                  = '󱪃'
    'nf-md-volcano_outline'                          = '󱪄'
    'nf-md-volleyball'                               = '󰦴'
    'nf-md-volume_high'                              = '󰕾'
    'nf-md-volume_low'                               = '󰕿'
    'nf-md-volume_medium'                            = '󰖀'
    'nf-md-volume_minus'                             = '󰝞'
    'nf-md-volume_mute'                              = '󰝟'
    'nf-md-volume_off'                               = '󰖁'
    'nf-md-volume_plus'                              = '󰝝'
    'nf-md-volume_source'                            = '󱄠'
    'nf-md-volume_variant_off'                       = '󰸈'
    'nf-md-volume_vibrate'                           = '󱄡'
    'nf-md-vote'                                     = '󰨟'
    'nf-md-vote_outline'                             = '󰨠'
    'nf-md-vpn'                                      = '󰖂'
    'nf-md-vuejs'                                    = '󰡄'
    'nf-md-vuetify'                                  = '󰹭'
    'nf-md-walk'                                     = '󰖃'
    'nf-md-wall'                                     = '󰟾'
    'nf-md-wall_fire'                                = '󱨑'
    'nf-md-wall_sconce'                              = '󰤜'
    'nf-md-wall_sconce_flat'                         = '󰤝'
    'nf-md-wall_sconce_flat_outline'                 = '󱟉'
    'nf-md-wall_sconce_flat_variant'                 = '󰐜'
    'nf-md-wall_sconce_flat_variant_outline'         = '󱟊'
    'nf-md-wall_sconce_outline'                      = '󱟋'
    'nf-md-wall_sconce_round'                        = '󰝈'
    'nf-md-wall_sconce_round_outline'                = '󱟌'
    'nf-md-wall_sconce_round_variant'                = '󰤞'
    'nf-md-wall_sconce_round_variant_outline'        = '󱟍'
    'nf-md-wallet'                                   = '󰖄'
    'nf-md-wallet_giftcard'                          = '󰖅'
    'nf-md-wallet_membership'                        = '󰖆'
    'nf-md-wallet_outline'                           = '󰯝'
    'nf-md-wallet_plus'                              = '󰾎'
    'nf-md-wallet_plus_outline'                      = '󰾏'
    'nf-md-wallet_travel'                            = '󰖇'
    'nf-md-wallpaper'                                = '󰸉'
    'nf-md-wan'                                      = '󰖈'
    'nf-md-wardrobe'                                 = '󰾐'
    'nf-md-wardrobe_outline'                         = '󰾑'
    'nf-md-warehouse'                                = '󰾁'
    'nf-md-washing_machine'                          = '󰜪'
    'nf-md-washing_machine_alert'                    = '󱆼'
    'nf-md-washing_machine_off'                      = '󱆽'
    'nf-md-watch'                                    = '󰖉'
    'nf-md-watch_export'                             = '󰖊'
    'nf-md-watch_export_variant'                     = '󰢕'
    'nf-md-watch_import'                             = '󰖋'
    'nf-md-watch_import_variant'                     = '󰢖'
    'nf-md-watch_variant'                            = '󰢗'
    'nf-md-watch_vibrate'                            = '󰚱'
    'nf-md-watch_vibrate_off'                        = '󰳚'
    'nf-md-water'                                    = '󰖌'
    'nf-md-water_alert'                              = '󱔂'
    'nf-md-water_alert_outline'                      = '󱔃'
    'nf-md-water_boiler'                             = '󰾒'
    'nf-md-water_boiler_alert'                       = '󱆳'
    'nf-md-water_boiler_off'                         = '󱆴'
    'nf-md-water_check'                              = '󱔄'
    'nf-md-water_check_outline'                      = '󱔅'
    'nf-md-water_circle'                             = '󱠆'
    'nf-md-water_minus'                              = '󱔆'
    'nf-md-water_minus_outline'                      = '󱔇'
    'nf-md-water_off'                                = '󰖍'
    'nf-md-water_off_outline'                        = '󱔈'
    'nf-md-water_opacity'                            = '󱡕'
    'nf-md-water_outline'                            = '󰸊'
    'nf-md-water_percent'                            = '󰖎'
    'nf-md-water_percent_alert'                      = '󱔉'
    'nf-md-water_plus'                               = '󱔊'
    'nf-md-water_plus_outline'                       = '󱔋'
    'nf-md-water_polo'                               = '󱊠'
    'nf-md-water_pump'                               = '󰖏'
    'nf-md-water_pump_off'                           = '󰾓'
    'nf-md-water_remove'                             = '󱔌'
    'nf-md-water_remove_outline'                     = '󱔍'
    'nf-md-water_sync'                               = '󱟆'
    'nf-md-water_thermometer'                        = '󱪅'
    'nf-md-water_thermometer_outline'                = '󱪆'
    'nf-md-water_well'                               = '󱁫'
    'nf-md-water_well_outline'                       = '󱁬'
    'nf-md-waterfall'                                = '󱡉'
    'nf-md-watering_can'                             = '󱒁'
    'nf-md-watering_can_outline'                     = '󱒂'
    'nf-md-watermark'                                = '󰘒'
    'nf-md-wave'                                     = '󰼮'
    'nf-md-waveform'                                 = '󱑽'
    'nf-md-waves'                                    = '󰞍'
    'nf-md-waves_arrow_left'                         = '󱡙'
    'nf-md-waves_arrow_right'                        = '󱡚'
    'nf-md-waves_arrow_up'                           = '󱡛'
    'nf-md-waze'                                     = '󰯞'
    'nf-md-weather_cloudy'                           = '󰖐'
    'nf-md-weather_cloudy_alert'                     = '󰼯'
    'nf-md-weather_cloudy_arrow_right'               = '󰹮'
    'nf-md-weather_cloudy_clock'                     = '󱣶'
    'nf-md-weather_fog'                              = '󰖑'
    'nf-md-weather_hail'                             = '󰖒'
    'nf-md-weather_hazy'                             = '󰼰'
    'nf-md-weather_hurricane'                        = '󰢘'
    'nf-md-weather_lightning'                        = '󰖓'
    'nf-md-weather_lightning_rainy'                  = '󰙾'
    'nf-md-weather_night'                            = '󰖔'
    'nf-md-weather_night_partly_cloudy'              = '󰼱'
    'nf-md-weather_partly_cloudy'                    = '󰖕'
    'nf-md-weather_partly_lightning'                 = '󰼲'
    'nf-md-weather_partly_rainy'                     = '󰼳'
    'nf-md-weather_partly_snowy'                     = '󰼴'
    'nf-md-weather_partly_snowy_rainy'               = '󰼵'
    'nf-md-weather_pouring'                          = '󰖖'
    'nf-md-weather_rainy'                            = '󰖗'
    'nf-md-weather_snowy'                            = '󰖘'
    'nf-md-weather_snowy_heavy'                      = '󰼶'
    'nf-md-weather_snowy_rainy'                      = '󰙿'
    'nf-md-weather_sunny'                            = '󰖙'
    'nf-md-weather_sunny_alert'                      = '󰼷'
    'nf-md-weather_sunny_off'                        = '󱓤'
    'nf-md-weather_sunset'                           = '󰖚'
    'nf-md-weather_sunset_down'                      = '󰖛'
    'nf-md-weather_sunset_up'                        = '󰖜'
    'nf-md-weather_tornado'                          = '󰼸'
    'nf-md-weather_windy'                            = '󰖝'
    'nf-md-weather_windy_variant'                    = '󰖞'
    'nf-md-web'                                      = '󰖟'
    'nf-md-web_box'                                  = '󰾔'
    'nf-md-web_cancel'                               = '󱞐'
    'nf-md-web_check'                                = '󰞉'
    'nf-md-web_clock'                                = '󱉊'
    'nf-md-web_minus'                                = '󱂠'
    'nf-md-web_off'                                  = '󰪎'
    'nf-md-web_plus'                                 = '󰀳'
    'nf-md-web_refresh'                              = '󱞑'
    'nf-md-web_remove'                               = '󰕑'
    'nf-md-web_sync'                                 = '󱞒'
    'nf-md-webcam'                                   = '󰖠'
    'nf-md-webcam_off'                               = '󱜷'
    'nf-md-webhook'                                  = '󰘯'
    'nf-md-webpack'                                  = '󰜫'
    'nf-md-webrtc'                                   = '󱉈'
    'nf-md-wechat'                                   = '󰘑'
    'nf-md-weight'                                   = '󰖡'
    'nf-md-weight_gram'                              = '󰴿'
    'nf-md-weight_kilogram'                          = '󰖢'
    'nf-md-weight_lifter'                            = '󱅝'
    'nf-md-weight_pound'                             = '󰦵'
    'nf-md-whatsapp'                                 = '󰖣'
    'nf-md-wheel_barrow'                             = '󱓲'
    'nf-md-wheelchair'                               = '󱪇'
    'nf-md-wheelchair_accessibility'                 = '󰖤'
    'nf-md-whistle'                                  = '󰦶'
    'nf-md-whistle_outline'                          = '󱊼'
    'nf-md-white_balance_auto'                       = '󰖥'
    'nf-md-white_balance_incandescent'               = '󰖦'
    'nf-md-white_balance_iridescent'                 = '󰖧'
    'nf-md-white_balance_sunny'                      = '󰖨'
    'nf-md-widgets'                                  = '󰜬'
    'nf-md-widgets_outline'                          = '󱍕'
    'nf-md-wifi'                                     = '󰖩'
    'nf-md-wifi_alert'                               = '󱚵'
    'nf-md-wifi_arrow_down'                          = '󱚶'
    'nf-md-wifi_arrow_left'                          = '󱚷'
    'nf-md-wifi_arrow_left_right'                    = '󱚸'
    'nf-md-wifi_arrow_right'                         = '󱚹'
    'nf-md-wifi_arrow_up'                            = '󱚺'
    'nf-md-wifi_arrow_up_down'                       = '󱚻'
    'nf-md-wifi_cancel'                              = '󱚼'
    'nf-md-wifi_check'                               = '󱚽'
    'nf-md-wifi_cog'                                 = '󱚾'
    'nf-md-wifi_lock'                                = '󱚿'
    'nf-md-wifi_lock_open'                           = '󱛀'
    'nf-md-wifi_marker'                              = '󱛁'
    'nf-md-wifi_minus'                               = '󱛂'
    'nf-md-wifi_off'                                 = '󰖪'
    'nf-md-wifi_plus'                                = '󱛃'
    'nf-md-wifi_refresh'                             = '󱛄'
    'nf-md-wifi_remove'                              = '󱛅'
    'nf-md-wifi_settings'                            = '󱛆'
    'nf-md-wifi_star'                                = '󰸋'
    'nf-md-wifi_strength_1'                          = '󰤟'
    'nf-md-wifi_strength_1_alert'                    = '󰤠'
    'nf-md-wifi_strength_1_lock'                     = '󰤡'
    'nf-md-wifi_strength_1_lock_open'                = '󱛋'
    'nf-md-wifi_strength_2'                          = '󰤢'
    'nf-md-wifi_strength_2_alert'                    = '󰤣'
    'nf-md-wifi_strength_2_lock'                     = '󰤤'
    'nf-md-wifi_strength_2_lock_open'                = '󱛌'
    'nf-md-wifi_strength_3'                          = '󰤥'
    'nf-md-wifi_strength_3_alert'                    = '󰤦'
    'nf-md-wifi_strength_3_lock'                     = '󰤧'
    'nf-md-wifi_strength_3_lock_open'                = '󱛍'
    'nf-md-wifi_strength_4'                          = '󰤨'
    'nf-md-wifi_strength_4_alert'                    = '󰤩'
    'nf-md-wifi_strength_4_lock'                     = '󰤪'
    'nf-md-wifi_strength_4_lock_open'                = '󱛎'
    'nf-md-wifi_strength_alert_outline'              = '󰤫'
    'nf-md-wifi_strength_lock_open_outline'          = '󱛏'
    'nf-md-wifi_strength_lock_outline'               = '󰤬'
    'nf-md-wifi_strength_off'                        = '󰤭'
    'nf-md-wifi_strength_off_outline'                = '󰤮'
    'nf-md-wifi_strength_outline'                    = '󰤯'
    'nf-md-wifi_sync'                                = '󱛇'
    'nf-md-wikipedia'                                = '󰖬'
    'nf-md-wind_power'                               = '󱪈'
    'nf-md-wind_power_outline'                       = '󱪉'
    'nf-md-wind_turbine'                             = '󰶥'
    'nf-md-wind_turbine_alert'                       = '󱦫'
    'nf-md-wind_turbine_check'                       = '󱦬'
    'nf-md-window_close'                             = '󰖭'
    'nf-md-window_closed'                            = '󰖮'
    'nf-md-window_closed_variant'                    = '󱇛'
    'nf-md-window_maximize'                          = '󰖯'
    'nf-md-window_minimize'                          = '󰖰'
    'nf-md-window_open'                              = '󰖱'
    'nf-md-window_open_variant'                      = '󱇜'
    'nf-md-window_restore'                           = '󰖲'
    'nf-md-window_shutter'                           = '󱄜'
    'nf-md-window_shutter_alert'                     = '󱄝'
    'nf-md-window_shutter_cog'                       = '󱪊'
    'nf-md-window_shutter_open'                      = '󱄞'
    'nf-md-window_shutter_settings'                  = '󱪋'
    'nf-md-windsock'                                 = '󱗺'
    'nf-md-wiper'                                    = '󰫩'
    'nf-md-wiper_wash'                               = '󰶦'
    'nf-md-wiper_wash_alert'                         = '󱣟'
    'nf-md-wizard_hat'                               = '󱑷'
    'nf-md-wordpress'                                = '󰖴'
    'nf-md-wrap'                                     = '󰖶'
    'nf-md-wrap_disabled'                            = '󰯟'
    'nf-md-wrench'                                   = '󰖷'
    'nf-md-wrench_clock'                             = '󱦣'
    'nf-md-wrench_outline'                           = '󰯠'
    'nf-md-xamarin'                                  = '󰡅'
    'nf-md-xml'                                      = '󰗀'
    'nf-md-xmpp'                                     = '󰟿'
    'nf-md-yahoo'                                    = '󰭏'
    'nf-md-yeast'                                    = '󰗁'
    'nf-md-yin_yang'                                 = '󰚀'
    'nf-md-yoga'                                     = '󱅼'
    'nf-md-youtube'                                  = '󰗃'
    'nf-md-youtube_gaming'                           = '󰡈'
    'nf-md-youtube_studio'                           = '󰡇'
    'nf-md-youtube_subscription'                     = '󰵀'
    'nf-md-youtube_tv'                               = '󰑈'
    'nf-md-yurt'                                     = '󱔖'
    'nf-md-z_wave'                                   = '󰫪'
    'nf-md-zend'                                     = '󰫫'
    'nf-md-zigbee'                                   = '󰵁'
    'nf-md-zip_box'                                  = '󰗄'
    'nf-md-zip_box_outline'                          = '󰿺'
    'nf-md-zip_disk'                                 = '󰨣'
    'nf-md-zodiac_aquarius'                          = '󰩽'
    'nf-md-zodiac_aries'                             = '󰩾'
    'nf-md-zodiac_cancer'                            = '󰩿'
    'nf-md-zodiac_capricorn'                         = '󰪀'
    'nf-md-zodiac_gemini'                            = '󰪁'
    'nf-md-zodiac_leo'                               = '󰪂'
    'nf-md-zodiac_libra'                             = '󰪃'
    'nf-md-zodiac_pisces'                            = '󰪄'
    'nf-md-zodiac_sagittarius'                       = '󰪅'
    'nf-md-zodiac_scorpio'                           = '󰪆'
    'nf-md-zodiac_taurus'                            = '󰪇'
    'nf-md-zodiac_virgo'                             = '󰪈'
    'nf-oct-accessibility'                           = ''
    'nf-oct-accessibility_inset'                     = ''
    'nf-oct-alert'                                   = ''
    'nf-oct-alert_fill'                              = ''
    'nf-oct-apps'                                    = ''
    'nf-oct-archive'                                 = ''
    'nf-oct-arrow_both'                              = ''
    'nf-oct-arrow_down'                              = ''
    'nf-oct-arrow_down_left'                         = ''
    'nf-oct-arrow_down_right'                        = ''
    'nf-oct-arrow_left'                              = ''
    'nf-oct-arrow_right'                             = ''
    'nf-oct-arrow_switch'                            = ''
    'nf-oct-arrow_up'                                = ''
    'nf-oct-arrow_up_left'                           = ''
    'nf-oct-arrow_up_right'                          = ''
    'nf-oct-beaker'                                  = ''
    'nf-oct-bell'                                    = ''
    'nf-oct-bell_fill'                               = ''
    'nf-oct-bell_slash'                              = ''
    'nf-oct-blocked'                                 = ''
    'nf-oct-bold'                                    = ''
    'nf-oct-book'                                    = ''
    'nf-oct-bookmark'                                = ''
    'nf-oct-bookmark_fill'                           = ''
    'nf-oct-bookmark_slash'                          = ''
    'nf-oct-bookmark_slash_fill'                     = ''
    'nf-oct-briefcase'                               = ''
    'nf-oct-broadcast'                               = ''
    'nf-oct-browser'                                 = ''
    'nf-oct-bug'                                     = ''
    'nf-oct-cache'                                   = ''
    'nf-oct-calendar'                                = ''
    'nf-oct-check'                                   = ''
    'nf-oct-check_circle'                            = ''
    'nf-oct-check_circle_fill'                       = ''
    'nf-oct-checkbox'                                = ''
    'nf-oct-checklist'                               = ''
    'nf-oct-chevron_down'                            = ''
    'nf-oct-chevron_left'                            = ''
    'nf-oct-chevron_right'                           = ''
    'nf-oct-chevron_up'                              = ''
    'nf-oct-circle'                                  = ''
    'nf-oct-circle_slash'                            = ''
    'nf-oct-clock'                                   = ''
    'nf-oct-clock_fill'                              = ''
    'nf-oct-cloud'                                   = ''
    'nf-oct-cloud_offline'                           = ''
    'nf-oct-code'                                    = ''
    'nf-oct-code_of_conduct'                         = ''
    'nf-oct-code_review'                             = ''
    'nf-oct-code_square'                             = ''
    'nf-oct-codescan'                                = ''
    'nf-oct-codescan_checkmark'                      = ''
    'nf-oct-codespaces'                              = ''
    'nf-oct-columns'                                 = ''
    'nf-oct-command_palette'                         = ''
    'nf-oct-comment'                                 = ''
    'nf-oct-comment_discussion'                      = ''
    'nf-oct-commit'                                  = ''
    'nf-oct-container'                               = ''
    'nf-oct-copilot'                                 = ''
    'nf-oct-copilot_error'                           = ''
    'nf-oct-copilot_warning'                         = ''
    'nf-oct-copy'                                    = ''
    'nf-oct-cpu'                                     = ''
    'nf-oct-credit_card'                             = ''
    'nf-oct-cross_reference'                         = ''
    'nf-oct-dash'                                    = ''
    'nf-oct-database'                                = ''
    'nf-oct-dependabot'                              = ''
    'nf-oct-desktop_download'                        = ''
    'nf-oct-device_camera'                           = ''
    'nf-oct-device_camera_video'                     = ''
    'nf-oct-device_desktop'                          = ''
    'nf-oct-device_mobile'                           = ''
    'nf-oct-diamond'                                 = ''
    'nf-oct-diff'                                    = ''
    'nf-oct-diff_added'                              = ''
    'nf-oct-diff_ignored'                            = ''
    'nf-oct-diff_modified'                           = ''
    'nf-oct-diff_removed'                            = ''
    'nf-oct-diff_renamed'                            = ''
    'nf-oct-discussion_closed'                       = ''
    'nf-oct-discussion_duplicate'                    = ''
    'nf-oct-discussion_outdated'                     = ''
    'nf-oct-dot'                                     = ''
    'nf-oct-dot_fill'                                = ''
    'nf-oct-download'                                = ''
    'nf-oct-duplicate'                               = ''
    'nf-oct-ellipsis'                                = ''
    'nf-oct-eye'                                     = ''
    'nf-oct-eye_closed'                              = ''
    'nf-oct-feed_discussion'                         = ''
    'nf-oct-feed_forked'                             = ''
    'nf-oct-feed_heart'                              = ''
    'nf-oct-feed_merged'                             = ''
    'nf-oct-feed_person'                             = ''
    'nf-oct-feed_repo'                               = ''
    'nf-oct-feed_rocket'                             = ''
    'nf-oct-feed_star'                               = ''
    'nf-oct-feed_tag'                                = ''
    'nf-oct-feed_trophy'                             = ''
    'nf-oct-file'                                    = ''
    'nf-oct-file_added'                              = ''
    'nf-oct-file_badge'                              = ''
    'nf-oct-file_binary'                             = ''
    'nf-oct-file_code'                               = ''
    'nf-oct-file_diff'                               = ''
    'nf-oct-file_directory'                          = ''
    'nf-oct-file_directory_fill'                     = ''
    'nf-oct-file_directory_open_fill'                = ''
    'nf-oct-file_media'                              = ''
    'nf-oct-file_moved'                              = ''
    'nf-oct-file_removed'                            = ''
    'nf-oct-file_submodule'                          = ''
    'nf-oct-file_symlink_file'                       = ''
    'nf-oct-file_zip'                                = ''
    'nf-oct-filter'                                  = ''
    'nf-oct-fiscal_host'                             = ''
    'nf-oct-flame'                                   = ''
    'nf-oct-fold'                                    = ''
    'nf-oct-fold_down'                               = ''
    'nf-oct-fold_up'                                 = ''
    'nf-oct-gear'                                    = ''
    'nf-oct-gift'                                    = ''
    'nf-oct-git_branch'                              = ''
    'nf-oct-git_commit'                              = ''
    'nf-oct-git_compare'                             = ''
    'nf-oct-git_merge'                               = ''
    'nf-oct-git_merge_queue'                         = ''
    'nf-oct-git_pull_request'                        = ''
    'nf-oct-git_pull_request_closed'                 = ''
    'nf-oct-git_pull_request_draft'                  = ''
    'nf-oct-globe'                                   = ''
    'nf-oct-goal'                                    = ''
    'nf-oct-grabber'                                 = ''
    'nf-oct-graph'                                   = ''
    'nf-oct-hash'                                    = ''
    'nf-oct-heading'                                 = ''
    'nf-oct-heart'                                   = '♥'
    'nf-oct-heart_fill'                              = ''
    'nf-oct-history'                                 = ''
    'nf-oct-home'                                    = ''
    'nf-oct-home_fill'                               = ''
    'nf-oct-horizontal_rule'                         = ''
    'nf-oct-hourglass'                               = ''
    'nf-oct-hubot'                                   = ''
    'nf-oct-id_badge'                                = ''
    'nf-oct-image'                                   = ''
    'nf-oct-inbox'                                   = ''
    'nf-oct-infinity'                                = ''
    'nf-oct-info'                                    = ''
    'nf-oct-issue_closed'                            = ''
    'nf-oct-issue_draft'                             = ''
    'nf-oct-issue_opened'                            = ''
    'nf-oct-issue_reopened'                          = ''
    'nf-oct-issue_tracked_by'                        = ''
    'nf-oct-issue_tracks'                            = ''
    'nf-oct-italic'                                  = ''
    'nf-oct-iterations'                              = ''
    'nf-oct-kebab_horizontal'                        = ''
    'nf-oct-key'                                     = ''
    'nf-oct-key_asterisk'                            = ''
    'nf-oct-law'                                     = ''
    'nf-oct-light_bulb'                              = ''
    'nf-oct-link'                                    = ''
    'nf-oct-link_external'                           = ''
    'nf-oct-list_ordered'                            = ''
    'nf-oct-list_unordered'                          = ''
    'nf-oct-location'                                = ''
    'nf-oct-lock'                                    = ''
    'nf-oct-log'                                     = ''
    'nf-oct-logo_gist'                               = ''
    'nf-oct-logo_github'                             = ''
    'nf-oct-mail'                                    = ''
    'nf-oct-mark_github'                             = ''
    'nf-oct-markdown'                                = ''
    'nf-oct-megaphone'                               = ''
    'nf-oct-mention'                                 = ''
    'nf-oct-meter'                                   = ''
    'nf-oct-milestone'                               = ''
    'nf-oct-mirror'                                  = ''
    'nf-oct-moon'                                    = ''
    'nf-oct-mortar_board'                            = ''
    'nf-oct-move_to_bottom'                          = ''
    'nf-oct-move_to_end'                             = ''
    'nf-oct-move_to_start'                           = ''
    'nf-oct-move_to_top'                             = ''
    'nf-oct-multi_select'                            = ''
    'nf-oct-mute'                                    = ''
    'nf-oct-no_entry'                                = ''
    'nf-oct-north_star'                              = ''
    'nf-oct-note'                                    = ''
    'nf-oct-number'                                  = ''
    'nf-oct-organization'                            = ''
    'nf-oct-package'                                 = ''
    'nf-oct-package_dependencies'                    = ''
    'nf-oct-package_dependents'                      = ''
    'nf-oct-paintbrush'                              = ''
    'nf-oct-paper_airplane'                          = ''
    'nf-oct-paperclip'                               = ''
    'nf-oct-passkey_fill'                            = ''
    'nf-oct-paste'                                   = ''
    'nf-oct-pencil'                                  = ''
    'nf-oct-people'                                  = ''
    'nf-oct-person'                                  = ''
    'nf-oct-person_add'                              = ''
    'nf-oct-person_fill'                             = ''
    'nf-oct-pin'                                     = ''
    'nf-oct-play'                                    = ''
    'nf-oct-plug'                                    = ''
    'nf-oct-plus'                                    = ''
    'nf-oct-plus_circle'                             = ''
    'nf-oct-project'                                 = ''
    'nf-oct-project_roadmap'                         = ''
    'nf-oct-project_symlink'                         = ''
    'nf-oct-project_template'                        = ''
    'nf-oct-pulse'                                   = ''
    'nf-oct-question'                                = ''
    'nf-oct-quote'                                   = ''
    'nf-oct-read'                                    = ''
    'nf-oct-rel_file_path'                           = ''
    'nf-oct-reply'                                   = ''
    'nf-oct-repo'                                    = ''
    'nf-oct-repo_clone'                              = ''
    'nf-oct-repo_deleted'                            = ''
    'nf-oct-repo_forked'                             = ''
    'nf-oct-repo_locked'                             = ''
    'nf-oct-repo_pull'                               = ''
    'nf-oct-repo_push'                               = ''
    'nf-oct-repo_template'                           = ''
    'nf-oct-report'                                  = ''
    'nf-oct-rocket'                                  = ''
    'nf-oct-rows'                                    = ''
    'nf-oct-rss'                                     = ''
    'nf-oct-ruby'                                    = ''
    'nf-oct-screen_full'                             = ''
    'nf-oct-screen_normal'                           = ''
    'nf-oct-search'                                  = ''
    'nf-oct-server'                                  = ''
    'nf-oct-share'                                   = ''
    'nf-oct-share_android'                           = ''
    'nf-oct-shield'                                  = ''
    'nf-oct-shield_check'                            = ''
    'nf-oct-shield_lock'                             = ''
    'nf-oct-shield_slash'                            = ''
    'nf-oct-shield_x'                                = ''
    'nf-oct-sidebar_collapse'                        = ''
    'nf-oct-sidebar_expand'                          = ''
    'nf-oct-sign_in'                                 = ''
    'nf-oct-sign_out'                                = ''
    'nf-oct-single_select'                           = ''
    'nf-oct-skip'                                    = ''
    'nf-oct-skip_fill'                               = ''
    'nf-oct-sliders'                                 = ''
    'nf-oct-smiley'                                  = ''
    'nf-oct-sort_asc'                                = ''
    'nf-oct-sort_desc'                               = ''
    'nf-oct-sparkle_fill'                            = ''
    'nf-oct-sponsor_tiers'                           = ''
    'nf-oct-square'                                  = ''
    'nf-oct-square_fill'                             = ''
    'nf-oct-squirrel'                                = ''
    'nf-oct-stack'                                   = ''
    'nf-oct-star'                                    = ''
    'nf-oct-star_fill'                               = ''
    'nf-oct-stop'                                    = ''
    'nf-oct-stopwatch'                               = ''
    'nf-oct-strikethrough'                           = ''
    'nf-oct-sun'                                     = ''
    'nf-oct-sync'                                    = ''
    'nf-oct-tab'                                     = ''
    'nf-oct-tab_external'                            = ''
    'nf-oct-table'                                   = ''
    'nf-oct-tag'                                     = ''
    'nf-oct-tasklist'                                = ''
    'nf-oct-telescope'                               = ''
    'nf-oct-telescope_fill'                          = ''
    'nf-oct-terminal'                                = ''
    'nf-oct-three_bars'                              = ''
    'nf-oct-thumbsdown'                              = ''
    'nf-oct-thumbsup'                                = ''
    'nf-oct-tools'                                   = ''
    'nf-oct-trash'                                   = ''
    'nf-oct-triangle_down'                           = ''
    'nf-oct-triangle_left'                           = ''
    'nf-oct-triangle_right'                          = ''
    'nf-oct-triangle_up'                             = ''
    'nf-oct-trophy'                                  = ''
    'nf-oct-typography'                              = ''
    'nf-oct-unfold'                                  = ''
    'nf-oct-unlink'                                  = ''
    'nf-oct-unlock'                                  = ''
    'nf-oct-unmute'                                  = ''
    'nf-oct-unread'                                  = ''
    'nf-oct-unverified'                              = ''
    'nf-oct-upload'                                  = ''
    'nf-oct-verified'                                = ''
    'nf-oct-versions'                                = ''
    'nf-oct-video'                                   = ''
    'nf-oct-webhook'                                 = ''
    'nf-oct-workflow'                                = ''
    'nf-oct-x'                                       = ''
    'nf-oct-x_circle'                                = ''
    'nf-oct-x_circle_fill'                           = ''
    'nf-oct-zap'                                     = '⚡'
    'nf-oct-zoom_in'                                 = ''
    'nf-oct-zoom_out'                                = ''
    'nf-pl-branch'                                   = ''
    'nf-pl-current_line'                             = ''
    'nf-pl-hostname'                                 = ''
    'nf-pl-left_hard_divider'                        = ''
    'nf-pl-left_soft_divider'                        = ''
    'nf-pl-line_number'                              = ''
    'nf-pl-readonly'                                 = ''
    'nf-pl-right_hard_divider'                       = ''
    'nf-pl-right_soft_divider'                       = ''
    'nf-ple-backslash_separator'                     = ''
    'nf-ple-backslash_separator_redundant'           = ''
    'nf-ple-column_number'                           = ''
    'nf-ple-current_column'                          = ''
    'nf-ple-flame_thick'                             = ''
    'nf-ple-flame_thick_mirrored'                    = ''
    'nf-ple-flame_thin'                              = ''
    'nf-ple-flame_thin_mirrored'                     = ''
    'nf-ple-forwardslash_separator'                  = ''
    'nf-ple-forwardslash_separator_redundant'        = ''
    'nf-ple-honeycomb'                               = ''
    'nf-ple-honeycomb_outline'                       = ''
    'nf-ple-ice_waveform'                            = ''
    'nf-ple-ice_waveform_mirrored'                   = ''
    'nf-ple-left_half_circle_thick'                  = ''
    'nf-ple-left_half_circle_thin'                   = ''
    'nf-ple-lego_block_facing'                       = ''
    'nf-ple-lego_block_sideways'                     = ''
    'nf-ple-lego_separator'                          = ''
    'nf-ple-lego_separator_thin'                     = ''
    'nf-ple-lower_left_triangle'                     = ''
    'nf-ple-lower_right_triangle'                    = ''
    'nf-ple-pixelated_squares_big'                   = ''
    'nf-ple-pixelated_squares_big_mirrored'          = ''
    'nf-ple-pixelated_squares_small'                 = ''
    'nf-ple-pixelated_squares_small_mirrored'        = ''
    'nf-ple-right_half_circle_thick'                 = ''
    'nf-ple-right_half_circle_thin'                  = ''
    'nf-ple-trapezoid_top_bottom'                    = ''
    'nf-ple-trapezoid_top_bottom_mirrored'           = ''
    'nf-ple-upper_left_triangle'                     = ''
    'nf-ple-upper_right_triangle'                    = ''
    'nf-pom-away'                                    = ''
    'nf-pom-clean_code'                              = ''
    'nf-pom-external_interruption'                   = ''
    'nf-pom-internal_interruption'                   = ''
    'nf-pom-long_pause'                              = ''
    'nf-pom-pair_programming'                        = ''
    'nf-pom-pomodoro_done'                           = ''
    'nf-pom-pomodoro_estimated'                      = ''
    'nf-pom-pomodoro_squashed'                       = ''
    'nf-pom-pomodoro_ticking'                        = ''
    'nf-pom-short_pause'                             = ''
    'nf-seti-apple'                                  = ''
    'nf-seti-argdown'                                = ''
    'nf-seti-asm'                                    = ''
    'nf-seti-audio'                                  = ''
    'nf-seti-babel'                                  = ''
    'nf-seti-bazel'                                  = ''
    'nf-seti-bicep'                                  = ''
    'nf-seti-bower'                                  = ''
    'nf-seti-bsl'                                    = ''
    'nf-seti-c'                                      = ''
    'nf-seti-c_sharp'                                = ''
    'nf-seti-cake'                                   = ''
    'nf-seti-cake_php'                               = ''
    'nf-seti-checkbox'                               = ''
    'nf-seti-checkbox_unchecked'                     = ''
    'nf-seti-cjsx'                                   = ''
    'nf-seti-clock'                                  = ''
    'nf-seti-clojure'                                = ''
    'nf-seti-code_climate'                           = ''
    'nf-seti-code_search'                            = ''
    'nf-seti-coffee'                                 = ''
    'nf-seti-coldfusion'                             = ''
    'nf-seti-config'                                 = ''
    'nf-seti-cpp'                                    = ''
    'nf-seti-crystal'                                = ''
    'nf-seti-crystal_embedded'                       = ''
    'nf-seti-css'                                    = ''
    'nf-seti-csv'                                    = ''
    'nf-seti-cu'                                     = ''
    'nf-seti-d'                                      = ''
    'nf-seti-dart'                                   = ''
    'nf-seti-db'                                     = ''
    'nf-seti-default'                                = ''
    'nf-seti-deprecation_cop'                        = ''
    'nf-seti-docker'                                 = ''
    'nf-seti-editorconfig'                           = ''
    'nf-seti-ejs'                                    = ''
    'nf-seti-elixir'                                 = ''
    'nf-seti-elixir_script'                          = ''
    'nf-seti-elm'                                    = ''
    'nf-seti-error'                                  = ''
    'nf-seti-eslint'                                 = ''
    'nf-seti-ethereum'                               = ''
    'nf-seti-f_sharp'                                = ''
    'nf-seti-favicon'                                = ''
    'nf-seti-firebase'                               = ''
    'nf-seti-firefox'                                = ''
    'nf-seti-folder'                                 = ''
    'nf-seti-font'                                   = ''
    'nf-seti-git'                                    = ''
    'nf-seti-git_folder'                             = ''
    'nf-seti-git_ignore'                             = ''
    'nf-seti-github'                                 = ''
    'nf-seti-gitlab'                                 = ''
    'nf-seti-go'                                     = ''
    'nf-seti-go2'                                    = ''
    'nf-seti-godot'                                  = ''
    'nf-seti-gradle'                                 = ''
    'nf-seti-grails'                                 = ''
    'nf-seti-graphql'                                = ''
    'nf-seti-grunt'                                  = ''
    'nf-seti-gulp'                                   = ''
    'nf-seti-hacklang'                               = ''
    'nf-seti-haml'                                   = ''
    'nf-seti-happenings'                             = ''
    'nf-seti-haskell'                                = ''
    'nf-seti-haxe'                                   = ''
    'nf-seti-heroku'                                 = ''
    'nf-seti-hex'                                    = ''
    'nf-seti-home'                                   = ''
    'nf-seti-html'                                   = ''
    'nf-seti-ignored'                                = ''
    'nf-seti-illustrator'                            = ''
    'nf-seti-image'                                  = ''
    'nf-seti-info'                                   = ''
    'nf-seti-ionic'                                  = ''
    'nf-seti-jade'                                   = ''
    'nf-seti-java'                                   = ''
    'nf-seti-javascript'                             = ''
    'nf-seti-jenkins'                                = ''
    'nf-seti-jinja'                                  = ''
    'nf-seti-json'                                   = ''
    'nf-seti-julia'                                  = ''
    'nf-seti-karma'                                  = ''
    'nf-seti-kotlin'                                 = ''
    'nf-seti-less'                                   = ''
    'nf-seti-license'                                = ''
    'nf-seti-liquid'                                 = ''
    'nf-seti-livescript'                             = ''
    'nf-seti-lock'                                   = ''
    'nf-seti-lua'                                    = ''
    'nf-seti-makefile'                               = ''
    'nf-seti-markdown'                               = ''
    'nf-seti-maven'                                  = ''
    'nf-seti-mdo'                                    = ''
    'nf-seti-mustache'                               = ''
    'nf-seti-new_file'                               = ''
    'nf-seti-nim'                                    = ''
    'nf-seti-notebook'                               = ''
    'nf-seti-npm'                                    = ''
    'nf-seti-npm_ignored'                            = ''
    'nf-seti-nunjucks'                               = ''
    'nf-seti-ocaml'                                  = ''
    'nf-seti-odata'                                  = ''
    'nf-seti-pddl'                                   = ''
    'nf-seti-pdf'                                    = ''
    'nf-seti-perl'                                   = ''
    'nf-seti-photoshop'                              = ''
    'nf-seti-php'                                    = ''
    'nf-seti-pipeline'                               = ''
    'nf-seti-plan'                                   = ''
    'nf-seti-platformio'                             = ''
    'nf-seti-play_arrow'                             = ''
    'nf-seti-powershell'                             = ''
    'nf-seti-prisma'                                 = ''
    'nf-seti-project'                                = ''
    'nf-seti-prolog'                                 = ''
    'nf-seti-pug'                                    = ''
    'nf-seti-puppet'                                 = ''
    'nf-seti-purescript'                             = ''
    'nf-seti-python'                                 = ''
    'nf-seti-r'                                      = ''
    'nf-seti-rails'                                  = ''
    'nf-seti-react'                                  = ''
    'nf-seti-reasonml'                               = ''
    'nf-seti-rescript'                               = ''
    'nf-seti-rollup'                                 = ''
    'nf-seti-ruby'                                   = ''
    'nf-seti-rust'                                   = ''
    'nf-seti-salesforce'                             = ''
    'nf-seti-sass'                                   = ''
    'nf-seti-sbt'                                    = ''
    'nf-seti-scala'                                  = ''
    'nf-seti-search'                                 = ''
    'nf-seti-settings'                               = ''
    'nf-seti-shell'                                  = ''
    'nf-seti-slim'                                   = ''
    'nf-seti-smarty'                                 = ''
    'nf-seti-spring'                                 = ''
    'nf-seti-stylelint'                              = ''
    'nf-seti-stylus'                                 = ''
    'nf-seti-sublime'                                = ''
    'nf-seti-svelte'                                 = ''
    'nf-seti-svg'                                    = ''
    'nf-seti-swift'                                  = ''
    'nf-seti-terraform'                              = ''
    'nf-seti-tex'                                    = ''
    'nf-seti-text'                                   = ''
    'nf-seti-time_cop'                               = ''
    'nf-seti-todo'                                   = ''
    'nf-seti-tsconfig'                               = ''
    'nf-seti-twig'                                   = ''
    'nf-seti-typescript'                             = ''
    'nf-seti-vala'                                   = ''
    'nf-seti-video'                                  = ''
    'nf-seti-vue'                                    = ''
    'nf-seti-wasm'                                   = ''
    'nf-seti-wat'                                    = ''
    'nf-seti-webpack'                                = ''
    'nf-seti-wgt'                                    = ''
    'nf-seti-word'                                   = ''
    'nf-seti-xls'                                    = ''
    'nf-seti-xml'                                    = ''
    'nf-seti-yarn'                                   = ''
    'nf-seti-yml'                                    = ''
    'nf-seti-zig'                                    = ''
    'nf-seti-zip'                                    = ''
    'nf-weather-alien'                               = ''
    'nf-weather-aliens'                              = ''
    'nf-weather-barometer'                           = ''
    'nf-weather-celsius'                             = ''
    'nf-weather-cloud'                               = ''
    'nf-weather-cloud_down'                          = ''
    'nf-weather-cloud_refresh'                       = ''
    'nf-weather-cloud_up'                            = ''
    'nf-weather-cloudy'                              = ''
    'nf-weather-cloudy_gusts'                        = ''
    'nf-weather-cloudy_windy'                        = ''
    'nf-weather-day_cloudy'                          = ''
    'nf-weather-day_cloudy_gusts'                    = ''
    'nf-weather-day_cloudy_high'                     = ''
    'nf-weather-day_cloudy_windy'                    = ''
    'nf-weather-day_fog'                             = ''
    'nf-weather-day_hail'                            = ''
    'nf-weather-day_haze'                            = ''
    'nf-weather-day_light_wind'                      = ''
    'nf-weather-day_lightning'                       = ''
    'nf-weather-day_rain'                            = ''
    'nf-weather-day_rain_mix'                        = ''
    'nf-weather-day_rain_wind'                       = ''
    'nf-weather-day_showers'                         = ''
    'nf-weather-day_sleet'                           = ''
    'nf-weather-day_sleet_storm'                     = ''
    'nf-weather-day_snow'                            = ''
    'nf-weather-day_snow_thunderstorm'               = ''
    'nf-weather-day_snow_wind'                       = ''
    'nf-weather-day_sprinkle'                        = ''
    'nf-weather-day_storm_showers'                   = ''
    'nf-weather-day_sunny'                           = ''
    'nf-weather-day_sunny_overcast'                  = ''
    'nf-weather-day_thunderstorm'                    = ''
    'nf-weather-day_windy'                           = ''
    'nf-weather-degrees'                             = ''
    'nf-weather-direction_down'                      = ''
    'nf-weather-direction_down_left'                 = ''
    'nf-weather-direction_down_right'                = ''
    'nf-weather-direction_left'                      = ''
    'nf-weather-direction_right'                     = ''
    'nf-weather-direction_up'                        = ''
    'nf-weather-direction_up_left'                   = ''
    'nf-weather-direction_up_right'                  = ''
    'nf-weather-dust'                                = ''
    'nf-weather-earthquake'                          = ''
    'nf-weather-fahrenheit'                          = ''
    'nf-weather-fire'                                = ''
    'nf-weather-flood'                               = ''
    'nf-weather-fog'                                 = ''
    'nf-weather-gale_warning'                        = ''
    'nf-weather-hail'                                = ''
    'nf-weather-horizon'                             = ''
    'nf-weather-horizon_alt'                         = ''
    'nf-weather-hot'                                 = ''
    'nf-weather-humidity'                            = ''
    'nf-weather-hurricane'                           = ''
    'nf-weather-hurricane_warning'                   = ''
    'nf-weather-lightning'                           = ''
    'nf-weather-lunar_eclipse'                       = ''
    'nf-weather-meteor'                              = ''
    'nf-weather-moon_alt_first_quarter'              = ''
    'nf-weather-moon_alt_full'                       = ''
    'nf-weather-moon_alt_new'                        = ''
    'nf-weather-moon_alt_third_quarter'              = ''
    'nf-weather-moon_alt_waning_crescent_1'          = ''
    'nf-weather-moon_alt_waning_crescent_2'          = ''
    'nf-weather-moon_alt_waning_crescent_3'          = ''
    'nf-weather-moon_alt_waning_crescent_4'          = ''
    'nf-weather-moon_alt_waning_crescent_5'          = ''
    'nf-weather-moon_alt_waning_crescent_6'          = ''
    'nf-weather-moon_alt_waning_gibbous_1'           = ''
    'nf-weather-moon_alt_waning_gibbous_2'           = ''
    'nf-weather-moon_alt_waning_gibbous_3'           = ''
    'nf-weather-moon_alt_waning_gibbous_4'           = ''
    'nf-weather-moon_alt_waning_gibbous_5'           = ''
    'nf-weather-moon_alt_waning_gibbous_6'           = ''
    'nf-weather-moon_alt_waxing_crescent_1'          = ''
    'nf-weather-moon_alt_waxing_crescent_2'          = ''
    'nf-weather-moon_alt_waxing_crescent_3'          = ''
    'nf-weather-moon_alt_waxing_crescent_4'          = ''
    'nf-weather-moon_alt_waxing_crescent_5'          = ''
    'nf-weather-moon_alt_waxing_crescent_6'          = ''
    'nf-weather-moon_alt_waxing_gibbous_1'           = ''
    'nf-weather-moon_alt_waxing_gibbous_2'           = ''
    'nf-weather-moon_alt_waxing_gibbous_3'           = ''
    'nf-weather-moon_alt_waxing_gibbous_4'           = ''
    'nf-weather-moon_alt_waxing_gibbous_5'           = ''
    'nf-weather-moon_alt_waxing_gibbous_6'           = ''
    'nf-weather-moon_first_quarter'                  = ''
    'nf-weather-moon_full'                           = ''
    'nf-weather-moon_new'                            = ''
    'nf-weather-moon_third_quarter'                  = ''
    'nf-weather-moon_waning_crescent_1'              = ''
    'nf-weather-moon_waning_crescent_2'              = ''
    'nf-weather-moon_waning_crescent_3'              = ''
    'nf-weather-moon_waning_crescent_4'              = ''
    'nf-weather-moon_waning_crescent_5'              = ''
    'nf-weather-moon_waning_crescent_6'              = ''
    'nf-weather-moon_waning_gibbous_1'               = ''
    'nf-weather-moon_waning_gibbous_2'               = ''
    'nf-weather-moon_waning_gibbous_3'               = ''
    'nf-weather-moon_waning_gibbous_4'               = ''
    'nf-weather-moon_waning_gibbous_5'               = ''
    'nf-weather-moon_waning_gibbous_6'               = ''
    'nf-weather-moon_waxing_crescent_1'              = ''
    'nf-weather-moon_waxing_crescent_2'              = ''
    'nf-weather-moon_waxing_crescent_3'              = ''
    'nf-weather-moon_waxing_crescent_4'              = ''
    'nf-weather-moon_waxing_crescent_5'              = ''
    'nf-weather-moon_waxing_crescent_6'              = ''
    'nf-weather-moon_waxing_gibbous_1'               = ''
    'nf-weather-moon_waxing_gibbous_2'               = ''
    'nf-weather-moon_waxing_gibbous_3'               = ''
    'nf-weather-moon_waxing_gibbous_4'               = ''
    'nf-weather-moon_waxing_gibbous_5'               = ''
    'nf-weather-moon_waxing_gibbous_6'               = ''
    'nf-weather-moonrise'                            = ''
    'nf-weather-moonset'                             = ''
    'nf-weather-na'                                  = ''
    'nf-weather-night_alt_cloudy'                    = ''
    'nf-weather-night_alt_cloudy_gusts'              = ''
    'nf-weather-night_alt_cloudy_high'               = ''
    'nf-weather-night_alt_cloudy_windy'              = ''
    'nf-weather-night_alt_hail'                      = ''
    'nf-weather-night_alt_lightning'                 = ''
    'nf-weather-night_alt_partly_cloudy'             = ''
    'nf-weather-night_alt_rain'                      = ''
    'nf-weather-night_alt_rain_mix'                  = ''
    'nf-weather-night_alt_rain_wind'                 = ''
    'nf-weather-night_alt_showers'                   = ''
    'nf-weather-night_alt_sleet'                     = ''
    'nf-weather-night_alt_sleet_storm'               = ''
    'nf-weather-night_alt_snow'                      = ''
    'nf-weather-night_alt_snow_thunderstorm'         = ''
    'nf-weather-night_alt_snow_wind'                 = ''
    'nf-weather-night_alt_sprinkle'                  = ''
    'nf-weather-night_alt_storm_showers'             = ''
    'nf-weather-night_alt_thunderstorm'              = ''
    'nf-weather-night_clear'                         = ''
    'nf-weather-night_cloudy'                        = ''
    'nf-weather-night_cloudy_gusts'                  = ''
    'nf-weather-night_cloudy_high'                   = ''
    'nf-weather-night_cloudy_windy'                  = ''
    'nf-weather-night_fog'                           = ''
    'nf-weather-night_hail'                          = ''
    'nf-weather-night_lightning'                     = ''
    'nf-weather-night_partly_cloudy'                 = ''
    'nf-weather-night_rain'                          = ''
    'nf-weather-night_rain_mix'                      = ''
    'nf-weather-night_rain_wind'                     = ''
    'nf-weather-night_showers'                       = ''
    'nf-weather-night_sleet'                         = ''
    'nf-weather-night_sleet_storm'                   = ''
    'nf-weather-night_snow'                          = ''
    'nf-weather-night_snow_thunderstorm'             = ''
    'nf-weather-night_snow_wind'                     = ''
    'nf-weather-night_sprinkle'                      = ''
    'nf-weather-night_storm_showers'                 = ''
    'nf-weather-night_thunderstorm'                  = ''
    'nf-weather-rain'                                = ''
    'nf-weather-rain_mix'                            = ''
    'nf-weather-rain_wind'                           = ''
    'nf-weather-raindrop'                            = ''
    'nf-weather-raindrops'                           = ''
    'nf-weather-refresh'                             = ''
    'nf-weather-refresh_alt'                         = ''
    'nf-weather-sandstorm'                           = ''
    'nf-weather-showers'                             = ''
    'nf-weather-sleet'                               = ''
    'nf-weather-small_craft_advisory'                = ''
    'nf-weather-smog'                                = ''
    'nf-weather-smoke'                               = ''
    'nf-weather-snow'                                = ''
    'nf-weather-snow_wind'                           = ''
    'nf-weather-snowflake_cold'                      = ''
    'nf-weather-solar_eclipse'                       = ''
    'nf-weather-sprinkle'                            = ''
    'nf-weather-stars'                               = ''
    'nf-weather-storm_showers'                       = ''
    'nf-weather-storm_warning'                       = ''
    'nf-weather-strong_wind'                         = ''
    'nf-weather-sunrise'                             = ''
    'nf-weather-sunset'                              = ''
    'nf-weather-thermometer'                         = ''
    'nf-weather-thermometer_exterior'                = ''
    'nf-weather-thermometer_internal'                = ''
    'nf-weather-thunderstorm'                        = ''
    'nf-weather-time_1'                              = ''
    'nf-weather-time_10'                             = ''
    'nf-weather-time_11'                             = ''
    'nf-weather-time_12'                             = ''
    'nf-weather-time_2'                              = ''
    'nf-weather-time_3'                              = ''
    'nf-weather-time_4'                              = ''
    'nf-weather-time_5'                              = ''
    'nf-weather-time_6'                              = ''
    'nf-weather-time_7'                              = ''
    'nf-weather-time_8'                              = ''
    'nf-weather-time_9'                              = ''
    'nf-weather-tornado'                             = ''
    'nf-weather-train'                               = ''
    'nf-weather-tsunami'                             = ''
    'nf-weather-umbrella'                            = ''
    'nf-weather-volcano'                             = ''
    'nf-weather-wind_beaufort_0'                     = ''
    'nf-weather-wind_beaufort_1'                     = ''
    'nf-weather-wind_beaufort_10'                    = ''
    'nf-weather-wind_beaufort_11'                    = ''
    'nf-weather-wind_beaufort_12'                    = ''
    'nf-weather-wind_beaufort_2'                     = ''
    'nf-weather-wind_beaufort_3'                     = ''
    'nf-weather-wind_beaufort_4'                     = ''
    'nf-weather-wind_beaufort_5'                     = ''
    'nf-weather-wind_beaufort_6'                     = ''
    'nf-weather-wind_beaufort_7'                     = ''
    'nf-weather-wind_beaufort_8'                     = ''
    'nf-weather-wind_beaufort_9'                     = ''
    'nf-weather-wind_direction'                      = ''
    'nf-weather-wind_east'                           = ''
    'nf-weather-wind_north'                          = ''
    'nf-weather-wind_north_east'                     = ''
    'nf-weather-wind_north_west'                     = ''
    'nf-weather-wind_south'                          = ''
    'nf-weather-wind_south_east'                     = ''
    'nf-weather-wind_south_west'                     = ''
    'nf-weather-wind_west'                           = ''
    'nf-weather-windy'                               = ''

}
tools\LICENSE.txt
From: https://github.com/devblackops/Terminal-Icons/blob/master/LICENSE

MIT License

Copyright (c) 2019 Brandon Olin

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
tools\terminal-icons\Data\colorThemes\devblackops.psd1
@{
    Name  = 'devblackops'
    Types = @{
        Directories = @{
            symlink  = '7373ff'
            junction = '7373ff'
            WellKnown = @{
                docs                    = '00BFFF'
                documents               = '00BFFF'
                desktop                 = '00FBFF'
                benchmark               = 'F08519'
                demo                    = '5F3EC3'
                samples                 = '5F3EC3'
                contacts                = '00FBFF'
                apps                    = 'FF143C'
                applications            = 'FF143C'
                artifacts               = 'D49653'
                shortcuts               = 'FF143C'
                links                   = 'FF143C'
                fonts                   = 'DC143C'
                images                  = '9ACD32'
                photos                  = '9ACD32'
                pictures                = '9ACD32'
                videos                  = 'FFA500'
                movies                  = 'FFA500'
                media                   = 'D3D3D3'
                music                   = 'DB7093'
                songs                   = 'DB7093'
                onedrive                = 'D3D3D3'
                downloads               = 'D3D3D3'
                src                     = '00FF7F'
                development             = '00FF7F'
                projects                = '00FF7F'
                bin                     = '00FFF7'
                tests                   = '87CEEB'
                windows                 = '00A8E8'
                users                   = 'F4F4F4'
                favorites               = 'F7D72C'
                output                  = '00FF7F'
                '.config'               = '87CEAF'
                '.cache'                = '87ECAF'
                '.vscode'               = '87CEFA'
                '.vscode-insiders'      = '24BFA5'
                '.git'                  = 'FF4500'
                '.github'               = 'C0C0C0'
                'github'                = 'C0C0C0'
                'node_modules'          = '6B8E23'
                '.terraform'            = '948EEC'
                '.azure'                = '00BFFF'
                '.aws'                  = 'EC912D'
                '.kube'                 = '326DE6'
                '.docker'               = '2391E6'
            }
        }
        Files = @{
            symlink  = '7373ff'
            junction = '7373ff'
            WellKnown = @{
                '.gitattributes'                = 'FF4500'
                '.gitconfig'                    = 'FF4500'
                '.gitignore'                    = 'FF4500'
                '.gitmodules'                   = 'FF4500'
                '.gitkeep'                      = 'FF4500'
                'git-history'                   = 'FF4500'
                'LICENSE'                       = 'CD5C5C'
                'LICENSE.md'                    = 'CD5C5C'
                'LICENSE.txt'                   = 'CD5C5C'
                'CHANGELOG.md'                  = '98FB98'
                'CHANGELOG.txt'                 = '98FB98'
                'CHANGELOG'                     = '98FB98'
                'README.md'                     = '00FFFF'
                'README.txt'                    = '00FFFF'
                'README'                        = '00FFFF'
                '.DS_Store'                     = '696969'
                '.tsbuildinfo'                  = 'F4A460'
                '.jscsrc'                       = 'F4A460'
                '.jshintrc'                     = 'F4A460'
                'tsconfig.json'                 = 'F4A460'
                'tslint.json'                   = 'F4A460'
                'composer.lock'                 = 'F4A460'
                '.jsbeautifyrc'                 = 'F4A460'
                '.esformatter'                  = 'F4A460'
                'cdp.pid'                       = 'F4A460'
                '.htaccess'                     = '9ACD32'
                '.jshintignore'                 = '87CEEB'
                '.buildignore'                  = '87CEEB'
                '.mrconfig'                     = '87CEEB'
                '.yardopts'                     = '87CEEB'
                'manifest.mf'                   = '87CEEB'
                '.clang-format'                 = '87CEEB'
                '.clang-tidy'                   = '87CEEB'
                'favicon.ico'                   = 'FFD700'
                '.travis.yml'                   = 'FFE4B5'
                '.gitlab-ci.yml'                = 'FF4500'
                '.jenkinsfile'                  = '6495ED'
                'bitbucket-pipelines.yml'       = '87CEFA'
                'bitbucket-pipelines.yaml'      = '87CEFA'
                '.azure-pipelines.yml'          = '00BFFF'

                # Firebase
                'firebase.json'                 = 'FFA500'
                '.firebaserc'                   = 'FFA500'

                # Bower
                '.bowerrc'                      = 'CD5C5C'
                'bower.json'                    = 'CD5C5C'

                # Conduct
                'code_of_conduct.md'            = 'FFFFE0'
                'code_of_conduct.txt'           = 'FFFFE0'

                # Docker
                'Dockerfile'                    = '4682B4'
                'docker-compose.yml'            = '4682B4'
                'docker-compose.yaml'           = '4682B4'
                'docker-compose.dev.yml'        = '4682B4'
                'docker-compose.local.yml'      = '4682B4'
                'docker-compose.ci.yml'         = '4682B4'
                'docker-compose.override.yml'   = '4682B4'
                'docker-compose.staging.yml'    = '4682B4'
                'docker-compose.prod.yml'       = '4682B4'
                'docker-compose.production.yml' = '4682B4'
                'docker-compose.test.yml'       = '4682B4'

                # Vue
                'vue.config.js'                 = '778899'
                'vue.config.ts'                 = '778899'

                # Gulp
                'gulpfile.js'                   = 'CD5C5C'
                'gulpfile.ts'                   = 'CD5C5C'
                'gulpfile.babel.js'             = 'CD5C5C'

                'gruntfile.js'                  = 'CD5C5C'

                # NodeJS
                'package.json'                  = '6B8E23'
                'package-lock.json'             = '6B8E23'
                '.nvmrc'                        = '6B8E23'
                '.esmrc'                        = '6B8E23'

                # NPM
                '.nmpignore'                    = '00BFFF'
                '.npmrc'                        = '00BFFF'

                # Authors
                'authors'                       = 'FF6347'
                'authors.md'                    = 'FF6347'
                'authors.txt'                   = 'FF6347'

                # Terraform
                '.terraform.lock.hcl'           = '948EEC'

                # Gradle
                'gradlew'                       = '39D52D'
            }
            # Archive files
            '.7z'                   = 'DAA520'
            '.bz'                   = 'DAA520'
            '.tar'                  = 'DAA520'
            '.zip'                  = 'DAA520'
            '.gz'                   = 'DAA520'
            '.xz'                   = 'DAA520'
            '.br'                   = 'DAA520'
            '.bzip2'                = 'DAA520'
            '.gzip'                 = 'DAA520'
            '.brotli'               = 'DAA520'
            '.rar'                  = 'DAA520'
            '.tgz'                  = 'DAA520'

            # Executable things
            '.bat'                  = '008000'
            '.cmd'                  = '008000'
            '.exe'                  = '00FA9A'
            '.pl'                   = '8A2BE2'

            '.sh'                   = 'FF4500'

            # App Packages
            '.msi'                  = 'FFC77A'
            '.msix'                 = 'FFC77A'
            '.msixbundle'           = 'FFC77A'
            '.appx'                 = 'FFC77A'
            '.AppxBundle'           = 'FFC77A'
            '.deb'                  = 'FFC77A'
            '.rpm'                  = 'FFC77A'

            # PowerShell
            '.ps1'                  = '00BFFF'
            '.psm1'                 = '00BFFF'
            '.psd1'                 = '00BFFF'
            '.ps1xml'               = '00BFFF'
            '.psc1'                 = '00BFFF'
            '.pssc'                 = '00BFFF'

            # Javascript
            '.js'                   = 'F0E68C'
            '.esx'                  = 'F0E68C'
            '.mjs'                  = 'F0E68C'

            # Java
            '.java'                 = 'F89820'
            '.jar'                  = 'F89820'

            '.gradle'               = '39D52D'

            # Python
            '.py'                   = '4B8BBE'
            '.ipynb'                = '4B8BBE'


            # React
            '.jsx'                  = '20B2AA'
            '.tsx'                  = '20B2AA'

            # Typescript
            '.ts'                   = 'F0E68C'

            # Not-executable code files
            '.dll'                  = '87CEEB'

            # Importable Data files
            '.clixml'               = '00BFFF'
            '.csv'                  = '9ACD32'
            '.tsv'                  = '9ACD32'

            # Settings
            '.ini'                  = '6495ED'
            '.dlc'                  = '6495ED'
            '.config'               = '6495ED'
            '.conf'                 = '6495ED'
            '.properties'           = '6495ED'
            '.prop'                 = '6495ED'
            '.settings'             = '6495ED'
            '.option'               = '6495ED'
            '.reg'                  = '6495ED'
            '.props'                = '6495ED'
            '.toml'                 = '6495ED'
            '.prefs'                = '6495ED'
            '.sln.dotsettings'      = '6495ED'
            '.sln.dotsettings.user' = '6495ED'
            '.cfg'                  = '6495ED'

            # Source Files
            '.c'                    = 'A9A9A9'
            '.cpp'                  = 'A9A9A9'
            '.go'                   = '20B2AA'
            '.php'                  = '6A5ACD'

            # Visual Studio
            '.csproj'               = 'EE82EE'
            '.ruleset'              = 'EE82EE'
            '.sln'                  = 'EE82EE'
            '.slnf'                 = 'EE82EE'
            '.suo'                  = 'EE82EE'
            '.vb'                   = 'EE82EE'
            '.vbs'                  = 'EE82EE'
            '.vcxitems'             = 'EE82EE'
            '.vcxitems.filters'     = 'EE82EE'
            '.vcxproj'              = 'EE82EE'
            '.vsxproj.filters'      = 'EE82EE'

            # CSharp
            '.cs'                   = '7B68EE'
            '.csx'                  = '7B68EE'

            # Haskell
            '.hs'                   = '9932CC'

            # XAML
            '.xaml'                 = '87CEFA'

            # Rust
            '.rs'                   = 'FF4500'

            # Database
            '.pdb'                  = 'FFD700'
            '.sql'                  = 'FFD700'
            '.pks'                  = 'FFD700'
            '.pkb'                  = 'FFD700'
            '.accdb'                = 'FFD700'
            '.mdb'                  = 'FFD700'
            '.sqlite'               = 'FFD700'
            '.pgsql'                = 'FFD700'
            '.postgres'             = 'FFD700'
            '.psql'                 = 'FFD700'

            # Source Control
            '.patch'                = 'FF4500'

            # Project files
            '.user'                 = '00BFFF'
            '.code-workspace'       = '00BFFF'

            # Text data files
            '.log'                  = 'F0E68C'
            '.txt'                  = '00CED1'

            # Subtitle files
            '.srt'                  = '00CED1'
            '.lrc'                  = '00CED1'
            '.ass'                  = 'C50000'

            # HTML/css
            '.html'                 = 'CD5C5C'
            '.htm'                  = 'CD5C5C'
            '.xhtml'                = 'CD5C5C'
            '.html_vm'              = 'CD5C5C'
            '.asp'                  = 'CD5C5C'
            '.css'                  = '87CEFA'
            '.sass'                 = 'FF00FF'
            '.scss'                 = 'FF00FF'
            '.less'                 = '6B8E23'

            # Markdown
            '.md'                   = '00BFFF'
            '.markdown'             = '00BFFF'
            '.rst'                  = '00BFFF'

            # Handlebars
            '.hbs'                  = 'E37933'

            # JSON
            '.json'                 = 'FFD700'
            '.tsbuildinfo'          = 'FFD700'

            # YAML
            '.yml'                  = 'FF6347'
            '.yaml'                 = 'FF6347'

            # LUA
            '.lua'                  = '87CEFA'

            # Clojure
            '.clj'                  = '00FF7F'
            '.cljs'                 = '00FF7F'
            '.cljc'                 = '00FF7F'

            # Groovy
            '.groovy'               = '87CEFA'

            # Vue
            '.vue'                  = '20B2AA'

            # Dart
            '.dart'                 = '4682B4'

            # Elixir
            '.ex'                   = '8B4513'
            '.exs'                  = '8B4513'
            '.eex'                  = '8B4513'
            '.leex'                 = '8B4513'

            # Erlang
            '.erl'                  = 'FF6347'

            # Elm
            '.elm'                  = '9932CC'

            # Applescript
            '.applescript'          = '4682B4'

            # XML
            '.xml'                  = '98FB98'
            '.plist'                = '98FB98'
            '.xsd'                  = '98FB98'
            '.dtd'                  = '98FB98'
            '.xsl'                  = '98FB98'
            '.xslt'                 = '98FB98'
            '.resx'                 = '98FB98'
            '.iml'                  = '98FB98'
            '.xquery'               = '98FB98'
            '.tmLanguage'           = '98FB98'
            '.manifest'             = '98FB98'
            '.project'              = '98FB98'

            # Documents
            '.chm'                  = '87CEEB'
            '.pdf'                  = 'CD5C5C'

            # Excel
            '.xls'                  = '9ACD32'
            '.xlsx'                 = '9ACD32'

            # PowerPoint
            '.pptx'                 = 'DC143C'
            '.ppt'                  = 'DC143C'
            '.pptm'                 = 'DC143C'
            '.potx'                 = 'DC143C'
            '.potm'                 = 'DC143C'
            '.ppsx'                 = 'DC143C'
            '.ppsm'                 = 'DC143C'
            '.pps'                  = 'DC143C'
            '.ppam'                 = 'DC143C'
            '.ppa'                  = 'DC143C'

            # Word
            '.doc'                  = '00BFFF'
            '.docx'                 = '00BFFF'
            '.rtf'                  = '00BFFF'

            # Audio
            '.mp3'                  = 'DB7093'
            '.flac'                 = 'DB7093'
            '.m4a'                  = 'DB7093'
            '.wma'                  = 'DB7093'
            '.aiff'                 = 'DB7093'
            '.wav'                  = 'DB7093'
            '.aac'                  = 'DB7093'
            '.opus'                 = 'DB7093'

            # Images
            '.png'                  = '20B2AA'
            '.jpeg'                 = '20B2AA'
            '.jpg'                  = '20B2AA'
            '.gif'                  = '20B2AA'
            '.ico'                  = '20B2AA'
            '.tif'                  = '20B2AA'
            '.tiff'                 = '20B2AA'
            '.psd'                  = '20B2AA'
            '.psb'                  = '20B2AA'
            '.ami'                  = '20B2AA'
            '.apx'                  = '20B2AA'
            '.bmp'                  = '20B2AA'
            '.bpg'                  = '20B2AA'
            '.brk'                  = '20B2AA'
            '.cur'                  = '20B2AA'
            '.dds'                  = '20B2AA'
            '.dng'                  = '20B2AA'
            '.eps'                  = '20B2AA'
            '.exr'                  = '20B2AA'
            '.fpx'                  = '20B2AA'
            '.gbr'                  = '20B2AA'
            '.jbig2'                = '20B2AA'
            '.jb2'                  = '20B2AA'
            '.jng'                  = '20B2AA'
            '.jxr'                  = '20B2AA'
            '.pbm'                  = '20B2AA'
            '.pgf'                  = '20B2AA'
            '.pic'                  = '20B2AA'
            '.raw'                  = '20B2AA'
            '.webp'                 = '20B2AA'
            '.svg'                  = 'F4A460'

            # Video
            '.webm'                 = 'FFA500'
            '.mkv'                  = 'FFA500'
            '.flv'                  = 'FFA500'
            '.vob'                  = 'FFA500'
            '.ogv'                  = 'FFA500'
            '.ogg'                  = 'FFA500'
            '.gifv'                 = 'FFA500'
            '.avi'                  = 'FFA500'
            '.mov'                  = 'FFA500'
            '.qt'                   = 'FFA500'
            '.wmv'                  = 'FFA500'
            '.yuv'                  = 'FFA500'
            '.rm'                   = 'FFA500'
            '.rmvb'                 = 'FFA500'
            '.mp4'                  = 'FFA500'
            '.mpg'                  = 'FFA500'
            '.mp2'                  = 'FFA500'
            '.mpeg'                 = 'FFA500'
            '.mpe'                  = 'FFA500'
            '.mpv'                  = 'FFA500'
            '.m2v'                  = 'FFA500'

            # Email
            '.ics'                  = '00CED1'

            # Certifactes
            '.cer'                  = 'FF6347'
            '.cert'                 = 'FF6347'
            '.crt'                  = 'FF6347'
            '.pfx'                  = 'FF6347'

            # Keys
            '.pem'                  = '66CDAA'
            '.pub'                  = '66CDAA'
            '.key'                  = '66CDAA'
            '.asc'                  = '66CDAA'
            '.gpg'                  = '66CDAA'

            # Fonts
            '.woff'                 = 'DC143C'
            '.woff2'                = 'DC143C'
            '.ttf'                  = 'DC143C'
            '.eot'                  = 'DC143C'
            '.suit'                 = 'DC143C'
            '.otf'                  = 'DC143C'
            '.bmap'                 = 'DC143C'
            '.fnt'                  = 'DC143C'
            '.odttf'                = 'DC143C'
            '.ttc'                  = 'DC143C'
            '.font'                 = 'DC143C'
            '.fonts'                = 'DC143C'
            '.sui'                  = 'DC143C'
            '.ntf'                  = 'DC143C'
            '.mrg'                  = 'DC143C'

            # Ruby
            '.rb'                   = 'FF0000'
            '.erb'                  = 'FF0000'
            '.gemfile'              = 'FF0000'
            'Rakefile'              = 'FF0000'

            # FSharp
            '.fs'                   = '00BFFF'
            '.fsx'                  = '00BFFF'
            '.fsi'                  = '00BFFF'
            '.fsproj'               = '00BFFF'

            # Docker
            '.dockerignore'         = '4682B4'
            '.dockerfile'           = '4682B4'


            # VSCode
            '.vscodeignore'         = '6495ED'
            '.vsixmanifest'         = '6495ED'
            '.vsix'                 = '6495ED'
            '.code-workplace'       = '6495ED'

            # Sublime
            '.sublime-project'      = 'F4A460'
            '.sublime-workspace'    = 'F4A460'

            '.lock'                 = 'DAA520'

            # Terraform
            '.tf'                   = '948EEC'
            '.tfvars'               = '948EEC'
            '.auto.tfvars'          = '948EEC'

            # Bicep
            '.bicep'                = '00BFFF'

            # Disk Image
            '.vmdk'                 = 'E1E3E6'
            '.vhd'                  = 'E1E3E6'
            '.vhdx'                 = 'E1E3E6'
            '.img'                  = 'E1E3E6'
            '.iso'                  = 'E1E3E6'

            # R language
            '.R'                    = '276DC3'
            '.Rmd'                  = '276DC3'
            '.Rproj'                = '276DC3'

            # Julia language
            '.jl'                   = '9259a3'

            # Vim
            '.vim'                  = '019833'

            # Puppet
            '.pp'                   = 'FFA61A'
            '.epp'                  = 'FFA61A'

            # Scala
            '.scala'                = 'DE3423'
            '.sc'                   = 'DE3423'

            # Autodesk Inventor
            '.iLogicVb'             = 'A63B22'
        }
    }
}
tools\VERIFICATION.txt
VERIFICATION

To verify the files using the project source:

1. Please go to the project source location (https://github.com/devblackops/Terminal-Icons) and download the source files;
2. Build the source to create the binary files to verify;
3. Use Get-FileHash -Path <FILE TO VERIFY> to get the file hash value from both the built file (from step 1 above) and the file from the package and compare them;

Alternatively you can download the module from the PowerShell Gallery ...

    Save-Module -Name posh-with -Path <PATH TO DOWNLOAD TO>

... and compare the files from the package against those in the installed module. Again use Get-FileHash -Path <FILE TO VERIFY> to retrieve those hash values.
tools\terminal-icons\Data\colorThemes\devblackops_light.psd1
@{
  Name  = 'devblackops_light'
  Types = @{
    Directories = @{
      symlink  = '7373ff'
      junction = '7373ff'
      WellKnown = @{
        docs                    = '00BFFF'
        documents               = '00BFFF'
        desktop                 = '00c9cd'
        benchmark               = 'F08519'
        demo                    = '5F3EC3'
        samples                 = '5F3EC3'
        contacts                = '00c9cd'
        apps                    = 'FF143C'
        applications            = 'FF143C'
        artifacts               = 'D49653'
        shortcuts               = 'FF143C'
        links                   = 'FF143C'
        fonts                   = 'DC143C'
        images                  = '9ACD32'
        photos                  = '9ACD32'
        pictures                = '9ACD32'
        videos                  = 'FFA500'
        movies                  = 'FFA500'
        media                   = 'b0b0b0'
        music                   = 'DB7093'
        songs                   = 'DB7093'
        onedrive                = 'b0b0b0'
        downloads               = 'b0b0b0'
        src                     = '00cd65'
        development             = '00cd65'
        projects                = '00cd65'
        bin                     = '00FFF7'
        tests                   = '87CEEB'
        windows                 = '00A8E8'
        users                   = 'F4F4F4'
        favorites               = 'F7D72C'
        output                  = '00cd65'
        '.config'               = '87CEAF'
        '.cache'                = '87ECAF'
        '.vscode'               = '87CEFA'
        '.vscode-insiders'      = '24BFA5'
        '.git'                  = 'FF4500'
        '.github'               = 'b0b0b0'
        'github'                = 'b0b0b0'
        'node_modules'          = '6B8E23'
        '.terraform'            = '948EEC'
        '.azure'                = '00BFFF'
        '.aws'                  = 'EC912D'
        '.kube'                 = '326DE6'
        '.docker'               = '2391E6'
      }
    }
    Files = @{
      symlink  = '7373ff'
      junction = '7373ff'
      WellKnown = @{
        '.gitattributes'                = 'FF4500'
        '.gitconfig'                    = 'FF4500'
        '.gitignore'                    = 'FF4500'
        '.gitmodules'                   = 'FF4500'
        '.gitkeep'                      = 'FF4500'
        'git-history'                   = 'FF4500'
        'LICENSE'                       = 'CD5C5C'
        'LICENSE.md'                    = 'CD5C5C'
        'LICENSE.txt'                   = 'CD5C5C'
        'CHANGELOG.md'                  = '09db09'
        'CHANGELOG.txt'                 = '09db09'
        'CHANGELOG'                     = '09db09'
        'README.md'                     = '00CDCD'
        'README.txt'                    = '00CDCD'
        'README'                        = '00CDCD'
        '.DS_Store'                     = '696969'
        '.tsbuildinfo'                  = 'F4A460'
        '.jscsrc'                       = 'F4A460'
        '.jshintrc'                     = 'F4A460'
        'tsconfig.json'                 = 'F4A460'
        'tslint.json'                   = 'F4A460'
        'composer.lock'                 = 'F4A460'
        '.jsbeautifyrc'                 = 'F4A460'
        '.esformatter'                  = 'F4A460'
        'cdp.pid'                       = 'F4A460'
        '.htaccess'                     = '9ACD32'
        '.jshintignore'                 = '87CEEB'
        '.buildignore'                  = '87CEEB'
        '.mrconfig'                     = '87CEEB'
        '.yardopts'                     = '87CEEB'
        'manifest.mf'                   = '87CEEB'
        '.clang-format'                 = '87CEEB'
        '.clang-tidy'                   = '87CEEB'
        'favicon.ico'                   = 'ffc200'
        '.travis.yml'                   = 'ffbe4f'
        '.gitlab-ci.yml'                = 'FF4500'
        '.jenkinsfile'                  = '6495ED'
        'bitbucket-pipelines.yml'       = '87CEFA'
        'bitbucket-pipelines.yaml'      = '87CEFA'
        '.azure-pipelines.yml'          = '00BFFF'

        # Firebase
        'firebase.json'                 = 'FFA500'
        '.firebaserc'                   = 'FFA500'

        # Bower
        '.bowerrc'                      = 'CD5C5C'
        'bower.json'                    = 'CD5C5C'

        # Conduct
        'code_of_conduct.md'            = 'b0b0b0'
        'code_of_conduct.txt'           = 'b0b0b0'

        # Docker
        'Dockerfile'                    = '4682B4'
        'docker-compose.yml'            = '4682B4'
        'docker-compose.yaml'           = '4682B4'
        'docker-compose.dev.yml'        = '4682B4'
        'docker-compose.local.yml'      = '4682B4'
        'docker-compose.ci.yml'         = '4682B4'
        'docker-compose.override.yml'   = '4682B4'
        'docker-compose.staging.yml'    = '4682B4'
        'docker-compose.prod.yml'       = '4682B4'
        'docker-compose.production.yml' = '4682B4'
        'docker-compose.test.yml'       = '4682B4'

        # Vue
        'vue.config.js'                 = '778899'
        'vue.config.ts'                 = '778899'

        # Gulp
        'gulpfile.js'                   = 'CD5C5C'
        'gulpfile.ts'                   = 'CD5C5C'
        'gulpfile.babel.js'             = 'CD5C5C'

        'gruntfile.js'                  = 'CD5C5C'

        # NodeJS
        'package.json'                  = '6B8E23'
        'package-lock.json'             = '6B8E23'
        '.nvmrc'                        = '6B8E23'
        '.esmrc'                        = '6B8E23'

        # NPM
        '.nmpignore'                    = '00BFFF'
        '.npmrc'                        = '00BFFF'

        # Authors
        'authors'                       = 'FF6347'
        'authors.md'                    = 'FF6347'
        'authors.txt'                   = 'FF6347'

        # Terraform
        '.terraform.lock.hcl'           = '948EEC'

        # Gradle
        'gradlew'                       = '39D52D'
      }
      # Archive files
      '.7z'                   = 'DAA520'
      '.bz'                   = 'DAA520'
      '.tar'                  = 'DAA520'
      '.zip'                  = 'DAA520'
      '.gz'                   = 'DAA520'
      '.xz'                   = 'DAA520'
      '.br'                   = 'DAA520'
      '.bzip2'                = 'DAA520'
      '.gzip'                 = 'DAA520'
      '.brotli'               = 'DAA520'
      '.rar'                  = 'DAA520'
      '.tgz'                  = 'DAA520'

      # Executable things
      '.bat'                  = '008000'
      '.cmd'                  = '008000'
      '.exe'                  = '00e18a'
      '.pl'                   = '8A2BE2'

      '.sh'                   = 'FF4500'

      # App Packages
      '.msi'                  = 'ffb247'
      '.msix'                 = 'ffb247'
      '.msixbundle'           = 'ffb247'
      '.appx'                 = 'ffb247'
      '.AppxBundle'           = 'ffb247'
      '.deb'                  = 'ffb247'
      '.rpm'                  = 'ffb247'

      # PowerShell
      '.ps1'                  = '00BFFF'
      '.psm1'                 = '00BFFF'
      '.psd1'                 = '00BFFF'
      '.ps1xml'               = '00BFFF'
      '.psc1'                 = '00BFFF'
      '.pssc'                 = '00BFFF'

      # Javascript
      '.js'                   = 'FFC200'
      '.esx'                  = 'FFC200'
      '.mjs'                  = 'FFC200'

      # Java
      '.java'                 = 'F89820'
      '.jar'                  = 'F89820'

      '.gradle'               = '39D52D'

      # Python
      '.py'                   = '4B8BBE'
      '.ipynb'                = '4B8BBE'

      # React
      '.jsx'                  = '20B2AA'
      '.tsx'                  = '20B2AA'

      # Typescript
      '.ts'                   = 'FFC200'

      # Not-executable code files
      '.dll'                  = '87CEEB'

      # Importable Data files
      '.clixml'               = '00BFFF'
      '.csv'                  = '9ACD32'
      '.tsv'                  = '9ACD32'

      # Settings
      '.ini'                  = '6495ED'
      '.dlc'                  = '6495ED'
      '.config'               = '6495ED'
      '.conf'                 = '6495ED'
      '.properties'           = '6495ED'
      '.prop'                 = '6495ED'
      '.settings'             = '6495ED'
      '.option'               = '6495ED'
      '.reg'                  = '6495ED'
      '.props'                = '6495ED'
      '.toml'                 = '6495ED'
      '.prefs'                = '6495ED'
      '.sln.dotsettings'      = '6495ED'
      '.sln.dotsettings.user' = '6495ED'
      '.cfg'                  = '6495ED'

      # Source Files
      '.c'                    = 'A9A9A9'
      '.cpp'                  = 'A9A9A9'
      '.go'                   = '20B2AA'
      '.php'                  = '6A5ACD'

      # Visual Studio
      '.csproj'               = 'EE82EE'
      '.ruleset'              = 'EE82EE'
      '.sln'                  = 'EE82EE'
      '.slnf'                 = 'EE82EE'
      '.suo'                  = 'EE82EE'
      '.vb'                   = 'EE82EE'
      '.vbs'                  = 'EE82EE'
      '.vcxitems'             = 'EE82EE'
      '.vcxitems.filters'     = 'EE82EE'
      '.vcxproj'              = 'EE82EE'
      '.vsxproj.filters'      = 'EE82EE'

      # CSharp
      '.cs'                   = '7B68EE'
      '.csx'                  = '7B68EE'

      # Haskell
      '.hs'                   = '9932CC'

      # XAML
      '.xaml'                 = '87CEFA'

      # Rust
      '.rs'                   = 'FF4500'

      # Database
      '.pdb'                  = 'ffc200'
      '.sql'                  = 'ffc200'
      '.pks'                  = 'ffc200'
      '.pkb'                  = 'ffc200'
      '.accdb'                = 'ffc200'
      '.mdb'                  = 'ffc200'
      '.sqlite'               = 'ffc200'
      '.pgsql'                = 'ffc200'
      '.postgres'             = 'ffc200'
      '.psql'                 = 'ffc200'

      # Source Control
      '.patch'                = 'FF4500'

      # Project files
      '.user'                 = '00BFFF'
      '.code-workspace'       = '00BFFF'

      # Text data files
      '.log'                  = 'FFC200'
      '.txt'                  = '00CED1'

      # Subtitle files
      '.srt'                  = '00CED1'
      '.lrc'                  = '00CED1'
      '.ass'                  = 'C50000'

      # HTML/css
      '.html'                 = 'CD5C5C'
      '.htm'                  = 'CD5C5C'
      '.xhtml'                = 'CD5C5C'
      '.html_vm'              = 'CD5C5C'
      '.asp'                  = 'CD5C5C'
      '.css'                  = '87CEFA'
      '.sass'                 = 'FF00FF'
      '.scss'                 = 'FF00FF'
      '.less'                 = '6B8E23'

      # Markdown
      '.md'                   = '00BFFF'
      '.markdown'             = '00BFFF'
      '.rst'                  = '00BFFF'

      # Handlebars
      '.hbs'                  = 'E37933'

      # JSON
      '.json'                 = 'ffc200'
      '.tsbuildinfo'          = 'ffc200'

      # YAML
      '.yml'                  = 'FF6347'
      '.yaml'                 = 'FF6347'

      # LUA
      '.lua'                  = '87CEFA'

      # Clojure
      '.clj'                  = '00cd65'
      '.cljs'                 = '00cd65'
      '.cljc'                 = '00cd65'

      # Groovy
      '.groovy'               = '87CEFA'

      # Vue
      '.vue'                  = '20B2AA'

      # Dart
      '.dart'                 = '4682B4'

      # Elixir
      '.ex'                   = '8B4513'
      '.exs'                  = '8B4513'
      '.eex'                  = '8B4513'
      '.leex'                 = '8B4513'

      # Erlang
      '.erl'                  = 'FF6347'

      # Elm
      '.elm'                  = '9932CC'

      # Applescript
      '.applescript'          = '4682B4'

      # XML
      '.xml'                  = '09db09'
      '.plist'                = '09db09'
      '.xsd'                  = '09db09'
      '.dtd'                  = '09db09'
      '.xsl'                  = '09db09'
      '.xslt'                 = '09db09'
      '.resx'                 = '09db09'
      '.iml'                  = '09db09'
      '.xquery'               = '09db09'
      '.tmLanguage'           = '09db09'
      '.manifest'             = '09db09'
      '.project'              = '09db09'

      # Documents
      '.chm'                  = '87CEEB'
      '.pdf'                  = 'CD5C5C'

      # Excel
      '.xls'                  = '9ACD32'
      '.xlsx'                 = '9ACD32'

      # PowerPoint
      '.pptx'                 = 'DC143C'
      '.ppt'                  = 'DC143C'
      '.pptm'                 = 'DC143C'
      '.potx'                 = 'DC143C'
      '.potm'                 = 'DC143C'
      '.ppsx'                 = 'DC143C'
      '.ppsm'                 = 'DC143C'
      '.pps'                  = 'DC143C'
      '.ppam'                 = 'DC143C'
      '.ppa'                  = 'DC143C'

      # Word
      '.doc'                  = '00BFFF'
      '.docx'                 = '00BFFF'
      '.rtf'                  = '00BFFF'

      # Audio
      '.mp3'                  = 'DB7093'
      '.flac'                 = 'DB7093'
      '.m4a'                  = 'DB7093'
      '.wma'                  = 'DB7093'
      '.aiff'                 = 'DB7093'
      '.wav'                  = 'DB7093'
      '.aac'                  = 'DB7093'
      '.opus'                 = 'DB7093'

      # Images
      '.png'                  = '20B2AA'
      '.jpeg'                 = '20B2AA'
      '.jpg'                  = '20B2AA'
      '.gif'                  = '20B2AA'
      '.ico'                  = '20B2AA'
      '.tif'                  = '20B2AA'
      '.tiff'                 = '20B2AA'
      '.psd'                  = '20B2AA'
      '.psb'                  = '20B2AA'
      '.ami'                  = '20B2AA'
      '.apx'                  = '20B2AA'
      '.bmp'                  = '20B2AA'
      '.bpg'                  = '20B2AA'
      '.brk'                  = '20B2AA'
      '.cur'                  = '20B2AA'
      '.dds'                  = '20B2AA'
      '.dng'                  = '20B2AA'
      '.eps'                  = '20B2AA'
      '.exr'                  = '20B2AA'
      '.fpx'                  = '20B2AA'
      '.gbr'                  = '20B2AA'
      '.jbig2'                = '20B2AA'
      '.jb2'                  = '20B2AA'
      '.jng'                  = '20B2AA'
      '.jxr'                  = '20B2AA'
      '.pbm'                  = '20B2AA'
      '.pgf'                  = '20B2AA'
      '.pic'                  = '20B2AA'
      '.raw'                  = '20B2AA'
      '.webp'                 = '20B2AA'
      '.svg'                  = 'F4A460'

      # Video
      '.webm'                 = 'FFA500'
      '.mkv'                  = 'FFA500'
      '.flv'                  = 'FFA500'
      '.vob'                  = 'FFA500'
      '.ogv'                  = 'FFA500'
      '.ogg'                  = 'FFA500'
      '.gifv'                 = 'FFA500'
      '.avi'                  = 'FFA500'
      '.mov'                  = 'FFA500'
      '.qt'                   = 'FFA500'
      '.wmv'                  = 'FFA500'
      '.yuv'                  = 'FFA500'
      '.rm'                   = 'FFA500'
      '.rmvb'                 = 'FFA500'
      '.mp4'                  = 'FFA500'
      '.mpg'                  = 'FFA500'
      '.mp2'                  = 'FFA500'
      '.mpeg'                 = 'FFA500'
      '.mpe'                  = 'FFA500'
      '.mpv'                  = 'FFA500'
      '.m2v'                  = 'FFA500'

      # Email
      '.ics'                  = '00CED1'

      # Certifactes
      '.cer'                  = 'FF6347'
      '.cert'                 = 'FF6347'
      '.crt'                  = 'FF6347'
      '.pfx'                  = 'FF6347'

      # Keys
      '.pem'                  = '66CDAA'
      '.pub'                  = '66CDAA'
      '.key'                  = '66CDAA'
      '.asc'                  = '66CDAA'
      '.gpg'                  = '66CDAA'

      # Fonts
      '.woff'                 = 'DC143C'
      '.woff2'                = 'DC143C'
      '.ttf'                  = 'DC143C'
      '.eot'                  = 'DC143C'
      '.suit'                 = 'DC143C'
      '.otf'                  = 'DC143C'
      '.bmap'                 = 'DC143C'
      '.fnt'                  = 'DC143C'
      '.odttf'                = 'DC143C'
      '.ttc'                  = 'DC143C'
      '.font'                 = 'DC143C'
      '.fonts'                = 'DC143C'
      '.sui'                  = 'DC143C'
      '.ntf'                  = 'DC143C'
      '.mrg'                  = 'DC143C'

      # Ruby
      '.rb'                   = 'FF0000'
      '.erb'                  = 'FF0000'
      '.gemfile'              = 'FF0000'
      'Rakefile'              = 'FF0000'

      # FSharp
      '.fs'                   = '00BFFF'
      '.fsx'                  = '00BFFF'
      '.fsi'                  = '00BFFF'
      '.fsproj'               = '00BFFF'

      # Docker
      '.dockerignore'         = '4682B4'
      '.dockerfile'           = '4682B4'


      # VSCode
      '.vscodeignore'         = '6495ED'
      '.vsixmanifest'         = '6495ED'
      '.vsix'                 = '6495ED'
      '.code-workplace'       = '6495ED'

      # Sublime
      '.sublime-project'      = 'F4A460'
      '.sublime-workspace'    = 'F4A460'

      '.lock'                 = 'DAA520'

      # Terraform
      '.tf'                   = '948EEC'
      '.tfvars'               = '948EEC'
      '.auto.tfvars'          = '948EEC'

      # Bicep
      '.bicep'                = '00BFFF'

      # Disk Image
      '.vmdk'                 = 'a9afb8'
      '.vhd'                  = 'a9afb8'
      '.vhdx'                 = 'a9afb8'
      '.img'                  = 'a9afb8'
      '.iso'                  = 'a9afb8'

      # R language
      '.R'                    = '276DC3'
      '.Rmd'                  = '276DC3'
      '.Rproj'                = '276DC3'

      # Julia language
      '.jl'                   = '9259a3'

      # Vim
      '.vim'                  = '019833'

      # Puppet
      '.pp'                   = 'FFA61A'
      '.epp'                  = 'FFA61A'

      # Scala
      '.scala'                = 'DE3423'
      '.sc'                   = 'DE3423'

      # Autodesk Inventor
      '.iLogicVb'             = 'A63B22'
    }
  }
}
tools\terminal-icons\PSGetModuleInfo.xml
<Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04">
  <Obj RefId="0">
    <TN RefId="0">
      <T>Microsoft.PowerShell.Commands.PSRepositoryItemInfo</T>
      <T>System.Management.Automation.PSCustomObject</T>
      <T>System.Object</T>
    </TN>
    <MS>
      <S N="Name">Terminal-Icons</S>
      <S N="Version">0.11.0</S>
      <S N="Type">Module</S>
      <S N="Description">PowerShell module to add file icons to terminal based on file extension</S>
      <S N="Author">Brandon Olin</S>
      <S N="CompanyName">devblackops</S>
      <S N="Copyright">(c) Brandon Olin. All rights reserved.</S>
      <DT N="PublishedDate">2023-07-06T04:55:30+00:00</DT>
      <Nil N="InstalledDate" />
      <Nil N="UpdatedDate" />
      <URI N="LicenseUri">https://raw.githubusercontent.com/devblackops/Terminal-Icons/master/LICENSE</URI>
      <URI N="ProjectUri">https://github.com/devblackops/Terminal-Icons</URI>
      <URI N="IconUri">https://github.com/devblackops/Terminal-Icons/raw/master/media/icon_256.png</URI>
      <Obj N="Tags" RefId="1">
        <TN RefId="1">
          <T>System.Object[]</T>
          <T>System.Array</T>
          <T>System.Object</T>
        </TN>
        <LST>
          <S>Color</S>
          <S>Terminal</S>
          <S>Console</S>
          <S>NerdFonts</S>
          <S>Icon</S>
          <S>PSModule</S>
        </LST>
      </Obj>
      <Obj N="Includes" RefId="2">
        <TN RefId="2">
          <T>System.Collections.Hashtable</T>
          <T>System.Object</T>
        </TN>
        <DCT>
          <En>
            <S N="Key">Function</S>
            <Obj N="Value" RefId="3">
              <TNRef RefId="1" />
              <LST>
                <S>Add-TerminalIconsColorTheme</S>
                <S>Add-TerminalIconsIconTheme</S>
                <S>Format-TerminalIcons</S>
                <S>Get-TerminalIconsColorTheme</S>
                <S>Get-TerminalIconsGlyphs</S>
                <S>Get-TerminalIconsIconTheme</S>
                <S>Get-TerminalIconsTheme</S>
                <S>Invoke-TerminalIconsThemeMigration</S>
                <S>Remove-TerminalIconsTheme</S>
                <S>Set-TerminalIconsIcon</S>
                <S>Set-TerminalIconsTheme</S>
                <S>Show-TerminalIconsTheme</S>
              </LST>
            </Obj>
          </En>
          <En>
            <S N="Key">RoleCapability</S>
            <Obj N="Value" RefId="4">
              <TNRef RefId="1" />
              <LST />
            </Obj>
          </En>
          <En>
            <S N="Key">Command</S>
            <Obj N="Value" RefId="5">
              <TNRef RefId="1" />
              <LST>
                <S>Add-TerminalIconsColorTheme</S>
                <S>Add-TerminalIconsIconTheme</S>
                <S>Format-TerminalIcons</S>
                <S>Get-TerminalIconsColorTheme</S>
                <S>Get-TerminalIconsGlyphs</S>
                <S>Get-TerminalIconsIconTheme</S>
                <S>Get-TerminalIconsTheme</S>
                <S>Invoke-TerminalIconsThemeMigration</S>
                <S>Remove-TerminalIconsTheme</S>
                <S>Set-TerminalIconsIcon</S>
                <S>Set-TerminalIconsTheme</S>
                <S>Show-TerminalIconsTheme</S>
              </LST>
            </Obj>
          </En>
          <En>
            <S N="Key">DscResource</S>
            <Obj N="Value" RefId="6">
              <TNRef RefId="1" />
              <LST />
            </Obj>
          </En>
          <En>
            <S N="Key">Workflow</S>
            <Obj N="Value" RefId="7">
              <TNRef RefId="1" />
              <LST />
            </Obj>
          </En>
          <En>
            <S N="Key">Cmdlet</S>
            <Obj N="Value" RefId="8">
              <TNRef RefId="1" />
              <LST />
            </Obj>
          </En>
        </DCT>
      </Obj>
      <Nil N="PowerShellGetFormatVersion" />
      <S N="ReleaseNotes">https://raw.githubusercontent.com/devblackops/Terminal-Icons/master/CHANGELOG.md</S>
      <Obj N="Dependencies" RefId="9">
        <TNRef RefId="1" />
        <LST />
      </Obj>
      <S N="RepositorySourceLocation">https://www.powershellgallery.com/api/v2</S>
      <S N="Repository">PSGallery</S>
      <S N="PackageManagementProvider">NuGet</S>
      <Obj N="AdditionalMetadata" RefId="10">
        <TN RefId="3">
          <T>System.Management.Automation.PSCustomObject</T>
          <T>System.Object</T>
        </TN>
        <MS>
          <S N="copyright">(c) Brandon Olin. All rights reserved.</S>
          <S N="description">PowerShell module to add file icons to terminal based on file extension</S>
          <S N="requireLicenseAcceptance">False</S>
          <S N="releaseNotes">https://raw.githubusercontent.com/devblackops/Terminal-Icons/master/CHANGELOG.md</S>
          <S N="isLatestVersion">True</S>
          <S N="isAbsoluteLatestVersion">True</S>
          <S N="versionDownloadCount">27</S>
          <S N="downloadCount">244831</S>
          <S N="packageSize">127437</S>
          <S N="published">7/6/2023 4:55:30 AM +00:00</S>
          <S N="created">7/6/2023 4:55:30 AM +00:00</S>
          <S N="lastUpdated">7/6/2023 6:06:10 AM +00:00</S>
          <S N="tags">Color Terminal Console NerdFonts Icon PSModule PSFunction_Add-TerminalIconsColorTheme PSCommand_Add-TerminalIconsColorTheme PSFunction_Add-TerminalIconsIconTheme PSCommand_Add-TerminalIconsIconTheme PSFunction_Format-TerminalIcons PSCommand_Format-TerminalIcons PSFunction_Get-TerminalIconsColorTheme PSCommand_Get-TerminalIconsColorTheme PSFunction_Get-TerminalIconsGlyphs PSCommand_Get-TerminalIconsGlyphs PSFunction_Get-TerminalIconsIconTheme PSCommand_Get-TerminalIconsIconTheme PSFunction_Get-TerminalIconsTheme PSCommand_Get-TerminalIconsTheme PSFunction_Invoke-TerminalIconsThemeMigration PSCommand_Invoke-TerminalIconsThemeMigration PSFunction_Remove-TerminalIconsTheme PSCommand_Remove-TerminalIconsTheme PSFunction_Set-TerminalIconsIcon PSCommand_Set-TerminalIconsIcon PSFunction_Set-TerminalIconsTheme PSCommand_Set-TerminalIconsTheme PSFunction_Show-TerminalIconsTheme PSCommand_Show-TerminalIconsTheme PSIncludes_Function</S>
          <S N="developmentDependency">False</S>
          <S N="updated">2023-07-06T06:06:10Z</S>
          <S N="NormalizedVersion">0.11.0</S>
          <S N="Authors">Brandon Olin</S>
          <S N="IsPrerelease">false</S>
          <S N="ItemType">Module</S>
          <S N="FileList">Terminal-Icons.nuspec|Terminal-Icons.psm1|en-US\Terminal-Icons-help.xml|Data\iconThemes\devblackops.psd1|Terminal-Icons.psd1|Data\colorThemes\devblackops.psd1|Terminal-Icons.format.ps1xml|Data\colorThemes\devblackops_light.psd1|Data\glyphs.ps1</S>
          <S N="GUID">4419ddb6-3528-47cd-baf3-7fb9d8566620</S>
          <S N="PowerShellVersion">5.1</S>
          <S N="CompanyName">Community</S>
        </MS>
      </Obj>
      <S N="InstalledLocation">C:\Users\appveyor\AppData\Local\Temp\1\f54c5fbd-50e6-4822-a3b2-0c5de83d71e0\Terminal-Icons\0.11.0</S>
    </MS>
  </Obj>
</Objs>
tools\terminal-icons\Data\iconThemes\devblackops.psd1
@{
    Name  = 'devblackops'
    Types = @{
        Directories = @{
            # Default directory icon
            ''        = 'nf-oct-file_directory'
            symlink   = 'nf-cod-file_symlink_directory'
            junction  = 'nf-fa-external_link'
            WellKnown = @{
                docs                    = 'nf-oct-repo'
                documents               = 'nf-oct-repo'
                desktop                 = 'nf-md-desktop_classic'
                benchmark               = 'nf-md-timer'
                demo                    = 'nf-cod-preview'
                samples                 = 'nf-cod-preview'
                contacts                = 'nf-md-contacts'
                apps                    = 'nf-md-apps'
                applications            = 'nf-md-apps'
                artifacts               = 'nf-cod-package'
                shortcuts               = 'nf-cod-file_symlink_directory'
                links                   = 'nf-cod-file_symlink_directory'
                fonts                   = 'nf-fa-font'
                images                  = 'nf-md-folder_image'
                photos                  = 'nf-md-folder_image'
                pictures                = 'nf-md-folder_image'
                videos                  = 'nf-md-movie'
                movies                  = 'nf-md-movie'
                media                   = 'nf-dev-html5_multimedia'
                music                   = 'nf-md-music_box_multiple'
                songs                   = 'nf-md-music_box_multiple'
                onedrive                = 'nf-dev-onedrive'
                downloads               = 'nf-md-folder_download'
                src                     = 'nf-oct-terminal'
                development             = 'nf-oct-terminal'
                projects                = 'nf-seti-project'
                bin                     = 'nf-oct-file_binary'
                tests                   = 'nf-md-test_tube'
                windows                 = 'nf-fa-windows'
                users                   = 'nf-fa-users'
                favorites               = 'nf-md-folder_star'
                output                  = 'nf-cod-output'
                '.config'               = 'nf-seti-config'
                '.cache'                = 'nf-md-cached'
                '.vscode'               = 'nf-custom-folder_config'
                '.vscode-insiders'      = 'nf-custom-folder_config'
                '.git'                  = 'nf-custom-folder_git'
                '.github'               = 'nf-custom-folder_github'
                'github'                = 'nf-fa-github_alt'
                'node_modules'          = 'nf-custom-folder_npm'
                '.azure'                = 'nf-md-microsoft_azure'
                '.aws'                  = 'nf-dev-aws'
                '.kube'                 = 'nf-md-ship_wheel'
                '.docker'               = 'nf-dev-docker'
                'umbraco'               = 'nf-md-umbraco'
            }
        }

        Files       = @{
            # Default file icon
            ''        = 'nf-fa-file'
            symlink   = 'nf-oct-file_symlink_file'
            junction  = 'nf-fa-external_link'
            WellKnown               = @{
                '.gitattributes'                = 'nf-dev-git'
                '.gitconfig'                    = 'nf-dev-git'
                '.gitignore'                    = 'nf-dev-git'
                '.gitmodules'                   = 'nf-dev-git'
                '.gitkeep'                      = 'nf-dev-git'
                'git-history'                   = 'nf-dev-git'
                'LICENSE'                       = 'nf-md-certificate'
                'CHANGELOG.md'                  = 'nf-fae-checklist_o'
                'CHANGELOG.txt'                 = 'nf-fae-checklist_o'
                'CHANGELOG'                     = 'nf-fae-checklist_o'
                'README.md'                     = 'nf-md-text_box_multiple'
                'README.txt'                    = 'nf-md-text_box_multiple'
                'README'                        = 'nf-md-text_box_multiple'
                '.DS_Store'                     = 'nf-fa-file_o'
                '.tsbuildinfo'                  = 'nf-seti-json'
                '.jscsrc'                       = 'nf-seti-json'
                '.jshintrc'                     = 'nf-seti-json'
                'tsconfig.json'                 = 'nf-seti-json'
                'tslint.json'                   = 'nf-seti-json'
                'composer.lock'                 = 'nf-seti-json'
                '.jsbeautifyrc'                 = 'nf-seti-json'
                '.esformatter'                  = 'nf-seti-json'
                'cdp.pid'                       = 'nf-seti-json'
                '.htaccess'                     = 'nf-md-xml'
                '.jshintignore'                 = 'nf-fa-gear'
                '.buildignore'                  = 'nf-fa-gear'
                '.mrconfig'                     = 'nf-fa-gear'
                '.yardopts'                     = 'nf-fa-gear'
                'manifest.mf'                   = 'nf-fa-gear'
                '.clang-format'                 = 'nf-fa-gear'
                '.clang-tidy'                   = 'nf-fa-gear'
                'favicon.ico'                   = 'nf-seti-favicon'
                '.travis.yml'                   = 'nf-dev-travis'
                '.gitlab-ci.yml'                = 'nf-fa-gitlab'
                '.jenkinsfile'                  = 'nf-dev-jenkins'
                'bitbucket-pipelines.yml'       = 'nf-dev-bitbucket'
                'bitbucket-pipelines.yaml'      = 'nf-dev-bitbucket'
                '.azure-pipelines.yml'          = 'nf-md-microsoft_azure'

                # Firebase
                'firebase.json'                 = 'nf-dev-firebase'
                '.firebaserc'                   = 'nf-dev-firebase'

                # Bower
                '.bowerrc'                      = 'nf-dev-bower'
                'bower.json'                    = 'nf-dev-bower'

                # Conduct
                'code_of_conduct.md'            = 'nf-fa-handshake_o'
                'code_of_conduct.txt'           = 'nf-fa-handshake_o'

                # Docker
                'Dockerfile'                    = 'nf-dev-docker'
                'docker-compose.yml'            = 'nf-dev-docker'
                'docker-compose.yaml'           = 'nf-dev-docker'
                'docker-compose.dev.yml'        = 'nf-dev-docker'
                'docker-compose.local.yml'      = 'nf-dev-docker'
                'docker-compose.ci.yml'         = 'nf-dev-docker'
                'docker-compose.override.yml'   = 'nf-dev-docker'
                'docker-compose.staging.yml'    = 'nf-dev-docker'
                'docker-compose.prod.yml'       = 'nf-dev-docker'
                'docker-compose.production.yml' = 'nf-dev-docker'
                'docker-compose.test.yml'       = 'nf-dev-docker'

                # Vue
                'vue.config.js'                 = 'nf-md-vuejs'
                'vue.config.ts'                 = 'nf-md-vuejs'

                # Gulp
                'gulpfile.js'                   = 'nf-dev-gulp'
                'gulpfile.ts'                   = 'nf-dev-gulp'
                'gulpfile.babel.js'             = 'nf-dev-gulp'

                # Javascript
                'gruntfile.js'                  = 'nf-seti-grunt'

                # NodeJS
                'package.json'                  = 'nf-dev-nodejs_small'
                'package-lock.json'             = 'nf-dev-nodejs_small'
                '.nvmrc'                        = 'nf-dev-nodejs_small'
                '.esmrc'                        = 'nf-dev-nodejs_small'

                # NPM
                '.nmpignore'                    = 'nf-dev-npm'
                '.npmrc'                        = 'nf-dev-npm'

                # Authors
                'authors'                       = 'nf-oct-person'
                'authors.md'                    = 'nf-oct-person'
                'authors.txt'                   = 'nf-oct-person'

                # Terraform
                '.terraform.lock.hcl'           = 'nf-fa-lock'

                # Gradle
                'gradlew'                       = 'nf-md-elephant'
            }

            # Archive files
            '.7z'                   = 'nf-oct-file_zip'
            '.bz'                   = 'nf-oct-file_zip'
            '.tar'                  = 'nf-oct-file_zip'
            '.zip'                  = 'nf-oct-file_zip'
            '.gz'                   = 'nf-oct-file_zip'
            '.xz'                   = 'nf-oct-file_zip'
            '.br'                   = 'nf-oct-file_zip'
            '.bzip2'                = 'nf-oct-file_zip'
            '.gzip'                 = 'nf-oct-file_zip'
            '.brotli'               = 'nf-oct-file_zip'
            '.rar'                  = 'nf-oct-file_zip'
            '.tgz'                  = 'nf-oct-file_zip'

            # Executable things
            '.bat'                  = 'nf-custom-msdos'
            '.cmd'                  = 'nf-custom-msdos'
            '.exe'                  = 'nf-md-application'
            '.pl'                   = 'nf-dev-perl'

            '.sh'                   = 'nf-oct-terminal'

            # App Packages
            '.msi'                  = 'nf-md-package_variant'
            '.msix'                 = 'nf-md-package_variant'
            '.msixbundle'           = 'nf-md-package_variant'
            '.appx'                 = 'nf-md-package_variant'
            '.AppxBundle'           = 'nf-md-package_variant'
            '.deb'                  = 'nf-md-package_variant'
            '.rpm'                  = 'nf-md-package_variant'

            # PowerShell
            '.ps1'                  = 'nf-md-console_line'
            '.psm1'                 = 'nf-md-console_line'
            '.psd1'                 = 'nf-md-console_line'
            '.ps1xml'               = 'nf-md-console_line'
            '.psc1'                 = 'nf-md-console_line'
            '.pssc'                 = 'nf-md-console_line'

            # Javascript
            '.js'                   = 'nf-dev-javascript'
            '.esx'                  = 'nf-dev-javascript'
            '.mjs'                  = 'nf-dev-javascript'

            # Java
            '.java'                 = 'nf-fae-java'
            '.jar'                  = 'nf-fae-java'

            '.gradle'               = 'nf-md-elephant'

            # Python
            '.py'                   = 'nf-dev-python'
            '.ipynb'                = 'nf-md-notebook'

            # React
            '.jsx'                  = 'nf-dev-react'
            '.tsx'                  = 'nf-dev-react'

            # Typescript
            '.ts'                   = 'nf-seti-typescript'

            # Not-executable code files
            '.dll'                  = 'nf-fa-archive'

            # Importable Data files
            '.clixml'               = 'nf-dev-code_badge'
            '.csv'                  = 'nf-md-file_excel'
            '.tsv'                  = 'nf-md-file_excel'

            # Settings
            '.ini'                  = 'nf-fa-gear'
            '.dlc'                  = 'nf-fa-gear'
            '.config'               = 'nf-fa-gear'
            '.conf'                 = 'nf-fa-gear'
            '.properties'           = 'nf-fa-gear'
            '.prop'                 = 'nf-fa-gear'
            '.settings'             = 'nf-fa-gear'
            '.option'               = 'nf-fa-gear'
            '.reg'                  = 'nf-fa-gear'
            '.props'                = 'nf-fa-gear'
            '.toml'                 = 'nf-fa-gear'
            '.prefs'                = 'nf-fa-gear'
            '.sln.dotsettings'      = 'nf-fa-gear'
            '.sln.dotsettings.user' = 'nf-fa-gear'
            '.cfg'                  = 'nf-fa-gear'

            # Source Files
            '.c'                    = 'nf-md-language_c'
            '.cpp'                  = 'nf-md-language_cpp'
            '.go'                   = 'nf-dev-go'
            '.php'                  = 'nf-dev-php'

            # Visual Studio
            '.csproj'               = 'nf-dev-visualstudio'
            '.ruleset'              = 'nf-dev-visualstudio'
            '.sln'                  = 'nf-dev-visualstudio'
            '.slnf'                 = 'nf-dev-visualstudio'
            '.suo'                  = 'nf-dev-visualstudio'
            '.vb'                   = 'nf-dev-visualstudio'
            '.vbs'                  = 'nf-dev-visualstudio'
            '.vcxitems'             = 'nf-dev-visualstudio'
            '.vcxitems.filters'     = 'nf-dev-visualstudio'
            '.vcxproj'              = 'nf-dev-visualstudio'
            '.vsxproj.filters'      = 'nf-dev-visualstudio'

            # CSharp
            '.cs'                   = 'nf-md-language_csharp'
            '.csx'                  = 'nf-md-language_csharp'

            # Haskell
            '.hs'                   = 'nf-dev-haskell'

            # XAML
            '.xaml'                 = 'nf-md-language_xaml'

            # Rust
            '.rs'                   = 'nf-dev-rust'

            # Database
            '.pdb'                  = 'nf-dev-database'
            '.sql'                  = 'nf-dev-database'
            '.pks'                  = 'nf-dev-database'
            '.pkb'                  = 'nf-dev-database'
            '.accdb'                = 'nf-dev-database'
            '.mdb'                  = 'nf-dev-database'
            '.sqlite'               = 'nf-dev-database'
            '.pgsql'                = 'nf-dev-database'
            '.postgres'             = 'nf-dev-database'
            '.psql'                 = 'nf-dev-database'

            # Source Control
            '.patch'                = 'nf-dev-git'

            # Project files
            '.user'                 = 'nf-dev-visualstudio'
            '.code-workspace'       = 'nf-dev-visualstudio'

            # Text data files
            '.log'                  = 'nf-fa-list'
            '.txt'                  = 'nf-md-file_document'

            # Subtitle files
            '.srt'                  = 'nf-md-file_document'
            '.lrc'                  = 'nf-md-file_document'
            '.ass'                  = 'nf-fa-eye'

            # HTML/css
            '.html'                 = 'nf-seti-html'
            '.htm'                  = 'nf-seti-html'
            '.xhtml'                = 'nf-seti-html'
            '.html_vm'              = 'nf-seti-html'
            '.asp'                  = 'nf-seti-html'
            '.css'                  = 'nf-dev-css3'
            '.sass'                 = 'nf-dev-sass'
            '.scss'                 = 'nf-dev-sass'
            '.less'                 = 'nf-dev-less'

            # Markdown
            '.md'                   = 'nf-dev-markdown'
            '.markdown'             = 'nf-dev-markdown'
            '.rst'                  = 'nf-dev-markdown'

            # Handlebars
            '.hbs'                  = 'nf-seti-mustache'

            # JSON
            '.json'                 = 'nf-seti-json'
            '.tsbuildinfo'          = 'nf-seti-json'

            # YAML
            '.yml'                  = 'nf-md-format_align_left'
            '.yaml'                 = 'nf-md-format_align_left'

            # LUA
            '.lua'                  = 'nf-seti-lua'

            # Clojure
            '.clj'                  = 'nf-dev-clojure'
            '.cljs'                 = 'nf-dev-clojure'
            '.cljc'                 = 'nf-dev-clojure'

            # Groovy
            '.groovy'               = 'nf-dev-groovy'

            # Vue
            '.vue'                  = 'nf-md-vuejs'

            # Dart
            '.dart'                 = 'nf-dev-dart'

            # Elixir
            '.ex'                   = 'nf-custom-elixir'
            '.exs'                  = 'nf-custom-elixir'
            '.eex'                  = 'nf-custom-elixir'
            '.leex'                 = 'nf-custom-elixir'

            # Erlang
            '.erl'                  = 'nf-dev-erlang'

            # Elm
            '.elm'                  = 'nf-custom-elm'

            # Applescript
            '.applescript'          = 'nf-dev-apple'

            # XML
            '.xml'                  = 'nf-md-xml'
            '.plist'                = 'nf-md-xml'
            '.xsd'                  = 'nf-md-xml'
            '.dtd'                  = 'nf-md-xml'
            '.xsl'                  = 'nf-md-xml'
            '.xslt'                 = 'nf-md-xml'
            '.resx'                 = 'nf-md-xml'
            '.iml'                  = 'nf-md-xml'
            '.xquery'               = 'nf-md-xml'
            '.tmLanguage'           = 'nf-md-xml'
            '.manifest'             = 'nf-md-xml'
            '.project'              = 'nf-md-xml'

            # Documents
            '.chm'                  = 'nf-md-help_box'
            '.pdf'                  = 'nf-fa-file_pdf_o'

            # Excel
            '.xls'                  = 'nf-md-file_excel'
            '.xlsx'                 = 'nf-md-file_excel'

            # PowerPoint
            '.pptx'                 = 'nf-md-file_powerpoint'
            '.ppt'                  = 'nf-md-file_powerpoint'
            '.pptm'                 = 'nf-md-file_powerpoint'
            '.potx'                 = 'nf-md-file_powerpoint'
            '.potm'                 = 'nf-md-file_powerpoint'
            '.ppsx'                 = 'nf-md-file_powerpoint'
            '.ppsm'                 = 'nf-md-file_powerpoint'
            '.pps'                  = 'nf-md-file_powerpoint'
            '.ppam'                 = 'nf-md-file_powerpoint'
            '.ppa'                  = 'nf-md-file_powerpoint'

            # Word
            '.doc'                  = 'nf-md-file_word'
            '.docx'                 = 'nf-md-file_word'
            '.rtf'                  = 'nf-md-file_word'

            # Audio
            '.mp3'                  = 'nf-fa-file_audio_o'
            '.flac'                 = 'nf-fa-file_audio_o'
            '.m4a'                  = 'nf-fa-file_audio_o'
            '.wma'                  = 'nf-fa-file_audio_o'
            '.aiff'                 = 'nf-fa-file_audio_o'
            '.wav'                  = 'nf-fa-file_audio_o'
            '.aac'                  = 'nf-fa-file_audio_o'
            '.opus'                 = 'nf-fa-file_audio_o'

            # Images
            '.png'                  = 'nf-fa-file_image_o'
            '.jpeg'                 = 'nf-fa-file_image_o'
            '.jpg'                  = 'nf-fa-file_image_o'
            '.gif'                  = 'nf-fa-file_image_o'
            '.ico'                  = 'nf-fa-file_image_o'
            '.tif'                  = 'nf-fa-file_image_o'
            '.tiff'                 = 'nf-fa-file_image_o'
            '.psd'                  = 'nf-fa-file_image_o'
            '.psb'                  = 'nf-fa-file_image_o'
            '.ami'                  = 'nf-fa-file_image_o'
            '.apx'                  = 'nf-fa-file_image_o'
            '.bmp'                  = 'nf-fa-file_image_o'
            '.bpg'                  = 'nf-fa-file_image_o'
            '.brk'                  = 'nf-fa-file_image_o'
            '.cur'                  = 'nf-fa-file_image_o'
            '.dds'                  = 'nf-fa-file_image_o'
            '.dng'                  = 'nf-fa-file_image_o'
            '.eps'                  = 'nf-fa-file_image_o'
            '.exr'                  = 'nf-fa-file_image_o'
            '.fpx'                  = 'nf-fa-file_image_o'
            '.gbr'                  = 'nf-fa-file_image_o'
            '.jbig2'                = 'nf-fa-file_image_o'
            '.jb2'                  = 'nf-fa-file_image_o'
            '.jng'                  = 'nf-fa-file_image_o'
            '.jxr'                  = 'nf-fa-file_image_o'
            '.pbm'                  = 'nf-fa-file_image_o'
            '.pgf'                  = 'nf-fa-file_image_o'
            '.pic'                  = 'nf-fa-file_image_o'
            '.raw'                  = 'nf-fa-file_image_o'
            '.webp'                 = 'nf-fa-file_image_o'
            '.svg'                  = 'nf-md-svg'

            # Video
            '.webm'                 = 'nf-fa-file_video_o'
            '.mkv'                  = 'nf-fa-file_video_o'
            '.flv'                  = 'nf-fa-file_video_o'
            '.vob'                  = 'nf-fa-file_video_o'
            '.ogv'                  = 'nf-fa-file_video_o'
            '.ogg'                  = 'nf-fa-file_video_o'
            '.gifv'                 = 'nf-fa-file_video_o'
            '.avi'                  = 'nf-fa-file_video_o'
            '.mov'                  = 'nf-fa-file_video_o'
            '.qt'                   = 'nf-fa-file_video_o'
            '.wmv'                  = 'nf-fa-file_video_o'
            '.yuv'                  = 'nf-fa-file_video_o'
            '.rm'                   = 'nf-fa-file_video_o'
            '.rmvb'                 = 'nf-fa-file_video_o'
            '.mp4'                  = 'nf-fa-file_video_o'
            '.mpg'                  = 'nf-fa-file_video_o'
            '.mp2'                  = 'nf-fa-file_video_o'
            '.mpeg'                 = 'nf-fa-file_video_o'
            '.mpe'                  = 'nf-fa-file_video_o'
            '.mpv'                  = 'nf-fa-file_video_o'
            '.m2v'                  = 'nf-fa-file_video_o'

            # Email
            '.ics'                  = 'nf-fa-calendar'

            # Certificates
            '.cer'                  = 'nf-fa-certificate'
            '.cert'                 = 'nf-fa-certificate'
            '.crt'                  = 'nf-fa-certificate'
            '.pfx'                  = 'nf-fa-certificate'

            # Keys
            '.pem'                  = 'nf-fa-key'
            '.pub'                  = 'nf-fa-key'
            '.key'                  = 'nf-fa-key'
            '.asc'                  = 'nf-fa-key'
            '.gpg'                  = 'nf-fa-key'

            # Fonts
            '.woff'                 = 'nf-fa-font'
            '.woff2'                = 'nf-fa-font'
            '.ttf'                  = 'nf-fa-font'
            '.eot'                  = 'nf-fa-font'
            '.suit'                 = 'nf-fa-font'
            '.otf'                  = 'nf-fa-font'
            '.bmap'                 = 'nf-fa-font'
            '.fnt'                  = 'nf-fa-font'
            '.odttf'                = 'nf-fa-font'
            '.ttc'                  = 'nf-fa-font'
            '.font'                 = 'nf-fa-font'
            '.fonts'                = 'nf-fa-font'
            '.sui'                  = 'nf-fa-font'
            '.ntf'                  = 'nf-fa-font'
            '.mrg'                  = 'nf-fa-font'

            # Ruby
            '.rb'                   = 'nf-oct-ruby'
            '.erb'                  = 'nf-oct-ruby'
            '.gemfile'              = 'nf-oct-ruby'
            'rakefile'              = 'nf-oct-ruby'

            # FSharp
            '.fs'                   = 'nf-dev-fsharp'
            '.fsx'                  = 'nf-dev-fsharp'
            '.fsi'                  = 'nf-dev-fsharp'
            '.fsproj'               = 'nf-dev-fsharp'

            # Docker
            '.dockerignore'         = 'nf-dev-docker'
            '.dockerfile'           = 'nf-dev-docker'

            # VSCode
            '.vscodeignore'         = 'nf-fa-gear'
            '.vsixmanifest'         = 'nf-fa-gear'
            '.vsix'                 = 'nf-fa-gear'
            '.code-workplace'       = 'nf-fa-gear'

            # Sublime
            '.sublime-project'      = 'nf-dev-sublime'
            '.sublime-workspace'    = 'nf-dev-sublime'

            '.lock'                 = 'nf-fa-lock'

            # Terraform
            '.tf'                   = 'nf-dev-code_badge'
            '.tfvars'               = 'nf-dev-code_badge'
            '.tf.json'              = 'nf-dev-code_badge'
            '.tfvars.json'          = 'nf-dev-code_badge'
            '.auto.tfvars'          = 'nf-dev-code_badge'
            '.auto.tfvars.json'     = 'nf-dev-code_badge'

            # Bicep
            '.bicep'                = 'nf-seti-bicep'

            # Disk Image
            '.vmdk'                 = 'nf-md-harddisk'
            '.vhd'                  = 'nf-md-harddisk'
            '.vhdx'                 = 'nf-md-harddisk'
            '.img'                  = 'nf-fae-disco'
            '.iso'                  = 'nf-fae-disco'

            # R language
            '.R'                    = 'nf-md-language_r'
            '.Rmd'                  = 'nf-md-language_r'
            '.Rproj'                = 'nf-md-language_r'

            # Julia language
            '.jl'                   = 'nf-seti-julia'

            # Vim
            '.vim'                  = 'nf-custom-vim'

            # Puppet
            '.pp'                   = 'nf-custom-puppet'
            '.epp'                  = 'nf-custom-puppet'

            # Scala
            '.scala'                = 'nf-dev-scala'
            '.sc'                   = 'nf-dev-scala'

            # Autodesk Inventor
            '.iLogicVb'             = 'nf-md-alpha_i'
        }
    }
}
tools\terminal-icons\Terminal-Icons.format.ps1xml
 
tools\terminal-icons\en-US\Terminal-Icons-help.xml
<?xml version="1.0" encoding="utf-8"?>
<helpItems schema="maml" xmlns="http://msh">
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Add-TerminalIconsColorTheme</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TerminalIconsColorTheme</command:noun>
      <maml:description>
        <maml:para>Add a Terminal-Icons color theme for the current user.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Add a Terminal-Icons color theme for the current user. The theme data is stored in the user's profile</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Add-TerminalIconsColorTheme</maml:name>
        <command:parameter required="true" variableLength="true" globbing="true" pipelineInput="True (ByPropertyName, ByValue)" position="1" aliases="none">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>The path to the Terminal-Icons color theme file.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
          <dev:type>
            <maml:name>String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Overwrite the color theme if it already exists in the profile.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
          <maml:name>WhatIf</maml:name>
          <maml:description>
            <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
          <maml:name>Confirm</maml:name>
          <maml:description>
            <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <command:syntaxItem>
        <maml:name>Add-TerminalIconsColorTheme</maml:name>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName)" position="1" aliases="PSPath">
          <maml:name>LiteralPath</maml:name>
          <maml:description>
            <maml:para>The literal path to the Terminal-Icons color theme file.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
          <dev:type>
            <maml:name>String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Overwrite the color theme if it already exists in the profile.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
          <maml:name>WhatIf</maml:name>
          <maml:description>
            <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
          <maml:name>Confirm</maml:name>
          <maml:description>
            <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <command:parameter required="true" variableLength="true" globbing="true" pipelineInput="True (ByPropertyName, ByValue)" position="1" aliases="none">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>The path to the Terminal-Icons color theme file.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName)" position="1" aliases="PSPath">
        <maml:name>LiteralPath</maml:name>
        <maml:description>
          <maml:para>The literal path to the Terminal-Icons color theme file.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Overwrite the color theme if it already exists in the profile.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
        <maml:name>WhatIf</maml:name>
        <maml:description>
          <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
        <maml:name>Confirm</maml:name>
        <maml:description>
          <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>You can pipe a string that contains a path to 'Add-TerminalIconsColorTheme'.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para>'Add-TerminalIconsColorTheme' will not overwrite an existing theme by default. Add the -Force switch to overwrite.</maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
        <dev:code>Add-Terminal-IconsColorTHeme -Path ./my_color_theme.psd1</dev:code>
        <dev:remarks>
          <maml:para>Add the color theme contained in ./my_color_theme.psd1.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 2 --------------------------</maml:title>
        <dev:code>Get-ChildItem ./path/to/colorthemes | Add-TerminalIconsColorTheme -Force</dev:code>
        <dev:remarks>
          <maml:para>Add all color themes contained in the folder ./path/to/colorthemes and add them, overwriting existing ones if needed.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Add-TerminalIconsIconTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Add-TerminalIconsIconTheme</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TerminalIconsIconTheme</command:noun>
      <maml:description>
        <maml:para>Add a Terminal-Icons icon theme for the current user.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Add a Terminal-Icons icon theme for the current user. The theme data is stored in the user's profile</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Add-TerminalIconsIconTheme</maml:name>
        <command:parameter required="true" variableLength="true" globbing="true" pipelineInput="True (ByPropertyName, ByValue)" position="1" aliases="none">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>The path to the Terminal-Icons icon theme file.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
          <dev:type>
            <maml:name>String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Overwrite the icon theme if it already exists in the profile.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
          <maml:name>WhatIf</maml:name>
          <maml:description>
            <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
          <maml:name>Confirm</maml:name>
          <maml:description>
            <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <command:syntaxItem>
        <maml:name>Add-TerminalIconsIconTheme</maml:name>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName)" position="1" aliases="PSPath">
          <maml:name>LiteralPath</maml:name>
          <maml:description>
            <maml:para>The literal path to the Terminal-Icons icon theme file.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
          <dev:type>
            <maml:name>String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Overwrite the icon theme if it already exists in the profile.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
          <maml:name>WhatIf</maml:name>
          <maml:description>
            <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
          <maml:name>Confirm</maml:name>
          <maml:description>
            <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <command:parameter required="true" variableLength="true" globbing="true" pipelineInput="True (ByPropertyName, ByValue)" position="1" aliases="none">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>The path to the Terminal-Icons icon theme file.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName)" position="1" aliases="PSPath">
        <maml:name>LiteralPath</maml:name>
        <maml:description>
          <maml:para>The literal path to the Terminal-Icons icon theme file.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Overwrite the icon theme if it already exists in the profile.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
        <maml:name>WhatIf</maml:name>
        <maml:description>
          <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
        <maml:name>Confirm</maml:name>
        <maml:description>
          <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>You can pipe a string that contains a path to 'Add-TerminalIconsIconTheme'.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para>'Add-TerminalIconsIconTheme' will not overwrite an existing theme by default. Add the -Force switch to overwrite.</maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
        <dev:code>Add-Terminal-IconsIconTHeme -Path ./my_icon_theme.psd1</dev:code>
        <dev:remarks>
          <maml:para>Add the icon theme contained in ./my_icon_theme.psd1.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 2 --------------------------</maml:title>
        <dev:code>Get-ChildItem ./path/to/iconthemes | Add-TerminalIconsIconTheme -Force</dev:code>
        <dev:remarks>
          <maml:para>Add all icon themes contained in the folder ./path/to/iconthemes and add them, overwriting existing ones if needed.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Add-TerminalIconsColorTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Format-TerminalIcons</command:name>
      <command:verb>Format</command:verb>
      <command:noun>TerminalIcons</command:noun>
      <maml:description>
        <maml:para>Prepend a custom icon (with color) to the provided file or folder object when displayed.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Take the provided file or folder object and look up the appropriate icon and color to display.</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Format-TerminalIcons</maml:name>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="1" aliases="none">
          <maml:name>FileInfo</maml:name>
          <maml:description>
            <maml:para>The file or folder to display</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">FileSystemInfo</command:parameterValue>
          <dev:type>
            <maml:name>FileSystemInfo</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByValue)" position="1" aliases="none">
        <maml:name>FileInfo</maml:name>
        <maml:description>
          <maml:para>The file or folder to display</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">FileSystemInfo</command:parameterValue>
        <dev:type>
          <maml:name>FileSystemInfo</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.IO.FileSystemInfo</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>You can pipe an objects that derive from System.IO.FileSystemInfo (System.IO.DIrectoryInfo and System.IO.FileInfo) to 'Format-TerminalIcons'.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
      <command:returnValue>
        <dev:type>
          <maml:name>Outputs a colorized string with an icon prepended.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para></maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
        <dev:code>Get-ChildItem</dev:code>
        <dev:remarks>
          <maml:para>List a directory. Terminal-Icons will be invoked automatically for display.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 2 --------------------------</maml:title>
        <dev:code>Get-Item ./README.md | Format-TerminalIcons</dev:code>
        <dev:remarks>
          <maml:para>Get a file object and pass directly to Format-TerminalIcons.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks />
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Get-TerminalIconsColorTheme</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TerminalIconsColorTheme</command:noun>
      <maml:description>
        <maml:para>List the available color themes.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>List the available color themes.</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Get-TerminalIconsColorTheme</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
      <command:returnValue>
        <dev:type>
          <maml:name>An array of hashtables representing available color themes.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para></maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
        <dev:code>Get-TerminalIconsColorTheme</dev:code>
        <dev:remarks>
          <maml:para>Get the list of available color themes.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsIconTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Get-TerminalIconsGlyphs</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TerminalIconsGlyphs</command:noun>
      <maml:description>
        <maml:para>Gets the list of glyphs known to Terminal-Icons.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Gets a hashtable with the available glyph names and icons. Useful in creating a custom theme.</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Get-TerminalIconsGlyphs</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para></maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
        <dev:code>Get-TerminalIconsGlyphs</dev:code>
        <dev:remarks>
          <maml:para>Gets the table of glyph names and icons.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsIconTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Set-TerminalIconsIcon</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Get-TerminalIconsIconTheme</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TerminalIconsIconTheme</command:noun>
      <maml:description>
        <maml:para>List the available icon themes.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>List the available icon themes.</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Get-TerminalIconsIconTheme</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
      <command:returnValue>
        <dev:type>
          <maml:name>An array of hashtables representing available icon themes.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para></maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
        <dev:code>Get-TerminalIconsIconTheme</dev:code>
        <dev:remarks>
          <maml:para>Get the list of available icon themes.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsColorTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Get-TerminalIconsTheme</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TerminalIconsTheme</command:noun>
      <maml:description>
        <maml:para>Get the currently applied color and icon theme.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Get the currently applied color and icon theme.</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Get-TerminalIconsTheme</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>System.Management.Automation.PSCustomObject</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
      <command:returnValue>
        <dev:type>
          <maml:name>An object representing the currently applied color and icon theme.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para></maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
        <dev:code>Get-TerminalIconsTheme</dev:code>
        <dev:remarks>
          <maml:para>Get the currently applied Terminal-Icons color and icon theme.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsColorTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsIconTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Invoke-TerminalIconsThemeMigration</command:name>
      <command:verb>Invoke</command:verb>
      <command:noun>TerminalIconsThemeMigration</command:noun>
      <maml:description>
        <maml:para>Used to migrate your terminal icon themes to Nerd Fonts v3.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Used to migrate your terminal icon themes to Nerd Fonts v3.</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Invoke-TerminalIconsThemeMigration</maml:name>
        <command:parameter required="true" variableLength="true" globbing="true" pipelineInput="True (ByPropertyName, ByValue)" position="1" aliases="none">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>{{ Fill Path Description }}</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
          <dev:type>
            <maml:name>String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <command:syntaxItem>
        <maml:name>Invoke-TerminalIconsThemeMigration</maml:name>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName)" position="1" aliases="PSPath">
          <maml:name>LiteralPath</maml:name>
          <maml:description>
            <maml:para>{{ Fill LiteralPath Description }}</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
          <dev:type>
            <maml:name>String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <command:parameter required="true" variableLength="true" globbing="true" pipelineInput="True (ByPropertyName, ByValue)" position="1" aliases="none">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>{{ Fill Path Description }}</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName)" position="1" aliases="PSPath">
        <maml:name>LiteralPath</maml:name>
        <maml:description>
          <maml:para>{{ Fill LiteralPath Description }}</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String[]</command:parameterValue>
        <dev:type>
          <maml:name>String[]</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
      <command:returnValue>
        <dev:type>
          <maml:name>The theme that has been fully migrated.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para></maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
        <dev:code>Invoke-TerminalIconsThemeMigration -Path ./my_icon_theme.psd1 | Out-File ./migrated_icon_theme.psd1</dev:code>
        <dev:remarks>
          <maml:para>Loads the theme, migrates classes and then saves the newly migrated theme using the Out-File command.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Invoke-TerminalIconsThemeMigration</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Invoke-TerminalIconsThemeMigration</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Remove-TerminalIconsTheme</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TerminalIconsTheme</command:noun>
      <maml:description>
        <maml:para>Removes a color or icon theme</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Removes a given icon or color theme. In order to be removed, a theme must not be active.</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Remove-TerminalIconsTheme</maml:name>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="1" aliases="none">
          <maml:name>IconTheme</maml:name>
          <maml:description>
            <maml:para>The icon theme to remove.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="2" aliases="none">
          <maml:name>ColorTheme</maml:name>
          <maml:description>
            <maml:para>The color theme to remove.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Bypass confirmation messages.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
          <maml:name>WhatIf</maml:name>
          <maml:description>
            <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
          <maml:name>Confirm</maml:name>
          <maml:description>
            <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="1" aliases="none">
        <maml:name>IconTheme</maml:name>
        <maml:description>
          <maml:para>The icon theme to remove.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="2" aliases="none">
        <maml:name>ColorTheme</maml:name>
        <maml:description>
          <maml:para>The color theme to remove.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Bypass confirmation messages.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
        <maml:name>WhatIf</maml:name>
        <maml:description>
          <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
        <maml:name>Confirm</maml:name>
        <maml:description>
          <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>The name of the color or icon theme to remove.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para>A theme must not be active in order to be removed.</maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
        <dev:code>Remove-TerminalIconsTheme -IconTheme MyAwesomeTheme</dev:code>
        <dev:remarks>
          <maml:para>Removes the icon theme 'MyAwesomeTheme'</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 2 --------------------------</maml:title>
        <dev:code>Remove-TerminalIconsTheme -ColorTheme MyAwesomeTheme</dev:code>
        <dev:remarks>
          <maml:para>Removes the color theme 'MyAwesomeTheme'</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Set-TerminalIconsTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Add-TerminalIconsColorTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Add-TerminalIconsIconTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Set-TerminalIconsColorTheme</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TerminalIconsColorTheme</command:noun>
      <maml:description>
        <maml:para>Set the Terminal-Icons color theme.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Set the Terminal-Icons color theme to a registered theme.</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Set-TerminalIconsColorTheme</maml:name>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="1" aliases="none">
          <maml:name>Name</maml:name>
          <maml:description>
            <maml:para>The name of a registered color theme.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="1" aliases="none">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>The name of a registered color theme.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>The name of a registered color theme.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para></maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
        <dev:code>Set-TerminalIconsColorTheme -Name devblackops</dev:code>
        <dev:remarks>
          <maml:para>Set the color theme to 'devblackops'.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Set-TerminalIconsIconTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsColorTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsIconTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Set-TerminalIconsIcon</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TerminalIconsIcon</command:noun>
      <maml:description>
        <maml:para>Set a specific icon in the current Terminal-Icons icon theme or allows swapping one glyph for another.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Set the Terminal-Icons icon for a specific file/directory or glyph to a named glyph.</maml:para>
      <maml:para>Also allows all uses of a specific glyph to be replaced with a different glyph.</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Set-TerminalIconsIcon</maml:name>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Directory</maml:name>
          <maml:description>
            <maml:para>The well-known directory name to match for the icon.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Glyph</maml:name>
          <maml:description>
            <maml:para>The name of the glyph to use; or, when swapping glyphs, the name of the glyph you want to change.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Bypass confirmation messages.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
          <maml:name>WhatIf</maml:name>
          <maml:description>
            <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
          <maml:name>Confirm</maml:name>
          <maml:description>
            <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <command:syntaxItem>
        <maml:name>Set-TerminalIconsIcon</maml:name>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>FileName</maml:name>
          <maml:description>
            <maml:para>The well-known file name to match for the icon.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Glyph</maml:name>
          <maml:description>
            <maml:para>The name of the glyph to use; or, when swapping glyphs, the name of the glyph you want to change.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Bypass confirmation messages.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
          <maml:name>WhatIf</maml:name>
          <maml:description>
            <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
          <maml:name>Confirm</maml:name>
          <maml:description>
            <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <command:syntaxItem>
        <maml:name>Set-TerminalIconsIcon</maml:name>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>FileExtension</maml:name>
          <maml:description>
            <maml:para>The file extension to match for the icon.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Glyph</maml:name>
          <maml:description>
            <maml:para>The name of the glyph to use; or, when swapping glyphs, the name of the glyph you want to change.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Bypass confirmation messages.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
          <maml:name>WhatIf</maml:name>
          <maml:description>
            <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
          <maml:name>Confirm</maml:name>
          <maml:description>
            <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <command:syntaxItem>
        <maml:name>Set-TerminalIconsIcon</maml:name>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>NewGlyph</maml:name>
          <maml:description>
            <maml:para>The name of the new glyph to use when swapping.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Glyph</maml:name>
          <maml:description>
            <maml:para>The name of the glyph to use; or, when swapping glyphs, the name of the glyph you want to change.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Bypass confirmation messages.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
          <maml:name>WhatIf</maml:name>
          <maml:description>
            <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
          <maml:name>Confirm</maml:name>
          <maml:description>
            <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>Directory</maml:name>
        <maml:description>
          <maml:para>The well-known directory name to match for the icon.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>FileName</maml:name>
        <maml:description>
          <maml:para>The well-known file name to match for the icon.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>FileExtension</maml:name>
        <maml:description>
          <maml:para>The file extension to match for the icon.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>NewGlyph</maml:name>
        <maml:description>
          <maml:para>The name of the new glyph to use when swapping.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>Glyph</maml:name>
        <maml:description>
          <maml:para>The name of the glyph to use; or, when swapping glyphs, the name of the glyph you want to change.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Bypass confirmation messages.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
        <maml:name>WhatIf</maml:name>
        <maml:description>
          <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
        <maml:name>Confirm</maml:name>
        <maml:description>
          <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>The command does not accept pipeline input.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para></maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
        <dev:code>Set-TerminalIconsIcon -FileName "README.md" -Glyph "nf-fa-file_text"</dev:code>
        <dev:remarks>
          <maml:para>Set README.md files to display a text file icon.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 2 --------------------------</maml:title>
        <dev:code>Set-TerminalIconsIcon -FileExtension ".xml" -Glyph "nf-md-xml"</dev:code>
        <dev:remarks>
          <maml:para>Set XML files to display an XML file icon.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 3 --------------------------</maml:title>
        <dev:code>Set-TerminalIconsIcon -Directory ".github" -Glyph "nf-dev-github_alt"</dev:code>
        <dev:remarks>
          <maml:para>Set directories named ".github" to display an Octocat face icon.</maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 4 --------------------------</maml:title>
        <dev:code>Set-TerminalIconsIcon -Glyph "nf-md-xml" -NewGlyph "nf-md-xml"</dev:code>
        <dev:remarks>
          <maml:para>Changes all uses of the "nf-md-xml" double-wide glyph to be the "nf-md-xml" single-width XML file glyph.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsIconTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsGlyphs</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Set-TerminalIconsIconTheme</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TerminalIconsIconTheme</command:noun>
      <maml:description>
        <maml:para>Set the Terminal-Icons icon theme.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Set the Terminal-Icons icon theme to a registered theme.</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Set-TerminalIconsIconTheme</maml:name>
        <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="1" aliases="none">
          <maml:name>Name</maml:name>
          <maml:description>
            <maml:para>The name of a registered icon theme.</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName, ByValue)" position="1" aliases="none">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>The name of a registered icon theme.</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>The name of a registered icon theme.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para></maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
        <dev:code>Set-TerminalIconsIconTheme -Name devblackops</dev:code>
        <dev:remarks>
          <maml:para>Set the icon theme to 'devblackops'.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Set-TerminalIconsColorTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsColorTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsIconTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Set-TerminalIconsTheme</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TerminalIconsTheme</command:noun>
      <maml:description>
        <maml:para>{{ Fill in the Synopsis }}</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>{{ Fill in the Description }}</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Set-TerminalIconsTheme</maml:name>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>IconTheme</maml:name>
          <maml:description>
            <maml:para>{{ Fill IconTheme Description }}</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>ColorTheme</maml:name>
          <maml:description>
            <maml:para>{{ Fill ColorTheme Description }}</maml:para>
          </maml:description>
          <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
          <dev:type>
            <maml:name>String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Bypass confirmation messages.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
          <maml:name>WhatIf</maml:name>
          <maml:description>
            <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
          <maml:name>Confirm</maml:name>
          <maml:description>
            <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <command:syntaxItem>
        <maml:name>Set-TerminalIconsTheme</maml:name>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>DisableColorTheme</maml:name>
          <maml:description>
            <maml:para>Disables custom colors and uses default terminal color.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>DisableIconTheme</maml:name>
          <maml:description>
            <maml:para>Disables custom icons and shows only shows the directory or file name.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Bypass confirmation messages.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
          <maml:name>WhatIf</maml:name>
          <maml:description>
            <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
          <maml:name>Confirm</maml:name>
          <maml:description>
            <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
          </maml:description>
          <dev:type>
            <maml:name>SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>IconTheme</maml:name>
        <maml:description>
          <maml:para>{{ Fill IconTheme Description }}</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>ColorTheme</maml:name>
        <maml:description>
          <maml:para>{{ Fill ColorTheme Description }}</maml:para>
        </maml:description>
        <command:parameterValue required="true" variableLength="false">String</command:parameterValue>
        <dev:type>
          <maml:name>String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>DisableColorTheme</maml:name>
        <maml:description>
          <maml:para>Disables custom colors and uses default terminal color.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>DisableIconTheme</maml:name>
        <maml:description>
          <maml:para>Disables custom icons and shows only shows the directory or file name.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="none">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Bypass confirmation messages.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="wi">
        <maml:name>WhatIf</maml:name>
        <maml:description>
          <maml:para>Shows what would happen if the cmdlet runs. The cmdlet is not run.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" variableLength="true" globbing="false" pipelineInput="False" position="named" aliases="cf">
        <maml:name>Confirm</maml:name>
        <maml:description>
          <maml:para>Prompts you for confirmation before running the cmdlet.</maml:para>
        </maml:description>
        <command:parameterValue required="false" variableLength="false">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para></maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- Example 1 --------------------------</maml:title>
        <dev:code>PS C:\&gt; {{ Add example code here }}</dev:code>
        <dev:remarks>
          <maml:para>{{ Add example description here }}</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks />
  </command:command>
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
    <command:details>
      <command:name>Show-TerminalIconsTheme</command:name>
      <command:verb>Show</command:verb>
      <command:noun>TerminalIconsTheme</command:noun>
      <maml:description>
        <maml:para>List example directories and files to show the currently applied color and icon themes.</maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>List example directories and files to show the currently applied color and icon themes. The directory/file objects show are in memory only, they are not written to the filesystem.</maml:para>
    </maml:description>
    <command:syntax>
      <command:syntaxItem>
        <maml:name>Show-TerminalIconsTheme</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>None.</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <command:returnValue>
        <dev:type>
          <maml:name>System.IO.DirectoryInfo</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
      <command:returnValue>
        <dev:type>
          <maml:name>System.IO.FileInfo</maml:name>
        </dev:type>
        <maml:description>
          <maml:para></maml:para>
        </maml:description>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:alert>
        <maml:para>Example directory and file objects only exist in memory. They are not written to the filesystem.</maml:para>
      </maml:alert>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>-------------------------- EXAMPLE 1 --------------------------</maml:title>
        <dev:code>Show-TerminalIconsTheme</dev:code>
        <dev:remarks>
          <maml:para>List example directories and files to show the currently applied color and icon themes.</maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <command:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsColorTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsIconTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TerminalIconsTheme</maml:linkText>
        <maml:uri></maml:uri>
      </maml:navigationLink>
    </command:relatedLinks>
  </command:command>
</helpItems>

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Terminal-Icons (PowerShell Module) 0.10.0 2292 Thursday, July 7, 2022 Approved
Terminal-Icons (PowerShell Module) 0.9.0 1259 Friday, January 28, 2022 Approved
Terminal-Icons (PowerShell Module) 0.8.0 457 Thursday, December 16, 2021 Approved
Terminal-Icons (PowerShell Module) 0.7.1 322 Tuesday, November 23, 2021 Approved
Terminal-Icons (PowerShell Module) 0.7.0 290 Thursday, November 11, 2021 Approved
Terminal-Icons (PowerShell Module) 0.6.0 169 Tuesday, November 9, 2021 Approved
Terminal-Icons (PowerShell Module) 0.5.2 693 Saturday, June 19, 2021 Approved
Terminal-Icons (PowerShell Module) 0.5.1 357 Friday, May 21, 2021 Approved
Terminal-Icons (PowerShell Module) 0.5.0 344 Wednesday, April 21, 2021 Approved
Terminal-Icons (PowerShell Module) 0.4.0 173 Sunday, April 18, 2021 Approved
Terminal-Icons (PowerShell Module) 0.3.1 125 Saturday, April 10, 2021 Approved
Terminal-Icons (PowerShell Module) 0.3.0 82 Friday, April 9, 2021 Approved
Terminal-Icons (PowerShell Module) 0.2.2 470 Monday, January 11, 2021 Approved
Terminal-Icons (PowerShell Module) 0.2.1 389 Monday, November 30, 2020 Approved
Terminal-Icons (PowerShell Module) 0.2.0 167 Monday, November 16, 2020 Approved
Terminal-Icons (PowerShell Module) 0.1.1 937 Sunday, June 16, 2019 Approved

Discussion for the Terminal-Icons (PowerShell Module) Package

Ground Rules:

  • This discussion is only about Terminal-Icons (PowerShell Module) and the Terminal-Icons (PowerShell Module) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Terminal-Icons (PowerShell Module), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus