diff --git a/README.md b/README.md index fc8725d..b7cf7e4 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,12 @@ -Resgrid Dispatch -=========================== +# Resgrid Dispatch -Resgrid Dispatch an Ionic progressive web application (pwa), mobile app and Electron app that is intended for Dispatchers for Computer Aided Dispatch (CAD) user interface for Resgrid. +Resgrid Dispatch an Ionic progressive web application (pwa), mobile app and Electron app that is intended for Dispatchers for Computer Aided Dispatch (CAD) user interface for Resgrid. -********* +--- +## About Resgrid - -About Resgrid -------------- -Resgrid is an open-source Computer Aided Dispatch (CAD) solution for first responders, businesses and industrial environments. +Resgrid is an open-source Computer Aided Dispatch (CAD) solution for first responders, businesses and industrial environments. [Sign up for your free Resgrid Account Today!](https://resgrid.com) @@ -32,6 +29,7 @@ LOGGING_KEY= ## Settings ### .env Values + @@ -87,15 +85,17 @@ LOGGING_KEY=
Setting
-## Deployment ## +## Deployment docker pull resgridllc/dispatch -## Author's ## -* Shawn Jackson (Twitter: @DesignLimbo Blog: http://designlimbo.com) -* Jason Jarrett (Twitter: @staxmanade Blog: http://staxmanade.com) +## Author's + +- Shawn Jackson (Twitter: @DesignLimbo Blog: http://designlimbo.com) +- Jason Jarrett (Twitter: @staxmanade Blog: http://staxmanade.com) + +## License -## License ## [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) -## Acknowledgments \ No newline at end of file +## Acknowledgments diff --git a/e2e/protractor.conf.js b/e2e/protractor.conf.js index 7c798cf..6342493 100644 --- a/e2e/protractor.conf.js +++ b/e2e/protractor.conf.js @@ -2,31 +2,29 @@ // Protractor configuration file, see link for more information // https://github.com/angular/protractor/blob/master/lib/config.ts -const { SpecReporter } = require('jasmine-spec-reporter'); +const { SpecReporter } = require("jasmine-spec-reporter"); /** * @type { import("protractor").Config } */ exports.config = { allScriptsTimeout: 11000, - specs: [ - './src/**/*.e2e-spec.ts' - ], + specs: ["./src/**/*.e2e-spec.ts"], capabilities: { - browserName: 'chrome' + browserName: "chrome", }, directConnect: true, - baseUrl: 'http://localhost:4200/', - framework: 'jasmine', + baseUrl: "http://localhost:4200/", + framework: "jasmine", jasmineNodeOpts: { showColors: true, defaultTimeoutInterval: 30000, - print: function() {} + print: function () {}, }, onPrepare() { - require('ts-node').register({ - project: require('path').join(__dirname, './tsconfig.json') + require("ts-node").register({ + project: require("path").join(__dirname, "./tsconfig.json"), }); jasmine.getEnv().addReporter(new SpecReporter({ spec: { displayStacktrace: true } })); - } -}; \ No newline at end of file + }, +}; diff --git a/e2e/src/app.e2e-spec.ts b/e2e/src/app.e2e-spec.ts index f49fb32..3ef7e69 100644 --- a/e2e/src/app.e2e-spec.ts +++ b/e2e/src/app.e2e-spec.ts @@ -1,23 +1,25 @@ -import { AppPage } from './app.po'; -import { browser, logging } from 'protractor'; +import { AppPage } from "./app.po"; +import { browser, logging } from "protractor"; -describe('workspace-project App', () => { +describe("workspace-project App", () => { let page: AppPage; beforeEach(() => { page = new AppPage(); }); - it('should display welcome message', () => { + it("should display welcome message", () => { page.navigateTo(); - expect(page.getTitleText()).toEqual('Resgrid Dispatch'); + expect(page.getTitleText()).toEqual("Resgrid Dispatch"); }); afterEach(async () => { // Assert that there are no errors emitted from the browser const logs = await browser.manage().logs().get(logging.Type.BROWSER); - expect(logs).not.toContain(jasmine.objectContaining({ - level: logging.Level.SEVERE, - } as logging.Entry)); + expect(logs).not.toContain( + jasmine.objectContaining({ + level: logging.Level.SEVERE, + } as logging.Entry), + ); }); }); diff --git a/e2e/src/app.po.ts b/e2e/src/app.po.ts index b68475e..e88be81 100644 --- a/e2e/src/app.po.ts +++ b/e2e/src/app.po.ts @@ -1,4 +1,4 @@ -import { browser, by, element } from 'protractor'; +import { browser, by, element } from "protractor"; export class AppPage { navigateTo(): Promise { @@ -6,6 +6,6 @@ export class AppPage { } getTitleText(): Promise { - return element(by.css('app-root .content span')).getText() as Promise; + return element(by.css("app-root .content span")).getText() as Promise; } } diff --git a/karma.conf.js b/karma.conf.js index d65fddc..711ee41 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -3,30 +3,30 @@ module.exports = function (config) { config.set({ - basePath: '', - frameworks: ['jasmine', '@angular-devkit/build-angular'], + basePath: "", + frameworks: ["jasmine", "@angular-devkit/build-angular"], plugins: [ - require('karma-jasmine'), - require('karma-chrome-launcher'), - require('karma-jasmine-html-reporter'), - require('karma-coverage-istanbul-reporter'), - require('@angular-devkit/build-angular/plugins/karma') + require("karma-jasmine"), + require("karma-chrome-launcher"), + require("karma-jasmine-html-reporter"), + require("karma-coverage-istanbul-reporter"), + require("@angular-devkit/build-angular/plugins/karma"), ], client: { - clearContext: false // leave Jasmine Spec Runner output visible in browser + clearContext: false, // leave Jasmine Spec Runner output visible in browser }, coverageIstanbulReporter: { - dir: require('path').join(__dirname, './coverage/dispatch'), - reports: ['html', 'lcovonly', 'text-summary'], - fixWebpackSourcePaths: true + dir: require("path").join(__dirname, "./coverage/dispatch"), + reports: ["html", "lcovonly", "text-summary"], + fixWebpackSourcePaths: true, }, - reporters: ['progress', 'kjhtml'], + reporters: ["progress", "kjhtml"], port: 9876, colors: true, logLevel: config.LOG_INFO, autoWatch: true, - browsers: ['Chrome'], + browsers: ["Chrome"], singleRun: false, - restartOnFileChange: true + restartOnFileChange: true, }); }; diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index a71cf78..405f8b0 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -1,8 +1,8 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; -import { AuthGuard } from './core/guards/auth.guard'; +import { NgModule } from "@angular/core"; +import { Routes, RouterModule } from "@angular/router"; +import { AuthGuard } from "./core/guards/auth.guard"; -import { LayoutComponent } from './layouts/layout/layout.component'; +import { LayoutComponent } from "./layouts/layout/layout.component"; /* const routes: Routes = [ @@ -14,34 +14,34 @@ const routes: Routes = [ */ const routes: Routes = [ { - path: '', - redirectTo: 'auth', - pathMatch: 'full' + path: "", + redirectTo: "auth", + pathMatch: "full", }, { - path: 'auth', - loadChildren: () => import('./features/auth/auth.module').then(m => m.AuthModule) + path: "auth", + loadChildren: () => import("./features/auth/auth.module").then((m) => m.AuthModule), }, { - path: 'home', - loadChildren: () => import('./features/home/home.module').then(m => m.HomeModule) + path: "home", + loadChildren: () => import("./features/home/home.module").then((m) => m.HomeModule), }, { - path: 'calls', - loadChildren: () => import('./features/calls/calls.module').then(m => m.CallsModule) + path: "calls", + loadChildren: () => import("./features/calls/calls.module").then((m) => m.CallsModule), }, { - path: 'profile', - loadChildren: () => import('./features/profile/profile.module').then(m => m.ProfileModule) + path: "profile", + loadChildren: () => import("./features/profile/profile.module").then((m) => m.ProfileModule), }, { - path: 'mapping', - loadChildren: () => import('./features/mapping/mapping.module').then(m => m.MappingModule) - } + path: "mapping", + loadChildren: () => import("./features/mapping/mapping.module").then((m) => m.MappingModule), + }, ]; @NgModule({ - imports: [RouterModule.forRoot(routes, { scrollPositionRestoration: 'top', relativeLinkResolution: 'legacy' })], - exports: [RouterModule] + imports: [RouterModule.forRoot(routes, { scrollPositionRestoration: "top", relativeLinkResolution: "legacy" })], + exports: [RouterModule], }) -export class AppRoutingModule { } +export class AppRoutingModule {} diff --git a/src/app/app.component.spec.ts b/src/app/app.component.spec.ts index 24bed65..47c42f2 100644 --- a/src/app/app.component.spec.ts +++ b/src/app/app.component.spec.ts @@ -1,20 +1,16 @@ -import { TestBed, waitForAsync } from '@angular/core/testing'; -import { RouterTestingModule } from '@angular/router/testing'; -import { AppComponent } from './app.component'; +import { TestBed, waitForAsync } from "@angular/core/testing"; +import { RouterTestingModule } from "@angular/router/testing"; +import { AppComponent } from "./app.component"; -describe('AppComponent', () => { +describe("AppComponent", () => { beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ - imports: [ - RouterTestingModule - ], - declarations: [ - AppComponent - ], + imports: [RouterTestingModule], + declarations: [AppComponent], }).compileComponents(); })); - it('should create the app', () => { + it("should create the app", () => { const fixture = TestBed.createComponent(AppComponent); const app = fixture.componentInstance; expect(app).toBeTruthy(); @@ -23,13 +19,13 @@ describe('AppComponent', () => { it(`should have as title 'Resgrid Dispatch'`, () => { const fixture = TestBed.createComponent(AppComponent); const app = fixture.componentInstance; - expect(app.title).toEqual('Resgrid Dispatch'); + expect(app.title).toEqual("Resgrid Dispatch"); }); - it('should render title', () => { + it("should render title", () => { const fixture = TestBed.createComponent(AppComponent); fixture.detectChanges(); const compiled = fixture.nativeElement; - expect(compiled.querySelector('.content span').textContent).toContain('Resgrid Dispatch'); + expect(compiled.querySelector(".content span").textContent).toContain("Resgrid Dispatch"); }); }); diff --git a/src/app/app.component.ts b/src/app/app.component.ts index bd7de4b..c67f292 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -1,10 +1,10 @@ -import { Component } from '@angular/core'; +import { Component } from "@angular/core"; @Component({ - selector: 'app-root', - templateUrl: './app.component.html', - styleUrls: ['./app.component.scss'] + selector: "app-root", + templateUrl: "./app.component.html", + styleUrls: ["./app.component.scss"], }) export class AppComponent { - title = 'Resgrid Dispatch'; + title = "Resgrid Dispatch"; } diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 6110faf..0d9f660 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -1,27 +1,27 @@ -import { BrowserModule } from '@angular/platform-browser'; -import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core'; -import { HttpClientModule, HTTP_INTERCEPTORS, HttpClient } from '@angular/common/http'; -import { TranslateHttpLoader } from '@ngx-translate/http-loader'; -import { environment } from '../environments/environment'; -import { LayoutsModule } from './layouts/layouts.module'; -import { NgxResgridLibModule } from '@resgrid/ngx-resgridlib'; -import { AppRoutingModule } from './app-routing.module'; -import { AppComponent } from './app.component'; -import { NgxSpinnerModule } from 'ngx-spinner'; -import { StoreModule } from '@ngrx/store'; -import { metaReducers, reducers } from './store/reducers'; -import { EffectsModule } from '@ngrx/effects'; -import { StoreRouterConnectingModule } from '@ngrx/router-store'; -import { StoreDevtoolsModule } from '@ngrx/store-devtools'; -import { AuthModule } from './features/auth/auth.module'; -import { LeafletModule } from '@asymmetrik/ngx-leaflet'; -import { VoiceModule } from './features/voice/voice.module'; -import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; -import { MappingModule } from './features/mapping/mapping.module'; -import { TranslateModule, TranslateLoader } from '@ngx-translate/core'; +import { BrowserModule } from "@angular/platform-browser"; +import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from "@angular/core"; +import { HttpClientModule, HTTP_INTERCEPTORS, HttpClient } from "@angular/common/http"; +import { TranslateHttpLoader } from "@ngx-translate/http-loader"; +import { environment } from "../environments/environment"; +import { LayoutsModule } from "./layouts/layouts.module"; +import { NgxResgridLibModule } from "@resgrid/ngx-resgridlib"; +import { AppRoutingModule } from "./app-routing.module"; +import { AppComponent } from "./app.component"; +import { NgxSpinnerModule } from "ngx-spinner"; +import { StoreModule } from "@ngrx/store"; +import { metaReducers, reducers } from "./store/reducers"; +import { EffectsModule } from "@ngrx/effects"; +import { StoreRouterConnectingModule } from "@ngrx/router-store"; +import { StoreDevtoolsModule } from "@ngrx/store-devtools"; +import { AuthModule } from "./features/auth/auth.module"; +import { LeafletModule } from "@asymmetrik/ngx-leaflet"; +import { VoiceModule } from "./features/voice/voice.module"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { MappingModule } from "./features/mapping/mapping.module"; +import { TranslateModule, TranslateLoader } from "@ngx-translate/core"; export function createTranslateLoader(http: HttpClient): any { - return new TranslateHttpLoader(http, 'assets/i18n/', '.json'); + return new TranslateHttpLoader(http, "assets/i18n/", ".json"); } let getBaseUrl = (): string => { @@ -34,23 +34,21 @@ let getBaseUrl = (): string => { }; @NgModule({ - declarations: [ - AppComponent - ], + declarations: [AppComponent], imports: [ BrowserModule, HttpClientModule, AppRoutingModule, NgxResgridLibModule.forRoot({ baseApiUrl: getBaseUrl, - apiVersion: 'v4', - clientId: 'RgDispatchApp', + apiVersion: "v4", + clientId: "RgDispatchApp", googleApiKey: environment.googleMapsKey, channelUrl: environment.channelUrl, channelHubName: environment.channelHubName, logLevel: environment.logLevel, - isMobileApp: false - }), + isMobileApp: false, + }), BrowserAnimationsModule, LeafletModule, NgxSpinnerModule, @@ -59,20 +57,20 @@ let getBaseUrl = (): string => { StoreRouterConnectingModule.forRoot(), StoreDevtoolsModule.instrument({ maxAge: 10, // number of states to retain - name: 'Resgrid Dispatch', - logOnly: environment.production + name: "Resgrid Dispatch", + logOnly: environment.production, }), TranslateModule.forRoot({ loader: { provide: TranslateLoader, useFactory: createTranslateLoader, - deps: [HttpClient] - } + deps: [HttpClient], + }, }), AuthModule, VoiceModule, LayoutsModule, - MappingModule + MappingModule, ], providers: [ //{ provide: HTTP_INTERCEPTORS, useClass: JwtInterceptor, multi: true }, @@ -80,6 +78,6 @@ let getBaseUrl = (): string => { //{ provide: HTTP_INTERCEPTORS, useClass: FakeBackendInterceptor, multi: true }, ], schemas: [CUSTOM_ELEMENTS_SCHEMA], - bootstrap: [AppComponent] + bootstrap: [AppComponent], }) -export class AppModule { } +export class AppModule {} diff --git a/src/app/consts.ts b/src/app/consts.ts index b66d5a8..2efcbd7 100644 --- a/src/app/consts.ts +++ b/src/app/consts.ts @@ -1,104 +1,104 @@ -import { Injectable } from '@angular/core'; +import { Injectable } from "@angular/core"; @Injectable({ - providedIn: 'root' + providedIn: "root", }) export class Consts { - public LANG_KEY = 'lang'; - public LANG_EN = 'en'; - public HAS_SEEN_TUTORIAL_KEY = 'hasSeenTutorial'; + public LANG_KEY = "lang"; + public LANG_EN = "en"; + public HAS_SEEN_TUTORIAL_KEY = "hasSeenTutorial"; - public EVENTS = { - LOGGED_IN: 'userLoggedIn', - SYSTEM_READY: 'systemReady', - COREDATASYNCED: 'coreDataSynced', - LOCAL_DATA_SET: 'localDataSet', - SETTINGS_SAVED: 'settingsSaved', - MESSAGE_RECIPIENT_ADDED: 'messageRecipientAdded', - REGISTRATION_OPERATION_FINISHED: 'registrationOperationFinished', - CORDOVA_DEVICE_RESUMED: 'onResumeCordova', - CORDOVA_DEVICE_PAUSED: 'onPauseCordova', - HIDE_SPLASH_SCREEN: 'hideSplashScreen', - STATUS_UPDATED: 'statusUpdated', - STATUS_QUEUED: 'statusQueued', - STAFFING_UPDATED: 'statusUpdated', - SECURITY_SET: 'securitySet', - NAV_PUSH: 'navPush', - NAV_SETROOT: 'navSetRoot' - } + public EVENTS = { + LOGGED_IN: "userLoggedIn", + SYSTEM_READY: "systemReady", + COREDATASYNCED: "coreDataSynced", + LOCAL_DATA_SET: "localDataSet", + SETTINGS_SAVED: "settingsSaved", + MESSAGE_RECIPIENT_ADDED: "messageRecipientAdded", + REGISTRATION_OPERATION_FINISHED: "registrationOperationFinished", + CORDOVA_DEVICE_RESUMED: "onResumeCordova", + CORDOVA_DEVICE_PAUSED: "onPauseCordova", + HIDE_SPLASH_SCREEN: "hideSplashScreen", + STATUS_UPDATED: "statusUpdated", + STATUS_QUEUED: "statusQueued", + STAFFING_UPDATED: "statusUpdated", + SECURITY_SET: "securitySet", + NAV_PUSH: "navPush", + NAV_SETROOT: "navSetRoot", + }; - public SIGNALR_EVENTS = { - PERSONNEL_STATUS_UPDATED: 'PersonnelStatusUpdated', - PERSONNEL_STAFFING_UPDATED: 'PersonnelStaffingUpdated', - UNIT_STATUS_UPDATED: 'UnitStatusUpdated', - CALLS_UPDATED: 'CallsUpdated' - } + public SIGNALR_EVENTS = { + PERSONNEL_STATUS_UPDATED: "PersonnelStatusUpdated", + PERSONNEL_STAFFING_UPDATED: "PersonnelStaffingUpdated", + UNIT_STATUS_UPDATED: "UnitStatusUpdated", + CALLS_UPDATED: "CallsUpdated", + }; - public DOCTYPES = { - PERSONNEL: 1, - GROUPS: 2, - UNITS: 3, - ROLES: 4, - STATUSES: 5, - PRIORITIES: 6, - DEPARTMENTS: 7 - } + public DOCTYPES = { + PERSONNEL: 1, + GROUPS: 2, + UNITS: 3, + ROLES: 4, + STATUSES: 5, + PRIORITIES: 6, + DEPARTMENTS: 7, + }; - public STATUS = { - STANDINGBY: 0, - NOTRESPONDING: 1, - RESPONDING: 2, - ONSCENE: 3, - AVAILABLESTATION: 4, - RESPONDINGTOSTATION: 5, - RESPONDINGTOSCENE: 6 - } + public STATUS = { + STANDINGBY: 0, + NOTRESPONDING: 1, + RESPONDING: 2, + ONSCENE: 3, + AVAILABLESTATION: 4, + RESPONDINGTOSTATION: 5, + RESPONDINGTOSCENE: 6, + }; - public STAFFING = { - NORMAL: 0, - DELAYED: 1, - UNAVAILABLE: 2, - COMMITTED: 3, - ONSHIFT: 4 - } + public STAFFING = { + NORMAL: 0, + DELAYED: 1, + UNAVAILABLE: 2, + COMMITTED: 3, + ONSHIFT: 4, + }; - public DETAILTYPES = { - NONE: 0, - STATIONS: 1, - CALLS: 2, - CALLSANDSTATIONS: 3 - } + public DETAILTYPES = { + NONE: 0, + STATIONS: 1, + CALLS: 2, + CALLSANDSTATIONS: 3, + }; - public NOTETYPES = { - NONE: 0, - OPTIONAL: 1, - REQUIRED: 2 - } + public NOTETYPES = { + NONE: 0, + OPTIONAL: 1, + REQUIRED: 2, + }; - public CUSTOMTYPES = { - PERSONNEL: 1, - UNIT: 2, - STAFFING: 3 - } + public CUSTOMTYPES = { + PERSONNEL: 1, + UNIT: 2, + STAFFING: 3, + }; - public MESSAGETYPES = { - NORMAL: 0, - CALLBACK: 1, - POLL: 2 - } + public MESSAGETYPES = { + NORMAL: 0, + CALLBACK: 1, + POLL: 2, + }; - public GROUPTYPES = { - ORG: 1, - STATION: 2 - } + public GROUPTYPES = { + ORG: 1, + STATION: 2, + }; - public DESTTYPES = { - STATION: 1, - CALL: 2 - } + public DESTTYPES = { + STATION: 1, + CALL: 2, + }; - public CACHE = { - PERSON_DETAIL: 'personDetail', - UNIT_DETAIL: 'unitDetail' - } + public CACHE = { + PERSON_DETAIL: "personDetail", + UNIT_DETAIL: "unitDetail", + }; } diff --git a/src/app/core/core.module.ts b/src/app/core/core.module.ts index 5425ef7..dd5adb1 100644 --- a/src/app/core/core.module.ts +++ b/src/app/core/core.module.ts @@ -1,10 +1,8 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; +import { NgModule } from "@angular/core"; +import { CommonModule } from "@angular/common"; @NgModule({ declarations: [], - imports: [ - CommonModule - ] + imports: [CommonModule], }) -export class CoreModule { } +export class CoreModule {} diff --git a/src/app/core/guards/auth.guard.ts b/src/app/core/guards/auth.guard.ts index 613db48..a08c829 100644 --- a/src/app/core/guards/auth.guard.ts +++ b/src/app/core/guards/auth.guard.ts @@ -1,37 +1,39 @@ -import { Injectable } from '@angular/core'; -import { Router, CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router'; +import { Injectable } from "@angular/core"; +import { Router, CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot } from "@angular/router"; -import { environment } from '../../../environments/environment'; -import { AuthState } from 'src/app/features/auth/store/auth.store'; -import { Observable, of } from 'rxjs'; -import { Store } from '@ngrx/store'; -import { UtilsProvider } from 'src/app/providers/utils'; -import { selectAuthState } from 'src/app/store'; -import { map, catchError } from 'rxjs/operators'; +import { environment } from "../../../environments/environment"; +import { AuthState } from "src/app/features/auth/store/auth.store"; +import { Observable, of } from "rxjs"; +import { Store } from "@ngrx/store"; +import { UtilsProvider } from "src/app/providers/utils"; +import { selectAuthState } from "src/app/store"; +import { map, catchError } from "rxjs/operators"; -@Injectable({ providedIn: 'root' }) +@Injectable({ providedIn: "root" }) export class AuthGuard implements CanActivate { - public authInfo$: Observable; + public authInfo$: Observable; - constructor(private router: Router, private store: Store) { - this.authInfo$ = this.store.select(selectAuthState); - } + constructor( + private router: Router, + private store: Store, + ) { + this.authInfo$ = this.store.select(selectAuthState); + } - canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable | boolean { - return this.authInfo$ - .pipe( - map((user: AuthState) => { - if (user && user.loggedIn) { - return true; - } else { - this.router.navigate([''], { queryParams: { returnUrl: state.url } }); - return false; - } - }), - catchError((caught): Observable => { - this.router.navigate([''], { queryParams: { returnUrl: state.url } }); - return of(false); - }) - ); - } -} \ No newline at end of file + canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable | boolean { + return this.authInfo$.pipe( + map((user: AuthState) => { + if (user && user.loggedIn) { + return true; + } else { + this.router.navigate([""], { queryParams: { returnUrl: state.url } }); + return false; + } + }), + catchError((caught): Observable => { + this.router.navigate([""], { queryParams: { returnUrl: state.url } }); + return of(false); + }), + ); + } +} diff --git a/src/app/core/helpers/jwt.interceptor.ts b/src/app/core/helpers/jwt.interceptor.ts index 0d0358d..a48661a 100644 --- a/src/app/core/helpers/jwt.interceptor.ts +++ b/src/app/core/helpers/jwt.interceptor.ts @@ -1,4 +1,3 @@ - /*import { Injectable } from '@angular/core'; import { HttpRequest, HttpHandler, HttpEvent, HttpInterceptor } from '@angular/common/http'; import { Observable } from 'rxjs'; @@ -36,4 +35,4 @@ export class JwtInterceptor implements HttpInterceptor { return next.handle(request); } } -*/ \ No newline at end of file +*/ diff --git a/src/app/core/icons/dripicons/dripicons.component.html b/src/app/core/icons/dripicons/dripicons.component.html index 9adec1c..79a0667 100644 --- a/src/app/core/icons/dripicons/dripicons.component.html +++ b/src/app/core/icons/dripicons/dripicons.component.html @@ -5,617 +5,215 @@
-

Examples

-

Use <i - class="dripicons-alarm"></i>. -

+

Use <i class="dripicons-alarm"></i>.

-
- dripicons-alarm -
-
- dripicons-align-center -
-
- dripicons-align-justify -
-
- dripicons-align-left -
-
- dripicons-align-right -
-
- dripicons-anchor -
-
- dripicons-archive -
-
- dripicons-arrow-down -
-
- dripicons-arrow-left -
-
- dripicons-arrow-right -
-
- dripicons-arrow-thin-down -
-
- dripicons-arrow-thin-left -
-
- dripicons-arrow-thin-right -
-
- dripicons-arrow-thin-up -
-
- dripicons-arrow-up -
-
- dripicons-article -
-
- dripicons-backspace -
-
- dripicons-basket -
-
- dripicons-basketball -
-
- dripicons-battery-empty -
-
- dripicons-battery-full -
-
- dripicons-battery-low -
-
- dripicons-battery-medium -
-
- dripicons-bell -
-
- dripicons-blog -
-
- dripicons-bluetooth -
-
- dripicons-bold -
-
- dripicons-bookmark -
-
- dripicons-bookmarks -
-
- dripicons-box -
-
- dripicons-briefcase -
-
- dripicons-brightness-low -
-
- dripicons-brightness-max -
-
- dripicons-brightness-medium -
-
- dripicons-broadcast -
-
- dripicons-browser -
-
- dripicons-browser-upload -
-
- dripicons-brush -
-
- dripicons-calendar -
-
- dripicons-camcorder -
-
- dripicons-camera -
-
- dripicons-card -
-
- dripicons-cart -
-
- dripicons-checklist -
-
- dripicons-checkmark -
-
- dripicons-chevron-down -
-
- dripicons-chevron-left -
-
- dripicons-chevron-right -
-
- dripicons-chevron-up -
-
- dripicons-clipboard -
-
- dripicons-clock -
-
- dripicons-clockwise -
-
- dripicons-cloud -
-
- dripicons-cloud-download -
-
- dripicons-cloud-upload -
-
- dripicons-code -
-
- dripicons-contract -
-
- dripicons-contract-2 -
-
- dripicons-conversation -
-
- dripicons-copy -
-
- dripicons-crop -
-
- dripicons-cross -
-
- dripicons-crosshair -
-
- dripicons-cutlery -
-
- dripicons-device-desktop -
-
- dripicons-device-mobile -
-
- dripicons-device-tablet -
-
- dripicons-direction -
-
- dripicons-disc -
-
- dripicons-document -
-
- dripicons-document-delete -
-
- dripicons-document-edit -
-
- dripicons-document-new -
-
- dripicons-document-remove -
-
- dripicons-dot -
-
- dripicons-dots-2 -
-
- dripicons-dots-3 -
-
- dripicons-download -
-
- dripicons-duplicate -
-
- dripicons-enter -
-
- dripicons-exit -
-
- dripicons-expand -
-
- dripicons-expand-2 -
-
- dripicons-experiment -
-
- dripicons-export -
-
- dripicons-feed -
-
- dripicons-flag -
-
- dripicons-flashlight -
-
- dripicons-folder -
-
- dripicons-folder-open -
-
- dripicons-forward -
-
- dripicons-gaming -
-
- dripicons-gear -
-
- dripicons-graduation -
-
- dripicons-graph-bar -
-
- dripicons-graph-line -
-
- dripicons-graph-pie -
-
- dripicons-headset -
-
- dripicons-heart -
-
- dripicons-help -
-
- dripicons-home -
-
- dripicons-hourglass -
-
- dripicons-inbox -
-
- dripicons-information -
-
- dripicons-italic -
-
- dripicons-jewel -
-
- dripicons-lifting -
-
- dripicons-lightbulb -
-
- dripicons-link -
-
- dripicons-link-broken -
-
- dripicons-list -
-
- dripicons-loading -
-
- dripicons-location -
-
- dripicons-lock -
-
- dripicons-lock-open -
-
- dripicons-mail -
-
- dripicons-map -
-
- dripicons-media-loop -
-
- dripicons-media-next -
-
- dripicons-media-pause -
-
- dripicons-media-play -
-
- dripicons-media-previous -
-
- dripicons-media-record -
-
- dripicons-media-shuffle -
-
- dripicons-media-stop -
-
- dripicons-medical -
-
- dripicons-menu -
-
- dripicons-message -
-
- dripicons-meter -
-
- dripicons-microphone -
-
- dripicons-minus -
-
- dripicons-monitor -
-
- dripicons-move -
-
- dripicons-music -
-
- dripicons-network-1 -
-
- dripicons-network-2 -
-
- dripicons-network-3 -
-
- dripicons-network-4 -
-
- dripicons-network-5 -
-
- dripicons-pamphlet -
-
- dripicons-paperclip -
-
- dripicons-pencil -
-
- dripicons-phone -
-
- dripicons-photo -
-
- dripicons-photo-group -
-
- dripicons-pill -
-
- dripicons-pin -
-
- dripicons-plus -
-
- dripicons-power -
-
- dripicons-preview -
-
- dripicons-print -
-
- dripicons-pulse -
-
- dripicons-question -
-
- dripicons-reply -
-
- dripicons-reply-all -
-
- dripicons-return -
-
- dripicons-retweet -
-
- dripicons-rocket -
-
- dripicons-scale -
-
- dripicons-search -
-
- dripicons-shopping-bag -
-
- dripicons-skip -
-
- dripicons-stack -
-
- dripicons-star -
-
- dripicons-stopwatch -
-
- dripicons-store -
-
- dripicons-suitcase -
-
- dripicons-swap -
-
- dripicons-tag -
-
- dripicons-tag-delete -
-
- dripicons-tags -
-
- dripicons-thumbs-down -
-
- dripicons-thumbs-up -
-
- dripicons-ticket -
-
- dripicons-time-reverse -
-
- dripicons-to-do -
-
- dripicons-toggles -
-
- dripicons-trash -
-
- dripicons-trophy -
-
- dripicons-upload -
-
- dripicons-user -
-
- dripicons-user-group -
-
- dripicons-user-id -
-
- dripicons-vibrate -
-
- dripicons-view-apps -
-
- dripicons-view-list -
-
- dripicons-view-list-large -
-
- dripicons-view-thumb -
-
- dripicons-volume-full -
-
- dripicons-volume-low -
-
- dripicons-volume-medium -
-
- dripicons-volume-off -
-
- dripicons-wallet -
-
- dripicons-warning -
-
- dripicons-web -
-
- dripicons-weight -
-
- dripicons-wifi -
-
- dripicons-wrong -
-
- dripicons-zoom-in -
-
- dripicons-zoom-out -
+
dripicons-alarm
+
dripicons-align-center
+
dripicons-align-justify
+
dripicons-align-left
+
dripicons-align-right
+
dripicons-anchor
+
dripicons-archive
+
dripicons-arrow-down
+
dripicons-arrow-left
+
dripicons-arrow-right
+
dripicons-arrow-thin-down
+
dripicons-arrow-thin-left
+
dripicons-arrow-thin-right
+
dripicons-arrow-thin-up
+
dripicons-arrow-up
+
dripicons-article
+
dripicons-backspace
+
dripicons-basket
+
dripicons-basketball
+
dripicons-battery-empty
+
dripicons-battery-full
+
dripicons-battery-low
+
dripicons-battery-medium
+
dripicons-bell
+
dripicons-blog
+
dripicons-bluetooth
+
dripicons-bold
+
dripicons-bookmark
+
dripicons-bookmarks
+
dripicons-box
+
dripicons-briefcase
+
dripicons-brightness-low
+
dripicons-brightness-max
+
dripicons-brightness-medium
+
dripicons-broadcast
+
dripicons-browser
+
dripicons-browser-upload
+
dripicons-brush
+
dripicons-calendar
+
dripicons-camcorder
+
dripicons-camera
+
dripicons-card
+
dripicons-cart
+
dripicons-checklist
+
dripicons-checkmark
+
dripicons-chevron-down
+
dripicons-chevron-left
+
dripicons-chevron-right
+
dripicons-chevron-up
+
dripicons-clipboard
+
dripicons-clock
+
dripicons-clockwise
+
dripicons-cloud
+
dripicons-cloud-download
+
dripicons-cloud-upload
+
dripicons-code
+
dripicons-contract
+
dripicons-contract-2
+
dripicons-conversation
+
dripicons-copy
+
dripicons-crop
+
dripicons-cross
+
dripicons-crosshair
+
dripicons-cutlery
+
dripicons-device-desktop
+
dripicons-device-mobile
+
dripicons-device-tablet
+
dripicons-direction
+
dripicons-disc
+
dripicons-document
+
dripicons-document-delete
+
dripicons-document-edit
+
dripicons-document-new
+
dripicons-document-remove
+
dripicons-dot
+
dripicons-dots-2
+
dripicons-dots-3
+
dripicons-download
+
dripicons-duplicate
+
dripicons-enter
+
dripicons-exit
+
dripicons-expand
+
dripicons-expand-2
+
dripicons-experiment
+
dripicons-export
+
dripicons-feed
+
dripicons-flag
+
dripicons-flashlight
+
dripicons-folder
+
dripicons-folder-open
+
dripicons-forward
+
dripicons-gaming
+
dripicons-gear
+
dripicons-graduation
+
dripicons-graph-bar
+
dripicons-graph-line
+
dripicons-graph-pie
+
dripicons-headset
+
dripicons-heart
+
dripicons-help
+
dripicons-home
+
dripicons-hourglass
+
dripicons-inbox
+
dripicons-information
+
dripicons-italic
+
dripicons-jewel
+
dripicons-lifting
+
dripicons-lightbulb
+
dripicons-link
+
dripicons-link-broken
+
dripicons-list
+
dripicons-loading
+
dripicons-location
+
dripicons-lock
+
dripicons-lock-open
+
dripicons-mail
+
dripicons-map
+
dripicons-media-loop
+
dripicons-media-next
+
dripicons-media-pause
+
dripicons-media-play
+
dripicons-media-previous
+
dripicons-media-record
+
dripicons-media-shuffle
+
dripicons-media-stop
+
dripicons-medical
+
dripicons-menu
+
dripicons-message
+
dripicons-meter
+
dripicons-microphone
+
dripicons-minus
+
dripicons-monitor
+
dripicons-move
+
dripicons-music
+
dripicons-network-1
+
dripicons-network-2
+
dripicons-network-3
+
dripicons-network-4
+
dripicons-network-5
+
dripicons-pamphlet
+
dripicons-paperclip
+
dripicons-pencil
+
dripicons-phone
+
dripicons-photo
+
dripicons-photo-group
+
dripicons-pill
+
dripicons-pin
+
dripicons-plus
+
dripicons-power
+
dripicons-preview
+
dripicons-print
+
dripicons-pulse
+
dripicons-question
+
dripicons-reply
+
dripicons-reply-all
+
dripicons-return
+
dripicons-retweet
+
dripicons-rocket
+
dripicons-scale
+
dripicons-search
+
dripicons-shopping-bag
+
dripicons-skip
+
dripicons-stack
+
dripicons-star
+
dripicons-stopwatch
+
dripicons-store
+
dripicons-suitcase
+
dripicons-swap
+
dripicons-tag
+
dripicons-tag-delete
+
dripicons-tags
+
dripicons-thumbs-down
+
dripicons-thumbs-up
+
dripicons-ticket
+
dripicons-time-reverse
+
dripicons-to-do
+
dripicons-toggles
+
dripicons-trash
+
dripicons-trophy
+
dripicons-upload
+
dripicons-user
+
dripicons-user-group
+
dripicons-user-id
+
dripicons-vibrate
+
dripicons-view-apps
+
dripicons-view-list
+
dripicons-view-list-large
+
dripicons-view-thumb
+
dripicons-volume-full
+
dripicons-volume-low
+
dripicons-volume-medium
+
dripicons-volume-off
+
dripicons-wallet
+
dripicons-warning
+
dripicons-web
+
dripicons-weight
+
dripicons-wifi
+
dripicons-wrong
+
dripicons-zoom-in
+
dripicons-zoom-out
-
-
- + + + + diff --git a/src/app/core/icons/dripicons/dripicons.component.spec.ts b/src/app/core/icons/dripicons/dripicons.component.spec.ts index 9c4a7df..0a41cf0 100644 --- a/src/app/core/icons/dripicons/dripicons.component.spec.ts +++ b/src/app/core/icons/dripicons/dripicons.component.spec.ts @@ -1,16 +1,15 @@ -import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; +import { ComponentFixture, TestBed, waitForAsync } from "@angular/core/testing"; -import { DripiconsComponent } from './dripicons.component'; +import { DripiconsComponent } from "./dripicons.component"; -describe('DripiconsComponent', () => { +describe("DripiconsComponent", () => { let component: DripiconsComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ - declarations: [ DripiconsComponent ] - }) - .compileComponents(); + declarations: [DripiconsComponent], + }).compileComponents(); })); beforeEach(() => { @@ -19,7 +18,7 @@ describe('DripiconsComponent', () => { fixture.detectChanges(); }); - it('should create', () => { + it("should create", () => { expect(component).toBeTruthy(); }); }); diff --git a/src/app/core/icons/dripicons/dripicons.component.ts b/src/app/core/icons/dripicons/dripicons.component.ts index b9d1d88..1aa32b5 100644 --- a/src/app/core/icons/dripicons/dripicons.component.ts +++ b/src/app/core/icons/dripicons/dripicons.component.ts @@ -1,9 +1,9 @@ -import { Component, OnInit } from '@angular/core'; +import { Component, OnInit } from "@angular/core"; @Component({ - selector: 'app-dripicons', - templateUrl: './dripicons.component.html', - styleUrls: ['./dripicons.component.scss'] + selector: "app-dripicons", + templateUrl: "./dripicons.component.html", + styleUrls: ["./dripicons.component.scss"], }) /** @@ -13,9 +13,9 @@ export class DripiconsComponent implements OnInit { // bread crumb items breadCrumbItems: Array<{}>; - constructor() { } + constructor() {} ngOnInit() { - this.breadCrumbItems = [{ label: 'Icons' }, { label: 'Dripicons', active: true }]; + this.breadCrumbItems = [{ label: "Icons" }, { label: "Dripicons", active: true }]; } } diff --git a/src/app/core/icons/fontawesome/data.ts b/src/app/core/icons/fontawesome/data.ts index b6365da..9929fc3 100644 --- a/src/app/core/icons/fontawesome/data.ts +++ b/src/app/core/icons/fontawesome/data.ts @@ -1,243 +1,25522 @@ -const icons = [{ "attributes": { "id": "500px", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f26e", "voted": false }, "id": "500px", "links": { "self": "/api/icons/500px" }, "type": "icon" }, { "attributes": { "id": "abacus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f640", "voted": false }, "id": "abacus", "links": { "self": "/api/icons/abacus" }, "type": "icon" }, { "attributes": { "id": "accessible-icon", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f368", "voted": false }, "id": "accessible-icon", "links": { "self": "/api/icons/accessible-icon" }, "type": "icon" }, { "attributes": { "id": "accusoft", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f369", "voted": false }, "id": "accusoft", "links": { "self": "/api/icons/accusoft" }, "type": "icon" }, { "attributes": { "id": "acorn", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6ae", "voted": false }, "id": "acorn", "links": { "self": "/api/icons/acorn" }, "type": "icon" }, { "attributes": { "id": "acquisitions-incorporated", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f6af", "voted": false }, "id": "acquisitions-incorporated", "links": { "self": "/api/icons/acquisitions-incorporated" }, "type": "icon" }, { "attributes": { "id": "ad", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f641", "voted": false }, "id": "ad", "links": { "self": "/api/icons/ad" }, "type": "icon" }, { "attributes": { "id": "address-book", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2b9", "voted": false }, "id": "address-book", "links": { "self": "/api/icons/address-book" }, "type": "icon" }, { "attributes": { "id": "address-card", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2bb", "voted": false }, "id": "address-card", "links": { "self": "/api/icons/address-card" }, "type": "icon" }, { "attributes": { "id": "adjust", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f042", "voted": false }, "id": "adjust", "links": { "self": "/api/icons/adjust" }, "type": "icon" }, { "attributes": { "id": "adn", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f170", "voted": false }, "id": "adn", "links": { "self": "/api/icons/adn" }, "type": "icon" }, { "attributes": { "id": "adobe", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f778", "voted": false }, "id": "adobe", "links": { "self": "/api/icons/adobe" }, "type": "icon" }, { "attributes": { "id": "adversal", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f36a", "voted": false }, "id": "adversal", "links": { "self": "/api/icons/adversal" }, "type": "icon" }, { "attributes": { "id": "affiliatetheme", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f36b", "voted": false }, "id": "affiliatetheme", "links": { "self": "/api/icons/affiliatetheme" }, "type": "icon" }, { "attributes": { "id": "air-conditioner", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8f4", "voted": false }, "id": "air-conditioner", "links": { "self": "/api/icons/air-conditioner" }, "type": "icon" }, { "attributes": { "id": "air-freshener", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5d0", "voted": false }, "id": "air-freshener", "links": { "self": "/api/icons/air-freshener" }, "type": "icon" }, { "attributes": { "id": "airbnb", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f834", "voted": false }, "id": "airbnb", "links": { "self": "/api/icons/airbnb" }, "type": "icon" }, { "attributes": { "id": "alarm-clock", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f34e", "voted": false }, "id": "alarm-clock", "links": { "self": "/api/icons/alarm-clock" }, "type": "icon" }, { "attributes": { "id": "alarm-exclamation", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f843", "voted": false }, "id": "alarm-exclamation", "links": { "self": "/api/icons/alarm-exclamation" }, "type": "icon" }, { "attributes": { "id": "alarm-plus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f844", "voted": false }, "id": "alarm-plus", "links": { "self": "/api/icons/alarm-plus" }, "type": "icon" }, { "attributes": { "id": "alarm-snooze", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f845", "voted": true }, "id": "alarm-snooze", "links": { "self": "/api/icons/alarm-snooze" }, "type": "icon" }, { "attributes": { "id": "album", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f89f", "voted": true }, "id": "album", "links": { "self": "/api/icons/album" }, "type": "icon" }, { "attributes": { "id": "album-collection", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8a0", "voted": false }, "id": "album-collection", "links": { "self": "/api/icons/album-collection" }, "type": "icon" }, { "attributes": { "id": "algolia", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f36c", "voted": false }, "id": "algolia", "links": { "self": "/api/icons/algolia" }, "type": "icon" }, { "attributes": { "id": "alicorn", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6b0", "voted": false }, "id": "alicorn", "links": { "self": "/api/icons/alicorn" }, "type": "icon" }, { "attributes": { "id": "alien", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8f5", "voted": false }, "id": "alien", "links": { "self": "/api/icons/alien" }, "type": "icon" }, { "attributes": { "id": "alien-monster", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8f6", "voted": false }, "id": "alien-monster", "links": { "self": "/api/icons/alien-monster" }, "type": "icon" }, { "attributes": { "id": "align-center", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f037", "voted": false }, "id": "align-center", "links": { "self": "/api/icons/align-center" }, "type": "icon" }, { "attributes": { "id": "align-justify", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f039", "voted": false }, "id": "align-justify", "links": { "self": "/api/icons/align-justify" }, "type": "icon" }, { "attributes": { "id": "align-left", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f036", "voted": false }, "id": "align-left", "links": { "self": "/api/icons/align-left" }, "type": "icon" }, { "attributes": { "id": "align-right", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f038", "voted": false }, "id": "align-right", "links": { "self": "/api/icons/align-right" }, "type": "icon" }, { "attributes": { "id": "align-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f846", "voted": false }, "id": "align-slash", "links": { "self": "/api/icons/align-slash" }, "type": "icon" }, { "attributes": { "id": "alipay", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f642", "voted": false }, "id": "alipay", "links": { "self": "/api/icons/alipay" }, "type": "icon" }, { "attributes": { "id": "allergies", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f461", "voted": false }, "id": "allergies", "links": { "self": "/api/icons/allergies" }, "type": "icon" }, { "attributes": { "id": "amazon", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f270", "voted": false }, "id": "amazon", "links": { "self": "/api/icons/amazon" }, "type": "icon" }, { "attributes": { "id": "amazon-pay", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f42c", "voted": false }, "id": "amazon-pay", "links": { "self": "/api/icons/amazon-pay" }, "type": "icon" }, { "attributes": { "id": "ambulance", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0f9", "voted": false }, "id": "ambulance", "links": { "self": "/api/icons/ambulance" }, "type": "icon" }, { "attributes": { "id": "american-sign-language-interpreting", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2a3", "voted": false }, "id": "american-sign-language-interpreting", "links": { "self": "/api/icons/american-sign-language-interpreting" }, "type": "icon" }, { "attributes": { "id": "amilia", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f36d", "voted": false }, "id": "amilia", "links": { "self": "/api/icons/amilia" }, "type": "icon" }, { "attributes": { "id": "amp-guitar", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f8a1", "voted": false }, "id": "amp-guitar", "links": { "self": "/api/icons/amp-guitar" }, "type": "icon" }, { "attributes": { "id": "analytics", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f643", "voted": false }, "id": "analytics", "links": { "self": "/api/icons/analytics" }, "type": "icon" } - , { "attributes": { "id": "anchor", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f13d", "voted": false }, "id": "anchor", "links": { "self": "/api/icons/anchor" }, "type": "icon" }, { "attributes": { "id": "android", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f17b", "voted": false }, "id": "android", "links": { "self": "/api/icons/android" }, "type": "icon" }, { "attributes": { "id": "angel", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f779", "voted": false }, "id": "angel", "links": { "self": "/api/icons/angel" }, "type": "icon" }, { "attributes": { "id": "angellist", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f209", "voted": false }, "id": "angellist", "links": { "self": "/api/icons/angellist" }, "type": "icon" }, { "attributes": { "id": "angle-double-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f103", "voted": false }, "id": "angle-double-down", "links": { "self": "/api/icons/angle-double-down" }, "type": "icon" }, { "attributes": { "id": "angle-double-left", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f100", "voted": false }, "id": "angle-double-left", "links": { "self": "/api/icons/angle-double-left" }, "type": "icon" }, { "attributes": { "id": "angle-double-right", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f101", "voted": false }, "id": "angle-double-right", "links": { "self": "/api/icons/angle-double-right" }, "type": "icon" }, { "attributes": { "id": "angle-double-up", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f102", "voted": false }, "id": "angle-double-up", "links": { "self": "/api/icons/angle-double-up" }, "type": "icon" }, { "attributes": { "id": "angle-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f107", "voted": false }, "id": "angle-down", "links": { "self": "/api/icons/angle-down" }, "type": "icon" }, { "attributes": { "id": "angle-left", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f104", "voted": false }, "id": "angle-left", "links": { "self": "/api/icons/angle-left" }, "type": "icon" }, { "attributes": { "id": "angle-right", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f105", "voted": false }, "id": "angle-right", "links": { "self": "/api/icons/angle-right" }, "type": "icon" }, { "attributes": { "id": "angle-up", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f106", "voted": false }, "id": "angle-up", "links": { "self": "/api/icons/angle-up" }, "type": "icon" }, { "attributes": { "id": "angry", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f556", "voted": false }, "id": "angry", "links": { "self": "/api/icons/angry" }, "type": "icon" }, { "attributes": { "id": "angrycreative", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f36e", "voted": false }, "id": "angrycreative", "links": { "self": "/api/icons/angrycreative" }, "type": "icon" }, { "attributes": { "id": "angular", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f420", "voted": false }, "id": "angular", "links": { "self": "/api/icons/angular" }, "type": "icon" }, { "attributes": { "id": "ankh", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f644", "voted": false }, "id": "ankh", "links": { "self": "/api/icons/ankh" }, "type": "icon" }, { "attributes": { "id": "app-store", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f36f", "voted": false }, "id": "app-store", "links": { "self": "/api/icons/app-store" }, "type": "icon" }, { "attributes": { "id": "app-store-ios", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f370", "voted": false }, "id": "app-store-ios", "links": { "self": "/api/icons/app-store-ios" }, "type": "icon" }, { "attributes": { "id": "apper", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f371", "voted": false }, "id": "apper", "links": { "self": "/api/icons/apper" }, "type": "icon" }, { "attributes": { "id": "apple", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f179", "voted": false }, "id": "apple", "links": { "self": "/api/icons/apple" }, "type": "icon" }, { "attributes": { "id": "apple-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5d1", "voted": false }, "id": "apple-alt", "links": { "self": "/api/icons/apple-alt" }, "type": "icon" }, { "attributes": { "id": "apple-crate", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6b1", "voted": false }, "id": "apple-crate", "links": { "self": "/api/icons/apple-crate" }, "type": "icon" }, { "attributes": { "id": "apple-pay", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f415", "voted": true }, "id": "apple-pay", "links": { "self": "/api/icons/apple-pay" }, "type": "icon" }, { "attributes": { "id": "archive", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f187", "voted": false }, "id": "archive", "links": { "self": "/api/icons/archive" }, "type": "icon" }, { "attributes": { "id": "archway", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f557", "voted": false }, "id": "archway", "links": { "self": "/api/icons/archway" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-circle-down", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f358", "voted": false }, "id": "arrow-alt-circle-down", "links": { "self": "/api/icons/arrow-alt-circle-down" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-circle-left", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f359", "voted": false }, "id": "arrow-alt-circle-left", "links": { "self": "/api/icons/arrow-alt-circle-left" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-circle-right", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f35a", "voted": false }, "id": "arrow-alt-circle-right", "links": { "self": "/api/icons/arrow-alt-circle-right" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-circle-up", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f35b", "voted": false }, "id": "arrow-alt-circle-up", "links": { "self": "/api/icons/arrow-alt-circle-up" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-down", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f354", "voted": false }, "id": "arrow-alt-down", "links": { "self": "/api/icons/arrow-alt-down" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-from-bottom", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f346", "voted": false }, "id": "arrow-alt-from-bottom", "links": { "self": "/api/icons/arrow-alt-from-bottom" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-from-left", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f347", "voted": false }, "id": "arrow-alt-from-left", "links": { "self": "/api/icons/arrow-alt-from-left" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-from-right", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f348", "voted": false }, "id": "arrow-alt-from-right", "links": { "self": "/api/icons/arrow-alt-from-right" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-from-top", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f349", "voted": false }, "id": "arrow-alt-from-top", "links": { "self": "/api/icons/arrow-alt-from-top" }, "type": "icon" }, { - "attributes": { "id": "arrow-alt-left", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f355", "voted": false } - , "id": "arrow-alt-left", "links": { "self": "/api/icons/arrow-alt-left" }, "type": "icon" -}, { "attributes": { "id": "arrow-alt-right", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f356", "voted": false }, "id": "arrow-alt-right", "links": { "self": "/api/icons/arrow-alt-right" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-square-down", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f350", "voted": false }, "id": "arrow-alt-square-down", "links": { "self": "/api/icons/arrow-alt-square-down" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-square-left", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f351", "voted": false }, "id": "arrow-alt-square-left", "links": { "self": "/api/icons/arrow-alt-square-left" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-square-right", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f352", "voted": false }, "id": "arrow-alt-square-right", "links": { "self": "/api/icons/arrow-alt-square-right" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-square-up", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f353", "voted": false }, "id": "arrow-alt-square-up", "links": { "self": "/api/icons/arrow-alt-square-up" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-to-bottom", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f34a", "voted": false }, "id": "arrow-alt-to-bottom", "links": { "self": "/api/icons/arrow-alt-to-bottom" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-to-left", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f34b", "voted": false }, "id": "arrow-alt-to-left", "links": { "self": "/api/icons/arrow-alt-to-left" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-to-right", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f34c", "voted": false }, "id": "arrow-alt-to-right", "links": { "self": "/api/icons/arrow-alt-to-right" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-to-top", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f34d", "voted": false }, "id": "arrow-alt-to-top", "links": { "self": "/api/icons/arrow-alt-to-top" }, "type": "icon" }, { "attributes": { "id": "arrow-alt-up", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f357", "voted": false }, "id": "arrow-alt-up", "links": { "self": "/api/icons/arrow-alt-up" }, "type": "icon" }, { "attributes": { "id": "arrow-circle-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0ab", "voted": false }, "id": "arrow-circle-down", "links": { "self": "/api/icons/arrow-circle-down" }, "type": "icon" }, { "attributes": { "id": "arrow-circle-left", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0a8", "voted": false }, "id": "arrow-circle-left", "links": { "self": "/api/icons/arrow-circle-left" }, "type": "icon" }, { "attributes": { "id": "arrow-circle-right", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0a9", "voted": false }, "id": "arrow-circle-right", "links": { "self": "/api/icons/arrow-circle-right" }, "type": "icon" }, { "attributes": { "id": "arrow-circle-up", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0aa", "voted": false }, "id": "arrow-circle-up", "links": { "self": "/api/icons/arrow-circle-up" }, "type": "icon" }, { "attributes": { "id": "arrow-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f063", "voted": false }, "id": "arrow-down", "links": { "self": "/api/icons/arrow-down" }, "type": "icon" }, { "attributes": { "id": "arrow-from-bottom", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f342", "voted": false }, "id": "arrow-from-bottom", "links": { "self": "/api/icons/arrow-from-bottom" }, "type": "icon" }, { "attributes": { "id": "arrow-from-left", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f343", "voted": false }, "id": "arrow-from-left", "links": { "self": "/api/icons/arrow-from-left" }, "type": "icon" }, { - "attributes": - { "id": "arrow-from-right", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f344", "voted": false }, "id": "arrow-from-right", "links": { "self": "/api/icons/arrow-from-right" }, "type": "icon" -}, { "attributes": { "id": "arrow-from-top", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f345", "voted": false }, "id": "arrow-from-top", "links": { "self": "/api/icons/arrow-from-top" }, "type": "icon" }, { "attributes": { "id": "arrow-left", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f060", "voted": false }, "id": "arrow-left", "links": { "self": "/api/icons/arrow-left" }, "type": "icon" }, { "attributes": { "id": "arrow-right", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f061", "voted": false }, "id": "arrow-right", "links": { "self": "/api/icons/arrow-right" }, "type": "icon" }, { "attributes": { "id": "arrow-square-down", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f339", "voted": false }, "id": "arrow-square-down", "links": { "self": "/api/icons/arrow-square-down" }, "type": "icon" }, { "attributes": { "id": "arrow-square-left", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f33a", "voted": false }, "id": "arrow-square-left", "links": { "self": "/api/icons/arrow-square-left" }, "type": "icon" }, { "attributes": { "id": "arrow-square-right", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f33b", "voted": false }, "id": "arrow-square-right", "links": { "self": "/api/icons/arrow-square-right" }, "type": "icon" }, { "attributes": { "id": "arrow-square-up", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f33c", "voted": false }, "id": "arrow-square-up", "links": { "self": "/api/icons/arrow-square-up" }, "type": "icon" }, { "attributes": { "id": "arrow-to-bottom", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f33d", "voted": false }, "id": "arrow-to-bottom", "links": { "self": "/api/icons/arrow-to-bottom" }, "type": "icon" }, { "attributes": { "id": "arrow-to-left", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f33e", "voted": false }, "id": "arrow-to-left", "links": { "self": "/api/icons/arrow-to-left" }, "type": "icon" }, { "attributes": { "id": "arrow-to-right", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f340", "voted": false }, "id": "arrow-to-right", "links": { "self": "/api/icons/arrow-to-right" }, "type": "icon" }, { "attributes": { "id": "arrow-to-top", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f341", "voted": false }, "id": "arrow-to-top", "links": { "self": "/api/icons/arrow-to-top" }, "type": "icon" }, { "attributes": { "id": "arrow-up", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f062", "voted": false }, "id": "arrow-up", "links": { "self": "/api/icons/arrow-up" }, "type": "icon" }, { "attributes": { "id": "arrows", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f047", "voted": false }, "id": "arrows", "links": { "self": "/api/icons/arrows" }, "type": "icon" }, { "attributes": { "id": "arrows-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0b2", "voted": false }, "id": "arrows-alt", "links": { "self": "/api/icons/arrows-alt" }, "type": "icon" }, { "attributes": { "id": "arrows-alt-h", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f337", "voted": false }, "id": "arrows-alt-h", "links": { "self": "/api/icons/arrows-alt-h" }, "type": "icon" }, { "attributes": { "id": "arrows-alt-v", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f338", "voted": false }, "id": "arrows-alt-v", "links": { "self": "/api/icons/arrows-alt-v" }, "type": "icon" }, { "attributes": { "id": "arrows-h", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f07e", "voted": false }, "id": "arrows-h", "links": { "self": "/api/icons/arrows-h" }, "type": "icon" }, { "attributes": { "id": "arrows-v", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f07d", "voted": false }, "id": "arrows-v", "links": { "self": "/api/icons/arrows-v" }, "type": "icon" }, { "attributes": { "id": "artstation", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f77a", "voted": true }, "id": "artstation", "links": { "self": "/api/icons/artstation" }, "type": "icon" }, { "attributes": { "id": "assistive-listening-systems", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2a2", "voted": false }, "id": "assistive-listening-systems", "links": { "self": "/api/icons/assistive-listening-systems" }, "type": "icon" }, { "attributes": { "id": "asterisk", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f069", "voted": false }, "id": "asterisk", "links": { "self": "/api/icons/asterisk" }, "type": "icon" }, { "attributes": { "id": "asymmetrik", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f372", "voted": false }, "id": "asymmetrik", "links": { "self": "/api/icons/asymmetrik" }, "type": "icon" }, { "attributes": { "id": "at", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1fa", "voted": false }, "id": "at", "links": { "self": "/api/icons/at" }, "type": "icon" }, { "attributes": { "id": "atlas", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f558", "voted": false }, "id": "atlas", "links": { "self": "/api/icons/atlas" }, "type": "icon" }, { "attributes": { "id": "atlassian", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f77b", "voted": true }, "id": "atlassian", "links": { "self": "/api/icons/atlassian" }, "type": "icon" }, { "attributes": { "id": "atom", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5d2", "voted": false }, "id": "atom", "links": { "self": "/api/icons/atom" }, "type": "icon" }, { "attributes": { "id": "atom-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5d3", "voted": false }, "id": "atom-alt", "links": { "self": "/api/icons/atom-alt" }, "type": "icon" }, { "attributes": { "id": "audible", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f373", "voted": false }, "id": "audible", "links": { "self": "/api/icons/audible" }, "type": "icon" }, { "attributes": { "id": "audio-description", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f29e", "voted": false }, "id": "audio-description", "links": { "self": "/api/icons/audio-description" }, "type": "icon" }, { "attributes": { "id": "autoprefixer", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f41c", "voted": false }, "id": "autoprefixer", "links": { "self": "/api/icons/autoprefixer" }, "type": "icon" }, { "attributes": { "id": "avianex", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f374", "voted": false }, "id": "avianex", "links": { "self": "/api/icons/avianex" }, "type": "icon" }, { "attributes": { "id": "aviato", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f421", "voted": false }, "id": "aviato", "links": { "self": "/api/icons/aviato" }, "type": "icon" }, { "attributes": { "id": "award", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f559", "voted": true }, "id": "award", "links": { "self": "/api/icons/award" }, "type": "icon" }, { "attributes": { "id": "aws", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f375", "voted": false }, "id": "aws", "links": { "self": "/api/icons/aws" }, "type": "icon" }, { "attributes": { "id": "axe", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6b2", "voted": false }, "id": "axe", "links": { "self": "/api/icons/axe" }, "type": "icon" }, { "attributes": { "id": "axe-battle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6b3", "voted": false }, "id": "axe-battle", "links": { "self": "/api/icons/axe-battle" }, "type": "icon" }, { "attributes": { "id": "baby", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f77c", "voted": true }, "id": "baby", "links": { "self": "/api/icons/baby" }, "type": "icon" }, { "attributes": { "id": "baby-carriage", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f77d", "voted": true }, "id": "baby-carriage", "links": { "self": "/api/icons/baby-carriage" }, "type": "icon" }, { "attributes": { "id": "backpack", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5d4", "voted": false }, "id": "backpack", "links": { "self": "/api/icons/backpack" }, "type": "icon" }, -{ "attributes": { "id": "backspace", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f55a", "voted": true }, "id": "backspace", "links": { "self": "/api/icons/backspace" }, "type": "icon" }, { "attributes": { "id": "backward", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f04a", "voted": false }, "id": "backward", "links": { "self": "/api/icons/backward" }, "type": "icon" }, { "attributes": { "id": "bacon", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7e5", "voted": false }, "id": "bacon", "links": { "self": "/api/icons/bacon" }, "type": "icon" }, { "attributes": { "id": "bacteria", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f959", "voted": false }, "id": "bacteria", "links": { "self": "/api/icons/bacteria" }, "type": "icon" }, { "attributes": { "id": "bacterium", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f95a", "voted": false }, "id": "bacterium", "links": { "self": "/api/icons/bacterium" }, "type": "icon" }, { "attributes": { "id": "badge", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f335", "voted": false }, "id": "badge", "links": { "self": "/api/icons/badge" }, "type": "icon" }, { "attributes": { "id": "badge-check", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f336", "voted": false }, "id": "badge-check", "links": { "self": "/api/icons/badge-check" }, "type": "icon" }, { "attributes": { "id": "badge-dollar", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f645", "voted": false }, "id": "badge-dollar", "links": { "self": "/api/icons/badge-dollar" }, "type": "icon" }, { "attributes": { "id": "badge-percent", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f646", "voted": false }, "id": "badge-percent", "links": { "self": "/api/icons/badge-percent" }, "type": "icon" }, { "attributes": { "id": "badge-sheriff", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f8a2", "voted": false }, "id": "badge-sheriff", "links": { "self": "/api/icons/badge-sheriff" }, "type": "icon" }, { "attributes": { "id": "badger-honey", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6b4", "voted": false }, "id": "badger-honey", "links": { "self": "/api/icons/badger-honey" }, "type": "icon" }, { "attributes": { "id": "bags-shopping", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f847", "voted": false }, "id": "bags-shopping", "links": { "self": "/api/icons/bags-shopping" }, "type": "icon" }, { "attributes": { "id": "bahai", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f666", "voted": false }, "id": "bahai", "links": { "self": "/api/icons/bahai" }, "type": "icon" }, { "attributes": { "id": "balance-scale", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f24e", "voted": false }, "id": "balance-scale", "links": { "self": "/api/icons/balance-scale" }, "type": "icon" }, { "attributes": { "id": "balance-scale-left", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f515", "voted": true }, "id": "balance-scale-left", "links": { "self": "/api/icons/balance-scale-left" }, "type": "icon" }, { "attributes": { "id": "balance-scale-right", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f516", "voted": true }, "id": "balance-scale-right", "links": { "self": "/api/icons/balance-scale-right" }, "type": "icon" }, { "attributes": { "id": "ball-pile", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f77e", "voted": false }, "id": "ball-pile", "links": { "self": "/api/icons/ball-pile" }, "type": "icon" }, { "attributes": { "id": "ballot", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f732", "voted": false }, "id": "ballot", "links": { "self": "/api/icons/ballot" }, "type": "icon" }, { "attributes": { "id": "ballot-check", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f733", "voted": false }, "id": "ballot-check", "links": { "self": "/api/icons/ballot-check" }, "type": "icon" }, { "attributes": { "id": "ban", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f05e", "voted": false }, "id": "ban", "links": { "self": "/api/icons/ban" }, "type": "icon" }, { "attributes": { "id": "band-aid", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f462", "voted": false }, "id": "band-aid", "links": { "self": "/api/icons/band-aid" }, "type": "icon" }, { "attributes": { "id": "bandcamp", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2d5", "voted": false }, "id": "bandcamp", "links": { "self": "/api/icons/bandcamp" }, "type": "icon" }, { "attributes": { "id": "banjo", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8a3", "voted": false }, "id": "banjo", "links": { "self": "/api/icons/banjo" }, "type": "icon" }, { "attributes": { "id": "barcode", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f02a", "voted": false }, "id": "barcode", "links": { "self": "/api/icons/barcode" }, "type": "icon" }, { "attributes": { "id": "barcode-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f463", "voted": false }, "id": "barcode-alt", "links": { "self": "/api/icons/barcode-alt" }, "type": "icon" }, { "attributes": { "id": "barcode-read", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f464", "voted": false }, "id": "barcode-read", "links": { "self": "/api/icons/barcode-read" }, "type": "icon" }, { "attributes": { "id": "barcode-scan", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f465", "voted": false }, "id": "barcode-scan", "links": { "self": "/api/icons/barcode-scan" }, "type": "icon" }, { "attributes": { "id": "bars", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0c9", "voted": false }, "id": "bars", "links": { "self": "/api/icons/bars" }, "type": "icon" }, { "attributes": { "id": "baseball", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f432", "voted": false }, "id": "baseball", "links": { "self": "/api/icons/baseball" }, "type": "icon" }, { "attributes": { "id": "baseball-ball", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f433", "voted": false }, "id": "baseball-ball", "links": { "self": "/api/icons/baseball-ball" }, "type": "icon" }, { "attributes": { "id": "basketball-ball", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f434", "voted": false }, "id": "basketball-ball", "links": { "self": "/api/icons/basketball-ball" }, "type": "icon" }, { "attributes": { "id": "basketball-hoop", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f435", "voted": false }, "id": "basketball-hoop", "links": { "self": "/api/icons/basketball-hoop" }, "type": "icon" }, { "attributes": { "id": "bat", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6b5", "voted": false }, "id": "bat", "links": { "self": "/api/icons/bat" }, "type": "icon" }, { "attributes": { "id": "bath", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2cd", "voted": false }, "id": "bath", "links": { "self": "/api/icons/bath" }, "type": "icon" }, { "attributes": { "id": "battery-bolt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f376", "voted": false }, "id": "battery-bolt", "links": { "self": "/api/icons/battery-bolt" }, "type": "icon" }, { "attributes": { "id": "battery-empty", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f244", "voted": false }, "id": "battery-empty", "links": { "self": "/api/icons/battery-empty" }, "type": "icon" }, { "attributes": { "id": "battery-full", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f240", "voted": false }, "id": "battery-full", "links": { "self": "/api/icons/battery-full" }, "type": "icon" }, { "attributes": { "id": "battery-half", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f242", "voted": false }, "id": "battery-half", "links": { "self": "/api/icons/battery-half" }, "type": "icon" }, { - "attributes": { "id": "battery-quarter", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f243", "voted": false }, - "id": "battery-quarter", "links": { "self": "/api/icons/battery-quarter" }, "type": "icon" -}, { "attributes": { "id": "battery-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f377", "voted": false }, "id": "battery-slash", "links": { "self": "/api/icons/battery-slash" }, "type": "icon" }, { "attributes": { "id": "battery-three-quarters", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f241", "voted": false }, "id": "battery-three-quarters", "links": { "self": "/api/icons/battery-three-quarters" }, "type": "icon" }, { "attributes": { "id": "battle-net", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f835", "voted": false }, "id": "battle-net", "links": { "self": "/api/icons/battle-net" }, "type": "icon" }, { "attributes": { "id": "bed", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f236", "voted": false }, "id": "bed", "links": { "self": "/api/icons/bed" }, "type": "icon" }, { "attributes": { "id": "bed-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8f7", "voted": false }, "id": "bed-alt", "links": { "self": "/api/icons/bed-alt" }, "type": "icon" }, { "attributes": { "id": "bed-bunk", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8f8", "voted": false }, "id": "bed-bunk", "links": { "self": "/api/icons/bed-bunk" }, "type": "icon" }, { "attributes": { "id": "bed-empty", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8f9", "voted": false }, "id": "bed-empty", "links": { "self": "/api/icons/bed-empty" }, "type": "icon" }, { "attributes": { "id": "beer", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0fc", "voted": false }, "id": "beer", "links": { "self": "/api/icons/beer" }, "type": "icon" }, { "attributes": { "id": "behance", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1b4", "voted": false }, "id": "behance", "links": { "self": "/api/icons/behance" }, "type": "icon" }, { "attributes": { "id": "behance-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1b5", "voted": false }, "id": "behance-square", "links": { "self": "/api/icons/behance-square" }, "type": "icon" }, { "attributes": { "id": "bell", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0f3", "voted": false }, "id": "bell", "links": { "self": "/api/icons/bell" }, "type": "icon" }, { "attributes": { "id": "bell-exclamation", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f848", "voted": false }, "id": "bell-exclamation", "links": { "self": "/api/icons/bell-exclamation" }, "type": "icon" }, { "attributes": { "id": "bell-on", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8fa", "voted": false }, "id": "bell-on", "links": { "self": "/api/icons/bell-on" }, "type": "icon" }, { "attributes": { "id": "bell-plus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f849", "voted": false }, "id": "bell-plus", "links": { "self": "/api/icons/bell-plus" }, "type": "icon" }, { "attributes": { "id": "bell-school", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5d5", "voted": false }, "id": "bell-school", "links": { "self": "/api/icons/bell-school" }, "type": "icon" }, { "attributes": { "id": "bell-school-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5d6", "voted": false }, "id": "bell-school-slash", "links": { "self": "/api/icons/bell-school-slash" }, "type": "icon" }, { "attributes": { "id": "bell-slash", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1f6", "voted": false }, "id": "bell-slash", "links": { "self": "/api/icons/bell-slash" }, "type": "icon" }, { "attributes": { "id": "bells", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f77f", "voted": false }, "id": "bells", "links": { "self": "/api/icons/bells" }, "type": "icon" }, { "attributes": { "id": "betamax", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8a4", "voted": false }, "id": "betamax", "links": { "self": "/api/icons/betamax" }, "type": "icon" }, { "attributes": { "id": "bezier-curve", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f55b", "voted": false }, "id": "bezier-curve", "links": { "self": "/api/icons/bezier-curve" }, "type": "icon" }, { "attributes": { "id": "bible", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f647", "voted": false }, "id": "bible", "links": { "self": "/api/icons/bible" }, "type": "icon" }, { "attributes": { "id": "bicycle", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f206", "voted": false }, "id": "bicycle", "links": { "self": "/api/icons/bicycle" }, "type": "icon" }, { "attributes": { "id": "biking", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f84a", "voted": false }, "id": "biking", "links": { "self": "/api/icons/biking" }, "type": "icon" }, { "attributes": { "id": "biking-mountain", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f84b", "voted": false }, "id": "biking-mountain", "links": { "self": "/api/icons/biking-mountain" }, "type": "icon" }, { "attributes": { "id": "bimobject", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f378", "voted": false }, "id": "bimobject", "links": { "self": "/api/icons/bimobject" }, "type": "icon" }, { "attributes": { "id": "binoculars", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1e5", "voted": false }, "id": "binoculars", "links": { "self": "/api/icons/binoculars" }, "type": "icon" }, { "attributes": { "id": "biohazard", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f780", "voted": true }, "id": "biohazard", "links": { "self": "/api/icons/biohazard" }, "type": "icon" }, { "attributes": { "id": "birthday-cake", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1fd", "voted": false }, "id": "birthday-cake", "links": { "self": "/api/icons/birthday-cake" }, "type": "icon" }, { "attributes": { "id": "bitbucket", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f171", "voted": false }, "id": "bitbucket", "links": { "self": "/api/icons/bitbucket" }, "type": "icon" }, { "attributes": { "id": "bitcoin", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f379", "voted": false }, "id": "bitcoin", "links": { "self": "/api/icons/bitcoin" }, "type": "icon" }, { "attributes": { "id": "bity", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f37a", "voted": false }, "id": "bity", "links": { "self": "/api/icons/bity" }, "type": "icon" }, { "attributes": { "id": "black-tie", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f27e", "voted": false }, "id": "black-tie", "links": { "self": "/api/icons/black-tie" }, "type": "icon" }, { "attributes": { "id": "blackberry", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f37b", "voted": false }, "id": "blackberry", "links": { "self": "/api/icons/blackberry" }, "type": "icon" }, { "attributes": { "id": "blanket", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f498", "voted": false }, "id": "blanket", "links": { "self": "/api/icons/blanket" }, "type": "icon" }, { "attributes": { "id": "blender", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f517", "voted": false }, "id": "blender", "links": { "self": "/api/icons/blender" }, "type": "icon" }, { "attributes": { "id": "blender-phone", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6b6", "voted": false }, "id": "blender-phone", "links": { "self": "/api/icons/blender-phone" }, "type": "icon" }, { "attributes": { "id": "blind", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f29d", "voted": false }, "id": "blind", "links": { "self": "/api/icons/blind" }, "type": "icon" }, { "attributes": { "id": "blinds", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8fb", "voted": false }, "id": "blinds", "links": { "self": "/api/icons/blinds" }, "type": "icon" }, { "attributes": { "id": "blinds-open", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8fc", "voted": false }, "id": "blinds-open", "links": { "self": "/api/icons/blinds-open" }, "type": "icon" }, { - "attributes": { - "id": "blinds-raised", - "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8fd", "voted": false - }, "id": "blinds-raised", "links": { "self": "/api/icons/blinds-raised" }, "type": "icon" -}, { "attributes": { "id": "blog", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f781", "voted": true }, "id": "blog", "links": { "self": "/api/icons/blog" }, "type": "icon" }, { "attributes": { "id": "blogger", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f37c", "voted": false }, "id": "blogger", "links": { "self": "/api/icons/blogger" }, "type": "icon" }, { "attributes": { "id": "blogger-b", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f37d", "voted": false }, "id": "blogger-b", "links": { "self": "/api/icons/blogger-b" }, "type": "icon" }, { "attributes": { "id": "bluetooth", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f293", "voted": false }, "id": "bluetooth", "links": { "self": "/api/icons/bluetooth" }, "type": "icon" }, { "attributes": { "id": "bluetooth-b", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f294", "voted": false }, "id": "bluetooth-b", "links": { "self": "/api/icons/bluetooth-b" }, "type": "icon" }, { "attributes": { "id": "bold", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f032", "voted": false }, "id": "bold", "links": { "self": "/api/icons/bold" }, "type": "icon" }, { "attributes": { "id": "bolt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0e7", "voted": false }, "id": "bolt", "links": { "self": "/api/icons/bolt" }, "type": "icon" }, { "attributes": { "id": "bomb", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1e2", "voted": false }, "id": "bomb", "links": { "self": "/api/icons/bomb" }, "type": "icon" }, { "attributes": { "id": "bone", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5d7", "voted": false }, "id": "bone", "links": { "self": "/api/icons/bone" }, "type": "icon" }, { "attributes": { "id": "bone-break", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5d8", "voted": false }, "id": "bone-break", "links": { "self": "/api/icons/bone-break" }, "type": "icon" }, { "attributes": { "id": "bong", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f55c", "voted": false }, "id": "bong", "links": { "self": "/api/icons/bong" }, "type": "icon" }, { "attributes": { "id": "book", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f02d", "voted": false }, "id": "book", "links": { "self": "/api/icons/book" }, "type": "icon" }, { "attributes": { "id": "book-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5d9", "voted": false }, "id": "book-alt", "links": { "self": "/api/icons/book-alt" }, "type": "icon" }, { "attributes": { "id": "book-dead", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6b7", "voted": false }, "id": "book-dead", "links": { "self": "/api/icons/book-dead" }, "type": "icon" }, { "attributes": { "id": "book-heart", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f499", "voted": false }, "id": "book-heart", "links": { "self": "/api/icons/book-heart" }, "type": "icon" }, { "attributes": { "id": "book-medical", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7e6", "voted": false }, "id": "book-medical", "links": { "self": "/api/icons/book-medical" }, "type": "icon" }, { "attributes": { "id": "book-open", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f518", "voted": true }, "id": "book-open", "links": { "self": "/api/icons/book-open" }, "type": "icon" }, { "attributes": { "id": "book-reader", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5da", "voted": false }, "id": "book-reader", "links": { "self": "/api/icons/book-reader" }, "type": "icon" }, { "attributes": { "id": "book-spells", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6b8", "voted": false }, "id": "book-spells", "links": { "self": "/api/icons/book-spells" }, "type": "icon" }, { "attributes": { "id": "book-user", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7e7", "voted": false }, "id": "book-user", "links": { "self": "/api/icons/book-user" }, "type": "icon" }, { "attributes": { "id": "bookmark", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f02e", "voted": false }, "id": "bookmark", "links": { "self": "/api/icons/bookmark" }, "type": "icon" }, { "attributes": { "id": "books", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5db", "voted": false }, "id": "books", "links": { "self": "/api/icons/books" }, "type": "icon" }, { "attributes": { "id": "books-medical", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7e8", "voted": false }, "id": "books-medical", "links": { "self": "/api/icons/books-medical" }, "type": "icon" }, { "attributes": { "id": "boombox", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8a5", "voted": false }, "id": "boombox", "links": { "self": "/api/icons/boombox" }, "type": "icon" }, { "attributes": { "id": "boot", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f782", "voted": false }, "id": "boot", "links": { "self": "/api/icons/boot" }, "type": "icon" }, { "attributes": { "id": "booth-curtain", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f734", "voted": false }, "id": "booth-curtain", "links": { "self": "/api/icons/booth-curtain" }, "type": "icon" }, { "attributes": { "id": "bootstrap", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f836", "voted": false }, "id": "bootstrap", "links": { "self": "/api/icons/bootstrap" }, "type": "icon" }, { "attributes": { "id": "border-all", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f84c", "voted": false }, "id": "border-all", "links": { "self": "/api/icons/border-all" }, "type": "icon" }, { "attributes": { "id": "border-bottom", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f84d", "voted": false }, "id": "border-bottom", "links": { "self": "/api/icons/border-bottom" }, "type": "icon" }, { "attributes": { "id": "border-center-h", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f89c", "voted": false }, "id": "border-center-h", "links": { "self": "/api/icons/border-center-h" }, "type": "icon" }, { "attributes": { "id": "border-center-v", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f89d", "voted": false }, "id": "border-center-v", "links": { "self": "/api/icons/border-center-v" }, "type": "icon" }, { "attributes": { "id": "border-inner", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f84e", "voted": false }, "id": "border-inner", "links": { "self": "/api/icons/border-inner" }, "type": "icon" }, { "attributes": { "id": "border-left", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f84f", "voted": false }, "id": "border-left", "links": { "self": "/api/icons/border-left" }, "type": "icon" }, { "attributes": { "id": "border-none", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f850", "voted": false }, "id": "border-none", "links": { "self": "/api/icons/border-none" }, "type": "icon" }, { "attributes": { "id": "border-outer", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f851", "voted": false }, "id": "border-outer", "links": { "self": "/api/icons/border-outer" }, "type": "icon" }, { "attributes": { "id": "border-right", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f852", "voted": false }, "id": "border-right", "links": { "self": "/api/icons/border-right" }, "type": "icon" }, { "attributes": { "id": "border-style", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f853", "voted": false }, "id": "border-style", "links": { "self": "/api/icons/border-style" }, "type": "icon" }, { "attributes": { "id": "border-style-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f854", "voted": false }, "id": "border-style-alt", "links": { "self": "/api/icons/border-style-alt" }, "type": "icon" }, -{ "attributes": { "id": "border-top", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f855", "voted": false }, "id": "border-top", "links": { "self": "/api/icons/border-top" }, "type": "icon" }, { "attributes": { "id": "bow-arrow", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6b9", "voted": false }, "id": "bow-arrow", "links": { "self": "/api/icons/bow-arrow" }, "type": "icon" }, { "attributes": { "id": "bowling-ball", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f436", "voted": false }, "id": "bowling-ball", "links": { "self": "/api/icons/bowling-ball" }, "type": "icon" }, { "attributes": { "id": "bowling-pins", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f437", "voted": false }, "id": "bowling-pins", "links": { "self": "/api/icons/bowling-pins" }, "type": "icon" }, { "attributes": { "id": "box", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f466", "voted": false }, "id": "box", "links": { "self": "/api/icons/box" }, "type": "icon" }, { "attributes": { "id": "box-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f49a", "voted": false }, "id": "box-alt", "links": { "self": "/api/icons/box-alt" }, "type": "icon" }, { "attributes": { "id": "box-ballot", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f735", "voted": false }, "id": "box-ballot", "links": { "self": "/api/icons/box-ballot" }, "type": "icon" }, { "attributes": { "id": "box-check", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f467", "voted": false }, "id": "box-check", "links": { "self": "/api/icons/box-check" }, "type": "icon" }, { "attributes": { "id": "box-fragile", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f49b", "voted": false }, "id": "box-fragile", "links": { "self": "/api/icons/box-fragile" }, "type": "icon" }, { "attributes": { "id": "box-full", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f49c", "voted": false }, "id": "box-full", "links": { "self": "/api/icons/box-full" }, "type": "icon" }, { "attributes": { "id": "box-heart", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f49d", "voted": false }, "id": "box-heart", "links": { "self": "/api/icons/box-heart" }, "type": "icon" }, { "attributes": { "id": "box-open", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f49e", "voted": false }, "id": "box-open", "links": { "self": "/api/icons/box-open" }, "type": "icon" }, { "attributes": { "id": "box-tissue", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f95b", "voted": false }, "id": "box-tissue", "links": { "self": "/api/icons/box-tissue" }, "type": "icon" }, { "attributes": { "id": "box-up", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f49f", "voted": false }, "id": "box-up", "links": { "self": "/api/icons/box-up" }, "type": "icon" }, { "attributes": { "id": "box-usd", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4a0", "voted": false }, "id": "box-usd", "links": { "self": "/api/icons/box-usd" }, "type": "icon" }, { "attributes": { "id": "boxes", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f468", "voted": false }, "id": "boxes", "links": { "self": "/api/icons/boxes" }, "type": "icon" }, { "attributes": { "id": "boxes-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4a1", "voted": false }, "id": "boxes-alt", "links": { "self": "/api/icons/boxes-alt" }, "type": "icon" }, { "attributes": { "id": "boxing-glove", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f438", "voted": false }, "id": "boxing-glove", "links": { "self": "/api/icons/boxing-glove" }, "type": "icon" }, { "attributes": { "id": "brackets", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7e9", "voted": false }, "id": "brackets", "links": { "self": "/api/icons/brackets" }, "type": "icon" }, { "attributes": { "id": "brackets-curly", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7ea", "voted": true }, "id": "brackets-curly", "links": { "self": "/api/icons/brackets-curly" }, "type": "icon" }, { "attributes": { "id": "braille", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2a1", "voted": false }, "id": "braille", "links": { "self": "/api/icons/braille" }, "type": "icon" }, { "attributes": { "id": "brain", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5dc", "voted": false }, "id": "brain", "links": { "self": "/api/icons/brain" }, "type": "icon" }, { "attributes": { "id": "bread-loaf", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7eb", "voted": false }, "id": "bread-loaf", "links": { "self": "/api/icons/bread-loaf" }, "type": "icon" }, { "attributes": { "id": "bread-slice", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7ec", "voted": false }, "id": "bread-slice", "links": { "self": "/api/icons/bread-slice" }, "type": "icon" }, { "attributes": { "id": "briefcase", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0b1", "voted": false }, "id": "briefcase", "links": { "self": "/api/icons/briefcase" }, "type": "icon" }, { "attributes": { "id": "briefcase-medical", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f469", "voted": false }, "id": "briefcase-medical", "links": { "self": "/api/icons/briefcase-medical" }, "type": "icon" }, { "attributes": { "id": "bring-forward", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f856", "voted": true }, "id": "bring-forward", "links": { "self": "/api/icons/bring-forward" }, "type": "icon" }, { "attributes": { "id": "bring-front", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f857", "voted": true }, "id": "bring-front", "links": { "self": "/api/icons/bring-front" }, "type": "icon" }, { "attributes": { "id": "broadcast-tower", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f519", "voted": true }, "id": "broadcast-tower", "links": { "self": "/api/icons/broadcast-tower" }, "type": "icon" }, { "attributes": { "id": "broom", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f51a", "voted": true }, "id": "broom", "links": { "self": "/api/icons/broom" }, "type": "icon" }, { "attributes": { "id": "browser", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f37e", "voted": false }, "id": "browser", "links": { "self": "/api/icons/browser" }, "type": "icon" }, { "attributes": { "id": "brush", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f55d", "voted": false }, "id": "brush", "links": { "self": "/api/icons/brush" }, "type": "icon" }, { "attributes": { "id": "btc", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f15a", "voted": false }, "id": "btc", "links": { "self": "/api/icons/btc" }, "type": "icon" }, { "attributes": { "id": "buffer", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f837", "voted": false }, "id": "buffer", "links": { "self": "/api/icons/buffer" }, "type": "icon" }, { "attributes": { "id": "bug", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f188", "voted": false }, "id": "bug", "links": { "self": "/api/icons/bug" }, "type": "icon" }, { "attributes": { "id": "building", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1ad", "voted": false }, "id": "building", "links": { "self": "/api/icons/building" }, "type": "icon" }, { "attributes": { "id": "bullhorn", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0a1", "voted": false }, "id": "bullhorn", "links": { "self": "/api/icons/bullhorn" }, "type": "icon" }, { - "attributes": { - "id": "bullseye", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, - "styles": ["solid", "regular", "light", "duotone"], "unicode": "f140", "voted": false - }, "id": "bullseye", - "links": { "self": "/api/icons/bullseye" }, "type": "icon" -}, { - "attributes": { - "id": "bullseye-arrow", - "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f648", "voted": false - }, "id": "bullseye-arrow", "links": { "self": "/api/icons/bullseye-arrow" }, "type": "icon" -}, { "attributes": { "id": "bullseye-pointer", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f649", "voted": false }, "id": "bullseye-pointer", "links": { "self": "/api/icons/bullseye-pointer" }, "type": "icon" }, { "attributes": { "id": "burger-soda", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f858", "voted": false }, "id": "burger-soda", "links": { "self": "/api/icons/burger-soda" }, "type": "icon" }, { "attributes": { "id": "burn", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f46a", "voted": false }, "id": "burn", "links": { "self": "/api/icons/burn" }, "type": "icon" }, { "attributes": { "id": "buromobelexperte", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f37f", "voted": false }, "id": "buromobelexperte", "links": { "self": "/api/icons/buromobelexperte" }, "type": "icon" }, { "attributes": { "id": "burrito", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7ed", "voted": false }, "id": "burrito", "links": { "self": "/api/icons/burrito" }, "type": "icon" }, { "attributes": { "id": "bus", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f207", "voted": false }, "id": "bus", "links": { "self": "/api/icons/bus" }, "type": "icon" }, { "attributes": { "id": "bus-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f55e", "voted": false }, "id": "bus-alt", "links": { "self": "/api/icons/bus-alt" }, "type": "icon" }, { "attributes": { "id": "bus-school", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5dd", "voted": false }, "id": "bus-school", "links": { "self": "/api/icons/bus-school" }, "type": "icon" }, { "attributes": { "id": "business-time", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f64a", "voted": false }, "id": "business-time", "links": { "self": "/api/icons/business-time" }, "type": "icon" }, { "attributes": { "id": "buy-n-large", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f8a6", "voted": false }, "id": "buy-n-large", "links": { "self": "/api/icons/buy-n-large" }, "type": "icon" }, { "attributes": { "id": "buysellads", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f20d", "voted": false }, "id": "buysellads", "links": { "self": "/api/icons/buysellads" }, "type": "icon" }, { "attributes": { "id": "cabinet-filing", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f64b", "voted": false }, "id": "cabinet-filing", "links": { "self": "/api/icons/cabinet-filing" }, "type": "icon" }, { "attributes": { "id": "cactus", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f8a7", "voted": false }, "id": "cactus", "links": { "self": "/api/icons/cactus" }, "type": "icon" }, { "attributes": { "id": "calculator", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1ec", "voted": false }, "id": "calculator", "links": { "self": "/api/icons/calculator" }, "type": "icon" }, { "attributes": { "id": "calculator-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f64c", "voted": false }, "id": "calculator-alt", "links": { "self": "/api/icons/calculator-alt" }, "type": "icon" }, { "attributes": { "id": "calendar", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f133", "voted": false }, "id": "calendar", "links": { "self": "/api/icons/calendar" }, "type": "icon" }, { "attributes": { "id": "calendar-alt", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f073", "voted": false }, "id": "calendar-alt", "links": { "self": "/api/icons/calendar-alt" }, "type": "icon" }, { "attributes": { "id": "calendar-check", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f274", "voted": false }, "id": "calendar-check", "links": { "self": "/api/icons/calendar-check" }, "type": "icon" }, { "attributes": { "id": "calendar-day", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f783", "voted": true }, "id": "calendar-day", "links": { "self": "/api/icons/calendar-day" }, "type": "icon" }, { "attributes": { "id": "calendar-edit", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f333", "voted": false }, "id": "calendar-edit", "links": { "self": "/api/icons/calendar-edit" }, "type": "icon" }, { "attributes": { "id": "calendar-exclamation", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f334", "voted": false }, "id": "calendar-exclamation", "links": { "self": "/api/icons/calendar-exclamation" }, "type": "icon" }, { "attributes": { "id": "calendar-minus", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f272", "voted": false }, "id": "calendar-minus", "links": { "self": "/api/icons/calendar-minus" }, "type": "icon" }, { "attributes": { "id": "calendar-plus", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f271", "voted": false }, "id": "calendar-plus", "links": { "self": "/api/icons/calendar-plus" }, "type": "icon" }, { "attributes": { "id": "calendar-star", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f736", "voted": false }, "id": "calendar-star", "links": { "self": "/api/icons/calendar-star" }, "type": "icon" }, { "attributes": { "id": "calendar-times", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f273", "voted": false }, "id": "calendar-times", "links": { "self": "/api/icons/calendar-times" }, "type": "icon" }, { "attributes": { "id": "calendar-week", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f784", "voted": true }, "id": "calendar-week", "links": { "self": "/api/icons/calendar-week" }, "type": "icon" }, { "attributes": { "id": "camcorder", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8a8", "voted": false }, "id": "camcorder", "links": { "self": "/api/icons/camcorder" }, "type": "icon" }, { "attributes": { "id": "camera", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f030", "voted": false }, "id": "camera", "links": { "self": "/api/icons/camera" }, "type": "icon" }, { "attributes": { "id": "camera-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f332", "voted": false }, "id": "camera-alt", "links": { "self": "/api/icons/camera-alt" }, "type": "icon" }, { "attributes": { "id": "camera-home", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8fe", "voted": false }, "id": "camera-home", "links": { "self": "/api/icons/camera-home" }, "type": "icon" }, { "attributes": { "id": "camera-movie", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8a9", "voted": false }, "id": "camera-movie", "links": { "self": "/api/icons/camera-movie" }, "type": "icon" }, { "attributes": { "id": "camera-polaroid", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8aa", "voted": false }, "id": "camera-polaroid", "links": { "self": "/api/icons/camera-polaroid" }, "type": "icon" }, { "attributes": { "id": "camera-retro", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f083", "voted": false }, "id": "camera-retro", "links": { "self": "/api/icons/camera-retro" }, "type": "icon" }, { "attributes": { "id": "campfire", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6ba", "voted": false }, "id": "campfire", "links": { "self": "/api/icons/campfire" }, "type": "icon" }, { "attributes": { "id": "campground", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6bb", "voted": false }, "id": "campground", "links": { "self": "/api/icons/campground" }, "type": "icon" }, { "attributes": { "id": "canadian-maple-leaf", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f785", "voted": false }, "id": "canadian-maple-leaf", "links": { "self": "/api/icons/canadian-maple-leaf" }, "type": "icon" }, { "attributes": { "id": "candle-holder", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6bc", "voted": false }, "id": "candle-holder", "links": { "self": "/api/icons/candle-holder" }, "type": "icon" }, { - "attributes": { "id": "candy-cane", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f786", "voted": false }, - "id": "candy-cane", "links": { "self": "/api/icons/candy-cane" }, "type": "icon" -}, { "attributes": { "id": "candy-corn", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6bd", "voted": false }, "id": "candy-corn", "links": { "self": "/api/icons/candy-corn" }, "type": "icon" }, { "attributes": { "id": "cannabis", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f55f", "voted": false }, "id": "cannabis", "links": { "self": "/api/icons/cannabis" }, "type": "icon" }, { "attributes": { "id": "capsules", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f46b", "voted": false }, "id": "capsules", "links": { "self": "/api/icons/capsules" }, "type": "icon" }, { "attributes": { "id": "car", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1b9", "voted": false }, "id": "car", "links": { "self": "/api/icons/car" }, "type": "icon" }, { "attributes": { "id": "car-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5de", "voted": false }, "id": "car-alt", "links": { "self": "/api/icons/car-alt" }, "type": "icon" }, { "attributes": { "id": "car-battery", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5df", "voted": false }, "id": "car-battery", "links": { "self": "/api/icons/car-battery" }, "type": "icon" }, { "attributes": { "id": "car-building", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f859", "voted": false }, "id": "car-building", "links": { "self": "/api/icons/car-building" }, "type": "icon" }, { "attributes": { "id": "car-bump", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5e0", "voted": false }, "id": "car-bump", "links": { "self": "/api/icons/car-bump" }, "type": "icon" }, { "attributes": { "id": "car-bus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f85a", "voted": false }, "id": "car-bus", "links": { "self": "/api/icons/car-bus" }, "type": "icon" }, { "attributes": { "id": "car-crash", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5e1", "voted": false }, "id": "car-crash", "links": { "self": "/api/icons/car-crash" }, "type": "icon" }, { "attributes": { "id": "car-garage", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5e2", "voted": false }, "id": "car-garage", "links": { "self": "/api/icons/car-garage" }, "type": "icon" }, { "attributes": { "id": "car-mechanic", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5e3", "voted": false }, "id": "car-mechanic", "links": { "self": "/api/icons/car-mechanic" }, "type": "icon" }, { "attributes": { "id": "car-side", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5e4", "voted": false }, "id": "car-side", "links": { "self": "/api/icons/car-side" }, "type": "icon" }, { "attributes": { "id": "car-tilt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5e5", "voted": false }, "id": "car-tilt", "links": { "self": "/api/icons/car-tilt" }, "type": "icon" }, { "attributes": { "id": "car-wash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5e6", "voted": false }, "id": "car-wash", "links": { "self": "/api/icons/car-wash" }, "type": "icon" }, { "attributes": { "id": "caravan", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8ff", "voted": true }, "id": "caravan", "links": { "self": "/api/icons/caravan" }, "type": "icon" }, { "attributes": { "id": "caravan-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f900", "voted": false }, "id": "caravan-alt", "links": { "self": "/api/icons/caravan-alt" }, "type": "icon" }, { "attributes": { "id": "caret-circle-down", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f32d", "voted": false }, "id": "caret-circle-down", "links": { "self": "/api/icons/caret-circle-down" }, "type": "icon" }, { "attributes": { "id": "caret-circle-left", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f32e", "voted": false }, "id": "caret-circle-left", "links": { "self": "/api/icons/caret-circle-left" }, "type": "icon" }, { "attributes": { "id": "caret-circle-right", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f330", "voted": false }, "id": "caret-circle-right", "links": { "self": "/api/icons/caret-circle-right" }, "type": "icon" }, { "attributes": { "id": "caret-circle-up", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f331", "voted": false }, "id": "caret-circle-up", "links": { "self": "/api/icons/caret-circle-up" }, "type": "icon" }, { "attributes": { "id": "caret-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0d7", "voted": false }, "id": "caret-down", "links": { "self": "/api/icons/caret-down" }, "type": "icon" }, { "attributes": { "id": "caret-left", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0d9", "voted": false }, "id": "caret-left", "links": { "self": "/api/icons/caret-left" }, "type": "icon" }, { "attributes": { "id": "caret-right", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0da", "voted": false }, "id": "caret-right", "links": { "self": "/api/icons/caret-right" }, "type": "icon" }, { "attributes": { "id": "caret-square-down", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f150", "voted": false }, "id": "caret-square-down", "links": { "self": "/api/icons/caret-square-down" }, "type": "icon" }, { "attributes": { "id": "caret-square-left", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f191", "voted": false }, "id": "caret-square-left", "links": { "self": "/api/icons/caret-square-left" }, "type": "icon" }, { "attributes": { "id": "caret-square-right", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f152", "voted": false }, "id": "caret-square-right", "links": { "self": "/api/icons/caret-square-right" }, "type": "icon" }, { "attributes": { "id": "caret-square-up", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f151", "voted": false }, "id": "caret-square-up", "links": { "self": "/api/icons/caret-square-up" }, "type": "icon" }, { "attributes": { "id": "caret-up", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0d8", "voted": false }, "id": "caret-up", "links": { "self": "/api/icons/caret-up" }, "type": "icon" }, { "attributes": { "id": "carrot", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f787", "voted": false }, "id": "carrot", "links": { "self": "/api/icons/carrot" }, "type": "icon" }, { "attributes": { "id": "cars", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f85b", "voted": false }, "id": "cars", "links": { "self": "/api/icons/cars" }, "type": "icon" }, { "attributes": { "id": "cart-arrow-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f218", "voted": false }, "id": "cart-arrow-down", "links": { "self": "/api/icons/cart-arrow-down" }, "type": "icon" }, { "attributes": { "id": "cart-plus", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f217", "voted": false }, "id": "cart-plus", "links": { "self": "/api/icons/cart-plus" }, "type": "icon" }, { "attributes": { "id": "cash-register", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f788", "voted": true }, "id": "cash-register", "links": { "self": "/api/icons/cash-register" }, "type": "icon" }, { "attributes": { "id": "cassette-tape", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8ab", "voted": false }, "id": "cassette-tape", "links": { "self": "/api/icons/cassette-tape" }, "type": "icon" }, { "attributes": { "id": "cat", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6be", "voted": true }, "id": "cat", "links": { "self": "/api/icons/cat" }, "type": "icon" }, { "attributes": { "id": "cat-space", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f901", "voted": false }, "id": "cat-space", "links": { "self": "/api/icons/cat-space" }, "type": "icon" }, { - "attributes": { - "id": "cauldron", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, - "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6bf", "voted": false - }, "id": "cauldron", "links": { "self": "/api/icons/cauldron" }, "type": "icon" -}, { "attributes": { "id": "cc-amazon-pay", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f42d", "voted": false }, "id": "cc-amazon-pay", "links": { "self": "/api/icons/cc-amazon-pay" }, "type": "icon" }, { "attributes": { "id": "cc-amex", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1f3", "voted": false }, "id": "cc-amex", "links": { "self": "/api/icons/cc-amex" }, "type": "icon" }, { "attributes": { "id": "cc-apple-pay", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f416", "voted": false }, "id": "cc-apple-pay", "links": { "self": "/api/icons/cc-apple-pay" }, "type": "icon" }, { "attributes": { "id": "cc-diners-club", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f24c", "voted": false }, "id": "cc-diners-club", "links": { "self": "/api/icons/cc-diners-club" }, "type": "icon" }, { "attributes": { "id": "cc-discover", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1f2", "voted": false }, "id": "cc-discover", "links": { "self": "/api/icons/cc-discover" }, "type": "icon" }, { "attributes": { "id": "cc-jcb", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f24b", "voted": false }, "id": "cc-jcb", "links": { "self": "/api/icons/cc-jcb" }, "type": "icon" }, { "attributes": { "id": "cc-mastercard", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1f1", "voted": false }, "id": "cc-mastercard", "links": { "self": "/api/icons/cc-mastercard" }, "type": "icon" }, { "attributes": { "id": "cc-paypal", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1f4", "voted": false }, "id": "cc-paypal", "links": { "self": "/api/icons/cc-paypal" }, "type": "icon" }, { "attributes": { "id": "cc-stripe", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1f5", "voted": false }, "id": "cc-stripe", "links": { "self": "/api/icons/cc-stripe" }, "type": "icon" }, { "attributes": { "id": "cc-visa", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1f0", "voted": false }, "id": "cc-visa", "links": { "self": "/api/icons/cc-visa" }, "type": "icon" }, { "attributes": { "id": "cctv", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8ac", "voted": false }, "id": "cctv", "links": { "self": "/api/icons/cctv" }, "type": "icon" }, { "attributes": { "id": "centercode", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f380", "voted": false }, "id": "centercode", "links": { "self": "/api/icons/centercode" }, "type": "icon" }, { "attributes": { "id": "centos", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f789", "voted": true }, "id": "centos", "links": { "self": "/api/icons/centos" }, "type": "icon" }, { "attributes": { "id": "certificate", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0a3", "voted": false }, "id": "certificate", "links": { "self": "/api/icons/certificate" }, "type": "icon" }, { "attributes": { "id": "chair", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6c0", "voted": true }, "id": "chair", "links": { "self": "/api/icons/chair" }, "type": "icon" }, { "attributes": { "id": "chair-office", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6c1", "voted": true }, "id": "chair-office", "links": { "self": "/api/icons/chair-office" }, "type": "icon" }, { "attributes": { "id": "chalkboard", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f51b", "voted": false }, "id": "chalkboard", "links": { "self": "/api/icons/chalkboard" }, "type": "icon" }, { "attributes": { "id": "chalkboard-teacher", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f51c", "voted": false }, "id": "chalkboard-teacher", "links": { "self": "/api/icons/chalkboard-teacher" }, "type": "icon" }, { "attributes": { "id": "charging-station", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5e7", "voted": false }, "id": "charging-station", "links": { "self": "/api/icons/charging-station" }, "type": "icon" }, { "attributes": { "id": "chart-area", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1fe", "voted": false }, "id": "chart-area", "links": { "self": "/api/icons/chart-area" }, "type": "icon" }, { "attributes": { "id": "chart-bar", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f080", "voted": false }, "id": "chart-bar", "links": { "self": "/api/icons/chart-bar" }, "type": "icon" }, { "attributes": { "id": "chart-line", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f201", "voted": false }, "id": "chart-line", "links": { "self": "/api/icons/chart-line" }, "type": "icon" }, { "attributes": { "id": "chart-line-down", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f64d", "voted": false }, "id": "chart-line-down", "links": { "self": "/api/icons/chart-line-down" }, "type": "icon" }, { "attributes": { "id": "chart-network", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f78a", "voted": true }, "id": "chart-network", "links": { "self": "/api/icons/chart-network" }, "type": "icon" }, { "attributes": { "id": "chart-pie", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f200", "voted": false }, "id": "chart-pie", "links": { "self": "/api/icons/chart-pie" }, "type": "icon" }, { "attributes": { "id": "chart-pie-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f64e", "voted": false }, "id": "chart-pie-alt", "links": { "self": "/api/icons/chart-pie-alt" }, "type": "icon" }, { "attributes": { "id": "chart-scatter", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7ee", "voted": true }, "id": "chart-scatter", "links": { "self": "/api/icons/chart-scatter" }, "type": "icon" }, { "attributes": { "id": "check", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f00c", "voted": false }, "id": "check", "links": { "self": "/api/icons/check" }, "type": "icon" }, { "attributes": { "id": "check-circle", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f058", "voted": false }, "id": "check-circle", "links": { "self": "/api/icons/check-circle" }, "type": "icon" }, { "attributes": { "id": "check-double", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f560", "voted": true }, "id": "check-double", "links": { "self": "/api/icons/check-double" }, "type": "icon" }, { "attributes": { "id": "check-square", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f14a", "voted": false }, "id": "check-square", "links": { "self": "/api/icons/check-square" }, "type": "icon" }, { "attributes": { "id": "cheese", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7ef", "voted": false }, "id": "cheese", "links": { "self": "/api/icons/cheese" }, "type": "icon" }, { "attributes": { "id": "cheese-swiss", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7f0", "voted": false }, "id": "cheese-swiss", "links": { "self": "/api/icons/cheese-swiss" }, "type": "icon" }, { "attributes": { "id": "cheeseburger", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7f1", "voted": false }, "id": "cheeseburger", "links": { "self": "/api/icons/cheeseburger" }, "type": "icon" }, { "attributes": { "id": "chess", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f439", "voted": false }, "id": "chess", "links": { "self": "/api/icons/chess" }, "type": "icon" }, { "attributes": { "id": "chess-bishop", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f43a", "voted": false }, "id": "chess-bishop", "links": { "self": "/api/icons/chess-bishop" }, "type": "icon" }, { "attributes": { "id": "chess-bishop-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f43b", "voted": false }, "id": "chess-bishop-alt", "links": { "self": "/api/icons/chess-bishop-alt" }, "type": "icon" }, { "attributes": { "id": "chess-board", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f43c", "voted": false }, "id": "chess-board", "links": { "self": "/api/icons/chess-board" }, "type": "icon" }, { "attributes": { "id": "chess-clock", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f43d", "voted": false }, "id": "chess-clock", "links": { "self": "/api/icons/chess-clock" }, "type": "icon" }, { - "attributes": { "id": "chess-clock-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f43e", "voted": false }, "id": "chess-clock-alt", "links": - { "self": "/api/icons/chess-clock-alt" }, "type": "icon" -}, { "attributes": { "id": "chess-king", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f43f", "voted": false }, "id": "chess-king", "links": { "self": "/api/icons/chess-king" }, "type": "icon" }, { "attributes": { "id": "chess-king-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f440", "voted": false }, "id": "chess-king-alt", "links": { "self": "/api/icons/chess-king-alt" }, "type": "icon" }, { "attributes": { "id": "chess-knight", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f441", "voted": false }, "id": "chess-knight", "links": { "self": "/api/icons/chess-knight" }, "type": "icon" }, { "attributes": { "id": "chess-knight-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f442", "voted": false }, "id": "chess-knight-alt", "links": { "self": "/api/icons/chess-knight-alt" }, "type": "icon" }, { "attributes": { "id": "chess-pawn", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f443", "voted": false }, "id": "chess-pawn", "links": { "self": "/api/icons/chess-pawn" }, "type": "icon" }, { "attributes": { "id": "chess-pawn-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f444", "voted": false }, "id": "chess-pawn-alt", "links": { "self": "/api/icons/chess-pawn-alt" }, "type": "icon" }, { "attributes": { "id": "chess-queen", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f445", "voted": false }, "id": "chess-queen", "links": { "self": "/api/icons/chess-queen" }, "type": "icon" }, { "attributes": { "id": "chess-queen-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f446", "voted": false }, "id": "chess-queen-alt", "links": { "self": "/api/icons/chess-queen-alt" }, "type": "icon" }, { "attributes": { "id": "chess-rook", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f447", "voted": false }, "id": "chess-rook", "links": { "self": "/api/icons/chess-rook" }, "type": "icon" }, { "attributes": { "id": "chess-rook-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f448", "voted": false }, "id": "chess-rook-alt", "links": { "self": "/api/icons/chess-rook-alt" }, "type": "icon" }, { "attributes": { "id": "chevron-circle-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f13a", "voted": false }, "id": "chevron-circle-down", "links": { "self": "/api/icons/chevron-circle-down" }, "type": "icon" }, { "attributes": { "id": "chevron-circle-left", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f137", "voted": false }, "id": "chevron-circle-left", "links": { "self": "/api/icons/chevron-circle-left" }, "type": "icon" }, { "attributes": { "id": "chevron-circle-right", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f138", "voted": false }, "id": "chevron-circle-right", "links": { "self": "/api/icons/chevron-circle-right" }, "type": "icon" }, { "attributes": { "id": "chevron-circle-up", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f139", "voted": false }, "id": "chevron-circle-up", "links": { "self": "/api/icons/chevron-circle-up" }, "type": "icon" }, { "attributes": { "id": "chevron-double-down", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f322", "voted": false }, "id": "chevron-double-down", "links": { "self": "/api/icons/chevron-double-down" }, "type": "icon" }, { "attributes": { "id": "chevron-double-left", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f323", "voted": false }, "id": "chevron-double-left", "links": { "self": "/api/icons/chevron-double-left" }, "type": "icon" }, { "attributes": { "id": "chevron-double-right", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f324", "voted": false }, "id": "chevron-double-right", "links": { "self": "/api/icons/chevron-double-right" }, "type": "icon" }, { "attributes": { "id": "chevron-double-up", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f325", "voted": false }, "id": "chevron-double-up", "links": { "self": "/api/icons/chevron-double-up" }, "type": "icon" }, { "attributes": { "id": "chevron-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f078", "voted": false }, "id": "chevron-down", "links": { "self": "/api/icons/chevron-down" }, "type": "icon" }, { "attributes": { "id": "chevron-left", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f053", "voted": false }, "id": "chevron-left", "links": { "self": "/api/icons/chevron-left" }, "type": "icon" }, { "attributes": { "id": "chevron-right", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f054", "voted": false }, "id": "chevron-right", "links": { "self": "/api/icons/chevron-right" }, "type": "icon" }, { "attributes": { "id": "chevron-square-down", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f329", "voted": false }, "id": "chevron-square-down", "links": { "self": "/api/icons/chevron-square-down" }, "type": "icon" }, { "attributes": { "id": "chevron-square-left", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f32a", "voted": false }, "id": "chevron-square-left", "links": { "self": "/api/icons/chevron-square-left" }, "type": "icon" }, { "attributes": { "id": "chevron-square-right", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f32b", "voted": false }, "id": "chevron-square-right", "links": { "self": "/api/icons/chevron-square-right" }, "type": "icon" }, { "attributes": { "id": "chevron-square-up", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f32c", "voted": false }, "id": "chevron-square-up", "links": { "self": "/api/icons/chevron-square-up" }, "type": "icon" }, { "attributes": { "id": "chevron-up", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f077", "voted": false }, "id": "chevron-up", "links": { "self": "/api/icons/chevron-up" }, "type": "icon" }, { "attributes": { "id": "child", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1ae", "voted": false }, "id": "child", "links": { "self": "/api/icons/child" }, "type": "icon" }, { "attributes": { "id": "chimney", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f78b", "voted": false }, "id": "chimney", "links": { "self": "/api/icons/chimney" }, "type": "icon" }, { "attributes": { "id": "chrome", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f268", "voted": false }, "id": "chrome", "links": { "self": "/api/icons/chrome" }, "type": "icon" }, { "attributes": { "id": "chromecast", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f838", "voted": false }, "id": "chromecast", "links": { "self": "/api/icons/chromecast" }, "type": "icon" }, { "attributes": { "id": "church", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f51d", "voted": true }, "id": "church", "links": { "self": "/api/icons/church" }, "type": "icon" }, { "attributes": { "id": "circle", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f111", "voted": false }, "id": "circle", "links": { "self": "/api/icons/circle" }, "type": "icon" }, { "attributes": { "id": "circle-notch", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1ce", "voted": false }, "id": "circle-notch", "links": { "self": "/api/icons/circle-notch" }, "type": "icon" }, { "attributes": { "id": "city", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f64f", "voted": false }, "id": "city", "links": { "self": "/api/icons/city" }, "type": "icon" }, { "attributes": { "id": "clarinet", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8ad", "voted": false }, "id": "clarinet", "links": { "self": "/api/icons/clarinet" }, "type": "icon" }, { "attributes": { "id": "claw-marks", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6c2", "voted": false }, "id": "claw-marks", "links": { "self": "/api/icons/claw-marks" }, "type": "icon" }, { "attributes": { "id": "clinic-medical", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7f2", "voted": false }, "id": "clinic-medical", "links": { "self": "/api/icons/clinic-medical" }, "type": "icon" }, -{ "attributes": { "id": "clipboard", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f328", "voted": false }, "id": "clipboard", "links": { "self": "/api/icons/clipboard" }, "type": "icon" }, { "attributes": { "id": "clipboard-check", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f46c", "voted": false }, "id": "clipboard-check", "links": { "self": "/api/icons/clipboard-check" }, "type": "icon" }, { "attributes": { "id": "clipboard-list", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f46d", "voted": false }, "id": "clipboard-list", "links": { "self": "/api/icons/clipboard-list" }, "type": "icon" }, { "attributes": { "id": "clipboard-list-check", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f737", "voted": false }, "id": "clipboard-list-check", "links": { "self": "/api/icons/clipboard-list-check" }, "type": "icon" }, { "attributes": { "id": "clipboard-prescription", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5e8", "voted": false }, "id": "clipboard-prescription", "links": { "self": "/api/icons/clipboard-prescription" }, "type": "icon" }, { "attributes": { "id": "clipboard-user", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7f3", "voted": false }, "id": "clipboard-user", "links": { "self": "/api/icons/clipboard-user" }, "type": "icon" }, { "attributes": { "id": "clock", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f017", "voted": false }, "id": "clock", "links": { "self": "/api/icons/clock" }, "type": "icon" }, { "attributes": { "id": "clone", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f24d", "voted": false }, "id": "clone", "links": { "self": "/api/icons/clone" }, "type": "icon" }, { "attributes": { "id": "closed-captioning", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f20a", "voted": false }, "id": "closed-captioning", "links": { "self": "/api/icons/closed-captioning" }, "type": "icon" }, { "attributes": { "id": "cloud", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0c2", "voted": false }, "id": "cloud", "links": { "self": "/api/icons/cloud" }, "type": "icon" }, { "attributes": { "id": "cloud-download", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0ed", "voted": false }, "id": "cloud-download", "links": { "self": "/api/icons/cloud-download" }, "type": "icon" }, { "attributes": { "id": "cloud-download-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f381", "voted": false }, "id": "cloud-download-alt", "links": { "self": "/api/icons/cloud-download-alt" }, "type": "icon" }, { "attributes": { "id": "cloud-drizzle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f738", "voted": false }, "id": "cloud-drizzle", "links": { "self": "/api/icons/cloud-drizzle" }, "type": "icon" }, { "attributes": { "id": "cloud-hail", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f739", "voted": false }, "id": "cloud-hail", "links": { "self": "/api/icons/cloud-hail" }, "type": "icon" }, { "attributes": { "id": "cloud-hail-mixed", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f73a", "voted": false }, "id": "cloud-hail-mixed", "links": { "self": "/api/icons/cloud-hail-mixed" }, "type": "icon" }, { "attributes": { "id": "cloud-meatball", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f73b", "voted": false }, "id": "cloud-meatball", "links": { "self": "/api/icons/cloud-meatball" }, "type": "icon" }, { "attributes": { "id": "cloud-moon", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6c3", "voted": false }, "id": "cloud-moon", "links": { "self": "/api/icons/cloud-moon" }, "type": "icon" }, { "attributes": { "id": "cloud-moon-rain", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f73c", "voted": false }, "id": "cloud-moon-rain", "links": { "self": "/api/icons/cloud-moon-rain" }, "type": "icon" }, { "attributes": { "id": "cloud-music", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8ae", "voted": false }, "id": "cloud-music", "links": { "self": "/api/icons/cloud-music" }, "type": "icon" }, { "attributes": { "id": "cloud-rain", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f73d", "voted": false }, "id": "cloud-rain", "links": { "self": "/api/icons/cloud-rain" }, "type": "icon" }, { "attributes": { "id": "cloud-rainbow", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f73e", "voted": false }, "id": "cloud-rainbow", "links": { "self": "/api/icons/cloud-rainbow" }, "type": "icon" }, { "attributes": { "id": "cloud-showers", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f73f", "voted": false }, "id": "cloud-showers", "links": { "self": "/api/icons/cloud-showers" }, "type": "icon" }, { "attributes": { "id": "cloud-showers-heavy", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f740", "voted": false }, "id": "cloud-showers-heavy", "links": { "self": "/api/icons/cloud-showers-heavy" }, "type": "icon" }, { "attributes": { "id": "cloud-sleet", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f741", "voted": false }, "id": "cloud-sleet", "links": { "self": "/api/icons/cloud-sleet" }, "type": "icon" }, { "attributes": { "id": "cloud-snow", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f742", "voted": false }, "id": "cloud-snow", "links": { "self": "/api/icons/cloud-snow" }, "type": "icon" }, { "attributes": { "id": "cloud-sun", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6c4", "voted": false }, "id": "cloud-sun", "links": { "self": "/api/icons/cloud-sun" }, "type": "icon" }, { "attributes": { "id": "cloud-sun-rain", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f743", "voted": false }, "id": "cloud-sun-rain", "links": { "self": "/api/icons/cloud-sun-rain" }, "type": "icon" }, { "attributes": { "id": "cloud-upload", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0ee", "voted": false }, "id": "cloud-upload", "links": { "self": "/api/icons/cloud-upload" }, "type": "icon" }, { "attributes": { "id": "cloud-upload-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f382", "voted": false }, "id": "cloud-upload-alt", "links": { "self": "/api/icons/cloud-upload-alt" }, "type": "icon" }, { "attributes": { "id": "clouds", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f744", "voted": false }, "id": "clouds", "links": { "self": "/api/icons/clouds" }, "type": "icon" }, { "attributes": { "id": "clouds-moon", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f745", "voted": false }, "id": "clouds-moon", "links": { "self": "/api/icons/clouds-moon" }, "type": "icon" }, { "attributes": { "id": "clouds-sun", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f746", "voted": false }, "id": "clouds-sun", "links": { "self": "/api/icons/clouds-sun" }, "type": "icon" }, { "attributes": { "id": "cloudscale", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f383", "voted": false }, "id": "cloudscale", "links": { "self": "/api/icons/cloudscale" }, "type": "icon" }, { "attributes": { "id": "cloudsmith", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f384", "voted": false }, "id": "cloudsmith", "links": { "self": "/api/icons/cloudsmith" }, "type": "icon" }, { "attributes": { "id": "cloudversify", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f385", "voted": false }, "id": "cloudversify", "links": { "self": "/api/icons/cloudversify" }, "type": "icon" }, { "attributes": { "id": "club", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f327", "voted": false }, "id": "club", "links": { "self": "/api/icons/club" }, "type": "icon" }, { "attributes": { "id": "cocktail", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f561", "voted": false }, "id": "cocktail", "links": { "self": "/api/icons/cocktail" }, "type": "icon" }, { - "attributes": { "id": "code", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f121", "voted": false }, "id": "code", "links": - { "self": "/api/icons/code" }, "type": "icon" -}, { "attributes": { "id": "code-branch", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f126", "voted": false }, "id": "code-branch", "links": { "self": "/api/icons/code-branch" }, "type": "icon" }, { "attributes": { "id": "code-commit", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f386", "voted": false }, "id": "code-commit", "links": { "self": "/api/icons/code-commit" }, "type": "icon" }, { "attributes": { "id": "code-merge", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f387", "voted": false }, "id": "code-merge", "links": { "self": "/api/icons/code-merge" }, "type": "icon" }, { "attributes": { "id": "codepen", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1cb", "voted": false }, "id": "codepen", "links": { "self": "/api/icons/codepen" }, "type": "icon" }, { "attributes": { "id": "codiepie", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f284", "voted": false }, "id": "codiepie", "links": { "self": "/api/icons/codiepie" }, "type": "icon" }, { "attributes": { "id": "coffee", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0f4", "voted": false }, "id": "coffee", "links": { "self": "/api/icons/coffee" }, "type": "icon" }, { "attributes": { "id": "coffee-pot", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f902", "voted": false }, "id": "coffee-pot", "links": { "self": "/api/icons/coffee-pot" }, "type": "icon" }, { "attributes": { "id": "coffee-togo", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6c5", "voted": false }, "id": "coffee-togo", "links": { "self": "/api/icons/coffee-togo" }, "type": "icon" }, { "attributes": { "id": "coffin", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6c6", "voted": false }, "id": "coffin", "links": { "self": "/api/icons/coffin" }, "type": "icon" }, { "attributes": { "id": "coffin-cross", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f951", "voted": false }, "id": "coffin-cross", "links": { "self": "/api/icons/coffin-cross" }, "type": "icon" }, { "attributes": { "id": "cog", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f013", "voted": false }, "id": "cog", "links": { "self": "/api/icons/cog" }, "type": "icon" }, { "attributes": { "id": "cogs", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f085", "voted": false }, "id": "cogs", "links": { "self": "/api/icons/cogs" }, "type": "icon" }, { "attributes": { "id": "coin", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f85c", "voted": true }, "id": "coin", "links": { "self": "/api/icons/coin" }, "type": "icon" }, { "attributes": { "id": "coins", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f51e", "voted": true }, "id": "coins", "links": { "self": "/api/icons/coins" }, "type": "icon" }, { "attributes": { "id": "columns", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0db", "voted": false }, "id": "columns", "links": { "self": "/api/icons/columns" }, "type": "icon" }, { "attributes": { "id": "comet", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f903", "voted": false }, "id": "comet", "links": { "self": "/api/icons/comet" }, "type": "icon" }, { "attributes": { "id": "comment", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f075", "voted": false }, "id": "comment", "links": { "self": "/api/icons/comment" }, "type": "icon" }, { "attributes": { "id": "comment-alt", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f27a", "voted": false }, "id": "comment-alt", "links": { "self": "/api/icons/comment-alt" }, "type": "icon" }, { "attributes": { "id": "comment-alt-check", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4a2", "voted": false }, "id": "comment-alt-check", "links": { "self": "/api/icons/comment-alt-check" }, "type": "icon" }, { "attributes": { "id": "comment-alt-dollar", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f650", "voted": false }, "id": "comment-alt-dollar", "links": { "self": "/api/icons/comment-alt-dollar" }, "type": "icon" }, { "attributes": { "id": "comment-alt-dots", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4a3", "voted": false }, "id": "comment-alt-dots", "links": { "self": "/api/icons/comment-alt-dots" }, "type": "icon" }, { "attributes": { "id": "comment-alt-edit", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4a4", "voted": false }, "id": "comment-alt-edit", "links": { "self": "/api/icons/comment-alt-edit" }, "type": "icon" }, { "attributes": { "id": "comment-alt-exclamation", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4a5", "voted": false }, "id": "comment-alt-exclamation", "links": { "self": "/api/icons/comment-alt-exclamation" }, "type": "icon" }, { "attributes": { "id": "comment-alt-lines", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4a6", "voted": false }, "id": "comment-alt-lines", "links": { "self": "/api/icons/comment-alt-lines" }, "type": "icon" }, { "attributes": { "id": "comment-alt-medical", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7f4", "voted": false }, "id": "comment-alt-medical", "links": { "self": "/api/icons/comment-alt-medical" }, "type": "icon" }, { "attributes": { "id": "comment-alt-minus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4a7", "voted": false }, "id": "comment-alt-minus", "links": { "self": "/api/icons/comment-alt-minus" }, "type": "icon" }, { "attributes": { "id": "comment-alt-music", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8af", "voted": false }, "id": "comment-alt-music", "links": { "self": "/api/icons/comment-alt-music" }, "type": "icon" }, { "attributes": { "id": "comment-alt-plus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4a8", "voted": false }, "id": "comment-alt-plus", "links": { "self": "/api/icons/comment-alt-plus" }, "type": "icon" }, { "attributes": { "id": "comment-alt-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4a9", "voted": false }, "id": "comment-alt-slash", "links": { "self": "/api/icons/comment-alt-slash" }, "type": "icon" }, { "attributes": { "id": "comment-alt-smile", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4aa", "voted": false }, "id": "comment-alt-smile", "links": { "self": "/api/icons/comment-alt-smile" }, "type": "icon" }, { "attributes": { "id": "comment-alt-times", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4ab", "voted": false }, "id": "comment-alt-times", "links": { "self": "/api/icons/comment-alt-times" }, "type": "icon" }, { "attributes": { "id": "comment-check", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4ac", "voted": false }, "id": "comment-check", "links": { "self": "/api/icons/comment-check" }, "type": "icon" }, { "attributes": { "id": "comment-dollar", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f651", "voted": false }, "id": "comment-dollar", "links": { "self": "/api/icons/comment-dollar" }, "type": "icon" }, { "attributes": { "id": "comment-dots", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4ad", "voted": false }, "id": "comment-dots", "links": { "self": "/api/icons/comment-dots" }, "type": "icon" }, { "attributes": { "id": "comment-edit", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4ae", "voted": false }, "id": "comment-edit", "links": { "self": "/api/icons/comment-edit" }, "type": "icon" }, { "attributes": { "id": "comment-exclamation", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4af", "voted": false }, "id": "comment-exclamation", "links": { "self": "/api/icons/comment-exclamation" }, "type": "icon" }, { "attributes": { "id": "comment-lines", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4b0", "voted": false }, "id": "comment-lines", "links": { "self": "/api/icons/comment-lines" }, "type": "icon" }, { - "attributes": { - "id": "comment-medical", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, - "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7f5", "voted": false - }, "id": "comment-medical", "links": { "self": "/api/icons/comment-medical" }, "type": "icon" -}, { "attributes": { "id": "comment-minus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4b1", "voted": false }, "id": "comment-minus", "links": { "self": "/api/icons/comment-minus" }, "type": "icon" }, { "attributes": { "id": "comment-music", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8b0", "voted": false }, "id": "comment-music", "links": { "self": "/api/icons/comment-music" }, "type": "icon" }, { "attributes": { "id": "comment-plus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4b2", "voted": false }, "id": "comment-plus", "links": { "self": "/api/icons/comment-plus" }, "type": "icon" }, { "attributes": { "id": "comment-slash", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4b3", "voted": false }, "id": "comment-slash", "links": { "self": "/api/icons/comment-slash" }, "type": "icon" }, { "attributes": { "id": "comment-smile", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4b4", "voted": false }, "id": "comment-smile", "links": { "self": "/api/icons/comment-smile" }, "type": "icon" }, { "attributes": { "id": "comment-times", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4b5", "voted": false }, "id": "comment-times", "links": { "self": "/api/icons/comment-times" }, "type": "icon" }, { "attributes": { "id": "comments", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f086", "voted": false }, "id": "comments", "links": { "self": "/api/icons/comments" }, "type": "icon" }, { "attributes": { "id": "comments-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4b6", "voted": false }, "id": "comments-alt", "links": { "self": "/api/icons/comments-alt" }, "type": "icon" }, { "attributes": { "id": "comments-alt-dollar", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f652", "voted": false }, "id": "comments-alt-dollar", "links": { "self": "/api/icons/comments-alt-dollar" }, "type": "icon" }, { "attributes": { "id": "comments-dollar", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f653", "voted": false }, "id": "comments-dollar", "links": { "self": "/api/icons/comments-dollar" }, "type": "icon" }, { "attributes": { "id": "compact-disc", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f51f", "voted": true }, "id": "compact-disc", "links": { "self": "/api/icons/compact-disc" }, "type": "icon" }, { "attributes": { "id": "compass", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f14e", "voted": false }, "id": "compass", "links": { "self": "/api/icons/compass" }, "type": "icon" }, { "attributes": { "id": "compass-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5e9", "voted": false }, "id": "compass-slash", "links": { "self": "/api/icons/compass-slash" }, "type": "icon" }, { "attributes": { "id": "compress", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f066", "voted": false }, "id": "compress", "links": { "self": "/api/icons/compress" }, "type": "icon" }, { "attributes": { "id": "compress-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f422", "voted": false }, "id": "compress-alt", "links": { "self": "/api/icons/compress-alt" }, "type": "icon" }, { "attributes": { "id": "compress-arrows-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f78c", "voted": true }, "id": "compress-arrows-alt", "links": { "self": "/api/icons/compress-arrows-alt" }, "type": "icon" }, { "attributes": { "id": "compress-wide", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f326", "voted": false }, "id": "compress-wide", "links": { "self": "/api/icons/compress-wide" }, "type": "icon" }, { "attributes": { "id": "computer-classic", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8b1", "voted": false }, "id": "computer-classic", "links": { "self": "/api/icons/computer-classic" }, "type": "icon" }, { "attributes": { "id": "computer-speaker", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8b2", "voted": false }, "id": "computer-speaker", "links": { "self": "/api/icons/computer-speaker" }, "type": "icon" }, { "attributes": { "id": "concierge-bell", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f562", "voted": false }, "id": "concierge-bell", "links": { "self": "/api/icons/concierge-bell" }, "type": "icon" }, { "attributes": { "id": "confluence", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f78d", "voted": true }, "id": "confluence", "links": { "self": "/api/icons/confluence" }, "type": "icon" }, { "attributes": { "id": "connectdevelop", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f20e", "voted": false }, "id": "connectdevelop", "links": { "self": "/api/icons/connectdevelop" }, "type": "icon" }, { "attributes": { "id": "construction", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f85d", "voted": true }, "id": "construction", "links": { "self": "/api/icons/construction" }, "type": "icon" }, { "attributes": { "id": "container-storage", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4b7", "voted": false }, "id": "container-storage", "links": { "self": "/api/icons/container-storage" }, "type": "icon" }, { "attributes": { "id": "contao", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f26d", "voted": false }, "id": "contao", "links": { "self": "/api/icons/contao" }, "type": "icon" }, { "attributes": { "id": "conveyor-belt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f46e", "voted": false }, "id": "conveyor-belt", "links": { "self": "/api/icons/conveyor-belt" }, "type": "icon" }, { "attributes": { "id": "conveyor-belt-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f46f", "voted": false }, "id": "conveyor-belt-alt", "links": { "self": "/api/icons/conveyor-belt-alt" }, "type": "icon" }, { "attributes": { "id": "cookie", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f563", "voted": true }, "id": "cookie", "links": { "self": "/api/icons/cookie" }, "type": "icon" }, { "attributes": { "id": "cookie-bite", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f564", "voted": true }, "id": "cookie-bite", "links": { "self": "/api/icons/cookie-bite" }, "type": "icon" }, { "attributes": { "id": "copy", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0c5", "voted": false }, "id": "copy", "links": { "self": "/api/icons/copy" }, "type": "icon" }, { "attributes": { "id": "copyright", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1f9", "voted": false }, "id": "copyright", "links": { "self": "/api/icons/copyright" }, "type": "icon" }, { "attributes": { "id": "corn", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6c7", "voted": false }, "id": "corn", "links": { "self": "/api/icons/corn" }, "type": "icon" }, { "attributes": { "id": "cotton-bureau", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f89e", "voted": false }, "id": "cotton-bureau", "links": { "self": "/api/icons/cotton-bureau" }, "type": "icon" }, { "attributes": { "id": "couch", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4b8", "voted": false }, "id": "couch", "links": { "self": "/api/icons/couch" }, "type": "icon" }, { "attributes": { "id": "cow", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6c8", "voted": false }, "id": "cow", "links": { "self": "/api/icons/cow" }, "type": "icon" }, { "attributes": { "id": "cowbell", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8b3", "voted": false }, "id": "cowbell", "links": { "self": "/api/icons/cowbell" }, "type": "icon" }, { "attributes": { "id": "cowbell-more", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8b4", "voted": false }, "id": "cowbell-more", "links": { "self": "/api/icons/cowbell-more" }, "type": "icon" }, { - "attributes": { - "id": "cpanel", "membership": { - "free": ["brands"], - "pro": ["brands"] - }, "styles": ["brands"], "unicode": "f388", "voted": false - }, "id": "cpanel", "links": { "self": "/api/icons/cpanel" }, "type": "icon" -}, { "attributes": { "id": "creative-commons", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f25e", "voted": false }, "id": "creative-commons", "links": { "self": "/api/icons/creative-commons" }, "type": "icon" }, { "attributes": { "id": "creative-commons-by", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4e7", "voted": false }, "id": "creative-commons-by", "links": { "self": "/api/icons/creative-commons-by" }, "type": "icon" }, { "attributes": { "id": "creative-commons-nc", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4e8", "voted": false }, "id": "creative-commons-nc", "links": { "self": "/api/icons/creative-commons-nc" }, "type": "icon" }, { "attributes": { "id": "creative-commons-nc-eu", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4e9", "voted": false }, "id": "creative-commons-nc-eu", "links": { "self": "/api/icons/creative-commons-nc-eu" }, "type": "icon" }, { "attributes": { "id": "creative-commons-nc-jp", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4ea", "voted": false }, "id": "creative-commons-nc-jp", "links": { "self": "/api/icons/creative-commons-nc-jp" }, "type": "icon" }, { "attributes": { "id": "creative-commons-nd", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4eb", "voted": false }, "id": "creative-commons-nd", "links": { "self": "/api/icons/creative-commons-nd" }, "type": "icon" }, { "attributes": { "id": "creative-commons-pd", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4ec", "voted": false }, "id": "creative-commons-pd", "links": { "self": "/api/icons/creative-commons-pd" }, "type": "icon" }, { "attributes": { "id": "creative-commons-pd-alt", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4ed", "voted": false }, "id": "creative-commons-pd-alt", "links": { "self": "/api/icons/creative-commons-pd-alt" }, "type": "icon" }, { "attributes": { "id": "creative-commons-remix", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4ee", "voted": false }, "id": "creative-commons-remix", "links": { "self": "/api/icons/creative-commons-remix" }, "type": "icon" }, { "attributes": { "id": "creative-commons-sa", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4ef", "voted": false }, "id": "creative-commons-sa", "links": { "self": "/api/icons/creative-commons-sa" }, "type": "icon" }, { "attributes": { "id": "creative-commons-sampling", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4f0", "voted": false }, "id": "creative-commons-sampling", "links": { "self": "/api/icons/creative-commons-sampling" }, "type": "icon" }, { "attributes": { "id": "creative-commons-sampling-plus", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4f1", "voted": false }, "id": "creative-commons-sampling-plus", "links": { "self": "/api/icons/creative-commons-sampling-plus" }, "type": "icon" }, { "attributes": { "id": "creative-commons-share", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4f2", "voted": false }, "id": "creative-commons-share", "links": { "self": "/api/icons/creative-commons-share" }, "type": "icon" }, { "attributes": { "id": "creative-commons-zero", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4f3", "voted": false }, "id": "creative-commons-zero", "links": { "self": "/api/icons/creative-commons-zero" }, "type": "icon" }, { "attributes": { "id": "credit-card", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f09d", "voted": false }, "id": "credit-card", "links": { "self": "/api/icons/credit-card" }, "type": "icon" }, { "attributes": { "id": "credit-card-blank", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f389", "voted": false }, "id": "credit-card-blank", "links": { "self": "/api/icons/credit-card-blank" }, "type": "icon" }, { "attributes": { "id": "credit-card-front", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f38a", "voted": false }, "id": "credit-card-front", "links": { "self": "/api/icons/credit-card-front" }, "type": "icon" }, { "attributes": { "id": "cricket", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f449", "voted": false }, "id": "cricket", "links": { "self": "/api/icons/cricket" }, "type": "icon" }, { "attributes": { "id": "critical-role", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f6c9", "voted": false }, "id": "critical-role", "links": { "self": "/api/icons/critical-role" }, "type": "icon" }, { "attributes": { "id": "croissant", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7f6", "voted": false }, "id": "croissant", "links": { "self": "/api/icons/croissant" }, "type": "icon" }, { "attributes": { "id": "crop", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f125", "voted": false }, "id": "crop", "links": { "self": "/api/icons/crop" }, "type": "icon" }, { "attributes": { "id": "crop-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f565", "voted": false }, "id": "crop-alt", "links": { "self": "/api/icons/crop-alt" }, "type": "icon" }, { "attributes": { "id": "cross", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f654", "voted": false }, "id": "cross", "links": { "self": "/api/icons/cross" }, "type": "icon" }, { "attributes": { "id": "crosshairs", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f05b", "voted": false }, "id": "crosshairs", "links": { "self": "/api/icons/crosshairs" }, "type": "icon" }, { "attributes": { "id": "crow", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f520", "voted": false }, "id": "crow", "links": { "self": "/api/icons/crow" }, "type": "icon" }, { "attributes": { "id": "crown", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f521", "voted": true }, "id": "crown", "links": { "self": "/api/icons/crown" }, "type": "icon" }, { "attributes": { "id": "crutch", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7f7", "voted": false }, "id": "crutch", "links": { "self": "/api/icons/crutch" }, "type": "icon" }, { "attributes": { "id": "crutches", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7f8", "voted": false }, "id": "crutches", "links": { "self": "/api/icons/crutches" }, "type": "icon" }, { "attributes": { "id": "css3", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f13c", "voted": false }, "id": "css3", "links": { "self": "/api/icons/css3" }, "type": "icon" }, { "attributes": { "id": "css3-alt", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f38b", "voted": false }, "id": "css3-alt", "links": { "self": "/api/icons/css3-alt" }, "type": "icon" }, { "attributes": { "id": "cube", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1b2", "voted": false }, "id": "cube", "links": { "self": "/api/icons/cube" }, "type": "icon" }, { "attributes": { "id": "cubes", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1b3", "voted": false }, "id": "cubes", "links": { "self": "/api/icons/cubes" }, "type": "icon" }, { "attributes": { "id": "curling", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f44a", "voted": false }, "id": "curling", "links": { "self": "/api/icons/curling" }, "type": "icon" }, { "attributes": { "id": "cut", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0c4", "voted": false }, "id": "cut", "links": { "self": "/api/icons/cut" }, "type": "icon" }, { "attributes": { "id": "cuttlefish", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f38c", "voted": false }, "id": "cuttlefish", "links": { "self": "/api/icons/cuttlefish" }, "type": "icon" }, { "attributes": { "id": "d-and-d", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f38d", "voted": false }, "id": "d-and-d", "links": { "self": "/api/icons/d-and-d" }, "type": "icon" }, { "attributes": { "id": "d-and-d-beyond", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f6ca", "voted": false }, "id": "d-and-d-beyond", "links": { "self": "/api/icons/d-and-d-beyond" }, "type": "icon" }, { "attributes": { "id": "dagger", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6cb", "voted": false }, "id": "dagger", "links": { "self": "/api/icons/dagger" }, "type": "icon" }, { "attributes": { "id": "dailymotion", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f952", "voted": true }, "id": "dailymotion", "links": { "self": "/api/icons/dailymotion" }, "type": "icon" }, { "attributes": { "id": "dashcube", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f210", "voted": false }, "id": "dashcube", "links": { "self": "/api/icons/dashcube" }, "type": "icon" }, { - "attributes": { "id": "database", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1c0", "voted": false }, "id": "database", - "links": { "self": "/api/icons/database" }, "type": "icon" -}, { "attributes": { "id": "deaf", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2a4", "voted": false }, "id": "deaf", "links": { "self": "/api/icons/deaf" }, "type": "icon" }, { "attributes": { "id": "debug", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7f9", "voted": false }, "id": "debug", "links": { "self": "/api/icons/debug" }, "type": "icon" }, { "attributes": { "id": "deer", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f78e", "voted": false }, "id": "deer", "links": { "self": "/api/icons/deer" }, "type": "icon" }, { "attributes": { "id": "deer-rudolph", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f78f", "voted": false }, "id": "deer-rudolph", "links": { "self": "/api/icons/deer-rudolph" }, "type": "icon" }, { "attributes": { "id": "delicious", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1a5", "voted": false }, "id": "delicious", "links": { "self": "/api/icons/delicious" }, "type": "icon" }, { "attributes": { "id": "democrat", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f747", "voted": false }, "id": "democrat", "links": { "self": "/api/icons/democrat" }, "type": "icon" }, { "attributes": { "id": "deploydog", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f38e", "voted": false }, "id": "deploydog", "links": { "self": "/api/icons/deploydog" }, "type": "icon" }, { "attributes": { "id": "deskpro", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f38f", "voted": false }, "id": "deskpro", "links": { "self": "/api/icons/deskpro" }, "type": "icon" }, { "attributes": { "id": "desktop", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f108", "voted": false }, "id": "desktop", "links": { "self": "/api/icons/desktop" }, "type": "icon" }, { "attributes": { "id": "desktop-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f390", "voted": false }, "id": "desktop-alt", "links": { "self": "/api/icons/desktop-alt" }, "type": "icon" }, { "attributes": { "id": "dev", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f6cc", "voted": true }, "id": "dev", "links": { "self": "/api/icons/dev" }, "type": "icon" }, { "attributes": { "id": "deviantart", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1bd", "voted": false }, "id": "deviantart", "links": { "self": "/api/icons/deviantart" }, "type": "icon" }, { "attributes": { "id": "dewpoint", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f748", "voted": false }, "id": "dewpoint", "links": { "self": "/api/icons/dewpoint" }, "type": "icon" }, { "attributes": { "id": "dharmachakra", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f655", "voted": false }, "id": "dharmachakra", "links": { "self": "/api/icons/dharmachakra" }, "type": "icon" }, { "attributes": { "id": "dhl", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f790", "voted": false }, "id": "dhl", "links": { "self": "/api/icons/dhl" }, "type": "icon" }, { "attributes": { "id": "diagnoses", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f470", "voted": false }, "id": "diagnoses", "links": { "self": "/api/icons/diagnoses" }, "type": "icon" }, { "attributes": { "id": "diamond", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f219", "voted": false }, "id": "diamond", "links": { "self": "/api/icons/diamond" }, "type": "icon" }, { "attributes": { "id": "diaspora", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f791", "voted": true }, "id": "diaspora", "links": { "self": "/api/icons/diaspora" }, "type": "icon" }, { "attributes": { "id": "dice", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f522", "voted": true }, "id": "dice", "links": { "self": "/api/icons/dice" }, "type": "icon" }, { "attributes": { "id": "dice-d10", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6cd", "voted": false }, "id": "dice-d10", "links": { "self": "/api/icons/dice-d10" }, "type": "icon" }, { "attributes": { "id": "dice-d12", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6ce", "voted": false }, "id": "dice-d12", "links": { "self": "/api/icons/dice-d12" }, "type": "icon" }, { "attributes": { "id": "dice-d20", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6cf", "voted": true }, "id": "dice-d20", "links": { "self": "/api/icons/dice-d20" }, "type": "icon" }, { "attributes": { "id": "dice-d4", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6d0", "voted": false }, "id": "dice-d4", "links": { "self": "/api/icons/dice-d4" }, "type": "icon" }, { "attributes": { "id": "dice-d6", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6d1", "voted": false }, "id": "dice-d6", "links": { "self": "/api/icons/dice-d6" }, "type": "icon" }, { "attributes": { "id": "dice-d8", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6d2", "voted": false }, "id": "dice-d8", "links": { "self": "/api/icons/dice-d8" }, "type": "icon" }, { "attributes": { "id": "dice-five", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f523", "voted": true }, "id": "dice-five", "links": { "self": "/api/icons/dice-five" }, "type": "icon" }, { "attributes": { "id": "dice-four", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f524", "voted": true }, "id": "dice-four", "links": { "self": "/api/icons/dice-four" }, "type": "icon" }, { "attributes": { "id": "dice-one", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f525", "voted": true }, "id": "dice-one", "links": { "self": "/api/icons/dice-one" }, "type": "icon" }, { "attributes": { "id": "dice-six", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f526", "voted": true }, "id": "dice-six", "links": { "self": "/api/icons/dice-six" }, "type": "icon" }, { "attributes": { "id": "dice-three", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f527", "voted": true }, "id": "dice-three", "links": { "self": "/api/icons/dice-three" }, "type": "icon" }, { "attributes": { "id": "dice-two", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f528", "voted": true }, "id": "dice-two", "links": { "self": "/api/icons/dice-two" }, "type": "icon" }, { "attributes": { "id": "digg", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1a6", "voted": false }, "id": "digg", "links": { "self": "/api/icons/digg" }, "type": "icon" }, { "attributes": { "id": "digging", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f85e", "voted": false }, "id": "digging", "links": { "self": "/api/icons/digging" }, "type": "icon" }, { "attributes": { "id": "digital-ocean", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f391", "voted": false }, "id": "digital-ocean", "links": { "self": "/api/icons/digital-ocean" }, "type": "icon" }, { "attributes": { "id": "digital-tachograph", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f566", "voted": true }, "id": "digital-tachograph", "links": { "self": "/api/icons/digital-tachograph" }, "type": "icon" }, { "attributes": { "id": "diploma", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5ea", "voted": false }, "id": "diploma", "links": { "self": "/api/icons/diploma" }, "type": "icon" }, { "attributes": { "id": "directions", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5eb", "voted": false }, "id": "directions", "links": { "self": "/api/icons/directions" }, "type": "icon" }, { "attributes": { "id": "disc-drive", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8b5", "voted": false }, "id": "disc-drive", "links": { "self": "/api/icons/disc-drive" }, "type": "icon" }, { "attributes": { "id": "discord", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f392", "voted": false }, "id": "discord", "links": { "self": "/api/icons/discord" }, "type": "icon" }, { "attributes": { "id": "discourse", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f393", "voted": false }, "id": "discourse", "links": { "self": "/api/icons/discourse" }, "type": "icon" }, { "attributes": { "id": "disease", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7fa", "voted": false }, "id": "disease", "links": { "self": "/api/icons/disease" }, "type": "icon" }, -{ "attributes": { "id": "divide", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f529", "voted": false }, "id": "divide", "links": { "self": "/api/icons/divide" }, "type": "icon" }, { "attributes": { "id": "dizzy", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f567", "voted": false }, "id": "dizzy", "links": { "self": "/api/icons/dizzy" }, "type": "icon" }, { "attributes": { "id": "dna", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f471", "voted": false }, "id": "dna", "links": { "self": "/api/icons/dna" }, "type": "icon" }, { "attributes": { "id": "do-not-enter", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5ec", "voted": false }, "id": "do-not-enter", "links": { "self": "/api/icons/do-not-enter" }, "type": "icon" }, { "attributes": { "id": "dochub", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f394", "voted": false }, "id": "dochub", "links": { "self": "/api/icons/dochub" }, "type": "icon" }, { "attributes": { "id": "docker", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f395", "voted": false }, "id": "docker", "links": { "self": "/api/icons/docker" }, "type": "icon" }, { "attributes": { "id": "dog", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6d3", "voted": false }, "id": "dog", "links": { "self": "/api/icons/dog" }, "type": "icon" }, { "attributes": { "id": "dog-leashed", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6d4", "voted": false }, "id": "dog-leashed", "links": { "self": "/api/icons/dog-leashed" }, "type": "icon" }, { "attributes": { "id": "dollar-sign", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f155", "voted": false }, "id": "dollar-sign", "links": { "self": "/api/icons/dollar-sign" }, "type": "icon" }, { "attributes": { "id": "dolly", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f472", "voted": false }, "id": "dolly", "links": { "self": "/api/icons/dolly" }, "type": "icon" }, { "attributes": { "id": "dolly-empty", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f473", "voted": false }, "id": "dolly-empty", "links": { "self": "/api/icons/dolly-empty" }, "type": "icon" }, { "attributes": { "id": "dolly-flatbed", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f474", "voted": false }, "id": "dolly-flatbed", "links": { "self": "/api/icons/dolly-flatbed" }, "type": "icon" }, { "attributes": { "id": "dolly-flatbed-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f475", "voted": false }, "id": "dolly-flatbed-alt", "links": { "self": "/api/icons/dolly-flatbed-alt" }, "type": "icon" }, { "attributes": { "id": "dolly-flatbed-empty", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f476", "voted": false }, "id": "dolly-flatbed-empty", "links": { "self": "/api/icons/dolly-flatbed-empty" }, "type": "icon" }, { "attributes": { "id": "donate", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4b9", "voted": false }, "id": "donate", "links": { "self": "/api/icons/donate" }, "type": "icon" }, { "attributes": { "id": "door-closed", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f52a", "voted": true }, "id": "door-closed", "links": { "self": "/api/icons/door-closed" }, "type": "icon" }, { "attributes": { "id": "door-open", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f52b", "voted": true }, "id": "door-open", "links": { "self": "/api/icons/door-open" }, "type": "icon" }, { "attributes": { "id": "dot-circle", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f192", "voted": false }, "id": "dot-circle", "links": { "self": "/api/icons/dot-circle" }, "type": "icon" }, { "attributes": { "id": "dove", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4ba", "voted": false }, "id": "dove", "links": { "self": "/api/icons/dove" }, "type": "icon" }, { "attributes": { "id": "download", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f019", "voted": false }, "id": "download", "links": { "self": "/api/icons/download" }, "type": "icon" }, { "attributes": { "id": "draft2digital", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f396", "voted": false }, "id": "draft2digital", "links": { "self": "/api/icons/draft2digital" }, "type": "icon" }, { "attributes": { "id": "drafting-compass", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f568", "voted": false }, "id": "drafting-compass", "links": { "self": "/api/icons/drafting-compass" }, "type": "icon" }, { "attributes": { "id": "dragon", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6d5", "voted": false }, "id": "dragon", "links": { "self": "/api/icons/dragon" }, "type": "icon" }, { "attributes": { "id": "draw-circle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5ed", "voted": false }, "id": "draw-circle", "links": { "self": "/api/icons/draw-circle" }, "type": "icon" }, { "attributes": { "id": "draw-polygon", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5ee", "voted": false }, "id": "draw-polygon", "links": { "self": "/api/icons/draw-polygon" }, "type": "icon" }, { "attributes": { "id": "draw-square", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5ef", "voted": false }, "id": "draw-square", "links": { "self": "/api/icons/draw-square" }, "type": "icon" }, { "attributes": { "id": "dreidel", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f792", "voted": false }, "id": "dreidel", "links": { "self": "/api/icons/dreidel" }, "type": "icon" }, { "attributes": { "id": "dribbble", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f17d", "voted": false }, "id": "dribbble", "links": { "self": "/api/icons/dribbble" }, "type": "icon" }, { "attributes": { "id": "dribbble-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f397", "voted": false }, "id": "dribbble-square", "links": { "self": "/api/icons/dribbble-square" }, "type": "icon" }, { "attributes": { "id": "drone", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f85f", "voted": true }, "id": "drone", "links": { "self": "/api/icons/drone" }, "type": "icon" }, { "attributes": { "id": "drone-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f860", "voted": false }, "id": "drone-alt", "links": { "self": "/api/icons/drone-alt" }, "type": "icon" }, { "attributes": { "id": "dropbox", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f16b", "voted": false }, "id": "dropbox", "links": { "self": "/api/icons/dropbox" }, "type": "icon" }, { "attributes": { "id": "drum", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f569", "voted": true }, "id": "drum", "links": { "self": "/api/icons/drum" }, "type": "icon" }, { "attributes": { "id": "drum-steelpan", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f56a", "voted": false }, "id": "drum-steelpan", "links": { "self": "/api/icons/drum-steelpan" }, "type": "icon" }, { "attributes": { "id": "drumstick", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6d6", "voted": false }, "id": "drumstick", "links": { "self": "/api/icons/drumstick" }, "type": "icon" }, { "attributes": { "id": "drumstick-bite", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6d7", "voted": false }, "id": "drumstick-bite", "links": { "self": "/api/icons/drumstick-bite" }, "type": "icon" }, { "attributes": { "id": "drupal", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1a9", "voted": false }, "id": "drupal", "links": { "self": "/api/icons/drupal" }, "type": "icon" }, { "attributes": { "id": "dryer", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f861", "voted": false }, "id": "dryer", "links": { "self": "/api/icons/dryer" }, "type": "icon" }, { "attributes": { "id": "dryer-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f862", "voted": false }, "id": "dryer-alt", "links": { "self": "/api/icons/dryer-alt" }, "type": "icon" }, { "attributes": { "id": "duck", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6d8", "voted": false }, "id": "duck", "links": { "self": "/api/icons/duck" }, "type": "icon" }, { - "attributes": { - "id": "dumbbell", - "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f44b", "voted": false - }, "id": "dumbbell", "links": { "self": "/api/icons/dumbbell" }, "type": "icon" -}, { "attributes": { "id": "dumpster", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f793", "voted": true }, "id": "dumpster", "links": { "self": "/api/icons/dumpster" }, "type": "icon" }, { "attributes": { "id": "dumpster-fire", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f794", "voted": true }, "id": "dumpster-fire", "links": { "self": "/api/icons/dumpster-fire" }, "type": "icon" }, { "attributes": { "id": "dungeon", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6d9", "voted": false }, "id": "dungeon", "links": { "self": "/api/icons/dungeon" }, "type": "icon" }, { "attributes": { "id": "dyalog", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f399", "voted": false }, "id": "dyalog", "links": { "self": "/api/icons/dyalog" }, "type": "icon" }, { "attributes": { "id": "ear", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5f0", "voted": false }, "id": "ear", "links": { "self": "/api/icons/ear" }, "type": "icon" }, { "attributes": { "id": "ear-muffs", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f795", "voted": false }, "id": "ear-muffs", "links": { "self": "/api/icons/ear-muffs" }, "type": "icon" }, { "attributes": { "id": "earlybirds", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f39a", "voted": false }, "id": "earlybirds", "links": { "self": "/api/icons/earlybirds" }, "type": "icon" }, { "attributes": { "id": "ebay", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4f4", "voted": true }, "id": "ebay", "links": { "self": "/api/icons/ebay" }, "type": "icon" }, { "attributes": { "id": "eclipse", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f749", "voted": false }, "id": "eclipse", "links": { "self": "/api/icons/eclipse" }, "type": "icon" }, { "attributes": { "id": "eclipse-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f74a", "voted": false }, "id": "eclipse-alt", "links": { "self": "/api/icons/eclipse-alt" }, "type": "icon" }, { "attributes": { "id": "edge", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f282", "voted": false }, "id": "edge", "links": { "self": "/api/icons/edge" }, "type": "icon" }, { "attributes": { "id": "edit", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f044", "voted": false }, "id": "edit", "links": { "self": "/api/icons/edit" }, "type": "icon" }, { "attributes": { "id": "egg", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7fb", "voted": false }, "id": "egg", "links": { "self": "/api/icons/egg" }, "type": "icon" }, { "attributes": { "id": "egg-fried", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7fc", "voted": false }, "id": "egg-fried", "links": { "self": "/api/icons/egg-fried" }, "type": "icon" }, { "attributes": { "id": "eject", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f052", "voted": false }, "id": "eject", "links": { "self": "/api/icons/eject" }, "type": "icon" }, { "attributes": { "id": "elementor", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f430", "voted": true }, "id": "elementor", "links": { "self": "/api/icons/elementor" }, "type": "icon" }, { "attributes": { "id": "elephant", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6da", "voted": false }, "id": "elephant", "links": { "self": "/api/icons/elephant" }, "type": "icon" }, { "attributes": { "id": "ellipsis-h", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f141", "voted": false }, "id": "ellipsis-h", "links": { "self": "/api/icons/ellipsis-h" }, "type": "icon" }, { "attributes": { "id": "ellipsis-h-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f39b", "voted": false }, "id": "ellipsis-h-alt", "links": { "self": "/api/icons/ellipsis-h-alt" }, "type": "icon" }, { "attributes": { "id": "ellipsis-v", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f142", "voted": false }, "id": "ellipsis-v", "links": { "self": "/api/icons/ellipsis-v" }, "type": "icon" }, { "attributes": { "id": "ellipsis-v-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f39c", "voted": false }, "id": "ellipsis-v-alt", "links": { "self": "/api/icons/ellipsis-v-alt" }, "type": "icon" }, { "attributes": { "id": "ello", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f5f1", "voted": true }, "id": "ello", "links": { "self": "/api/icons/ello" }, "type": "icon" }, { "attributes": { "id": "ember", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f423", "voted": false }, "id": "ember", "links": { "self": "/api/icons/ember" }, "type": "icon" }, { "attributes": { "id": "empire", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1d1", "voted": false }, "id": "empire", "links": { "self": "/api/icons/empire" }, "type": "icon" }, { "attributes": { "id": "empty-set", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f656", "voted": false }, "id": "empty-set", "links": { "self": "/api/icons/empty-set" }, "type": "icon" }, { "attributes": { "id": "engine-warning", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5f2", "voted": false }, "id": "engine-warning", "links": { "self": "/api/icons/engine-warning" }, "type": "icon" }, { "attributes": { "id": "envelope", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0e0", "voted": false }, "id": "envelope", "links": { "self": "/api/icons/envelope" }, "type": "icon" }, { "attributes": { "id": "envelope-open", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2b6", "voted": false }, "id": "envelope-open", "links": { "self": "/api/icons/envelope-open" }, "type": "icon" }, { "attributes": { "id": "envelope-open-dollar", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f657", "voted": false }, "id": "envelope-open-dollar", "links": { "self": "/api/icons/envelope-open-dollar" }, "type": "icon" }, { "attributes": { "id": "envelope-open-text", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f658", "voted": false }, "id": "envelope-open-text", "links": { "self": "/api/icons/envelope-open-text" }, "type": "icon" }, { "attributes": { "id": "envelope-square", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f199", "voted": false }, "id": "envelope-square", "links": { "self": "/api/icons/envelope-square" }, "type": "icon" }, { "attributes": { "id": "envira", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f299", "voted": false }, "id": "envira", "links": { "self": "/api/icons/envira" }, "type": "icon" }, { "attributes": { "id": "equals", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f52c", "voted": false }, "id": "equals", "links": { "self": "/api/icons/equals" }, "type": "icon" }, { "attributes": { "id": "eraser", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f12d", "voted": false }, "id": "eraser", "links": { "self": "/api/icons/eraser" }, "type": "icon" }, { "attributes": { "id": "erlang", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f39d", "voted": false }, "id": "erlang", "links": { "self": "/api/icons/erlang" }, "type": "icon" }, { "attributes": { "id": "ethereum", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f42e", "voted": true }, "id": "ethereum", "links": { "self": "/api/icons/ethereum" }, "type": "icon" }, { "attributes": { "id": "ethernet", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f796", "voted": true }, "id": "ethernet", "links": { "self": "/api/icons/ethernet" }, "type": "icon" }, { "attributes": { "id": "etsy", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2d7", "voted": false }, "id": "etsy", "links": { "self": "/api/icons/etsy" }, "type": "icon" }, { "attributes": { "id": "euro-sign", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f153", "voted": false }, "id": "euro-sign", "links": { "self": "/api/icons/euro-sign" }, "type": "icon" }, { "attributes": { "id": "evernote", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f839", "voted": false }, "id": "evernote", "links": { "self": "/api/icons/evernote" }, "type": "icon" }, { - "attributes": { - "id": "exchange", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", - "duotone"], "unicode": "f0ec", "voted": false - }, "id": "exchange", "links": { "self": "/api/icons/exchange" }, "type": "icon" -}, { "attributes": { "id": "exchange-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f362", "voted": false }, "id": "exchange-alt", "links": { "self": "/api/icons/exchange-alt" }, "type": "icon" }, { "attributes": { "id": "exclamation", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f12a", "voted": false }, "id": "exclamation", "links": { "self": "/api/icons/exclamation" }, "type": "icon" }, { "attributes": { "id": "exclamation-circle", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f06a", "voted": false }, "id": "exclamation-circle", "links": { "self": "/api/icons/exclamation-circle" }, "type": "icon" }, { "attributes": { "id": "exclamation-square", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f321", "voted": false }, "id": "exclamation-square", "links": { "self": "/api/icons/exclamation-square" }, "type": "icon" }, { "attributes": { "id": "exclamation-triangle", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f071", "voted": false }, "id": "exclamation-triangle", "links": { "self": "/api/icons/exclamation-triangle" }, "type": "icon" }, { "attributes": { "id": "expand", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f065", "voted": false }, "id": "expand", "links": { "self": "/api/icons/expand" }, "type": "icon" }, { "attributes": { "id": "expand-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f424", "voted": false }, "id": "expand-alt", "links": { "self": "/api/icons/expand-alt" }, "type": "icon" }, { "attributes": { "id": "expand-arrows", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f31d", "voted": false }, "id": "expand-arrows", "links": { "self": "/api/icons/expand-arrows" }, "type": "icon" }, { "attributes": { "id": "expand-arrows-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f31e", "voted": false }, "id": "expand-arrows-alt", "links": { "self": "/api/icons/expand-arrows-alt" }, "type": "icon" }, { "attributes": { "id": "expand-wide", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f320", "voted": false }, "id": "expand-wide", "links": { "self": "/api/icons/expand-wide" }, "type": "icon" }, { "attributes": { "id": "expeditedssl", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f23e", "voted": false }, "id": "expeditedssl", "links": { "self": "/api/icons/expeditedssl" }, "type": "icon" }, { "attributes": { "id": "external-link", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f08e", "voted": false }, "id": "external-link", "links": { "self": "/api/icons/external-link" }, "type": "icon" }, { "attributes": { "id": "external-link-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f35d", "voted": false }, "id": "external-link-alt", "links": { "self": "/api/icons/external-link-alt" }, "type": "icon" }, { "attributes": { "id": "external-link-square", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f14c", "voted": false }, "id": "external-link-square", "links": { "self": "/api/icons/external-link-square" }, "type": "icon" }, { "attributes": { "id": "external-link-square-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f360", "voted": false }, "id": "external-link-square-alt", "links": { "self": "/api/icons/external-link-square-alt" }, "type": "icon" }, { "attributes": { "id": "eye", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f06e", "voted": false }, "id": "eye", "links": { "self": "/api/icons/eye" }, "type": "icon" }, { "attributes": { "id": "eye-dropper", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1fb", "voted": false }, "id": "eye-dropper", "links": { "self": "/api/icons/eye-dropper" }, "type": "icon" }, { "attributes": { "id": "eye-evil", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6db", "voted": false }, "id": "eye-evil", "links": { "self": "/api/icons/eye-evil" }, "type": "icon" }, { "attributes": { "id": "eye-slash", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f070", "voted": false }, "id": "eye-slash", "links": { "self": "/api/icons/eye-slash" }, "type": "icon" }, { "attributes": { "id": "facebook", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f09a", "voted": false }, "id": "facebook", "links": { "self": "/api/icons/facebook" }, "type": "icon" }, { "attributes": { "id": "facebook-f", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f39e", "voted": false }, "id": "facebook-f", "links": { "self": "/api/icons/facebook-f" }, "type": "icon" }, { "attributes": { "id": "facebook-messenger", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f39f", "voted": false }, "id": "facebook-messenger", "links": { "self": "/api/icons/facebook-messenger" }, "type": "icon" }, { "attributes": { "id": "facebook-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f082", "voted": false }, "id": "facebook-square", "links": { "self": "/api/icons/facebook-square" }, "type": "icon" }, { "attributes": { "id": "fan", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f863", "voted": true }, "id": "fan", "links": { "self": "/api/icons/fan" }, "type": "icon" }, { "attributes": { "id": "fan-table", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f904", "voted": false }, "id": "fan-table", "links": { "self": "/api/icons/fan-table" }, "type": "icon" }, { "attributes": { "id": "fantasy-flight-games", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f6dc", "voted": false }, "id": "fantasy-flight-games", "links": { "self": "/api/icons/fantasy-flight-games" }, "type": "icon" }, { "attributes": { "id": "farm", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f864", "voted": false }, "id": "farm", "links": { "self": "/api/icons/farm" }, "type": "icon" }, { "attributes": { "id": "fast-backward", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f049", "voted": false }, "id": "fast-backward", "links": { "self": "/api/icons/fast-backward" }, "type": "icon" }, { "attributes": { "id": "fast-forward", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f050", "voted": false }, "id": "fast-forward", "links": { "self": "/api/icons/fast-forward" }, "type": "icon" }, { "attributes": { "id": "faucet", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f905", "voted": false }, "id": "faucet", "links": { "self": "/api/icons/faucet" }, "type": "icon" }, { "attributes": { "id": "faucet-drip", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f906", "voted": false }, "id": "faucet-drip", "links": { "self": "/api/icons/faucet-drip" }, "type": "icon" }, { "attributes": { "id": "fax", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1ac", "voted": false }, "id": "fax", "links": { "self": "/api/icons/fax" }, "type": "icon" }, { "attributes": { "id": "feather", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f52d", "voted": true }, "id": "feather", "links": { "self": "/api/icons/feather" }, "type": "icon" }, { "attributes": { "id": "feather-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f56b", "voted": true }, "id": "feather-alt", "links": { "self": "/api/icons/feather-alt" }, "type": "icon" }, { "attributes": { "id": "fedex", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f797", "voted": false }, "id": "fedex", "links": { "self": "/api/icons/fedex" }, "type": "icon" }, { "attributes": { "id": "fedora", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f798", "voted": true }, "id": "fedora", "links": { "self": "/api/icons/fedora" }, "type": "icon" }, { "attributes": { "id": "female", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f182", "voted": false }, "id": "female", "links": { "self": "/api/icons/female" }, "type": "icon" }, { "attributes": { "id": "field-hockey", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f44c", "voted": false }, "id": "field-hockey", "links": { "self": "/api/icons/field-hockey" }, "type": "icon" }, { - "attributes": { "id": "fighter-jet", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0fb", "voted": false }, "id": "fighter-jet", "links": - { "self": "/api/icons/fighter-jet" }, "type": "icon" -}, { "attributes": { "id": "figma", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f799", "voted": false }, "id": "figma", "links": { "self": "/api/icons/figma" }, "type": "icon" }, { "attributes": { "id": "file", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f15b", "voted": false }, "id": "file", "links": { "self": "/api/icons/file" }, "type": "icon" }, { "attributes": { "id": "file-alt", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f15c", "voted": false }, "id": "file-alt", "links": { "self": "/api/icons/file-alt" }, "type": "icon" }, { "attributes": { "id": "file-archive", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1c6", "voted": false }, "id": "file-archive", "links": { "self": "/api/icons/file-archive" }, "type": "icon" }, { "attributes": { "id": "file-audio", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1c7", "voted": false }, "id": "file-audio", "links": { "self": "/api/icons/file-audio" }, "type": "icon" }, { "attributes": { "id": "file-certificate", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5f3", "voted": false }, "id": "file-certificate", "links": { "self": "/api/icons/file-certificate" }, "type": "icon" }, { "attributes": { "id": "file-chart-line", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f659", "voted": false }, "id": "file-chart-line", "links": { "self": "/api/icons/file-chart-line" }, "type": "icon" }, { "attributes": { "id": "file-chart-pie", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f65a", "voted": false }, "id": "file-chart-pie", "links": { "self": "/api/icons/file-chart-pie" }, "type": "icon" }, { "attributes": { "id": "file-check", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f316", "voted": false }, "id": "file-check", "links": { "self": "/api/icons/file-check" }, "type": "icon" }, { "attributes": { "id": "file-code", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1c9", "voted": false }, "id": "file-code", "links": { "self": "/api/icons/file-code" }, "type": "icon" }, { "attributes": { "id": "file-contract", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f56c", "voted": false }, "id": "file-contract", "links": { "self": "/api/icons/file-contract" }, "type": "icon" }, { "attributes": { "id": "file-csv", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6dd", "voted": false }, "id": "file-csv", "links": { "self": "/api/icons/file-csv" }, "type": "icon" }, { "attributes": { "id": "file-download", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f56d", "voted": true }, "id": "file-download", "links": { "self": "/api/icons/file-download" }, "type": "icon" }, { "attributes": { "id": "file-edit", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f31c", "voted": false }, "id": "file-edit", "links": { "self": "/api/icons/file-edit" }, "type": "icon" }, { "attributes": { "id": "file-excel", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1c3", "voted": false }, "id": "file-excel", "links": { "self": "/api/icons/file-excel" }, "type": "icon" }, { "attributes": { "id": "file-exclamation", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f31a", "voted": false }, "id": "file-exclamation", "links": { "self": "/api/icons/file-exclamation" }, "type": "icon" }, { "attributes": { "id": "file-export", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f56e", "voted": true }, "id": "file-export", "links": { "self": "/api/icons/file-export" }, "type": "icon" }, { "attributes": { "id": "file-image", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1c5", "voted": false }, "id": "file-image", "links": { "self": "/api/icons/file-image" }, "type": "icon" }, { "attributes": { "id": "file-import", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f56f", "voted": true }, "id": "file-import", "links": { "self": "/api/icons/file-import" }, "type": "icon" }, { "attributes": { "id": "file-invoice", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f570", "voted": true }, "id": "file-invoice", "links": { "self": "/api/icons/file-invoice" }, "type": "icon" }, { "attributes": { "id": "file-invoice-dollar", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f571", "voted": true }, "id": "file-invoice-dollar", "links": { "self": "/api/icons/file-invoice-dollar" }, "type": "icon" }, { "attributes": { "id": "file-medical", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f477", "voted": false }, "id": "file-medical", "links": { "self": "/api/icons/file-medical" }, "type": "icon" }, { "attributes": { "id": "file-medical-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f478", "voted": false }, "id": "file-medical-alt", "links": { "self": "/api/icons/file-medical-alt" }, "type": "icon" }, { "attributes": { "id": "file-minus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f318", "voted": false }, "id": "file-minus", "links": { "self": "/api/icons/file-minus" }, "type": "icon" }, { "attributes": { "id": "file-music", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8b6", "voted": false }, "id": "file-music", "links": { "self": "/api/icons/file-music" }, "type": "icon" }, { "attributes": { "id": "file-pdf", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1c1", "voted": false }, "id": "file-pdf", "links": { "self": "/api/icons/file-pdf" }, "type": "icon" }, { "attributes": { "id": "file-plus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f319", "voted": false }, "id": "file-plus", "links": { "self": "/api/icons/file-plus" }, "type": "icon" }, { "attributes": { "id": "file-powerpoint", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1c4", "voted": false }, "id": "file-powerpoint", "links": { "self": "/api/icons/file-powerpoint" }, "type": "icon" }, { "attributes": { "id": "file-prescription", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f572", "voted": false }, "id": "file-prescription", "links": { "self": "/api/icons/file-prescription" }, "type": "icon" }, { "attributes": { "id": "file-search", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f865", "voted": true }, "id": "file-search", "links": { "self": "/api/icons/file-search" }, "type": "icon" }, { "attributes": { "id": "file-signature", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f573", "voted": true }, "id": "file-signature", "links": { "self": "/api/icons/file-signature" }, "type": "icon" }, { "attributes": { "id": "file-spreadsheet", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f65b", "voted": false }, "id": "file-spreadsheet", "links": { "self": "/api/icons/file-spreadsheet" }, "type": "icon" }, { "attributes": { "id": "file-times", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f317", "voted": false }, "id": "file-times", "links": { "self": "/api/icons/file-times" }, "type": "icon" }, { "attributes": { "id": "file-upload", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f574", "voted": true }, "id": "file-upload", "links": { "self": "/api/icons/file-upload" }, "type": "icon" }, { "attributes": { "id": "file-user", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f65c", "voted": true }, "id": "file-user", "links": { "self": "/api/icons/file-user" }, "type": "icon" }, { "attributes": { "id": "file-video", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1c8", "voted": false }, "id": "file-video", "links": { "self": "/api/icons/file-video" }, "type": "icon" }, { "attributes": { "id": "file-word", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1c2", "voted": false }, "id": "file-word", "links": { "self": "/api/icons/file-word" }, "type": "icon" }, { - "attributes": { - "id": "files-medical", "membership": - { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7fd", "voted": false - }, "id": "files-medical", "links": { "self": "/api/icons/files-medical" }, "type": "icon" -}, { "attributes": { "id": "fill", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f575", "voted": false }, "id": "fill", "links": { "self": "/api/icons/fill" }, "type": "icon" }, { "attributes": { "id": "fill-drip", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f576", "voted": false }, "id": "fill-drip", "links": { "self": "/api/icons/fill-drip" }, "type": "icon" }, { "attributes": { "id": "film", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f008", "voted": false }, "id": "film", "links": { "self": "/api/icons/film" }, "type": "icon" }, { "attributes": { "id": "film-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3a0", "voted": false }, "id": "film-alt", "links": { "self": "/api/icons/film-alt" }, "type": "icon" }, { "attributes": { "id": "film-canister", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8b7", "voted": false }, "id": "film-canister", "links": { "self": "/api/icons/film-canister" }, "type": "icon" }, { "attributes": { "id": "filter", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0b0", "voted": false }, "id": "filter", "links": { "self": "/api/icons/filter" }, "type": "icon" }, { "attributes": { "id": "fingerprint", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f577", "voted": true }, "id": "fingerprint", "links": { "self": "/api/icons/fingerprint" }, "type": "icon" }, { "attributes": { "id": "fire", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f06d", "voted": false }, "id": "fire", "links": { "self": "/api/icons/fire" }, "type": "icon" }, { "attributes": { "id": "fire-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7e4", "voted": false }, "id": "fire-alt", "links": { "self": "/api/icons/fire-alt" }, "type": "icon" }, { "attributes": { "id": "fire-extinguisher", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f134", "voted": false }, "id": "fire-extinguisher", "links": { "self": "/api/icons/fire-extinguisher" }, "type": "icon" }, { "attributes": { "id": "fire-smoke", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f74b", "voted": false }, "id": "fire-smoke", "links": { "self": "/api/icons/fire-smoke" }, "type": "icon" }, { "attributes": { "id": "firefox", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f269", "voted": false }, "id": "firefox", "links": { "self": "/api/icons/firefox" }, "type": "icon" }, { "attributes": { "id": "firefox-browser", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f907", "voted": false }, "id": "firefox-browser", "links": { "self": "/api/icons/firefox-browser" }, "type": "icon" }, { "attributes": { "id": "fireplace", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f79a", "voted": false }, "id": "fireplace", "links": { "self": "/api/icons/fireplace" }, "type": "icon" }, { "attributes": { "id": "first-aid", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f479", "voted": false }, "id": "first-aid", "links": { "self": "/api/icons/first-aid" }, "type": "icon" }, { "attributes": { "id": "first-order", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2b0", "voted": false }, "id": "first-order", "links": { "self": "/api/icons/first-order" }, "type": "icon" }, { "attributes": { "id": "first-order-alt", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f50a", "voted": false }, "id": "first-order-alt", "links": { "self": "/api/icons/first-order-alt" }, "type": "icon" }, { "attributes": { "id": "firstdraft", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3a1", "voted": false }, "id": "firstdraft", "links": { "self": "/api/icons/firstdraft" }, "type": "icon" }, { "attributes": { "id": "fish", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f578", "voted": true }, "id": "fish", "links": { "self": "/api/icons/fish" }, "type": "icon" }, { "attributes": { "id": "fish-cooked", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7fe", "voted": false }, "id": "fish-cooked", "links": { "self": "/api/icons/fish-cooked" }, "type": "icon" }, { "attributes": { "id": "fist-raised", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6de", "voted": false }, "id": "fist-raised", "links": { "self": "/api/icons/fist-raised" }, "type": "icon" }, { "attributes": { "id": "flag", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f024", "voted": false }, "id": "flag", "links": { "self": "/api/icons/flag" }, "type": "icon" }, { "attributes": { "id": "flag-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f74c", "voted": false }, "id": "flag-alt", "links": { "self": "/api/icons/flag-alt" }, "type": "icon" }, { "attributes": { "id": "flag-checkered", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f11e", "voted": false }, "id": "flag-checkered", "links": { "self": "/api/icons/flag-checkered" }, "type": "icon" }, { "attributes": { "id": "flag-usa", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f74d", "voted": false }, "id": "flag-usa", "links": { "self": "/api/icons/flag-usa" }, "type": "icon" }, { "attributes": { "id": "flame", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6df", "voted": false }, "id": "flame", "links": { "self": "/api/icons/flame" }, "type": "icon" }, { "attributes": { "id": "flashlight", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8b8", "voted": false }, "id": "flashlight", "links": { "self": "/api/icons/flashlight" }, "type": "icon" }, { "attributes": { "id": "flask", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0c3", "voted": false }, "id": "flask", "links": { "self": "/api/icons/flask" }, "type": "icon" }, { "attributes": { "id": "flask-poison", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6e0", "voted": false }, "id": "flask-poison", "links": { "self": "/api/icons/flask-poison" }, "type": "icon" }, { "attributes": { "id": "flask-potion", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6e1", "voted": false }, "id": "flask-potion", "links": { "self": "/api/icons/flask-potion" }, "type": "icon" }, { "attributes": { "id": "flickr", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f16e", "voted": false }, "id": "flickr", "links": { "self": "/api/icons/flickr" }, "type": "icon" }, { "attributes": { "id": "flipboard", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f44d", "voted": true }, "id": "flipboard", "links": { "self": "/api/icons/flipboard" }, "type": "icon" }, { "attributes": { "id": "flower", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7ff", "voted": true }, "id": "flower", "links": { "self": "/api/icons/flower" }, "type": "icon" }, { "attributes": { "id": "flower-daffodil", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f800", "voted": false }, "id": "flower-daffodil", "links": { "self": "/api/icons/flower-daffodil" }, "type": "icon" }, { "attributes": { "id": "flower-tulip", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f801", "voted": false }, "id": "flower-tulip", "links": { "self": "/api/icons/flower-tulip" }, "type": "icon" }, { "attributes": { "id": "flushed", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f579", "voted": false }, "id": "flushed", "links": { "self": "/api/icons/flushed" }, "type": "icon" }, { "attributes": { "id": "flute", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8b9", "voted": false }, "id": "flute", "links": { "self": "/api/icons/flute" }, "type": "icon" }, { "attributes": { "id": "flux-capacitor", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8ba", "voted": false }, "id": "flux-capacitor", "links": { "self": "/api/icons/flux-capacitor" }, "type": "icon" }, { "attributes": { "id": "fly", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f417", "voted": false }, "id": "fly", "links": { "self": "/api/icons/fly" }, "type": "icon" }, { - "attributes": { - "id": "fog", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], - "unicode": "f74e", "voted": false - }, "id": "fog", "links": { "self": "/api/icons/fog" }, "type": "icon" -}, { "attributes": { "id": "folder", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f07b", "voted": false }, "id": "folder", "links": { "self": "/api/icons/folder" }, "type": "icon" }, { "attributes": { "id": "folder-download", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f953", "voted": false }, "id": "folder-download", "links": { "self": "/api/icons/folder-download" }, "type": "icon" }, { "attributes": { "id": "folder-minus", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f65d", "voted": false }, "id": "folder-minus", "links": { "self": "/api/icons/folder-minus" }, "type": "icon" }, { "attributes": { "id": "folder-open", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f07c", "voted": false }, "id": "folder-open", "links": { "self": "/api/icons/folder-open" }, "type": "icon" }, { "attributes": { "id": "folder-plus", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f65e", "voted": false }, "id": "folder-plus", "links": { "self": "/api/icons/folder-plus" }, "type": "icon" }, { "attributes": { "id": "folder-times", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f65f", "voted": false }, "id": "folder-times", "links": { "self": "/api/icons/folder-times" }, "type": "icon" }, { "attributes": { "id": "folder-tree", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f802", "voted": true }, "id": "folder-tree", "links": { "self": "/api/icons/folder-tree" }, "type": "icon" }, { "attributes": { "id": "folder-upload", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f954", "voted": false }, "id": "folder-upload", "links": { "self": "/api/icons/folder-upload" }, "type": "icon" }, { "attributes": { "id": "folders", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f660", "voted": false }, "id": "folders", "links": { "self": "/api/icons/folders" }, "type": "icon" }, { "attributes": { "id": "font", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f031", "voted": false }, "id": "font", "links": { "self": "/api/icons/font" }, "type": "icon" }, { "attributes": { "id": "font-awesome", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2b4", "voted": false }, "id": "font-awesome", "links": { "self": "/api/icons/font-awesome" }, "type": "icon" }, { "attributes": { "id": "font-awesome-alt", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f35c", "voted": false }, "id": "font-awesome-alt", "links": { "self": "/api/icons/font-awesome-alt" }, "type": "icon" }, { "attributes": { "id": "font-awesome-flag", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f425", "voted": false }, "id": "font-awesome-flag", "links": { "self": "/api/icons/font-awesome-flag" }, "type": "icon" }, { "attributes": { "id": "font-case", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f866", "voted": false }, "id": "font-case", "links": { "self": "/api/icons/font-case" }, "type": "icon" }, { "attributes": { "id": "fonticons", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f280", "voted": false }, "id": "fonticons", "links": { "self": "/api/icons/fonticons" }, "type": "icon" }, { "attributes": { "id": "fonticons-fi", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3a2", "voted": false }, "id": "fonticons-fi", "links": { "self": "/api/icons/fonticons-fi" }, "type": "icon" }, { "attributes": { "id": "football-ball", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f44e", "voted": false }, "id": "football-ball", "links": { "self": "/api/icons/football-ball" }, "type": "icon" }, { "attributes": { "id": "football-helmet", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f44f", "voted": false }, "id": "football-helmet", "links": { "self": "/api/icons/football-helmet" }, "type": "icon" }, { "attributes": { "id": "forklift", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f47a", "voted": false }, "id": "forklift", "links": { "self": "/api/icons/forklift" }, "type": "icon" }, { "attributes": { "id": "fort-awesome", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f286", "voted": false }, "id": "fort-awesome", "links": { "self": "/api/icons/fort-awesome" }, "type": "icon" }, { "attributes": { "id": "fort-awesome-alt", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3a3", "voted": false }, "id": "fort-awesome-alt", "links": { "self": "/api/icons/fort-awesome-alt" }, "type": "icon" }, { "attributes": { "id": "forumbee", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f211", "voted": false }, "id": "forumbee", "links": { "self": "/api/icons/forumbee" }, "type": "icon" }, { "attributes": { "id": "forward", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f04e", "voted": false }, "id": "forward", "links": { "self": "/api/icons/forward" }, "type": "icon" }, { "attributes": { "id": "foursquare", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f180", "voted": false }, "id": "foursquare", "links": { "self": "/api/icons/foursquare" }, "type": "icon" }, { "attributes": { "id": "fragile", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4bb", "voted": false }, "id": "fragile", "links": { "self": "/api/icons/fragile" }, "type": "icon" }, { "attributes": { "id": "free-code-camp", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2c5", "voted": false }, "id": "free-code-camp", "links": { "self": "/api/icons/free-code-camp" }, "type": "icon" }, { "attributes": { "id": "freebsd", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3a4", "voted": false }, "id": "freebsd", "links": { "self": "/api/icons/freebsd" }, "type": "icon" }, { "attributes": { "id": "french-fries", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f803", "voted": false }, "id": "french-fries", "links": { "self": "/api/icons/french-fries" }, "type": "icon" }, { "attributes": { "id": "frog", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f52e", "voted": false }, "id": "frog", "links": { "self": "/api/icons/frog" }, "type": "icon" }, { "attributes": { "id": "frosty-head", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f79b", "voted": false }, "id": "frosty-head", "links": { "self": "/api/icons/frosty-head" }, "type": "icon" }, { "attributes": { "id": "frown", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f119", "voted": false }, "id": "frown", "links": { "self": "/api/icons/frown" }, "type": "icon" }, { "attributes": { "id": "frown-open", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f57a", "voted": false }, "id": "frown-open", "links": { "self": "/api/icons/frown-open" }, "type": "icon" }, { "attributes": { "id": "fulcrum", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f50b", "voted": false }, "id": "fulcrum", "links": { "self": "/api/icons/fulcrum" }, "type": "icon" }, { "attributes": { "id": "function", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f661", "voted": false }, "id": "function", "links": { "self": "/api/icons/function" }, "type": "icon" }, { "attributes": { "id": "funnel-dollar", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f662", "voted": false }, "id": "funnel-dollar", "links": { "self": "/api/icons/funnel-dollar" }, "type": "icon" }, { "attributes": { "id": "futbol", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1e3", "voted": false }, "id": "futbol", "links": { "self": "/api/icons/futbol" }, "type": "icon" }, { "attributes": { "id": "galactic-republic", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f50c", "voted": false }, "id": "galactic-republic", "links": { "self": "/api/icons/galactic-republic" }, "type": "icon" }, { "attributes": { "id": "galactic-senate", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f50d", "voted": false }, "id": "galactic-senate", "links": { "self": "/api/icons/galactic-senate" }, "type": "icon" }, { "attributes": { "id": "galaxy", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f908", "voted": false }, "id": "galaxy", "links": { "self": "/api/icons/galaxy" }, "type": "icon" }, { "attributes": { "id": "game-board", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f867", "voted": false }, "id": "game-board", "links": { "self": "/api/icons/game-board" }, "type": "icon" }, { - "attributes": { - "id": "game-board-alt", "membership": - { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f868", "voted": false - }, "id": "game-board-alt", "links": { "self": "/api/icons/game-board-alt" }, "type": "icon" -}, { "attributes": { "id": "game-console-handheld", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8bb", "voted": false }, "id": "game-console-handheld", "links": { "self": "/api/icons/game-console-handheld" }, "type": "icon" }, { "attributes": { "id": "gamepad", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f11b", "voted": false }, "id": "gamepad", "links": { "self": "/api/icons/gamepad" }, "type": "icon" }, { "attributes": { "id": "gamepad-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8bc", "voted": false }, "id": "gamepad-alt", "links": { "self": "/api/icons/gamepad-alt" }, "type": "icon" }, { "attributes": { "id": "garage", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f909", "voted": false }, "id": "garage", "links": { "self": "/api/icons/garage" }, "type": "icon" }, { "attributes": { "id": "garage-car", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f90a", "voted": false }, "id": "garage-car", "links": { "self": "/api/icons/garage-car" }, "type": "icon" }, { "attributes": { "id": "garage-open", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f90b", "voted": false }, "id": "garage-open", "links": { "self": "/api/icons/garage-open" }, "type": "icon" }, { "attributes": { "id": "gas-pump", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f52f", "voted": true }, "id": "gas-pump", "links": { "self": "/api/icons/gas-pump" }, "type": "icon" }, { "attributes": { "id": "gas-pump-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5f4", "voted": true }, "id": "gas-pump-slash", "links": { "self": "/api/icons/gas-pump-slash" }, "type": "icon" }, { "attributes": { "id": "gavel", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0e3", "voted": false }, "id": "gavel", "links": { "self": "/api/icons/gavel" }, "type": "icon" }, { "attributes": { "id": "gem", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3a5", "voted": false }, "id": "gem", "links": { "self": "/api/icons/gem" }, "type": "icon" }, { "attributes": { "id": "genderless", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f22d", "voted": false }, "id": "genderless", "links": { "self": "/api/icons/genderless" }, "type": "icon" }, { "attributes": { "id": "get-pocket", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f265", "voted": false }, "id": "get-pocket", "links": { "self": "/api/icons/get-pocket" }, "type": "icon" }, { "attributes": { "id": "gg", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f260", "voted": false }, "id": "gg", "links": { "self": "/api/icons/gg" }, "type": "icon" }, { "attributes": { "id": "gg-circle", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f261", "voted": false }, "id": "gg-circle", "links": { "self": "/api/icons/gg-circle" }, "type": "icon" }, { "attributes": { "id": "ghost", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6e2", "voted": false }, "id": "ghost", "links": { "self": "/api/icons/ghost" }, "type": "icon" }, { "attributes": { "id": "gift", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f06b", "voted": false }, "id": "gift", "links": { "self": "/api/icons/gift" }, "type": "icon" }, { "attributes": { "id": "gift-card", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f663", "voted": false }, "id": "gift-card", "links": { "self": "/api/icons/gift-card" }, "type": "icon" }, { "attributes": { "id": "gifts", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f79c", "voted": false }, "id": "gifts", "links": { "self": "/api/icons/gifts" }, "type": "icon" }, { "attributes": { "id": "gingerbread-man", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f79d", "voted": false }, "id": "gingerbread-man", "links": { "self": "/api/icons/gingerbread-man" }, "type": "icon" }, { "attributes": { "id": "git", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1d3", "voted": false }, "id": "git", "links": { "self": "/api/icons/git" }, "type": "icon" }, { "attributes": { "id": "git-alt", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f841", "voted": false }, "id": "git-alt", "links": { "self": "/api/icons/git-alt" }, "type": "icon" }, { "attributes": { "id": "git-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1d2", "voted": false }, "id": "git-square", "links": { "self": "/api/icons/git-square" }, "type": "icon" }, { "attributes": { "id": "github", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f09b", "voted": false }, "id": "github", "links": { "self": "/api/icons/github" }, "type": "icon" }, { "attributes": { "id": "github-alt", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f113", "voted": false }, "id": "github-alt", "links": { "self": "/api/icons/github-alt" }, "type": "icon" }, { "attributes": { "id": "github-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f092", "voted": false }, "id": "github-square", "links": { "self": "/api/icons/github-square" }, "type": "icon" }, { "attributes": { "id": "gitkraken", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3a6", "voted": false }, "id": "gitkraken", "links": { "self": "/api/icons/gitkraken" }, "type": "icon" }, { "attributes": { "id": "gitlab", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f296", "voted": false }, "id": "gitlab", "links": { "self": "/api/icons/gitlab" }, "type": "icon" }, { "attributes": { "id": "gitter", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f426", "voted": false }, "id": "gitter", "links": { "self": "/api/icons/gitter" }, "type": "icon" }, { "attributes": { "id": "glass", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f804", "voted": true }, "id": "glass", "links": { "self": "/api/icons/glass" }, "type": "icon" }, { "attributes": { "id": "glass-champagne", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f79e", "voted": false }, "id": "glass-champagne", "links": { "self": "/api/icons/glass-champagne" }, "type": "icon" }, { "attributes": { "id": "glass-cheers", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f79f", "voted": false }, "id": "glass-cheers", "links": { "self": "/api/icons/glass-cheers" }, "type": "icon" }, { "attributes": { "id": "glass-citrus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f869", "voted": false }, "id": "glass-citrus", "links": { "self": "/api/icons/glass-citrus" }, "type": "icon" }, { "attributes": { "id": "glass-martini", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f000", "voted": false }, "id": "glass-martini", "links": { "self": "/api/icons/glass-martini" }, "type": "icon" }, { "attributes": { "id": "glass-martini-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f57b", "voted": false }, "id": "glass-martini-alt", "links": { "self": "/api/icons/glass-martini-alt" }, "type": "icon" }, { "attributes": { "id": "glass-whiskey", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7a0", "voted": false }, "id": "glass-whiskey", "links": { "self": "/api/icons/glass-whiskey" }, "type": "icon" }, { "attributes": { "id": "glass-whiskey-rocks", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7a1", "voted": false }, "id": "glass-whiskey-rocks", "links": { "self": "/api/icons/glass-whiskey-rocks" }, "type": "icon" }, { "attributes": { "id": "glasses", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f530", "voted": true }, "id": "glasses", "links": { "self": "/api/icons/glasses" }, "type": "icon" }, { "attributes": { "id": "glasses-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5f5", "voted": false }, "id": "glasses-alt", "links": { "self": "/api/icons/glasses-alt" }, "type": "icon" }, { "attributes": { "id": "glide", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2a5", "voted": false }, "id": "glide", "links": { "self": "/api/icons/glide" }, "type": "icon" }, { - "attributes": { "id": "glide-g", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2a6", "voted": false }, "id": "glide-g", "links": { "self": "/api/icons/glide-g" }, - "type": "icon" -}, { "attributes": { "id": "globe", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0ac", "voted": false }, "id": "globe", "links": { "self": "/api/icons/globe" }, "type": "icon" }, { "attributes": { "id": "globe-africa", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f57c", "voted": false }, "id": "globe-africa", "links": { "self": "/api/icons/globe-africa" }, "type": "icon" }, { "attributes": { "id": "globe-americas", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f57d", "voted": false }, "id": "globe-americas", "links": { "self": "/api/icons/globe-americas" }, "type": "icon" }, { "attributes": { "id": "globe-asia", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f57e", "voted": false }, "id": "globe-asia", "links": { "self": "/api/icons/globe-asia" }, "type": "icon" }, { "attributes": { "id": "globe-europe", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7a2", "voted": true }, "id": "globe-europe", "links": { "self": "/api/icons/globe-europe" }, "type": "icon" }, { "attributes": { "id": "globe-snow", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7a3", "voted": false }, "id": "globe-snow", "links": { "self": "/api/icons/globe-snow" }, "type": "icon" }, { "attributes": { "id": "globe-stand", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5f6", "voted": false }, "id": "globe-stand", "links": { "self": "/api/icons/globe-stand" }, "type": "icon" }, { "attributes": { "id": "gofore", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3a7", "voted": false }, "id": "gofore", "links": { "self": "/api/icons/gofore" }, "type": "icon" }, { "attributes": { "id": "golf-ball", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f450", "voted": false }, "id": "golf-ball", "links": { "self": "/api/icons/golf-ball" }, "type": "icon" }, { "attributes": { "id": "golf-club", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f451", "voted": false }, "id": "golf-club", "links": { "self": "/api/icons/golf-club" }, "type": "icon" }, { "attributes": { "id": "goodreads", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3a8", "voted": false }, "id": "goodreads", "links": { "self": "/api/icons/goodreads" }, "type": "icon" }, { "attributes": { "id": "goodreads-g", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3a9", "voted": false }, "id": "goodreads-g", "links": { "self": "/api/icons/goodreads-g" }, "type": "icon" }, { "attributes": { "id": "google", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1a0", "voted": false }, "id": "google", "links": { "self": "/api/icons/google" }, "type": "icon" }, { "attributes": { "id": "google-drive", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3aa", "voted": false }, "id": "google-drive", "links": { "self": "/api/icons/google-drive" }, "type": "icon" }, { "attributes": { "id": "google-play", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3ab", "voted": false }, "id": "google-play", "links": { "self": "/api/icons/google-play" }, "type": "icon" }, { "attributes": { "id": "google-plus", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2b3", "voted": false }, "id": "google-plus", "links": { "self": "/api/icons/google-plus" }, "type": "icon" }, { "attributes": { "id": "google-plus-g", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f0d5", "voted": false }, "id": "google-plus-g", "links": { "self": "/api/icons/google-plus-g" }, "type": "icon" }, { "attributes": { "id": "google-plus-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f0d4", "voted": false }, "id": "google-plus-square", "links": { "self": "/api/icons/google-plus-square" }, "type": "icon" }, { "attributes": { "id": "google-wallet", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1ee", "voted": false }, "id": "google-wallet", "links": { "self": "/api/icons/google-wallet" }, "type": "icon" }, { "attributes": { "id": "gopuram", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f664", "voted": false }, "id": "gopuram", "links": { "self": "/api/icons/gopuram" }, "type": "icon" }, { "attributes": { "id": "graduation-cap", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f19d", "voted": false }, "id": "graduation-cap", "links": { "self": "/api/icons/graduation-cap" }, "type": "icon" }, { "attributes": { "id": "gramophone", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8bd", "voted": false }, "id": "gramophone", "links": { "self": "/api/icons/gramophone" }, "type": "icon" }, { "attributes": { "id": "gratipay", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f184", "voted": false }, "id": "gratipay", "links": { "self": "/api/icons/gratipay" }, "type": "icon" }, { "attributes": { "id": "grav", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2d6", "voted": false }, "id": "grav", "links": { "self": "/api/icons/grav" }, "type": "icon" }, { "attributes": { "id": "greater-than", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f531", "voted": true }, "id": "greater-than", "links": { "self": "/api/icons/greater-than" }, "type": "icon" }, { "attributes": { "id": "greater-than-equal", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f532", "voted": true }, "id": "greater-than-equal", "links": { "self": "/api/icons/greater-than-equal" }, "type": "icon" }, { "attributes": { "id": "grimace", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f57f", "voted": false }, "id": "grimace", "links": { "self": "/api/icons/grimace" }, "type": "icon" }, { "attributes": { "id": "grin", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f580", "voted": false }, "id": "grin", "links": { "self": "/api/icons/grin" }, "type": "icon" }, { "attributes": { "id": "grin-alt", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f581", "voted": false }, "id": "grin-alt", "links": { "self": "/api/icons/grin-alt" }, "type": "icon" }, { "attributes": { "id": "grin-beam", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f582", "voted": false }, "id": "grin-beam", "links": { "self": "/api/icons/grin-beam" }, "type": "icon" }, { "attributes": { "id": "grin-beam-sweat", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f583", "voted": false }, "id": "grin-beam-sweat", "links": { "self": "/api/icons/grin-beam-sweat" }, "type": "icon" }, { "attributes": { "id": "grin-hearts", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f584", "voted": false }, "id": "grin-hearts", "links": { "self": "/api/icons/grin-hearts" }, "type": "icon" }, { "attributes": { "id": "grin-squint", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f585", "voted": false }, "id": "grin-squint", "links": { "self": "/api/icons/grin-squint" }, "type": "icon" }, { "attributes": { "id": "grin-squint-tears", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f586", "voted": false }, "id": "grin-squint-tears", "links": { "self": "/api/icons/grin-squint-tears" }, "type": "icon" }, { "attributes": { "id": "grin-stars", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f587", "voted": false }, "id": "grin-stars", "links": { "self": "/api/icons/grin-stars" }, "type": "icon" }, { "attributes": { "id": "grin-tears", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f588", "voted": false }, "id": "grin-tears", "links": { "self": "/api/icons/grin-tears" }, "type": "icon" }, { "attributes": { "id": "grin-tongue", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f589", "voted": false }, "id": "grin-tongue", "links": { "self": "/api/icons/grin-tongue" }, "type": "icon" }, { "attributes": { "id": "grin-tongue-squint", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f58a", "voted": false }, "id": "grin-tongue-squint", "links": { "self": "/api/icons/grin-tongue-squint" }, "type": "icon" }, { "attributes": { "id": "grin-tongue-wink", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f58b", "voted": false }, "id": "grin-tongue-wink", "links": { "self": "/api/icons/grin-tongue-wink" }, "type": "icon" }, { - "attributes": { "id": "grin-wink", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f58c", "voted": false }, - "id": "grin-wink", "links": { "self": "/api/icons/grin-wink" }, "type": "icon" -}, { "attributes": { "id": "grip-horizontal", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f58d", "voted": true }, "id": "grip-horizontal", "links": { "self": "/api/icons/grip-horizontal" }, "type": "icon" }, { "attributes": { "id": "grip-lines", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7a4", "voted": true }, "id": "grip-lines", "links": { "self": "/api/icons/grip-lines" }, "type": "icon" }, { "attributes": { "id": "grip-lines-vertical", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7a5", "voted": true }, "id": "grip-lines-vertical", "links": { "self": "/api/icons/grip-lines-vertical" }, "type": "icon" }, { "attributes": { "id": "grip-vertical", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f58e", "voted": true }, "id": "grip-vertical", "links": { "self": "/api/icons/grip-vertical" }, "type": "icon" }, { "attributes": { "id": "gripfire", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3ac", "voted": false }, "id": "gripfire", "links": { "self": "/api/icons/gripfire" }, "type": "icon" }, { "attributes": { "id": "grunt", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3ad", "voted": false }, "id": "grunt", "links": { "self": "/api/icons/grunt" }, "type": "icon" }, { "attributes": { "id": "guitar", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7a6", "voted": true }, "id": "guitar", "links": { "self": "/api/icons/guitar" }, "type": "icon" }, { "attributes": { "id": "guitar-electric", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8be", "voted": false }, "id": "guitar-electric", "links": { "self": "/api/icons/guitar-electric" }, "type": "icon" }, { "attributes": { "id": "guitars", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8bf", "voted": false }, "id": "guitars", "links": { "self": "/api/icons/guitars" }, "type": "icon" }, { "attributes": { "id": "gulp", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3ae", "voted": false }, "id": "gulp", "links": { "self": "/api/icons/gulp" }, "type": "icon" }, { "attributes": { "id": "h-square", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0fd", "voted": false }, "id": "h-square", "links": { "self": "/api/icons/h-square" }, "type": "icon" }, { "attributes": { "id": "h1", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f313", "voted": false }, "id": "h1", "links": { "self": "/api/icons/h1" }, "type": "icon" }, { "attributes": { "id": "h2", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f314", "voted": false }, "id": "h2", "links": { "self": "/api/icons/h2" }, "type": "icon" }, { "attributes": { "id": "h3", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f315", "voted": false }, "id": "h3", "links": { "self": "/api/icons/h3" }, "type": "icon" }, { "attributes": { "id": "h4", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f86a", "voted": false }, "id": "h4", "links": { "self": "/api/icons/h4" }, "type": "icon" }, { "attributes": { "id": "hacker-news", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1d4", "voted": false }, "id": "hacker-news", "links": { "self": "/api/icons/hacker-news" }, "type": "icon" }, { "attributes": { "id": "hacker-news-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3af", "voted": false }, "id": "hacker-news-square", "links": { "self": "/api/icons/hacker-news-square" }, "type": "icon" }, { "attributes": { "id": "hackerrank", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f5f7", "voted": true }, "id": "hackerrank", "links": { "self": "/api/icons/hackerrank" }, "type": "icon" }, { "attributes": { "id": "hamburger", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f805", "voted": false }, "id": "hamburger", "links": { "self": "/api/icons/hamburger" }, "type": "icon" }, { "attributes": { "id": "hammer", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6e3", "voted": true }, "id": "hammer", "links": { "self": "/api/icons/hammer" }, "type": "icon" }, { "attributes": { "id": "hammer-war", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6e4", "voted": false }, "id": "hammer-war", "links": { "self": "/api/icons/hammer-war" }, "type": "icon" }, { "attributes": { "id": "hamsa", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f665", "voted": false }, "id": "hamsa", "links": { "self": "/api/icons/hamsa" }, "type": "icon" }, { "attributes": { "id": "hand-heart", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4bc", "voted": false }, "id": "hand-heart", "links": { "self": "/api/icons/hand-heart" }, "type": "icon" }, { "attributes": { "id": "hand-holding", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4bd", "voted": false }, "id": "hand-holding", "links": { "self": "/api/icons/hand-holding" }, "type": "icon" }, { "attributes": { "id": "hand-holding-box", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f47b", "voted": false }, "id": "hand-holding-box", "links": { "self": "/api/icons/hand-holding-box" }, "type": "icon" }, { "attributes": { "id": "hand-holding-heart", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4be", "voted": false }, "id": "hand-holding-heart", "links": { "self": "/api/icons/hand-holding-heart" }, "type": "icon" }, { "attributes": { "id": "hand-holding-magic", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6e5", "voted": false }, "id": "hand-holding-magic", "links": { "self": "/api/icons/hand-holding-magic" }, "type": "icon" }, { "attributes": { "id": "hand-holding-medical", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f95c", "voted": false }, "id": "hand-holding-medical", "links": { "self": "/api/icons/hand-holding-medical" }, "type": "icon" }, { "attributes": { "id": "hand-holding-seedling", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4bf", "voted": false }, "id": "hand-holding-seedling", "links": { "self": "/api/icons/hand-holding-seedling" }, "type": "icon" }, { "attributes": { "id": "hand-holding-usd", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4c0", "voted": false }, "id": "hand-holding-usd", "links": { "self": "/api/icons/hand-holding-usd" }, "type": "icon" }, { "attributes": { "id": "hand-holding-water", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4c1", "voted": false }, "id": "hand-holding-water", "links": { "self": "/api/icons/hand-holding-water" }, "type": "icon" }, { "attributes": { "id": "hand-lizard", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f258", "voted": false }, "id": "hand-lizard", "links": { "self": "/api/icons/hand-lizard" }, "type": "icon" }, { "attributes": { "id": "hand-middle-finger", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f806", "voted": true }, "id": "hand-middle-finger", "links": { "self": "/api/icons/hand-middle-finger" }, "type": "icon" }, { "attributes": { "id": "hand-paper", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f256", "voted": false }, "id": "hand-paper", "links": { "self": "/api/icons/hand-paper" }, "type": "icon" }, { "attributes": { "id": "hand-peace", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f25b", "voted": false }, "id": "hand-peace", "links": { "self": "/api/icons/hand-peace" }, "type": "icon" }, { "attributes": { "id": "hand-point-down", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0a7", "voted": false }, "id": "hand-point-down", "links": { "self": "/api/icons/hand-point-down" }, "type": "icon" }, { "attributes": { "id": "hand-point-left", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0a5", "voted": false }, "id": "hand-point-left", "links": { "self": "/api/icons/hand-point-left" }, "type": "icon" }, { - "attributes": { - "id": "hand-point-right", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], - "unicode": "f0a4", "voted": false - }, "id": "hand-point-right", "links": { "self": "/api/icons/hand-point-right" }, "type": "icon" -}, { "attributes": { "id": "hand-point-up", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0a6", "voted": false }, "id": "hand-point-up", "links": { "self": "/api/icons/hand-point-up" }, "type": "icon" }, { "attributes": { "id": "hand-pointer", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f25a", "voted": false }, "id": "hand-pointer", "links": { "self": "/api/icons/hand-pointer" }, "type": "icon" }, { "attributes": { "id": "hand-receiving", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f47c", "voted": false }, "id": "hand-receiving", "links": { "self": "/api/icons/hand-receiving" }, "type": "icon" }, { "attributes": { "id": "hand-rock", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f255", "voted": false }, "id": "hand-rock", "links": { "self": "/api/icons/hand-rock" }, "type": "icon" }, { "attributes": { "id": "hand-scissors", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f257", "voted": false }, "id": "hand-scissors", "links": { "self": "/api/icons/hand-scissors" }, "type": "icon" }, { "attributes": { "id": "hand-sparkles", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f95d", "voted": false }, "id": "hand-sparkles", "links": { "self": "/api/icons/hand-sparkles" }, "type": "icon" }, { "attributes": { "id": "hand-spock", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f259", "voted": false }, "id": "hand-spock", "links": { "self": "/api/icons/hand-spock" }, "type": "icon" }, { "attributes": { "id": "hands", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4c2", "voted": false }, "id": "hands", "links": { "self": "/api/icons/hands" }, "type": "icon" }, { "attributes": { "id": "hands-heart", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4c3", "voted": false }, "id": "hands-heart", "links": { "self": "/api/icons/hands-heart" }, "type": "icon" }, { "attributes": { "id": "hands-helping", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4c4", "voted": false }, "id": "hands-helping", "links": { "self": "/api/icons/hands-helping" }, "type": "icon" }, { "attributes": { "id": "hands-usd", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4c5", "voted": false }, "id": "hands-usd", "links": { "self": "/api/icons/hands-usd" }, "type": "icon" }, { "attributes": { "id": "hands-wash", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f95e", "voted": false }, "id": "hands-wash", "links": { "self": "/api/icons/hands-wash" }, "type": "icon" }, { "attributes": { "id": "handshake", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2b5", "voted": false }, "id": "handshake", "links": { "self": "/api/icons/handshake" }, "type": "icon" }, { "attributes": { "id": "handshake-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4c6", "voted": false }, "id": "handshake-alt", "links": { "self": "/api/icons/handshake-alt" }, "type": "icon" }, { "attributes": { "id": "handshake-alt-slash", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f95f", "voted": false }, "id": "handshake-alt-slash", "links": { "self": "/api/icons/handshake-alt-slash" }, "type": "icon" }, { "attributes": { "id": "handshake-slash", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f960", "voted": false }, "id": "handshake-slash", "links": { "self": "/api/icons/handshake-slash" }, "type": "icon" }, { "attributes": { "id": "hanukiah", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6e6", "voted": false }, "id": "hanukiah", "links": { "self": "/api/icons/hanukiah" }, "type": "icon" }, { "attributes": { "id": "hard-hat", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f807", "voted": true }, "id": "hard-hat", "links": { "self": "/api/icons/hard-hat" }, "type": "icon" }, { "attributes": { "id": "hashtag", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f292", "voted": false }, "id": "hashtag", "links": { "self": "/api/icons/hashtag" }, "type": "icon" }, { "attributes": { "id": "hat-chef", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f86b", "voted": true }, "id": "hat-chef", "links": { "self": "/api/icons/hat-chef" }, "type": "icon" }, { "attributes": { "id": "hat-cowboy", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f8c0", "voted": false }, "id": "hat-cowboy", "links": { "self": "/api/icons/hat-cowboy" }, "type": "icon" }, { "attributes": { "id": "hat-cowboy-side", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f8c1", "voted": false }, "id": "hat-cowboy-side", "links": { "self": "/api/icons/hat-cowboy-side" }, "type": "icon" }, { "attributes": { "id": "hat-santa", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7a7", "voted": false }, "id": "hat-santa", "links": { "self": "/api/icons/hat-santa" }, "type": "icon" }, { "attributes": { "id": "hat-winter", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7a8", "voted": false }, "id": "hat-winter", "links": { "self": "/api/icons/hat-winter" }, "type": "icon" }, { "attributes": { "id": "hat-witch", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6e7", "voted": false }, "id": "hat-witch", "links": { "self": "/api/icons/hat-witch" }, "type": "icon" }, { "attributes": { "id": "hat-wizard", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6e8", "voted": false }, "id": "hat-wizard", "links": { "self": "/api/icons/hat-wizard" }, "type": "icon" }, { "attributes": { "id": "hdd", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0a0", "voted": false }, "id": "hdd", "links": { "self": "/api/icons/hdd" }, "type": "icon" }, { "attributes": { "id": "head-side", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6e9", "voted": false }, "id": "head-side", "links": { "self": "/api/icons/head-side" }, "type": "icon" }, { "attributes": { "id": "head-side-brain", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f808", "voted": false }, "id": "head-side-brain", "links": { "self": "/api/icons/head-side-brain" }, "type": "icon" }, { "attributes": { "id": "head-side-cough", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f961", "voted": false }, "id": "head-side-cough", "links": { "self": "/api/icons/head-side-cough" }, "type": "icon" }, { "attributes": { "id": "head-side-cough-slash", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f962", "voted": false }, "id": "head-side-cough-slash", "links": { "self": "/api/icons/head-side-cough-slash" }, "type": "icon" }, { "attributes": { "id": "head-side-headphones", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8c2", "voted": false }, "id": "head-side-headphones", "links": { "self": "/api/icons/head-side-headphones" }, "type": "icon" }, { "attributes": { "id": "head-side-mask", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f963", "voted": false }, "id": "head-side-mask", "links": { "self": "/api/icons/head-side-mask" }, "type": "icon" }, { "attributes": { "id": "head-side-medical", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f809", "voted": false }, "id": "head-side-medical", "links": { "self": "/api/icons/head-side-medical" }, "type": "icon" }, { "attributes": { "id": "head-side-virus", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f964", "voted": false }, "id": "head-side-virus", "links": { "self": "/api/icons/head-side-virus" }, "type": "icon" }, { "attributes": { "id": "head-vr", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6ea", "voted": true }, "id": "head-vr", "links": { "self": "/api/icons/head-vr" }, "type": "icon" }, { - "attributes": { - "id": "heading", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, - "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1dc", "voted": false - }, "id": "heading", "links": { "self": "/api/icons/heading" }, "type": "icon" -}, { "attributes": { "id": "headphones", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f025", "voted": false }, "id": "headphones", "links": { "self": "/api/icons/headphones" }, "type": "icon" }, { "attributes": { "id": "headphones-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f58f", "voted": true }, "id": "headphones-alt", "links": { "self": "/api/icons/headphones-alt" }, "type": "icon" }, { "attributes": { "id": "headset", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f590", "voted": true }, "id": "headset", "links": { "self": "/api/icons/headset" }, "type": "icon" }, { "attributes": { "id": "heart", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f004", "voted": false }, "id": "heart", "links": { "self": "/api/icons/heart" }, "type": "icon" }, { "attributes": { "id": "heart-broken", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7a9", "voted": true }, "id": "heart-broken", "links": { "self": "/api/icons/heart-broken" }, "type": "icon" }, { "attributes": { "id": "heart-circle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4c7", "voted": false }, "id": "heart-circle", "links": { "self": "/api/icons/heart-circle" }, "type": "icon" }, { "attributes": { "id": "heart-rate", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5f8", "voted": false }, "id": "heart-rate", "links": { "self": "/api/icons/heart-rate" }, "type": "icon" }, { "attributes": { "id": "heart-square", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4c8", "voted": false }, "id": "heart-square", "links": { "self": "/api/icons/heart-square" }, "type": "icon" }, { "attributes": { "id": "heartbeat", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f21e", "voted": false }, "id": "heartbeat", "links": { "self": "/api/icons/heartbeat" }, "type": "icon" }, { "attributes": { "id": "heat", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f90c", "voted": false }, "id": "heat", "links": { "self": "/api/icons/heat" }, "type": "icon" }, { "attributes": { "id": "helicopter", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f533", "voted": true }, "id": "helicopter", "links": { "self": "/api/icons/helicopter" }, "type": "icon" }, { "attributes": { "id": "helmet-battle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6eb", "voted": false }, "id": "helmet-battle", "links": { "self": "/api/icons/helmet-battle" }, "type": "icon" }, { "attributes": { "id": "hexagon", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f312", "voted": false }, "id": "hexagon", "links": { "self": "/api/icons/hexagon" }, "type": "icon" }, { "attributes": { "id": "highlighter", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f591", "voted": true }, "id": "highlighter", "links": { "self": "/api/icons/highlighter" }, "type": "icon" }, { "attributes": { "id": "hiking", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6ec", "voted": false }, "id": "hiking", "links": { "self": "/api/icons/hiking" }, "type": "icon" }, { "attributes": { "id": "hippo", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6ed", "voted": false }, "id": "hippo", "links": { "self": "/api/icons/hippo" }, "type": "icon" }, { "attributes": { "id": "hips", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f452", "voted": false }, "id": "hips", "links": { "self": "/api/icons/hips" }, "type": "icon" }, { "attributes": { "id": "hire-a-helper", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3b0", "voted": false }, "id": "hire-a-helper", "links": { "self": "/api/icons/hire-a-helper" }, "type": "icon" }, { "attributes": { "id": "history", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1da", "voted": false }, "id": "history", "links": { "self": "/api/icons/history" }, "type": "icon" }, { "attributes": { "id": "hockey-mask", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6ee", "voted": false }, "id": "hockey-mask", "links": { "self": "/api/icons/hockey-mask" }, "type": "icon" }, { "attributes": { "id": "hockey-puck", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f453", "voted": false }, "id": "hockey-puck", "links": { "self": "/api/icons/hockey-puck" }, "type": "icon" }, { "attributes": { "id": "hockey-sticks", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f454", "voted": false }, "id": "hockey-sticks", "links": { "self": "/api/icons/hockey-sticks" }, "type": "icon" }, { "attributes": { "id": "holly-berry", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7aa", "voted": false }, "id": "holly-berry", "links": { "self": "/api/icons/holly-berry" }, "type": "icon" }, { "attributes": { "id": "home", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f015", "voted": false }, "id": "home", "links": { "self": "/api/icons/home" }, "type": "icon" }, { "attributes": { "id": "home-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f80a", "voted": false }, "id": "home-alt", "links": { "self": "/api/icons/home-alt" }, "type": "icon" }, { "attributes": { "id": "home-heart", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4c9", "voted": false }, "id": "home-heart", "links": { "self": "/api/icons/home-heart" }, "type": "icon" }, { "attributes": { "id": "home-lg", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f80b", "voted": false }, "id": "home-lg", "links": { "self": "/api/icons/home-lg" }, "type": "icon" }, { "attributes": { "id": "home-lg-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f80c", "voted": false }, "id": "home-lg-alt", "links": { "self": "/api/icons/home-lg-alt" }, "type": "icon" }, { "attributes": { "id": "hood-cloak", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6ef", "voted": false }, "id": "hood-cloak", "links": { "self": "/api/icons/hood-cloak" }, "type": "icon" }, { "attributes": { "id": "hooli", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f427", "voted": false }, "id": "hooli", "links": { "self": "/api/icons/hooli" }, "type": "icon" }, { "attributes": { "id": "horizontal-rule", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f86c", "voted": false }, "id": "horizontal-rule", "links": { "self": "/api/icons/horizontal-rule" }, "type": "icon" }, { "attributes": { "id": "hornbill", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f592", "voted": false }, "id": "hornbill", "links": { "self": "/api/icons/hornbill" }, "type": "icon" }, { "attributes": { "id": "horse", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6f0", "voted": false }, "id": "horse", "links": { "self": "/api/icons/horse" }, "type": "icon" }, { "attributes": { "id": "horse-head", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7ab", "voted": false }, "id": "horse-head", "links": { "self": "/api/icons/horse-head" }, "type": "icon" }, { "attributes": { "id": "horse-saddle", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f8c3", "voted": false }, "id": "horse-saddle", "links": { "self": "/api/icons/horse-saddle" }, "type": "icon" }, { "attributes": { "id": "hospital", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0f8", "voted": false }, "id": "hospital", "links": { "self": "/api/icons/hospital" }, "type": "icon" }, { "attributes": { "id": "hospital-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f47d", "voted": false }, "id": "hospital-alt", "links": { "self": "/api/icons/hospital-alt" }, "type": "icon" }, { "attributes": { "id": "hospital-symbol", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f47e", "voted": false }, "id": "hospital-symbol", "links": { "self": "/api/icons/hospital-symbol" }, "type": "icon" }, { - "attributes": { - "id": "hospital-user", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, - "styles": ["solid", "regular", "light", "duotone"], "unicode": "f80d", "voted": false - }, "id": "hospital-user", "links": { "self": "/api/icons/hospital-user" }, "type": "icon" -}, { "attributes": { "id": "hospitals", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f80e", "voted": false }, "id": "hospitals", "links": { "self": "/api/icons/hospitals" }, "type": "icon" }, { "attributes": { "id": "hot-tub", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f593", "voted": false }, "id": "hot-tub", "links": { "self": "/api/icons/hot-tub" }, "type": "icon" }, { "attributes": { "id": "hotdog", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f80f", "voted": false }, "id": "hotdog", "links": { "self": "/api/icons/hotdog" }, "type": "icon" }, { "attributes": { "id": "hotel", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f594", "voted": false }, "id": "hotel", "links": { "self": "/api/icons/hotel" }, "type": "icon" }, { "attributes": { "id": "hotjar", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3b1", "voted": false }, "id": "hotjar", "links": { "self": "/api/icons/hotjar" }, "type": "icon" }, { "attributes": { "id": "hourglass", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f254", "voted": false }, "id": "hourglass", "links": { "self": "/api/icons/hourglass" }, "type": "icon" }, { "attributes": { "id": "hourglass-end", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f253", "voted": false }, "id": "hourglass-end", "links": { "self": "/api/icons/hourglass-end" }, "type": "icon" }, { "attributes": { "id": "hourglass-half", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f252", "voted": false }, "id": "hourglass-half", "links": { "self": "/api/icons/hourglass-half" }, "type": "icon" }, { "attributes": { "id": "hourglass-start", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f251", "voted": false }, "id": "hourglass-start", "links": { "self": "/api/icons/hourglass-start" }, "type": "icon" }, { "attributes": { "id": "house", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f90d", "voted": false }, "id": "house", "links": { "self": "/api/icons/house" }, "type": "icon" }, { "attributes": { "id": "house-damage", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6f1", "voted": false }, "id": "house-damage", "links": { "self": "/api/icons/house-damage" }, "type": "icon" }, { "attributes": { "id": "house-day", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f90e", "voted": false }, "id": "house-day", "links": { "self": "/api/icons/house-day" }, "type": "icon" }, { "attributes": { "id": "house-flood", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f74f", "voted": false }, "id": "house-flood", "links": { "self": "/api/icons/house-flood" }, "type": "icon" }, { "attributes": { "id": "house-leave", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f90f", "voted": false }, "id": "house-leave", "links": { "self": "/api/icons/house-leave" }, "type": "icon" }, { "attributes": { "id": "house-night", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f910", "voted": false }, "id": "house-night", "links": { "self": "/api/icons/house-night" }, "type": "icon" }, { "attributes": { "id": "house-return", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f911", "voted": false }, "id": "house-return", "links": { "self": "/api/icons/house-return" }, "type": "icon" }, { "attributes": { "id": "house-signal", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f912", "voted": false }, "id": "house-signal", "links": { "self": "/api/icons/house-signal" }, "type": "icon" }, { "attributes": { "id": "house-user", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f965", "voted": false }, "id": "house-user", "links": { "self": "/api/icons/house-user" }, "type": "icon" }, { "attributes": { "id": "houzz", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f27c", "voted": false }, "id": "houzz", "links": { "self": "/api/icons/houzz" }, "type": "icon" }, { "attributes": { "id": "hryvnia", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6f2", "voted": true }, "id": "hryvnia", "links": { "self": "/api/icons/hryvnia" }, "type": "icon" }, { "attributes": { "id": "html5", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f13b", "voted": false }, "id": "html5", "links": { "self": "/api/icons/html5" }, "type": "icon" }, { "attributes": { "id": "hubspot", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3b2", "voted": false }, "id": "hubspot", "links": { "self": "/api/icons/hubspot" }, "type": "icon" }, { "attributes": { "id": "humidity", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f750", "voted": false }, "id": "humidity", "links": { "self": "/api/icons/humidity" }, "type": "icon" }, { "attributes": { "id": "hurricane", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f751", "voted": false }, "id": "hurricane", "links": { "self": "/api/icons/hurricane" }, "type": "icon" }, { "attributes": { "id": "i-cursor", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f246", "voted": false }, "id": "i-cursor", "links": { "self": "/api/icons/i-cursor" }, "type": "icon" }, { "attributes": { "id": "ice-cream", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f810", "voted": false }, "id": "ice-cream", "links": { "self": "/api/icons/ice-cream" }, "type": "icon" }, { "attributes": { "id": "ice-skate", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7ac", "voted": false }, "id": "ice-skate", "links": { "self": "/api/icons/ice-skate" }, "type": "icon" }, { "attributes": { "id": "icicles", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7ad", "voted": false }, "id": "icicles", "links": { "self": "/api/icons/icicles" }, "type": "icon" }, { "attributes": { "id": "icons", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f86d", "voted": false }, "id": "icons", "links": { "self": "/api/icons/icons" }, "type": "icon" }, { "attributes": { "id": "icons-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f86e", "voted": false }, "id": "icons-alt", "links": { "self": "/api/icons/icons-alt" }, "type": "icon" }, { "attributes": { "id": "id-badge", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2c1", "voted": false }, "id": "id-badge", "links": { "self": "/api/icons/id-badge" }, "type": "icon" }, { "attributes": { "id": "id-card", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2c2", "voted": false }, "id": "id-card", "links": { "self": "/api/icons/id-card" }, "type": "icon" }, { "attributes": { "id": "id-card-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f47f", "voted": false }, "id": "id-card-alt", "links": { "self": "/api/icons/id-card-alt" }, "type": "icon" }, { "attributes": { "id": "ideal", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f913", "voted": true }, "id": "ideal", "links": { "self": "/api/icons/ideal" }, "type": "icon" }, { "attributes": { "id": "igloo", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7ae", "voted": false }, "id": "igloo", "links": { "self": "/api/icons/igloo" }, "type": "icon" }, { "attributes": { "id": "image", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f03e", "voted": false }, "id": "image", "links": { "self": "/api/icons/image" }, "type": "icon" }, { "attributes": { "id": "image-polaroid", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8c4", "voted": false }, "id": "image-polaroid", "links": { "self": "/api/icons/image-polaroid" }, "type": "icon" }, { "attributes": { "id": "images", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f302", "voted": false }, "id": "images", "links": { "self": "/api/icons/images" }, "type": "icon" }, { "attributes": { "id": "imdb", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2d8", "voted": false }, "id": "imdb", "links": { "self": "/api/icons/imdb" }, "type": "icon" }, { - "attributes": { - "id": "inbox", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], - "unicode": "f01c", "voted": false - }, "id": "inbox", "links": { "self": "/api/icons/inbox" }, "type": "icon" -}, { "attributes": { "id": "inbox-in", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f310", "voted": false }, "id": "inbox-in", "links": { "self": "/api/icons/inbox-in" }, "type": "icon" }, { "attributes": { "id": "inbox-out", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f311", "voted": false }, "id": "inbox-out", "links": { "self": "/api/icons/inbox-out" }, "type": "icon" }, { "attributes": { "id": "indent", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f03c", "voted": false }, "id": "indent", "links": { "self": "/api/icons/indent" }, "type": "icon" }, { "attributes": { "id": "industry", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f275", "voted": false }, "id": "industry", "links": { "self": "/api/icons/industry" }, "type": "icon" }, { "attributes": { "id": "industry-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3b3", "voted": false }, "id": "industry-alt", "links": { "self": "/api/icons/industry-alt" }, "type": "icon" }, { "attributes": { "id": "infinity", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f534", "voted": true }, "id": "infinity", "links": { "self": "/api/icons/infinity" }, "type": "icon" }, { "attributes": { "id": "info", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f129", "voted": false }, "id": "info", "links": { "self": "/api/icons/info" }, "type": "icon" }, { "attributes": { "id": "info-circle", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f05a", "voted": false }, "id": "info-circle", "links": { "self": "/api/icons/info-circle" }, "type": "icon" }, { "attributes": { "id": "info-square", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f30f", "voted": false }, "id": "info-square", "links": { "self": "/api/icons/info-square" }, "type": "icon" }, { "attributes": { "id": "inhaler", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5f9", "voted": false }, "id": "inhaler", "links": { "self": "/api/icons/inhaler" }, "type": "icon" }, { "attributes": { "id": "instagram", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f16d", "voted": false }, "id": "instagram", "links": { "self": "/api/icons/instagram" }, "type": "icon" }, { "attributes": { "id": "instagram-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f955", "voted": true }, "id": "instagram-square", "links": { "self": "/api/icons/instagram-square" }, "type": "icon" }, { "attributes": { "id": "integral", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f667", "voted": false }, "id": "integral", "links": { "self": "/api/icons/integral" }, "type": "icon" }, { "attributes": { "id": "intercom", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f7af", "voted": false }, "id": "intercom", "links": { "self": "/api/icons/intercom" }, "type": "icon" }, { "attributes": { "id": "internet-explorer", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f26b", "voted": false }, "id": "internet-explorer", "links": { "self": "/api/icons/internet-explorer" }, "type": "icon" }, { "attributes": { "id": "intersection", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f668", "voted": false }, "id": "intersection", "links": { "self": "/api/icons/intersection" }, "type": "icon" }, { "attributes": { "id": "inventory", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f480", "voted": false }, "id": "inventory", "links": { "self": "/api/icons/inventory" }, "type": "icon" }, { "attributes": { "id": "invision", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f7b0", "voted": false }, "id": "invision", "links": { "self": "/api/icons/invision" }, "type": "icon" }, { "attributes": { "id": "ioxhost", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f208", "voted": false }, "id": "ioxhost", "links": { "self": "/api/icons/ioxhost" }, "type": "icon" }, { "attributes": { "id": "island-tropical", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f811", "voted": true }, "id": "island-tropical", "links": { "self": "/api/icons/island-tropical" }, "type": "icon" }, { "attributes": { "id": "italic", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f033", "voted": false }, "id": "italic", "links": { "self": "/api/icons/italic" }, "type": "icon" }, { "attributes": { "id": "itch-io", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f83a", "voted": false }, "id": "itch-io", "links": { "self": "/api/icons/itch-io" }, "type": "icon" }, { "attributes": { "id": "itunes", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3b4", "voted": false }, "id": "itunes", "links": { "self": "/api/icons/itunes" }, "type": "icon" }, { "attributes": { "id": "itunes-note", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3b5", "voted": false }, "id": "itunes-note", "links": { "self": "/api/icons/itunes-note" }, "type": "icon" }, { "attributes": { "id": "jack-o-lantern", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f30e", "voted": false }, "id": "jack-o-lantern", "links": { "self": "/api/icons/jack-o-lantern" }, "type": "icon" }, { "attributes": { "id": "java", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4e4", "voted": false }, "id": "java", "links": { "self": "/api/icons/java" }, "type": "icon" }, { "attributes": { "id": "jedi", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f669", "voted": false }, "id": "jedi", "links": { "self": "/api/icons/jedi" }, "type": "icon" }, { "attributes": { "id": "jedi-order", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f50e", "voted": false }, "id": "jedi-order", "links": { "self": "/api/icons/jedi-order" }, "type": "icon" }, { "attributes": { "id": "jenkins", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3b6", "voted": false }, "id": "jenkins", "links": { "self": "/api/icons/jenkins" }, "type": "icon" }, { "attributes": { "id": "jira", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f7b1", "voted": true }, "id": "jira", "links": { "self": "/api/icons/jira" }, "type": "icon" }, { "attributes": { "id": "joget", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3b7", "voted": false }, "id": "joget", "links": { "self": "/api/icons/joget" }, "type": "icon" }, { "attributes": { "id": "joint", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f595", "voted": false }, "id": "joint", "links": { "self": "/api/icons/joint" }, "type": "icon" }, { "attributes": { "id": "joomla", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1aa", "voted": false }, "id": "joomla", "links": { "self": "/api/icons/joomla" }, "type": "icon" }, { "attributes": { "id": "journal-whills", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f66a", "voted": false }, "id": "journal-whills", "links": { "self": "/api/icons/journal-whills" }, "type": "icon" }, { "attributes": { "id": "joystick", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8c5", "voted": false }, "id": "joystick", "links": { "self": "/api/icons/joystick" }, "type": "icon" }, { "attributes": { "id": "js", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3b8", "voted": false }, "id": "js", "links": { "self": "/api/icons/js" }, "type": "icon" }, { "attributes": { "id": "js-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3b9", "voted": false }, "id": "js-square", "links": { "self": "/api/icons/js-square" }, "type": "icon" }, { "attributes": { "id": "jsfiddle", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1cc", "voted": false }, "id": "jsfiddle", "links": { "self": "/api/icons/jsfiddle" }, "type": "icon" }, { "attributes": { "id": "jug", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f8c6", "voted": false }, "id": "jug", "links": { "self": "/api/icons/jug" }, "type": "icon" }, { "attributes": { "id": "kaaba", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f66b", "voted": false }, "id": "kaaba", "links": { "self": "/api/icons/kaaba" }, "type": "icon" }, { "attributes": { "id": "kaggle", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f5fa", "voted": true }, "id": "kaggle", "links": { "self": "/api/icons/kaggle" }, "type": "icon" }, { "attributes": { "id": "kazoo", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8c7", "voted": false }, "id": "kazoo", "links": { "self": "/api/icons/kazoo" }, "type": "icon" }, { - "attributes": { "id": "kerning", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f86f", "voted": false }, "id": "kerning", "links": { "self": "/api/icons/kerning" }, - "type": "icon" -}, { "attributes": { "id": "key", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f084", "voted": false }, "id": "key", "links": { "self": "/api/icons/key" }, "type": "icon" }, { "attributes": { "id": "key-skeleton", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6f3", "voted": false }, "id": "key-skeleton", "links": { "self": "/api/icons/key-skeleton" }, "type": "icon" }, { "attributes": { "id": "keybase", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4f5", "voted": true }, "id": "keybase", "links": { "self": "/api/icons/keybase" }, "type": "icon" }, { "attributes": { "id": "keyboard", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f11c", "voted": false }, "id": "keyboard", "links": { "self": "/api/icons/keyboard" }, "type": "icon" }, { "attributes": { "id": "keycdn", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3ba", "voted": false }, "id": "keycdn", "links": { "self": "/api/icons/keycdn" }, "type": "icon" }, { "attributes": { "id": "keynote", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f66c", "voted": false }, "id": "keynote", "links": { "self": "/api/icons/keynote" }, "type": "icon" }, { "attributes": { "id": "khanda", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f66d", "voted": false }, "id": "khanda", "links": { "self": "/api/icons/khanda" }, "type": "icon" }, { "attributes": { "id": "kickstarter", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3bb", "voted": false }, "id": "kickstarter", "links": { "self": "/api/icons/kickstarter" }, "type": "icon" }, { "attributes": { "id": "kickstarter-k", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3bc", "voted": false }, "id": "kickstarter-k", "links": { "self": "/api/icons/kickstarter-k" }, "type": "icon" }, { "attributes": { "id": "kidneys", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5fb", "voted": false }, "id": "kidneys", "links": { "self": "/api/icons/kidneys" }, "type": "icon" }, { "attributes": { "id": "kiss", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f596", "voted": false }, "id": "kiss", "links": { "self": "/api/icons/kiss" }, "type": "icon" }, { "attributes": { "id": "kiss-beam", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f597", "voted": false }, "id": "kiss-beam", "links": { "self": "/api/icons/kiss-beam" }, "type": "icon" }, { "attributes": { "id": "kiss-wink-heart", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f598", "voted": false }, "id": "kiss-wink-heart", "links": { "self": "/api/icons/kiss-wink-heart" }, "type": "icon" }, { "attributes": { "id": "kite", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6f4", "voted": false }, "id": "kite", "links": { "self": "/api/icons/kite" }, "type": "icon" }, { "attributes": { "id": "kiwi-bird", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f535", "voted": false }, "id": "kiwi-bird", "links": { "self": "/api/icons/kiwi-bird" }, "type": "icon" }, { "attributes": { "id": "knife-kitchen", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6f5", "voted": false }, "id": "knife-kitchen", "links": { "self": "/api/icons/knife-kitchen" }, "type": "icon" }, { "attributes": { "id": "korvue", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f42f", "voted": false }, "id": "korvue", "links": { "self": "/api/icons/korvue" }, "type": "icon" }, { "attributes": { "id": "lambda", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f66e", "voted": false }, "id": "lambda", "links": { "self": "/api/icons/lambda" }, "type": "icon" }, { "attributes": { "id": "lamp", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4ca", "voted": false }, "id": "lamp", "links": { "self": "/api/icons/lamp" }, "type": "icon" }, { "attributes": { "id": "lamp-desk", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f914", "voted": false }, "id": "lamp-desk", "links": { "self": "/api/icons/lamp-desk" }, "type": "icon" }, { "attributes": { "id": "lamp-floor", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f915", "voted": false }, "id": "lamp-floor", "links": { "self": "/api/icons/lamp-floor" }, "type": "icon" }, { "attributes": { "id": "landmark", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f66f", "voted": false }, "id": "landmark", "links": { "self": "/api/icons/landmark" }, "type": "icon" }, { "attributes": { "id": "landmark-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f752", "voted": false }, "id": "landmark-alt", "links": { "self": "/api/icons/landmark-alt" }, "type": "icon" }, { "attributes": { "id": "language", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1ab", "voted": false }, "id": "language", "links": { "self": "/api/icons/language" }, "type": "icon" }, { "attributes": { "id": "laptop", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f109", "voted": false }, "id": "laptop", "links": { "self": "/api/icons/laptop" }, "type": "icon" }, { "attributes": { "id": "laptop-code", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5fc", "voted": false }, "id": "laptop-code", "links": { "self": "/api/icons/laptop-code" }, "type": "icon" }, { "attributes": { "id": "laptop-house", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f966", "voted": false }, "id": "laptop-house", "links": { "self": "/api/icons/laptop-house" }, "type": "icon" }, { "attributes": { "id": "laptop-medical", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f812", "voted": false }, "id": "laptop-medical", "links": { "self": "/api/icons/laptop-medical" }, "type": "icon" }, { "attributes": { "id": "laravel", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3bd", "voted": false }, "id": "laravel", "links": { "self": "/api/icons/laravel" }, "type": "icon" }, { "attributes": { "id": "lasso", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f8c8", "voted": false }, "id": "lasso", "links": { "self": "/api/icons/lasso" }, "type": "icon" }, { "attributes": { "id": "lastfm", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f202", "voted": false }, "id": "lastfm", "links": { "self": "/api/icons/lastfm" }, "type": "icon" }, { "attributes": { "id": "lastfm-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f203", "voted": false }, "id": "lastfm-square", "links": { "self": "/api/icons/lastfm-square" }, "type": "icon" }, { "attributes": { "id": "laugh", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f599", "voted": false }, "id": "laugh", "links": { "self": "/api/icons/laugh" }, "type": "icon" }, { "attributes": { "id": "laugh-beam", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f59a", "voted": false }, "id": "laugh-beam", "links": { "self": "/api/icons/laugh-beam" }, "type": "icon" }, { "attributes": { "id": "laugh-squint", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f59b", "voted": false }, "id": "laugh-squint", "links": { "self": "/api/icons/laugh-squint" }, "type": "icon" }, { "attributes": { "id": "laugh-wink", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f59c", "voted": false }, "id": "laugh-wink", "links": { "self": "/api/icons/laugh-wink" }, "type": "icon" }, { "attributes": { "id": "layer-group", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5fd", "voted": false }, "id": "layer-group", "links": { "self": "/api/icons/layer-group" }, "type": "icon" }, { "attributes": { "id": "layer-minus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5fe", "voted": false }, "id": "layer-minus", "links": { "self": "/api/icons/layer-minus" }, "type": "icon" }, { "attributes": { "id": "layer-plus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5ff", "voted": false }, "id": "layer-plus", "links": { "self": "/api/icons/layer-plus" }, "type": "icon" }, { "attributes": { "id": "leaf", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f06c", "voted": false }, "id": "leaf", "links": { "self": "/api/icons/leaf" }, "type": "icon" }, { - "attributes": { - "id": "leaf-heart", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, - "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4cb", "voted": false - }, "id": "leaf-heart", "links": { "self": "/api/icons/leaf-heart" }, "type": "icon" -}, { "attributes": { "id": "leaf-maple", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6f6", "voted": false }, "id": "leaf-maple", "links": { "self": "/api/icons/leaf-maple" }, "type": "icon" }, { "attributes": { "id": "leaf-oak", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6f7", "voted": false }, "id": "leaf-oak", "links": { "self": "/api/icons/leaf-oak" }, "type": "icon" }, { "attributes": { "id": "leanpub", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f212", "voted": false }, "id": "leanpub", "links": { "self": "/api/icons/leanpub" }, "type": "icon" }, { "attributes": { "id": "lemon", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f094", "voted": false }, "id": "lemon", "links": { "self": "/api/icons/lemon" }, "type": "icon" }, { "attributes": { "id": "less", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f41d", "voted": false }, "id": "less", "links": { "self": "/api/icons/less" }, "type": "icon" }, { "attributes": { "id": "less-than", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f536", "voted": true }, "id": "less-than", "links": { "self": "/api/icons/less-than" }, "type": "icon" }, { "attributes": { "id": "less-than-equal", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f537", "voted": true }, "id": "less-than-equal", "links": { "self": "/api/icons/less-than-equal" }, "type": "icon" }, { "attributes": { "id": "level-down", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f149", "voted": false }, "id": "level-down", "links": { "self": "/api/icons/level-down" }, "type": "icon" }, { "attributes": { "id": "level-down-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3be", "voted": false }, "id": "level-down-alt", "links": { "self": "/api/icons/level-down-alt" }, "type": "icon" }, { "attributes": { "id": "level-up", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f148", "voted": false }, "id": "level-up", "links": { "self": "/api/icons/level-up" }, "type": "icon" }, { "attributes": { "id": "level-up-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3bf", "voted": false }, "id": "level-up-alt", "links": { "self": "/api/icons/level-up-alt" }, "type": "icon" }, { "attributes": { "id": "life-ring", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1cd", "voted": false }, "id": "life-ring", "links": { "self": "/api/icons/life-ring" }, "type": "icon" }, { "attributes": { "id": "light-ceiling", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f916", "voted": false }, "id": "light-ceiling", "links": { "self": "/api/icons/light-ceiling" }, "type": "icon" }, { "attributes": { "id": "light-switch", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f917", "voted": false }, "id": "light-switch", "links": { "self": "/api/icons/light-switch" }, "type": "icon" }, { "attributes": { "id": "light-switch-off", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f918", "voted": false }, "id": "light-switch-off", "links": { "self": "/api/icons/light-switch-off" }, "type": "icon" }, { "attributes": { "id": "light-switch-on", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f919", "voted": false }, "id": "light-switch-on", "links": { "self": "/api/icons/light-switch-on" }, "type": "icon" }, { "attributes": { "id": "lightbulb", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0eb", "voted": false }, "id": "lightbulb", "links": { "self": "/api/icons/lightbulb" }, "type": "icon" }, { "attributes": { "id": "lightbulb-dollar", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f670", "voted": false }, "id": "lightbulb-dollar", "links": { "self": "/api/icons/lightbulb-dollar" }, "type": "icon" }, { "attributes": { "id": "lightbulb-exclamation", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f671", "voted": false }, "id": "lightbulb-exclamation", "links": { "self": "/api/icons/lightbulb-exclamation" }, "type": "icon" }, { "attributes": { "id": "lightbulb-on", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f672", "voted": false }, "id": "lightbulb-on", "links": { "self": "/api/icons/lightbulb-on" }, "type": "icon" }, { "attributes": { "id": "lightbulb-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f673", "voted": false }, "id": "lightbulb-slash", "links": { "self": "/api/icons/lightbulb-slash" }, "type": "icon" }, { "attributes": { "id": "lights-holiday", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7b2", "voted": false }, "id": "lights-holiday", "links": { "self": "/api/icons/lights-holiday" }, "type": "icon" }, { "attributes": { "id": "line", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3c0", "voted": false }, "id": "line", "links": { "self": "/api/icons/line" }, "type": "icon" }, { "attributes": { "id": "line-columns", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f870", "voted": false }, "id": "line-columns", "links": { "self": "/api/icons/line-columns" }, "type": "icon" }, { "attributes": { "id": "line-height", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f871", "voted": false }, "id": "line-height", "links": { "self": "/api/icons/line-height" }, "type": "icon" }, { "attributes": { "id": "link", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0c1", "voted": false }, "id": "link", "links": { "self": "/api/icons/link" }, "type": "icon" }, { "attributes": { "id": "linkedin", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f08c", "voted": false }, "id": "linkedin", "links": { "self": "/api/icons/linkedin" }, "type": "icon" }, { "attributes": { "id": "linkedin-in", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f0e1", "voted": false }, "id": "linkedin-in", "links": { "self": "/api/icons/linkedin-in" }, "type": "icon" }, { "attributes": { "id": "linode", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2b8", "voted": false }, "id": "linode", "links": { "self": "/api/icons/linode" }, "type": "icon" }, { "attributes": { "id": "linux", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f17c", "voted": false }, "id": "linux", "links": { "self": "/api/icons/linux" }, "type": "icon" }, { "attributes": { "id": "lips", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f600", "voted": false }, "id": "lips", "links": { "self": "/api/icons/lips" }, "type": "icon" }, { "attributes": { "id": "lira-sign", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f195", "voted": false }, "id": "lira-sign", "links": { "self": "/api/icons/lira-sign" }, "type": "icon" }, { "attributes": { "id": "list", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f03a", "voted": false }, "id": "list", "links": { "self": "/api/icons/list" }, "type": "icon" }, { "attributes": { "id": "list-alt", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f022", "voted": false }, "id": "list-alt", "links": { "self": "/api/icons/list-alt" }, "type": "icon" }, { "attributes": { "id": "list-music", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8c9", "voted": false }, "id": "list-music", "links": { "self": "/api/icons/list-music" }, "type": "icon" }, { "attributes": { "id": "list-ol", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0cb", "voted": false }, "id": "list-ol", "links": { "self": "/api/icons/list-ol" }, "type": "icon" }, { "attributes": { "id": "list-ul", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0ca", "voted": false }, "id": "list-ul", "links": { "self": "/api/icons/list-ul" }, "type": "icon" }, { "attributes": { "id": "location", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f601", "voted": false }, "id": "location", "links": { "self": "/api/icons/location" }, "type": "icon" }, { - "attributes": { "id": "location-arrow", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f124", "voted": false }, - "id": "location-arrow", "links": { "self": "/api/icons/location-arrow" }, "type": "icon" -}, { "attributes": { "id": "location-circle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f602", "voted": false }, "id": "location-circle", "links": { "self": "/api/icons/location-circle" }, "type": "icon" }, { "attributes": { "id": "location-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f603", "voted": false }, "id": "location-slash", "links": { "self": "/api/icons/location-slash" }, "type": "icon" }, { "attributes": { "id": "lock", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f023", "voted": false }, "id": "lock", "links": { "self": "/api/icons/lock" }, "type": "icon" }, { "attributes": { "id": "lock-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f30d", "voted": false }, "id": "lock-alt", "links": { "self": "/api/icons/lock-alt" }, "type": "icon" }, { "attributes": { "id": "lock-open", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3c1", "voted": false }, "id": "lock-open", "links": { "self": "/api/icons/lock-open" }, "type": "icon" }, { "attributes": { "id": "lock-open-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3c2", "voted": false }, "id": "lock-open-alt", "links": { "self": "/api/icons/lock-open-alt" }, "type": "icon" }, { "attributes": { "id": "long-arrow-alt-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f309", "voted": false }, "id": "long-arrow-alt-down", "links": { "self": "/api/icons/long-arrow-alt-down" }, "type": "icon" }, { "attributes": { "id": "long-arrow-alt-left", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f30a", "voted": false }, "id": "long-arrow-alt-left", "links": { "self": "/api/icons/long-arrow-alt-left" }, "type": "icon" }, { "attributes": { "id": "long-arrow-alt-right", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f30b", "voted": false }, "id": "long-arrow-alt-right", "links": { "self": "/api/icons/long-arrow-alt-right" }, "type": "icon" }, { "attributes": { "id": "long-arrow-alt-up", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f30c", "voted": false }, "id": "long-arrow-alt-up", "links": { "self": "/api/icons/long-arrow-alt-up" }, "type": "icon" }, { "attributes": { "id": "long-arrow-down", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f175", "voted": false }, "id": "long-arrow-down", "links": { "self": "/api/icons/long-arrow-down" }, "type": "icon" }, { "attributes": { "id": "long-arrow-left", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f177", "voted": false }, "id": "long-arrow-left", "links": { "self": "/api/icons/long-arrow-left" }, "type": "icon" }, { "attributes": { "id": "long-arrow-right", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f178", "voted": false }, "id": "long-arrow-right", "links": { "self": "/api/icons/long-arrow-right" }, "type": "icon" }, { "attributes": { "id": "long-arrow-up", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f176", "voted": false }, "id": "long-arrow-up", "links": { "self": "/api/icons/long-arrow-up" }, "type": "icon" }, { "attributes": { "id": "loveseat", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4cc", "voted": false }, "id": "loveseat", "links": { "self": "/api/icons/loveseat" }, "type": "icon" }, { "attributes": { "id": "low-vision", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2a8", "voted": false }, "id": "low-vision", "links": { "self": "/api/icons/low-vision" }, "type": "icon" }, { "attributes": { "id": "luchador", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f455", "voted": false }, "id": "luchador", "links": { "self": "/api/icons/luchador" }, "type": "icon" }, { "attributes": { "id": "luggage-cart", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f59d", "voted": false }, "id": "luggage-cart", "links": { "self": "/api/icons/luggage-cart" }, "type": "icon" }, { "attributes": { "id": "lungs", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f604", "voted": false }, "id": "lungs", "links": { "self": "/api/icons/lungs" }, "type": "icon" }, { "attributes": { "id": "lungs-virus", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f967", "voted": false }, "id": "lungs-virus", "links": { "self": "/api/icons/lungs-virus" }, "type": "icon" }, { "attributes": { "id": "lyft", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3c3", "voted": false }, "id": "lyft", "links": { "self": "/api/icons/lyft" }, "type": "icon" }, { "attributes": { "id": "mace", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6f8", "voted": false }, "id": "mace", "links": { "self": "/api/icons/mace" }, "type": "icon" }, { "attributes": { "id": "magento", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3c4", "voted": false }, "id": "magento", "links": { "self": "/api/icons/magento" }, "type": "icon" }, { "attributes": { "id": "magic", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0d0", "voted": false }, "id": "magic", "links": { "self": "/api/icons/magic" }, "type": "icon" }, { "attributes": { "id": "magnet", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f076", "voted": false }, "id": "magnet", "links": { "self": "/api/icons/magnet" }, "type": "icon" }, { "attributes": { "id": "mail-bulk", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f674", "voted": false }, "id": "mail-bulk", "links": { "self": "/api/icons/mail-bulk" }, "type": "icon" }, { "attributes": { "id": "mailbox", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f813", "voted": true }, "id": "mailbox", "links": { "self": "/api/icons/mailbox" }, "type": "icon" }, { "attributes": { "id": "mailchimp", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f59e", "voted": true }, "id": "mailchimp", "links": { "self": "/api/icons/mailchimp" }, "type": "icon" }, { "attributes": { "id": "male", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f183", "voted": false }, "id": "male", "links": { "self": "/api/icons/male" }, "type": "icon" }, { "attributes": { "id": "mandalorian", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f50f", "voted": false }, "id": "mandalorian", "links": { "self": "/api/icons/mandalorian" }, "type": "icon" }, { "attributes": { "id": "mandolin", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6f9", "voted": false }, "id": "mandolin", "links": { "self": "/api/icons/mandolin" }, "type": "icon" }, { "attributes": { "id": "map", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f279", "voted": false }, "id": "map", "links": { "self": "/api/icons/map" }, "type": "icon" }, { "attributes": { "id": "map-marked", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f59f", "voted": false }, "id": "map-marked", "links": { "self": "/api/icons/map-marked" }, "type": "icon" }, { "attributes": { "id": "map-marked-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5a0", "voted": false }, "id": "map-marked-alt", "links": { "self": "/api/icons/map-marked-alt" }, "type": "icon" }, { "attributes": { "id": "map-marker", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f041", "voted": false }, "id": "map-marker", "links": { "self": "/api/icons/map-marker" }, "type": "icon" }, { "attributes": { "id": "map-marker-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3c5", "voted": false }, "id": "map-marker-alt", "links": { "self": "/api/icons/map-marker-alt" }, "type": "icon" }, { "attributes": { "id": "map-marker-alt-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f605", "voted": false }, "id": "map-marker-alt-slash", "links": { "self": "/api/icons/map-marker-alt-slash" }, "type": "icon" }, { "attributes": { "id": "map-marker-check", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f606", "voted": false }, "id": "map-marker-check", "links": { "self": "/api/icons/map-marker-check" }, "type": "icon" }, { - "attributes": { - "id": "map-marker-edit", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f607", - "voted": false - }, "id": "map-marker-edit", "links": { "self": "/api/icons/map-marker-edit" }, "type": "icon" -}, { "attributes": { "id": "map-marker-exclamation", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f608", "voted": false }, "id": "map-marker-exclamation", "links": { "self": "/api/icons/map-marker-exclamation" }, "type": "icon" }, { "attributes": { "id": "map-marker-minus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f609", "voted": false }, "id": "map-marker-minus", "links": { "self": "/api/icons/map-marker-minus" }, "type": "icon" }, { "attributes": { "id": "map-marker-plus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f60a", "voted": false }, "id": "map-marker-plus", "links": { "self": "/api/icons/map-marker-plus" }, "type": "icon" }, { "attributes": { "id": "map-marker-question", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f60b", "voted": false }, "id": "map-marker-question", "links": { "self": "/api/icons/map-marker-question" }, "type": "icon" }, { "attributes": { "id": "map-marker-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f60c", "voted": false }, "id": "map-marker-slash", "links": { "self": "/api/icons/map-marker-slash" }, "type": "icon" }, { "attributes": { "id": "map-marker-smile", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f60d", "voted": false }, "id": "map-marker-smile", "links": { "self": "/api/icons/map-marker-smile" }, "type": "icon" }, { "attributes": { "id": "map-marker-times", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f60e", "voted": false }, "id": "map-marker-times", "links": { "self": "/api/icons/map-marker-times" }, "type": "icon" }, { "attributes": { "id": "map-pin", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f276", "voted": false }, "id": "map-pin", "links": { "self": "/api/icons/map-pin" }, "type": "icon" }, { "attributes": { "id": "map-signs", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f277", "voted": false }, "id": "map-signs", "links": { "self": "/api/icons/map-signs" }, "type": "icon" }, { "attributes": { "id": "markdown", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f60f", "voted": true }, "id": "markdown", "links": { "self": "/api/icons/markdown" }, "type": "icon" }, { "attributes": { "id": "marker", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5a1", "voted": true }, "id": "marker", "links": { "self": "/api/icons/marker" }, "type": "icon" }, { "attributes": { "id": "mars", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f222", "voted": false }, "id": "mars", "links": { "self": "/api/icons/mars" }, "type": "icon" }, { "attributes": { "id": "mars-double", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f227", "voted": false }, "id": "mars-double", "links": { "self": "/api/icons/mars-double" }, "type": "icon" }, { "attributes": { "id": "mars-stroke", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f229", "voted": false }, "id": "mars-stroke", "links": { "self": "/api/icons/mars-stroke" }, "type": "icon" }, { "attributes": { "id": "mars-stroke-h", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f22b", "voted": false }, "id": "mars-stroke-h", "links": { "self": "/api/icons/mars-stroke-h" }, "type": "icon" }, { "attributes": { "id": "mars-stroke-v", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f22a", "voted": false }, "id": "mars-stroke-v", "links": { "self": "/api/icons/mars-stroke-v" }, "type": "icon" }, { "attributes": { "id": "mask", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6fa", "voted": false }, "id": "mask", "links": { "self": "/api/icons/mask" }, "type": "icon" }, { "attributes": { "id": "mastodon", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4f6", "voted": true }, "id": "mastodon", "links": { "self": "/api/icons/mastodon" }, "type": "icon" }, { "attributes": { "id": "maxcdn", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f136", "voted": false }, "id": "maxcdn", "links": { "self": "/api/icons/maxcdn" }, "type": "icon" }, { "attributes": { "id": "mdb", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f8ca", "voted": false }, "id": "mdb", "links": { "self": "/api/icons/mdb" }, "type": "icon" }, { "attributes": { "id": "meat", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f814", "voted": false }, "id": "meat", "links": { "self": "/api/icons/meat" }, "type": "icon" }, { "attributes": { "id": "medal", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5a2", "voted": true }, "id": "medal", "links": { "self": "/api/icons/medal" }, "type": "icon" }, { "attributes": { "id": "medapps", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3c6", "voted": false }, "id": "medapps", "links": { "self": "/api/icons/medapps" }, "type": "icon" }, { "attributes": { "id": "medium", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f23a", "voted": false }, "id": "medium", "links": { "self": "/api/icons/medium" }, "type": "icon" }, { "attributes": { "id": "medium-m", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3c7", "voted": false }, "id": "medium-m", "links": { "self": "/api/icons/medium-m" }, "type": "icon" }, { "attributes": { "id": "medkit", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0fa", "voted": false }, "id": "medkit", "links": { "self": "/api/icons/medkit" }, "type": "icon" }, { "attributes": { "id": "medrt", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3c8", "voted": false }, "id": "medrt", "links": { "self": "/api/icons/medrt" }, "type": "icon" }, { "attributes": { "id": "meetup", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2e0", "voted": false }, "id": "meetup", "links": { "self": "/api/icons/meetup" }, "type": "icon" }, { "attributes": { "id": "megaphone", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f675", "voted": false }, "id": "megaphone", "links": { "self": "/api/icons/megaphone" }, "type": "icon" }, { "attributes": { "id": "megaport", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f5a3", "voted": false }, "id": "megaport", "links": { "self": "/api/icons/megaport" }, "type": "icon" }, { "attributes": { "id": "meh", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f11a", "voted": false }, "id": "meh", "links": { "self": "/api/icons/meh" }, "type": "icon" }, { "attributes": { "id": "meh-blank", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5a4", "voted": false }, "id": "meh-blank", "links": { "self": "/api/icons/meh-blank" }, "type": "icon" }, { "attributes": { "id": "meh-rolling-eyes", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5a5", "voted": false }, "id": "meh-rolling-eyes", "links": { "self": "/api/icons/meh-rolling-eyes" }, "type": "icon" }, { "attributes": { "id": "memory", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f538", "voted": true }, "id": "memory", "links": { "self": "/api/icons/memory" }, "type": "icon" }, { "attributes": { "id": "mendeley", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f7b3", "voted": true }, "id": "mendeley", "links": { "self": "/api/icons/mendeley" }, "type": "icon" }, { "attributes": { "id": "menorah", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f676", "voted": false }, "id": "menorah", "links": { "self": "/api/icons/menorah" }, "type": "icon" }, { "attributes": { "id": "mercury", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f223", "voted": false }, "id": "mercury", "links": { "self": "/api/icons/mercury" }, "type": "icon" }, { "attributes": { "id": "meteor", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f753", "voted": false }, "id": "meteor", "links": { "self": "/api/icons/meteor" }, "type": "icon" }, { "attributes": { "id": "microblog", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f91a", "voted": true }, "id": "microblog", "links": { "self": "/api/icons/microblog" }, "type": "icon" }, { "attributes": { "id": "microchip", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2db", "voted": false }, "id": "microchip", "links": { "self": "/api/icons/microchip" }, "type": "icon" }, { - "attributes": { "id": "microphone", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f130", "voted": false }, - "id": "microphone", "links": { "self": "/api/icons/microphone" }, "type": "icon" -}, { "attributes": { "id": "microphone-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3c9", "voted": false }, "id": "microphone-alt", "links": { "self": "/api/icons/microphone-alt" }, "type": "icon" }, { "attributes": { "id": "microphone-alt-slash", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f539", "voted": false }, "id": "microphone-alt-slash", "links": { "self": "/api/icons/microphone-alt-slash" }, "type": "icon" }, { "attributes": { "id": "microphone-slash", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f131", "voted": false }, "id": "microphone-slash", "links": { "self": "/api/icons/microphone-slash" }, "type": "icon" }, { "attributes": { "id": "microphone-stand", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8cb", "voted": false }, "id": "microphone-stand", "links": { "self": "/api/icons/microphone-stand" }, "type": "icon" }, { "attributes": { "id": "microscope", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f610", "voted": false }, "id": "microscope", "links": { "self": "/api/icons/microscope" }, "type": "icon" }, { "attributes": { "id": "microsoft", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3ca", "voted": true }, "id": "microsoft", "links": { "self": "/api/icons/microsoft" }, "type": "icon" }, { "attributes": { "id": "microwave", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f91b", "voted": false }, "id": "microwave", "links": { "self": "/api/icons/microwave" }, "type": "icon" }, { "attributes": { "id": "mind-share", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f677", "voted": false }, "id": "mind-share", "links": { "self": "/api/icons/mind-share" }, "type": "icon" }, { "attributes": { "id": "minus", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f068", "voted": false }, "id": "minus", "links": { "self": "/api/icons/minus" }, "type": "icon" }, { "attributes": { "id": "minus-circle", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f056", "voted": false }, "id": "minus-circle", "links": { "self": "/api/icons/minus-circle" }, "type": "icon" }, { "attributes": { "id": "minus-hexagon", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f307", "voted": false }, "id": "minus-hexagon", "links": { "self": "/api/icons/minus-hexagon" }, "type": "icon" }, { "attributes": { "id": "minus-octagon", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f308", "voted": false }, "id": "minus-octagon", "links": { "self": "/api/icons/minus-octagon" }, "type": "icon" }, { "attributes": { "id": "minus-square", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f146", "voted": false }, "id": "minus-square", "links": { "self": "/api/icons/minus-square" }, "type": "icon" }, { "attributes": { "id": "mistletoe", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7b4", "voted": false }, "id": "mistletoe", "links": { "self": "/api/icons/mistletoe" }, "type": "icon" }, { "attributes": { "id": "mitten", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7b5", "voted": false }, "id": "mitten", "links": { "self": "/api/icons/mitten" }, "type": "icon" }, { "attributes": { "id": "mix", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3cb", "voted": false }, "id": "mix", "links": { "self": "/api/icons/mix" }, "type": "icon" }, { "attributes": { "id": "mixcloud", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f289", "voted": false }, "id": "mixcloud", "links": { "self": "/api/icons/mixcloud" }, "type": "icon" }, { "attributes": { "id": "mixer", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f956", "voted": true }, "id": "mixer", "links": { "self": "/api/icons/mixer" }, "type": "icon" }, { "attributes": { "id": "mizuni", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3cc", "voted": false }, "id": "mizuni", "links": { "self": "/api/icons/mizuni" }, "type": "icon" }, { "attributes": { "id": "mobile", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f10b", "voted": false }, "id": "mobile", "links": { "self": "/api/icons/mobile" }, "type": "icon" }, { "attributes": { "id": "mobile-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3cd", "voted": false }, "id": "mobile-alt", "links": { "self": "/api/icons/mobile-alt" }, "type": "icon" }, { "attributes": { "id": "mobile-android", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3ce", "voted": false }, "id": "mobile-android", "links": { "self": "/api/icons/mobile-android" }, "type": "icon" }, { "attributes": { "id": "mobile-android-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3cf", "voted": false }, "id": "mobile-android-alt", "links": { "self": "/api/icons/mobile-android-alt" }, "type": "icon" }, { "attributes": { "id": "modx", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f285", "voted": false }, "id": "modx", "links": { "self": "/api/icons/modx" }, "type": "icon" }, { "attributes": { "id": "monero", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3d0", "voted": false }, "id": "monero", "links": { "self": "/api/icons/monero" }, "type": "icon" }, { "attributes": { "id": "money-bill", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0d6", "voted": false }, "id": "money-bill", "links": { "self": "/api/icons/money-bill" }, "type": "icon" }, { "attributes": { "id": "money-bill-alt", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3d1", "voted": false }, "id": "money-bill-alt", "links": { "self": "/api/icons/money-bill-alt" }, "type": "icon" }, { "attributes": { "id": "money-bill-wave", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f53a", "voted": true }, "id": "money-bill-wave", "links": { "self": "/api/icons/money-bill-wave" }, "type": "icon" }, { "attributes": { "id": "money-bill-wave-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f53b", "voted": true }, "id": "money-bill-wave-alt", "links": { "self": "/api/icons/money-bill-wave-alt" }, "type": "icon" }, { "attributes": { "id": "money-check", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f53c", "voted": true }, "id": "money-check", "links": { "self": "/api/icons/money-check" }, "type": "icon" }, { "attributes": { "id": "money-check-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f53d", "voted": true }, "id": "money-check-alt", "links": { "self": "/api/icons/money-check-alt" }, "type": "icon" }, { "attributes": { "id": "money-check-edit", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f872", "voted": true }, "id": "money-check-edit", "links": { "self": "/api/icons/money-check-edit" }, "type": "icon" }, { "attributes": { "id": "money-check-edit-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f873", "voted": true }, "id": "money-check-edit-alt", "links": { "self": "/api/icons/money-check-edit-alt" }, "type": "icon" }, { "attributes": { "id": "monitor-heart-rate", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f611", "voted": false }, "id": "monitor-heart-rate", "links": { "self": "/api/icons/monitor-heart-rate" }, "type": "icon" }, { "attributes": { "id": "monkey", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6fb", "voted": false }, "id": "monkey", "links": { "self": "/api/icons/monkey" }, "type": "icon" }, { "attributes": { "id": "monument", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5a6", "voted": false }, "id": "monument", "links": { "self": "/api/icons/monument" }, "type": "icon" }, { "attributes": { "id": "moon", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f186", "voted": false }, "id": "moon", "links": { "self": "/api/icons/moon" }, "type": "icon" }, { "attributes": { "id": "moon-cloud", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f754", "voted": false }, "id": "moon-cloud", "links": { "self": "/api/icons/moon-cloud" }, "type": "icon" }, { "attributes": { "id": "moon-stars", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f755", "voted": false }, "id": "moon-stars", "links": { "self": "/api/icons/moon-stars" }, "type": "icon" }, { - "attributes": - { "id": "mortar-pestle", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5a7", "voted": false }, "id": "mortar-pestle", "links": { "self": "/api/icons/mortar-pestle" }, "type": "icon" -}, { "attributes": { "id": "mosque", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f678", "voted": false }, "id": "mosque", "links": { "self": "/api/icons/mosque" }, "type": "icon" }, { "attributes": { "id": "motorcycle", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f21c", "voted": false }, "id": "motorcycle", "links": { "self": "/api/icons/motorcycle" }, "type": "icon" }, { "attributes": { "id": "mountain", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6fc", "voted": false }, "id": "mountain", "links": { "self": "/api/icons/mountain" }, "type": "icon" }, { "attributes": { "id": "mountains", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6fd", "voted": false }, "id": "mountains", "links": { "self": "/api/icons/mountains" }, "type": "icon" }, { "attributes": { "id": "mouse", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8cc", "voted": true }, "id": "mouse", "links": { "self": "/api/icons/mouse" }, "type": "icon" }, { "attributes": { "id": "mouse-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8cd", "voted": false }, "id": "mouse-alt", "links": { "self": "/api/icons/mouse-alt" }, "type": "icon" }, { "attributes": { "id": "mouse-pointer", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f245", "voted": false }, "id": "mouse-pointer", "links": { "self": "/api/icons/mouse-pointer" }, "type": "icon" }, { "attributes": { "id": "mp3-player", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8ce", "voted": false }, "id": "mp3-player", "links": { "self": "/api/icons/mp3-player" }, "type": "icon" }, { "attributes": { "id": "mug", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f874", "voted": false }, "id": "mug", "links": { "self": "/api/icons/mug" }, "type": "icon" }, { "attributes": { "id": "mug-hot", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7b6", "voted": false }, "id": "mug-hot", "links": { "self": "/api/icons/mug-hot" }, "type": "icon" }, { "attributes": { "id": "mug-marshmallows", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7b7", "voted": false }, "id": "mug-marshmallows", "links": { "self": "/api/icons/mug-marshmallows" }, "type": "icon" }, { "attributes": { "id": "mug-tea", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f875", "voted": false }, "id": "mug-tea", "links": { "self": "/api/icons/mug-tea" }, "type": "icon" }, { "attributes": { "id": "music", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f001", "voted": false }, "id": "music", "links": { "self": "/api/icons/music" }, "type": "icon" }, { "attributes": { "id": "music-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8cf", "voted": false }, "id": "music-alt", "links": { "self": "/api/icons/music-alt" }, "type": "icon" }, { "attributes": { "id": "music-alt-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8d0", "voted": false }, "id": "music-alt-slash", "links": { "self": "/api/icons/music-alt-slash" }, "type": "icon" }, { "attributes": { "id": "music-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8d1", "voted": false }, "id": "music-slash", "links": { "self": "/api/icons/music-slash" }, "type": "icon" }, { "attributes": { "id": "napster", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3d2", "voted": false }, "id": "napster", "links": { "self": "/api/icons/napster" }, "type": "icon" }, { "attributes": { "id": "narwhal", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6fe", "voted": false }, "id": "narwhal", "links": { "self": "/api/icons/narwhal" }, "type": "icon" }, { "attributes": { "id": "neos", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f612", "voted": true }, "id": "neos", "links": { "self": "/api/icons/neos" }, "type": "icon" }, { "attributes": { "id": "network-wired", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6ff", "voted": true }, "id": "network-wired", "links": { "self": "/api/icons/network-wired" }, "type": "icon" }, { "attributes": { "id": "neuter", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f22c", "voted": false }, "id": "neuter", "links": { "self": "/api/icons/neuter" }, "type": "icon" }, { "attributes": { "id": "newspaper", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1ea", "voted": false }, "id": "newspaper", "links": { "self": "/api/icons/newspaper" }, "type": "icon" }, { "attributes": { "id": "nimblr", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f5a8", "voted": false }, "id": "nimblr", "links": { "self": "/api/icons/nimblr" }, "type": "icon" }, { "attributes": { "id": "node", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f419", "voted": true }, "id": "node", "links": { "self": "/api/icons/node" }, "type": "icon" }, { "attributes": { "id": "node-js", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3d3", "voted": false }, "id": "node-js", "links": { "self": "/api/icons/node-js" }, "type": "icon" }, { "attributes": { "id": "not-equal", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f53e", "voted": true }, "id": "not-equal", "links": { "self": "/api/icons/not-equal" }, "type": "icon" }, { "attributes": { "id": "notes-medical", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f481", "voted": false }, "id": "notes-medical", "links": { "self": "/api/icons/notes-medical" }, "type": "icon" }, { "attributes": { "id": "npm", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3d4", "voted": false }, "id": "npm", "links": { "self": "/api/icons/npm" }, "type": "icon" }, { "attributes": { "id": "ns8", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3d5", "voted": false }, "id": "ns8", "links": { "self": "/api/icons/ns8" }, "type": "icon" }, { "attributes": { "id": "nutritionix", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3d6", "voted": false }, "id": "nutritionix", "links": { "self": "/api/icons/nutritionix" }, "type": "icon" }, { "attributes": { "id": "object-group", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f247", "voted": false }, "id": "object-group", "links": { "self": "/api/icons/object-group" }, "type": "icon" }, { "attributes": { "id": "object-ungroup", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f248", "voted": false }, "id": "object-ungroup", "links": { "self": "/api/icons/object-ungroup" }, "type": "icon" }, { "attributes": { "id": "octagon", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f306", "voted": false }, "id": "octagon", "links": { "self": "/api/icons/octagon" }, "type": "icon" }, { "attributes": { "id": "odnoklassniki", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f263", "voted": false }, "id": "odnoklassniki", "links": { "self": "/api/icons/odnoklassniki" }, "type": "icon" }, { "attributes": { "id": "odnoklassniki-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f264", "voted": false }, "id": "odnoklassniki-square", "links": { "self": "/api/icons/odnoklassniki-square" }, "type": "icon" }, { "attributes": { "id": "oil-can", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f613", "voted": false }, "id": "oil-can", "links": { "self": "/api/icons/oil-can" }, "type": "icon" }, { "attributes": { "id": "oil-temp", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f614", "voted": false }, "id": "oil-temp", "links": { "self": "/api/icons/oil-temp" }, "type": "icon" }, { "attributes": { "id": "old-republic", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f510", "voted": false }, "id": "old-republic", "links": { "self": "/api/icons/old-republic" }, "type": "icon" }, { "attributes": { "id": "om", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f679", "voted": false }, "id": "om", "links": { "self": "/api/icons/om" }, "type": "icon" }, { "attributes": { "id": "omega", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f67a", "voted": false }, "id": "omega", "links": { "self": "/api/icons/omega" }, "type": "icon" }, { - "attributes": { - "id": "opencart", "membership": - { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f23d", "voted": false - }, "id": "opencart", "links": { "self": "/api/icons/opencart" }, "type": "icon" -}, { "attributes": { "id": "openid", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f19b", "voted": false }, "id": "openid", "links": { "self": "/api/icons/openid" }, "type": "icon" }, { "attributes": { "id": "opera", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f26a", "voted": false }, "id": "opera", "links": { "self": "/api/icons/opera" }, "type": "icon" }, { "attributes": { "id": "optin-monster", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f23c", "voted": false }, "id": "optin-monster", "links": { "self": "/api/icons/optin-monster" }, "type": "icon" }, { "attributes": { "id": "orcid", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f8d2", "voted": false }, "id": "orcid", "links": { "self": "/api/icons/orcid" }, "type": "icon" }, { "attributes": { "id": "ornament", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7b8", "voted": false }, "id": "ornament", "links": { "self": "/api/icons/ornament" }, "type": "icon" }, { "attributes": { "id": "osi", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f41a", "voted": false }, "id": "osi", "links": { "self": "/api/icons/osi" }, "type": "icon" }, { "attributes": { "id": "otter", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f700", "voted": false }, "id": "otter", "links": { "self": "/api/icons/otter" }, "type": "icon" }, { "attributes": { "id": "outdent", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f03b", "voted": false }, "id": "outdent", "links": { "self": "/api/icons/outdent" }, "type": "icon" }, { "attributes": { "id": "outlet", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f91c", "voted": false }, "id": "outlet", "links": { "self": "/api/icons/outlet" }, "type": "icon" }, { "attributes": { "id": "oven", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f91d", "voted": false }, "id": "oven", "links": { "self": "/api/icons/oven" }, "type": "icon" }, { "attributes": { "id": "overline", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f876", "voted": false }, "id": "overline", "links": { "self": "/api/icons/overline" }, "type": "icon" }, { "attributes": { "id": "page-break", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f877", "voted": false }, "id": "page-break", "links": { "self": "/api/icons/page-break" }, "type": "icon" }, { "attributes": { "id": "page4", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3d7", "voted": false }, "id": "page4", "links": { "self": "/api/icons/page4" }, "type": "icon" }, { "attributes": { "id": "pagelines", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f18c", "voted": false }, "id": "pagelines", "links": { "self": "/api/icons/pagelines" }, "type": "icon" }, { "attributes": { "id": "pager", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f815", "voted": false }, "id": "pager", "links": { "self": "/api/icons/pager" }, "type": "icon" }, { "attributes": { "id": "paint-brush", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1fc", "voted": false }, "id": "paint-brush", "links": { "self": "/api/icons/paint-brush" }, "type": "icon" }, { "attributes": { "id": "paint-brush-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5a9", "voted": false }, "id": "paint-brush-alt", "links": { "self": "/api/icons/paint-brush-alt" }, "type": "icon" }, { "attributes": { "id": "paint-roller", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5aa", "voted": false }, "id": "paint-roller", "links": { "self": "/api/icons/paint-roller" }, "type": "icon" }, { "attributes": { "id": "palette", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f53f", "voted": true }, "id": "palette", "links": { "self": "/api/icons/palette" }, "type": "icon" }, { "attributes": { "id": "palfed", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3d8", "voted": false }, "id": "palfed", "links": { "self": "/api/icons/palfed" }, "type": "icon" }, { "attributes": { "id": "pallet", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f482", "voted": false }, "id": "pallet", "links": { "self": "/api/icons/pallet" }, "type": "icon" }, { "attributes": { "id": "pallet-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f483", "voted": false }, "id": "pallet-alt", "links": { "self": "/api/icons/pallet-alt" }, "type": "icon" }, { "attributes": { "id": "paper-plane", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1d8", "voted": false }, "id": "paper-plane", "links": { "self": "/api/icons/paper-plane" }, "type": "icon" }, { "attributes": { "id": "paperclip", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0c6", "voted": false }, "id": "paperclip", "links": { "self": "/api/icons/paperclip" }, "type": "icon" }, { "attributes": { "id": "parachute-box", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4cd", "voted": false }, "id": "parachute-box", "links": { "self": "/api/icons/parachute-box" }, "type": "icon" }, { "attributes": { "id": "paragraph", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1dd", "voted": false }, "id": "paragraph", "links": { "self": "/api/icons/paragraph" }, "type": "icon" }, { "attributes": { "id": "paragraph-rtl", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f878", "voted": false }, "id": "paragraph-rtl", "links": { "self": "/api/icons/paragraph-rtl" }, "type": "icon" }, { "attributes": { "id": "parking", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f540", "voted": true }, "id": "parking", "links": { "self": "/api/icons/parking" }, "type": "icon" }, { "attributes": { "id": "parking-circle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f615", "voted": false }, "id": "parking-circle", "links": { "self": "/api/icons/parking-circle" }, "type": "icon" }, { "attributes": { "id": "parking-circle-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f616", "voted": false }, "id": "parking-circle-slash", "links": { "self": "/api/icons/parking-circle-slash" }, "type": "icon" }, { "attributes": { "id": "parking-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f617", "voted": false }, "id": "parking-slash", "links": { "self": "/api/icons/parking-slash" }, "type": "icon" }, { "attributes": { "id": "passport", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5ab", "voted": false }, "id": "passport", "links": { "self": "/api/icons/passport" }, "type": "icon" }, { "attributes": { "id": "pastafarianism", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f67b", "voted": false }, "id": "pastafarianism", "links": { "self": "/api/icons/pastafarianism" }, "type": "icon" }, { "attributes": { "id": "paste", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0ea", "voted": false }, "id": "paste", "links": { "self": "/api/icons/paste" }, "type": "icon" }, { "attributes": { "id": "patreon", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3d9", "voted": false }, "id": "patreon", "links": { "self": "/api/icons/patreon" }, "type": "icon" }, { "attributes": { "id": "pause", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f04c", "voted": false }, "id": "pause", "links": { "self": "/api/icons/pause" }, "type": "icon" }, { "attributes": { "id": "pause-circle", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f28b", "voted": false }, "id": "pause-circle", "links": { "self": "/api/icons/pause-circle" }, "type": "icon" }, { "attributes": { "id": "paw", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1b0", "voted": false }, "id": "paw", "links": { "self": "/api/icons/paw" }, "type": "icon" }, { "attributes": { "id": "paw-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f701", "voted": false }, "id": "paw-alt", "links": { "self": "/api/icons/paw-alt" }, "type": "icon" }, { "attributes": { "id": "paw-claws", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f702", "voted": false }, "id": "paw-claws", "links": { "self": "/api/icons/paw-claws" }, "type": "icon" }, { - "attributes": { - "id": "paypal", "membership": { - "free": ["brands"], - "pro": ["brands"] - }, "styles": ["brands"], "unicode": "f1ed", "voted": false - }, "id": "paypal", "links": { "self": "/api/icons/paypal" }, "type": "icon" -}, { "attributes": { "id": "peace", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f67c", "voted": false }, "id": "peace", "links": { "self": "/api/icons/peace" }, "type": "icon" }, { "attributes": { "id": "pegasus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f703", "voted": false }, "id": "pegasus", "links": { "self": "/api/icons/pegasus" }, "type": "icon" }, { "attributes": { "id": "pen", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f304", "voted": false }, "id": "pen", "links": { "self": "/api/icons/pen" }, "type": "icon" }, { "attributes": { "id": "pen-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f305", "voted": false }, "id": "pen-alt", "links": { "self": "/api/icons/pen-alt" }, "type": "icon" }, { "attributes": { "id": "pen-fancy", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5ac", "voted": false }, "id": "pen-fancy", "links": { "self": "/api/icons/pen-fancy" }, "type": "icon" }, { "attributes": { "id": "pen-nib", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5ad", "voted": true }, "id": "pen-nib", "links": { "self": "/api/icons/pen-nib" }, "type": "icon" }, { "attributes": { "id": "pen-square", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f14b", "voted": false }, "id": "pen-square", "links": { "self": "/api/icons/pen-square" }, "type": "icon" }, { "attributes": { "id": "pencil", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f040", "voted": false }, "id": "pencil", "links": { "self": "/api/icons/pencil" }, "type": "icon" }, { "attributes": { "id": "pencil-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f303", "voted": false }, "id": "pencil-alt", "links": { "self": "/api/icons/pencil-alt" }, "type": "icon" }, { "attributes": { "id": "pencil-paintbrush", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f618", "voted": false }, "id": "pencil-paintbrush", "links": { "self": "/api/icons/pencil-paintbrush" }, "type": "icon" }, { "attributes": { "id": "pencil-ruler", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5ae", "voted": false }, "id": "pencil-ruler", "links": { "self": "/api/icons/pencil-ruler" }, "type": "icon" }, { "attributes": { "id": "pennant", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f456", "voted": false }, "id": "pennant", "links": { "self": "/api/icons/pennant" }, "type": "icon" }, { "attributes": { "id": "penny-arcade", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f704", "voted": false }, "id": "penny-arcade", "links": { "self": "/api/icons/penny-arcade" }, "type": "icon" }, { "attributes": { "id": "people-arrows", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f968", "voted": false }, "id": "people-arrows", "links": { "self": "/api/icons/people-arrows" }, "type": "icon" }, { "attributes": { "id": "people-carry", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4ce", "voted": false }, "id": "people-carry", "links": { "self": "/api/icons/people-carry" }, "type": "icon" }, { "attributes": { "id": "pepper-hot", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f816", "voted": true }, "id": "pepper-hot", "links": { "self": "/api/icons/pepper-hot" }, "type": "icon" }, { "attributes": { "id": "percent", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f295", "voted": false }, "id": "percent", "links": { "self": "/api/icons/percent" }, "type": "icon" }, { "attributes": { "id": "percentage", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f541", "voted": true }, "id": "percentage", "links": { "self": "/api/icons/percentage" }, "type": "icon" }, { "attributes": { "id": "periscope", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3da", "voted": false }, "id": "periscope", "links": { "self": "/api/icons/periscope" }, "type": "icon" }, { "attributes": { "id": "person-booth", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f756", "voted": false }, "id": "person-booth", "links": { "self": "/api/icons/person-booth" }, "type": "icon" }, { "attributes": { "id": "person-carry", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4cf", "voted": false }, "id": "person-carry", "links": { "self": "/api/icons/person-carry" }, "type": "icon" }, { "attributes": { "id": "person-dolly", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4d0", "voted": false }, "id": "person-dolly", "links": { "self": "/api/icons/person-dolly" }, "type": "icon" }, { "attributes": { "id": "person-dolly-empty", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4d1", "voted": false }, "id": "person-dolly-empty", "links": { "self": "/api/icons/person-dolly-empty" }, "type": "icon" }, { "attributes": { "id": "person-sign", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f757", "voted": false }, "id": "person-sign", "links": { "self": "/api/icons/person-sign" }, "type": "icon" }, { "attributes": { "id": "phabricator", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3db", "voted": false }, "id": "phabricator", "links": { "self": "/api/icons/phabricator" }, "type": "icon" }, { "attributes": { "id": "phoenix-framework", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3dc", "voted": false }, "id": "phoenix-framework", "links": { "self": "/api/icons/phoenix-framework" }, "type": "icon" }, { "attributes": { "id": "phoenix-squadron", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f511", "voted": false }, "id": "phoenix-squadron", "links": { "self": "/api/icons/phoenix-squadron" }, "type": "icon" }, { "attributes": { "id": "phone", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f095", "voted": false }, "id": "phone", "links": { "self": "/api/icons/phone" }, "type": "icon" }, { "attributes": { "id": "phone-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f879", "voted": false }, "id": "phone-alt", "links": { "self": "/api/icons/phone-alt" }, "type": "icon" }, { "attributes": { "id": "phone-laptop", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f87a", "voted": false }, "id": "phone-laptop", "links": { "self": "/api/icons/phone-laptop" }, "type": "icon" }, { "attributes": { "id": "phone-office", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f67d", "voted": false }, "id": "phone-office", "links": { "self": "/api/icons/phone-office" }, "type": "icon" }, { "attributes": { "id": "phone-plus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4d2", "voted": false }, "id": "phone-plus", "links": { "self": "/api/icons/phone-plus" }, "type": "icon" }, { "attributes": { "id": "phone-rotary", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8d3", "voted": false }, "id": "phone-rotary", "links": { "self": "/api/icons/phone-rotary" }, "type": "icon" }, { "attributes": { "id": "phone-slash", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3dd", "voted": false }, "id": "phone-slash", "links": { "self": "/api/icons/phone-slash" }, "type": "icon" }, { "attributes": { "id": "phone-square", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f098", "voted": false }, "id": "phone-square", "links": { "self": "/api/icons/phone-square" }, "type": "icon" }, { "attributes": { "id": "phone-square-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f87b", "voted": false }, "id": "phone-square-alt", "links": { "self": "/api/icons/phone-square-alt" }, "type": "icon" }, { "attributes": { "id": "phone-volume", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2a0", "voted": false }, "id": "phone-volume", "links": { "self": "/api/icons/phone-volume" }, "type": "icon" }, { "attributes": { "id": "photo-video", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f87c", "voted": false }, "id": "photo-video", "links": { "self": "/api/icons/photo-video" }, "type": "icon" }, { "attributes": { "id": "php", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f457", "voted": true }, "id": "php", "links": { "self": "/api/icons/php" }, "type": "icon" } - , { "attributes": { "id": "pi", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f67e", "voted": false }, "id": "pi", "links": { "self": "/api/icons/pi" }, "type": "icon" }, { "attributes": { "id": "piano", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8d4", "voted": false }, "id": "piano", "links": { "self": "/api/icons/piano" }, "type": "icon" }, { "attributes": { "id": "piano-keyboard", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8d5", "voted": false }, "id": "piano-keyboard", "links": { "self": "/api/icons/piano-keyboard" }, "type": "icon" }, { "attributes": { "id": "pie", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f705", "voted": false }, "id": "pie", "links": { "self": "/api/icons/pie" }, "type": "icon" }, { "attributes": { "id": "pied-piper", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2ae", "voted": false }, "id": "pied-piper", "links": { "self": "/api/icons/pied-piper" }, "type": "icon" }, { "attributes": { "id": "pied-piper-alt", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1a8", "voted": false }, "id": "pied-piper-alt", "links": { "self": "/api/icons/pied-piper-alt" }, "type": "icon" }, { "attributes": { "id": "pied-piper-hat", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4e5", "voted": false }, "id": "pied-piper-hat", "links": { "self": "/api/icons/pied-piper-hat" }, "type": "icon" }, { "attributes": { "id": "pied-piper-pp", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1a7", "voted": false }, "id": "pied-piper-pp", "links": { "self": "/api/icons/pied-piper-pp" }, "type": "icon" }, { "attributes": { "id": "pied-piper-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f91e", "voted": false }, "id": "pied-piper-square", "links": { "self": "/api/icons/pied-piper-square" }, "type": "icon" }, { "attributes": { "id": "pig", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f706", "voted": false }, "id": "pig", "links": { "self": "/api/icons/pig" }, "type": "icon" }, { "attributes": { "id": "piggy-bank", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4d3", "voted": false }, "id": "piggy-bank", "links": { "self": "/api/icons/piggy-bank" }, "type": "icon" }, { "attributes": { "id": "pills", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f484", "voted": false }, "id": "pills", "links": { "self": "/api/icons/pills" }, "type": "icon" }, { "attributes": { "id": "pinterest", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f0d2", "voted": false }, "id": "pinterest", "links": { "self": "/api/icons/pinterest" }, "type": "icon" }, { "attributes": { "id": "pinterest-p", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f231", "voted": false }, "id": "pinterest-p", "links": { "self": "/api/icons/pinterest-p" }, "type": "icon" }, { "attributes": { "id": "pinterest-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f0d3", "voted": false }, "id": "pinterest-square", "links": { "self": "/api/icons/pinterest-square" }, "type": "icon" }, { "attributes": { "id": "pizza", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f817", "voted": false }, "id": "pizza", "links": { "self": "/api/icons/pizza" }, "type": "icon" }, { "attributes": { "id": "pizza-slice", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f818", "voted": true }, "id": "pizza-slice", "links": { "self": "/api/icons/pizza-slice" }, "type": "icon" }, { "attributes": { "id": "place-of-worship", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f67f", "voted": false }, "id": "place-of-worship", "links": { "self": "/api/icons/place-of-worship" }, "type": "icon" }, { "attributes": { "id": "plane", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f072", "voted": false }, "id": "plane", "links": { "self": "/api/icons/plane" }, "type": "icon" }, { "attributes": { "id": "plane-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3de", "voted": false }, "id": "plane-alt", "links": { "self": "/api/icons/plane-alt" }, "type": "icon" }, { "attributes": { "id": "plane-arrival", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5af", "voted": false }, "id": "plane-arrival", "links": { "self": "/api/icons/plane-arrival" }, "type": "icon" }, { "attributes": { "id": "plane-departure", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5b0", "voted": false }, "id": "plane-departure", "links": { "self": "/api/icons/plane-departure" }, "type": "icon" }, { "attributes": { "id": "plane-slash", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f969", "voted": false }, "id": "plane-slash", "links": { "self": "/api/icons/plane-slash" }, "type": "icon" }, { "attributes": { "id": "planet-moon", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f91f", "voted": false }, "id": "planet-moon", "links": { "self": "/api/icons/planet-moon" }, "type": "icon" }, { "attributes": { "id": "planet-ringed", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f920", "voted": false }, "id": "planet-ringed", "links": { "self": "/api/icons/planet-ringed" }, "type": "icon" }, { "attributes": { "id": "play", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f04b", "voted": false }, "id": "play", "links": { "self": "/api/icons/play" }, "type": "icon" }, { "attributes": { "id": "play-circle", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f144", "voted": false }, "id": "play-circle", "links": { "self": "/api/icons/play-circle" }, "type": "icon" }, { "attributes": { "id": "playstation", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3df", "voted": false }, "id": "playstation", "links": { "self": "/api/icons/playstation" }, "type": "icon" }, { "attributes": { "id": "plug", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1e6", "voted": false }, "id": "plug", "links": { "self": "/api/icons/plug" }, "type": "icon" }, { "attributes": { "id": "plus", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f067", "voted": false }, "id": "plus", "links": { "self": "/api/icons/plus" }, "type": "icon" }, { "attributes": { "id": "plus-circle", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f055", "voted": false }, "id": "plus-circle", "links": { "self": "/api/icons/plus-circle" }, "type": "icon" }, { "attributes": { "id": "plus-hexagon", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f300", "voted": false }, "id": "plus-hexagon", "links": { "self": "/api/icons/plus-hexagon" }, "type": "icon" }, { "attributes": { "id": "plus-octagon", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f301", "voted": false }, "id": "plus-octagon", "links": { "self": "/api/icons/plus-octagon" }, "type": "icon" }, { "attributes": { "id": "plus-square", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0fe", "voted": false }, "id": "plus-square", "links": { "self": "/api/icons/plus-square" }, "type": "icon" }, { "attributes": { "id": "podcast", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2ce", "voted": false }, "id": "podcast", "links": { "self": "/api/icons/podcast" }, "type": "icon" }, { "attributes": { "id": "podium", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f680", "voted": false }, "id": "podium", "links": { "self": "/api/icons/podium" }, "type": "icon" }, { "attributes": { "id": "podium-star", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f758", "voted": false }, "id": "podium-star", "links": { "self": "/api/icons/podium-star" }, "type": "icon" }, { "attributes": { "id": "police-box", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f921", "voted": false }, "id": "police-box", "links": { "self": "/api/icons/police-box" }, "type": "icon" }, { "attributes": { "id": "poll", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f681", "voted": false }, "id": "poll", "links": { "self": "/api/icons/poll" }, "type": "icon" }, { "attributes": { "id": "poll-h", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f682", "voted": false }, "id": "poll-h", "links": { "self": "/api/icons/poll-h" }, "type": "icon" }, { - "attributes": { - "id": "poll-people", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", - "light", "duotone"], "unicode": "f759", "voted": false - }, "id": "poll-people", "links": { "self": "/api/icons/poll-people" }, "type": "icon" -}, { "attributes": { "id": "poo", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2fe", "voted": false }, "id": "poo", "links": { "self": "/api/icons/poo" }, "type": "icon" }, { "attributes": { "id": "poo-storm", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f75a", "voted": false }, "id": "poo-storm", "links": { "self": "/api/icons/poo-storm" }, "type": "icon" }, { "attributes": { "id": "poop", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f619", "voted": false }, "id": "poop", "links": { "self": "/api/icons/poop" }, "type": "icon" }, { "attributes": { "id": "popcorn", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f819", "voted": false }, "id": "popcorn", "links": { "self": "/api/icons/popcorn" }, "type": "icon" }, { "attributes": { "id": "portal-enter", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f922", "voted": false }, "id": "portal-enter", "links": { "self": "/api/icons/portal-enter" }, "type": "icon" }, { "attributes": { "id": "portal-exit", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f923", "voted": false }, "id": "portal-exit", "links": { "self": "/api/icons/portal-exit" }, "type": "icon" }, { "attributes": { "id": "portrait", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3e0", "voted": false }, "id": "portrait", "links": { "self": "/api/icons/portrait" }, "type": "icon" }, { "attributes": { "id": "pound-sign", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f154", "voted": false }, "id": "pound-sign", "links": { "self": "/api/icons/pound-sign" }, "type": "icon" }, { "attributes": { "id": "power-off", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f011", "voted": false }, "id": "power-off", "links": { "self": "/api/icons/power-off" }, "type": "icon" }, { "attributes": { "id": "pray", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f683", "voted": false }, "id": "pray", "links": { "self": "/api/icons/pray" }, "type": "icon" }, { "attributes": { "id": "praying-hands", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f684", "voted": false }, "id": "praying-hands", "links": { "self": "/api/icons/praying-hands" }, "type": "icon" }, { "attributes": { "id": "prescription", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5b1", "voted": false }, "id": "prescription", "links": { "self": "/api/icons/prescription" }, "type": "icon" }, { "attributes": { "id": "prescription-bottle", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f485", "voted": false }, "id": "prescription-bottle", "links": { "self": "/api/icons/prescription-bottle" }, "type": "icon" }, { "attributes": { "id": "prescription-bottle-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f486", "voted": false }, "id": "prescription-bottle-alt", "links": { "self": "/api/icons/prescription-bottle-alt" }, "type": "icon" }, { "attributes": { "id": "presentation", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f685", "voted": false }, "id": "presentation", "links": { "self": "/api/icons/presentation" }, "type": "icon" }, { "attributes": { "id": "print", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f02f", "voted": false }, "id": "print", "links": { "self": "/api/icons/print" }, "type": "icon" }, { "attributes": { "id": "print-search", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f81a", "voted": true }, "id": "print-search", "links": { "self": "/api/icons/print-search" }, "type": "icon" }, { "attributes": { "id": "print-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f686", "voted": false }, "id": "print-slash", "links": { "self": "/api/icons/print-slash" }, "type": "icon" }, { "attributes": { "id": "procedures", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f487", "voted": false }, "id": "procedures", "links": { "self": "/api/icons/procedures" }, "type": "icon" }, { "attributes": { "id": "product-hunt", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f288", "voted": false }, "id": "product-hunt", "links": { "self": "/api/icons/product-hunt" }, "type": "icon" }, { "attributes": { "id": "project-diagram", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f542", "voted": false }, "id": "project-diagram", "links": { "self": "/api/icons/project-diagram" }, "type": "icon" }, { "attributes": { "id": "projector", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8d6", "voted": false }, "id": "projector", "links": { "self": "/api/icons/projector" }, "type": "icon" }, { "attributes": { "id": "pump-medical", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f96a", "voted": false }, "id": "pump-medical", "links": { "self": "/api/icons/pump-medical" }, "type": "icon" }, { "attributes": { "id": "pump-soap", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f96b", "voted": false }, "id": "pump-soap", "links": { "self": "/api/icons/pump-soap" }, "type": "icon" }, { "attributes": { "id": "pumpkin", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f707", "voted": false }, "id": "pumpkin", "links": { "self": "/api/icons/pumpkin" }, "type": "icon" }, { "attributes": { "id": "pushed", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3e1", "voted": false }, "id": "pushed", "links": { "self": "/api/icons/pushed" }, "type": "icon" }, { "attributes": { "id": "puzzle-piece", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f12e", "voted": false }, "id": "puzzle-piece", "links": { "self": "/api/icons/puzzle-piece" }, "type": "icon" }, { "attributes": { "id": "python", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3e2", "voted": false }, "id": "python", "links": { "self": "/api/icons/python" }, "type": "icon" }, { "attributes": { "id": "qq", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1d6", "voted": false }, "id": "qq", "links": { "self": "/api/icons/qq" }, "type": "icon" }, { "attributes": { "id": "qrcode", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f029", "voted": false }, "id": "qrcode", "links": { "self": "/api/icons/qrcode" }, "type": "icon" }, { "attributes": { "id": "question", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f128", "voted": false }, "id": "question", "links": { "self": "/api/icons/question" }, "type": "icon" }, { "attributes": { "id": "question-circle", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f059", "voted": false }, "id": "question-circle", "links": { "self": "/api/icons/question-circle" }, "type": "icon" }, { "attributes": { "id": "question-square", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2fd", "voted": false }, "id": "question-square", "links": { "self": "/api/icons/question-square" }, "type": "icon" }, { "attributes": { "id": "quidditch", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f458", "voted": false }, "id": "quidditch", "links": { "self": "/api/icons/quidditch" }, "type": "icon" }, { "attributes": { "id": "quinscape", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f459", "voted": false }, "id": "quinscape", "links": { "self": "/api/icons/quinscape" }, "type": "icon" }, { "attributes": { "id": "quora", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2c4", "voted": false }, "id": "quora", "links": { "self": "/api/icons/quora" }, "type": "icon" }, { "attributes": { "id": "quote-left", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f10d", "voted": false }, "id": "quote-left", "links": { "self": "/api/icons/quote-left" }, "type": "icon" }, { "attributes": { "id": "quote-right", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f10e", "voted": false }, "id": "quote-right", "links": { "self": "/api/icons/quote-right" }, "type": "icon" }, { "attributes": { "id": "quran", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f687", "voted": false }, "id": "quran", "links": { "self": "/api/icons/quran" }, "type": "icon" }, { - "attributes": { - "id": "r-project", "membership": { - "free": ["brands"], - "pro": ["brands"] - }, "styles": ["brands"], "unicode": "f4f7", "voted": true - }, "id": "r-project", "links": { "self": "/api/icons/r-project" }, "type": "icon" -}, { "attributes": { "id": "rabbit", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f708", "voted": true }, "id": "rabbit", "links": { "self": "/api/icons/rabbit" }, "type": "icon" }, { "attributes": { "id": "rabbit-fast", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f709", "voted": true }, "id": "rabbit-fast", "links": { "self": "/api/icons/rabbit-fast" }, "type": "icon" }, { "attributes": { "id": "racquet", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f45a", "voted": false }, "id": "racquet", "links": { "self": "/api/icons/racquet" }, "type": "icon" }, { "attributes": { "id": "radar", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f924", "voted": false }, "id": "radar", "links": { "self": "/api/icons/radar" }, "type": "icon" }, { "attributes": { "id": "radiation", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7b9", "voted": true }, "id": "radiation", "links": { "self": "/api/icons/radiation" }, "type": "icon" }, { "attributes": { "id": "radiation-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7ba", "voted": true }, "id": "radiation-alt", "links": { "self": "/api/icons/radiation-alt" }, "type": "icon" }, { "attributes": { "id": "radio", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8d7", "voted": false }, "id": "radio", "links": { "self": "/api/icons/radio" }, "type": "icon" }, { "attributes": { "id": "radio-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8d8", "voted": false }, "id": "radio-alt", "links": { "self": "/api/icons/radio-alt" }, "type": "icon" }, { "attributes": { "id": "rainbow", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f75b", "voted": false }, "id": "rainbow", "links": { "self": "/api/icons/rainbow" }, "type": "icon" }, { "attributes": { "id": "raindrops", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f75c", "voted": false }, "id": "raindrops", "links": { "self": "/api/icons/raindrops" }, "type": "icon" }, { "attributes": { "id": "ram", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f70a", "voted": false }, "id": "ram", "links": { "self": "/api/icons/ram" }, "type": "icon" }, { "attributes": { "id": "ramp-loading", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4d4", "voted": false }, "id": "ramp-loading", "links": { "self": "/api/icons/ramp-loading" }, "type": "icon" }, { "attributes": { "id": "random", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f074", "voted": false }, "id": "random", "links": { "self": "/api/icons/random" }, "type": "icon" }, { "attributes": { "id": "raspberry-pi", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f7bb", "voted": true }, "id": "raspberry-pi", "links": { "self": "/api/icons/raspberry-pi" }, "type": "icon" }, { "attributes": { "id": "ravelry", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2d9", "voted": false }, "id": "ravelry", "links": { "self": "/api/icons/ravelry" }, "type": "icon" }, { "attributes": { "id": "raygun", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f925", "voted": false }, "id": "raygun", "links": { "self": "/api/icons/raygun" }, "type": "icon" }, { "attributes": { "id": "react", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f41b", "voted": false }, "id": "react", "links": { "self": "/api/icons/react" }, "type": "icon" }, { "attributes": { "id": "reacteurope", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f75d", "voted": false }, "id": "reacteurope", "links": { "self": "/api/icons/reacteurope" }, "type": "icon" }, { "attributes": { "id": "readme", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4d5", "voted": false }, "id": "readme", "links": { "self": "/api/icons/readme" }, "type": "icon" }, { "attributes": { "id": "rebel", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1d0", "voted": false }, "id": "rebel", "links": { "self": "/api/icons/rebel" }, "type": "icon" }, { "attributes": { "id": "receipt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f543", "voted": true }, "id": "receipt", "links": { "self": "/api/icons/receipt" }, "type": "icon" }, { "attributes": { "id": "record-vinyl", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8d9", "voted": false }, "id": "record-vinyl", "links": { "self": "/api/icons/record-vinyl" }, "type": "icon" }, { "attributes": { "id": "rectangle-landscape", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2fa", "voted": false }, "id": "rectangle-landscape", "links": { "self": "/api/icons/rectangle-landscape" }, "type": "icon" }, { "attributes": { "id": "rectangle-portrait", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2fb", "voted": false }, "id": "rectangle-portrait", "links": { "self": "/api/icons/rectangle-portrait" }, "type": "icon" }, { "attributes": { "id": "rectangle-wide", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2fc", "voted": false }, "id": "rectangle-wide", "links": { "self": "/api/icons/rectangle-wide" }, "type": "icon" }, { "attributes": { "id": "recycle", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1b8", "voted": false }, "id": "recycle", "links": { "self": "/api/icons/recycle" }, "type": "icon" }, { "attributes": { "id": "red-river", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3e3", "voted": false }, "id": "red-river", "links": { "self": "/api/icons/red-river" }, "type": "icon" }, { "attributes": { "id": "reddit", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1a1", "voted": false }, "id": "reddit", "links": { "self": "/api/icons/reddit" }, "type": "icon" }, { "attributes": { "id": "reddit-alien", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f281", "voted": false }, "id": "reddit-alien", "links": { "self": "/api/icons/reddit-alien" }, "type": "icon" }, { "attributes": { "id": "reddit-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1a2", "voted": false }, "id": "reddit-square", "links": { "self": "/api/icons/reddit-square" }, "type": "icon" }, { "attributes": { "id": "redhat", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f7bc", "voted": true }, "id": "redhat", "links": { "self": "/api/icons/redhat" }, "type": "icon" }, { "attributes": { "id": "redo", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f01e", "voted": false }, "id": "redo", "links": { "self": "/api/icons/redo" }, "type": "icon" }, { "attributes": { "id": "redo-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2f9", "voted": false }, "id": "redo-alt", "links": { "self": "/api/icons/redo-alt" }, "type": "icon" }, { "attributes": { "id": "refrigerator", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f926", "voted": false }, "id": "refrigerator", "links": { "self": "/api/icons/refrigerator" }, "type": "icon" }, { "attributes": { "id": "registered", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f25d", "voted": false }, "id": "registered", "links": { "self": "/api/icons/registered" }, "type": "icon" }, { "attributes": { "id": "remove-format", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f87d", "voted": false }, "id": "remove-format", "links": { "self": "/api/icons/remove-format" }, "type": "icon" }, { "attributes": { "id": "renren", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f18b", "voted": false }, "id": "renren", "links": { "self": "/api/icons/renren" }, "type": "icon" }, { "attributes": { "id": "repeat", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f363", "voted": false }, "id": "repeat", "links": { "self": "/api/icons/repeat" }, "type": "icon" }, { "attributes": { "id": "repeat-1", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f365", "voted": false }, "id": "repeat-1", "links": { "self": "/api/icons/repeat-1" }, "type": "icon" }, { "attributes": { "id": "repeat-1-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f366", "voted": false }, "id": "repeat-1-alt", "links": { "self": "/api/icons/repeat-1-alt" }, "type": "icon" }, { "attributes": { "id": "repeat-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f364", "voted": false }, "id": "repeat-alt", "links": { "self": "/api/icons/repeat-alt" }, "type": "icon" }, -{ "attributes": { "id": "reply", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3e5", "voted": false }, "id": "reply", "links": { "self": "/api/icons/reply" }, "type": "icon" }, { "attributes": { "id": "reply-all", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f122", "voted": false }, "id": "reply-all", "links": { "self": "/api/icons/reply-all" }, "type": "icon" }, { "attributes": { "id": "replyd", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3e6", "voted": false }, "id": "replyd", "links": { "self": "/api/icons/replyd" }, "type": "icon" }, { "attributes": { "id": "republican", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f75e", "voted": false }, "id": "republican", "links": { "self": "/api/icons/republican" }, "type": "icon" }, { "attributes": { "id": "researchgate", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4f8", "voted": true }, "id": "researchgate", "links": { "self": "/api/icons/researchgate" }, "type": "icon" }, { "attributes": { "id": "resolving", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3e7", "voted": false }, "id": "resolving", "links": { "self": "/api/icons/resolving" }, "type": "icon" }, { "attributes": { "id": "restroom", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7bd", "voted": true }, "id": "restroom", "links": { "self": "/api/icons/restroom" }, "type": "icon" }, { "attributes": { "id": "retweet", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f079", "voted": false }, "id": "retweet", "links": { "self": "/api/icons/retweet" }, "type": "icon" }, { "attributes": { "id": "retweet-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f361", "voted": false }, "id": "retweet-alt", "links": { "self": "/api/icons/retweet-alt" }, "type": "icon" }, { "attributes": { "id": "rev", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f5b2", "voted": false }, "id": "rev", "links": { "self": "/api/icons/rev" }, "type": "icon" }, { "attributes": { "id": "ribbon", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4d6", "voted": false }, "id": "ribbon", "links": { "self": "/api/icons/ribbon" }, "type": "icon" }, { "attributes": { "id": "ring", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f70b", "voted": false }, "id": "ring", "links": { "self": "/api/icons/ring" }, "type": "icon" }, { "attributes": { "id": "rings-wedding", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f81b", "voted": true }, "id": "rings-wedding", "links": { "self": "/api/icons/rings-wedding" }, "type": "icon" }, { "attributes": { "id": "road", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f018", "voted": false }, "id": "road", "links": { "self": "/api/icons/road" }, "type": "icon" }, { "attributes": { "id": "robot", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f544", "voted": true }, "id": "robot", "links": { "self": "/api/icons/robot" }, "type": "icon" }, { "attributes": { "id": "rocket", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f135", "voted": false }, "id": "rocket", "links": { "self": "/api/icons/rocket" }, "type": "icon" }, { "attributes": { "id": "rocket-launch", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f927", "voted": false }, "id": "rocket-launch", "links": { "self": "/api/icons/rocket-launch" }, "type": "icon" }, { "attributes": { "id": "rocketchat", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3e8", "voted": false }, "id": "rocketchat", "links": { "self": "/api/icons/rocketchat" }, "type": "icon" }, { "attributes": { "id": "rockrms", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3e9", "voted": false }, "id": "rockrms", "links": { "self": "/api/icons/rockrms" }, "type": "icon" }, { "attributes": { "id": "route", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4d7", "voted": false }, "id": "route", "links": { "self": "/api/icons/route" }, "type": "icon" }, { "attributes": { "id": "route-highway", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f61a", "voted": false }, "id": "route-highway", "links": { "self": "/api/icons/route-highway" }, "type": "icon" }, { "attributes": { "id": "route-interstate", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f61b", "voted": false }, "id": "route-interstate", "links": { "self": "/api/icons/route-interstate" }, "type": "icon" }, { "attributes": { "id": "router", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8da", "voted": false }, "id": "router", "links": { "self": "/api/icons/router" }, "type": "icon" }, { "attributes": { "id": "rss", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f09e", "voted": false }, "id": "rss", "links": { "self": "/api/icons/rss" }, "type": "icon" }, { "attributes": { "id": "rss-square", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f143", "voted": false }, "id": "rss-square", "links": { "self": "/api/icons/rss-square" }, "type": "icon" }, { "attributes": { "id": "ruble-sign", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f158", "voted": false }, "id": "ruble-sign", "links": { "self": "/api/icons/ruble-sign" }, "type": "icon" }, { "attributes": { "id": "ruler", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f545", "voted": true }, "id": "ruler", "links": { "self": "/api/icons/ruler" }, "type": "icon" }, { "attributes": { "id": "ruler-combined", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f546", "voted": true }, "id": "ruler-combined", "links": { "self": "/api/icons/ruler-combined" }, "type": "icon" }, { "attributes": { "id": "ruler-horizontal", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f547", "voted": true }, "id": "ruler-horizontal", "links": { "self": "/api/icons/ruler-horizontal" }, "type": "icon" }, { "attributes": { "id": "ruler-triangle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f61c", "voted": false }, "id": "ruler-triangle", "links": { "self": "/api/icons/ruler-triangle" }, "type": "icon" }, { "attributes": { "id": "ruler-vertical", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f548", "voted": true }, "id": "ruler-vertical", "links": { "self": "/api/icons/ruler-vertical" }, "type": "icon" }, { "attributes": { "id": "running", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f70c", "voted": true }, "id": "running", "links": { "self": "/api/icons/running" }, "type": "icon" }, { "attributes": { "id": "rupee-sign", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f156", "voted": false }, "id": "rupee-sign", "links": { "self": "/api/icons/rupee-sign" }, "type": "icon" }, { "attributes": { "id": "rv", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7be", "voted": false }, "id": "rv", "links": { "self": "/api/icons/rv" }, "type": "icon" }, { "attributes": { "id": "sack", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f81c", "voted": false }, "id": "sack", "links": { "self": "/api/icons/sack" }, "type": "icon" }, { "attributes": { "id": "sack-dollar", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f81d", "voted": true }, "id": "sack-dollar", "links": { "self": "/api/icons/sack-dollar" }, "type": "icon" }, { "attributes": { "id": "sad-cry", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5b3", "voted": false }, "id": "sad-cry", "links": { "self": "/api/icons/sad-cry" }, "type": "icon" }, { "attributes": { "id": "sad-tear", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5b4", "voted": false }, "id": "sad-tear", "links": { "self": "/api/icons/sad-tear" }, "type": "icon" }, { "attributes": { "id": "safari", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f267", "voted": false }, "id": "safari", "links": { "self": "/api/icons/safari" }, "type": "icon" }, { "attributes": { "id": "salad", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f81e", "voted": false }, "id": "salad", "links": { "self": "/api/icons/salad" }, "type": "icon" }, { - "attributes": { "id": "salesforce", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f83b", "voted": false }, "id": "salesforce", - "links": { "self": "/api/icons/salesforce" }, "type": "icon" -}, { "attributes": { "id": "sandwich", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f81f", "voted": false }, "id": "sandwich", "links": { "self": "/api/icons/sandwich" }, "type": "icon" }, { "attributes": { "id": "sass", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f41e", "voted": false }, "id": "sass", "links": { "self": "/api/icons/sass" }, "type": "icon" }, { "attributes": { "id": "satellite", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7bf", "voted": true }, "id": "satellite", "links": { "self": "/api/icons/satellite" }, "type": "icon" }, { "attributes": { "id": "satellite-dish", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7c0", "voted": true }, "id": "satellite-dish", "links": { "self": "/api/icons/satellite-dish" }, "type": "icon" }, { "attributes": { "id": "sausage", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f820", "voted": false }, "id": "sausage", "links": { "self": "/api/icons/sausage" }, "type": "icon" }, { "attributes": { "id": "save", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0c7", "voted": false }, "id": "save", "links": { "self": "/api/icons/save" }, "type": "icon" }, { "attributes": { "id": "sax-hot", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8db", "voted": false }, "id": "sax-hot", "links": { "self": "/api/icons/sax-hot" }, "type": "icon" }, { "attributes": { "id": "saxophone", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8dc", "voted": false }, "id": "saxophone", "links": { "self": "/api/icons/saxophone" }, "type": "icon" }, { "attributes": { "id": "scalpel", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f61d", "voted": false }, "id": "scalpel", "links": { "self": "/api/icons/scalpel" }, "type": "icon" }, { "attributes": { "id": "scalpel-path", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f61e", "voted": false }, "id": "scalpel-path", "links": { "self": "/api/icons/scalpel-path" }, "type": "icon" }, { "attributes": { "id": "scanner", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f488", "voted": false }, "id": "scanner", "links": { "self": "/api/icons/scanner" }, "type": "icon" }, { "attributes": { "id": "scanner-image", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8f3", "voted": false }, "id": "scanner-image", "links": { "self": "/api/icons/scanner-image" }, "type": "icon" }, { "attributes": { "id": "scanner-keyboard", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f489", "voted": false }, "id": "scanner-keyboard", "links": { "self": "/api/icons/scanner-keyboard" }, "type": "icon" }, { "attributes": { "id": "scanner-touchscreen", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f48a", "voted": false }, "id": "scanner-touchscreen", "links": { "self": "/api/icons/scanner-touchscreen" }, "type": "icon" }, { "attributes": { "id": "scarecrow", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f70d", "voted": false }, "id": "scarecrow", "links": { "self": "/api/icons/scarecrow" }, "type": "icon" }, { "attributes": { "id": "scarf", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7c1", "voted": false }, "id": "scarf", "links": { "self": "/api/icons/scarf" }, "type": "icon" }, { "attributes": { "id": "schlix", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3ea", "voted": false }, "id": "schlix", "links": { "self": "/api/icons/schlix" }, "type": "icon" }, { "attributes": { "id": "school", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f549", "voted": true }, "id": "school", "links": { "self": "/api/icons/school" }, "type": "icon" }, { "attributes": { "id": "screwdriver", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f54a", "voted": true }, "id": "screwdriver", "links": { "self": "/api/icons/screwdriver" }, "type": "icon" }, { "attributes": { "id": "scribd", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f28a", "voted": false }, "id": "scribd", "links": { "self": "/api/icons/scribd" }, "type": "icon" }, { "attributes": { "id": "scroll", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f70e", "voted": false }, "id": "scroll", "links": { "self": "/api/icons/scroll" }, "type": "icon" }, { "attributes": { "id": "scroll-old", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f70f", "voted": false }, "id": "scroll-old", "links": { "self": "/api/icons/scroll-old" }, "type": "icon" }, { "attributes": { "id": "scrubber", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2f8", "voted": false }, "id": "scrubber", "links": { "self": "/api/icons/scrubber" }, "type": "icon" }, { "attributes": { "id": "scythe", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f710", "voted": false }, "id": "scythe", "links": { "self": "/api/icons/scythe" }, "type": "icon" }, { "attributes": { "id": "sd-card", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7c2", "voted": true }, "id": "sd-card", "links": { "self": "/api/icons/sd-card" }, "type": "icon" }, { "attributes": { "id": "search", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f002", "voted": false }, "id": "search", "links": { "self": "/api/icons/search" }, "type": "icon" }, { "attributes": { "id": "search-dollar", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f688", "voted": false }, "id": "search-dollar", "links": { "self": "/api/icons/search-dollar" }, "type": "icon" }, { "attributes": { "id": "search-location", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f689", "voted": false }, "id": "search-location", "links": { "self": "/api/icons/search-location" }, "type": "icon" }, { "attributes": { "id": "search-minus", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f010", "voted": false }, "id": "search-minus", "links": { "self": "/api/icons/search-minus" }, "type": "icon" }, { "attributes": { "id": "search-plus", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f00e", "voted": false }, "id": "search-plus", "links": { "self": "/api/icons/search-plus" }, "type": "icon" }, { "attributes": { "id": "searchengin", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3eb", "voted": false }, "id": "searchengin", "links": { "self": "/api/icons/searchengin" }, "type": "icon" }, { "attributes": { "id": "seedling", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4d8", "voted": false }, "id": "seedling", "links": { "self": "/api/icons/seedling" }, "type": "icon" }, { "attributes": { "id": "sellcast", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2da", "voted": false }, "id": "sellcast", "links": { "self": "/api/icons/sellcast" }, "type": "icon" }, { "attributes": { "id": "sellsy", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f213", "voted": false }, "id": "sellsy", "links": { "self": "/api/icons/sellsy" }, "type": "icon" }, { "attributes": { "id": "send-back", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f87e", "voted": true }, "id": "send-back", "links": { "self": "/api/icons/send-back" }, "type": "icon" }, { "attributes": { "id": "send-backward", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f87f", "voted": true }, "id": "send-backward", "links": { "self": "/api/icons/send-backward" }, "type": "icon" }, { "attributes": { "id": "sensor", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f928", "voted": false }, "id": "sensor", "links": { "self": "/api/icons/sensor" }, "type": "icon" }, { "attributes": { "id": "sensor-alert", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f929", "voted": false }, "id": "sensor-alert", "links": { "self": "/api/icons/sensor-alert" }, "type": "icon" }, { "attributes": { "id": "sensor-fire", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f92a", "voted": false }, "id": "sensor-fire", "links": { "self": "/api/icons/sensor-fire" }, "type": "icon" }, { "attributes": { "id": "sensor-on", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f92b", "voted": false }, "id": "sensor-on", "links": { "self": "/api/icons/sensor-on" }, "type": "icon" }, { - "attributes": - { "id": "sensor-smoke", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f92c", "voted": false }, "id": "sensor-smoke", "links": { "self": "/api/icons/sensor-smoke" }, "type": "icon" -}, { "attributes": { "id": "server", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f233", "voted": false }, "id": "server", "links": { "self": "/api/icons/server" }, "type": "icon" }, { "attributes": { "id": "servicestack", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3ec", "voted": false }, "id": "servicestack", "links": { "self": "/api/icons/servicestack" }, "type": "icon" }, { "attributes": { "id": "shapes", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f61f", "voted": false }, "id": "shapes", "links": { "self": "/api/icons/shapes" }, "type": "icon" }, { "attributes": { "id": "share", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f064", "voted": false }, "id": "share", "links": { "self": "/api/icons/share" }, "type": "icon" }, { "attributes": { "id": "share-all", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f367", "voted": false }, "id": "share-all", "links": { "self": "/api/icons/share-all" }, "type": "icon" }, { "attributes": { "id": "share-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1e0", "voted": false }, "id": "share-alt", "links": { "self": "/api/icons/share-alt" }, "type": "icon" }, { "attributes": { "id": "share-alt-square", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1e1", "voted": false }, "id": "share-alt-square", "links": { "self": "/api/icons/share-alt-square" }, "type": "icon" }, { "attributes": { "id": "share-square", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f14d", "voted": false }, "id": "share-square", "links": { "self": "/api/icons/share-square" }, "type": "icon" }, { "attributes": { "id": "sheep", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f711", "voted": false }, "id": "sheep", "links": { "self": "/api/icons/sheep" }, "type": "icon" }, { "attributes": { "id": "shekel-sign", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f20b", "voted": true }, "id": "shekel-sign", "links": { "self": "/api/icons/shekel-sign" }, "type": "icon" }, { "attributes": { "id": "shield", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f132", "voted": false }, "id": "shield", "links": { "self": "/api/icons/shield" }, "type": "icon" }, { "attributes": { "id": "shield-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3ed", "voted": false }, "id": "shield-alt", "links": { "self": "/api/icons/shield-alt" }, "type": "icon" }, { "attributes": { "id": "shield-check", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2f7", "voted": false }, "id": "shield-check", "links": { "self": "/api/icons/shield-check" }, "type": "icon" }, { "attributes": { "id": "shield-cross", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f712", "voted": false }, "id": "shield-cross", "links": { "self": "/api/icons/shield-cross" }, "type": "icon" }, { "attributes": { "id": "shield-virus", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f96c", "voted": false }, "id": "shield-virus", "links": { "self": "/api/icons/shield-virus" }, "type": "icon" }, { "attributes": { "id": "ship", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f21a", "voted": false }, "id": "ship", "links": { "self": "/api/icons/ship" }, "type": "icon" }, { "attributes": { "id": "shipping-fast", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f48b", "voted": false }, "id": "shipping-fast", "links": { "self": "/api/icons/shipping-fast" }, "type": "icon" }, { "attributes": { "id": "shipping-timed", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f48c", "voted": false }, "id": "shipping-timed", "links": { "self": "/api/icons/shipping-timed" }, "type": "icon" }, { "attributes": { "id": "shirtsinbulk", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f214", "voted": false }, "id": "shirtsinbulk", "links": { "self": "/api/icons/shirtsinbulk" }, "type": "icon" }, { "attributes": { "id": "shish-kebab", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f821", "voted": false }, "id": "shish-kebab", "links": { "self": "/api/icons/shish-kebab" }, "type": "icon" }, { "attributes": { "id": "shoe-prints", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f54b", "voted": true }, "id": "shoe-prints", "links": { "self": "/api/icons/shoe-prints" }, "type": "icon" }, { "attributes": { "id": "shopify", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f957", "voted": false }, "id": "shopify", "links": { "self": "/api/icons/shopify" }, "type": "icon" }, { "attributes": { "id": "shopping-bag", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f290", "voted": false }, "id": "shopping-bag", "links": { "self": "/api/icons/shopping-bag" }, "type": "icon" }, { "attributes": { "id": "shopping-basket", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f291", "voted": false }, "id": "shopping-basket", "links": { "self": "/api/icons/shopping-basket" }, "type": "icon" }, { "attributes": { "id": "shopping-cart", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f07a", "voted": false }, "id": "shopping-cart", "links": { "self": "/api/icons/shopping-cart" }, "type": "icon" }, { "attributes": { "id": "shopware", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f5b5", "voted": false }, "id": "shopware", "links": { "self": "/api/icons/shopware" }, "type": "icon" }, { "attributes": { "id": "shovel", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f713", "voted": false }, "id": "shovel", "links": { "self": "/api/icons/shovel" }, "type": "icon" }, { "attributes": { "id": "shovel-snow", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7c3", "voted": false }, "id": "shovel-snow", "links": { "self": "/api/icons/shovel-snow" }, "type": "icon" }, { "attributes": { "id": "shower", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2cc", "voted": false }, "id": "shower", "links": { "self": "/api/icons/shower" }, "type": "icon" }, { "attributes": { "id": "shredder", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f68a", "voted": false }, "id": "shredder", "links": { "self": "/api/icons/shredder" }, "type": "icon" }, { "attributes": { "id": "shuttle-van", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5b6", "voted": false }, "id": "shuttle-van", "links": { "self": "/api/icons/shuttle-van" }, "type": "icon" }, { "attributes": { "id": "shuttlecock", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f45b", "voted": false }, "id": "shuttlecock", "links": { "self": "/api/icons/shuttlecock" }, "type": "icon" }, { "attributes": { "id": "sickle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f822", "voted": false }, "id": "sickle", "links": { "self": "/api/icons/sickle" }, "type": "icon" }, { "attributes": { "id": "sigma", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f68b", "voted": false }, "id": "sigma", "links": { "self": "/api/icons/sigma" }, "type": "icon" }, { "attributes": { "id": "sign", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4d9", "voted": false }, "id": "sign", "links": { "self": "/api/icons/sign" }, "type": "icon" }, { "attributes": { "id": "sign-in", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f090", "voted": false }, "id": "sign-in", "links": { "self": "/api/icons/sign-in" }, "type": "icon" }, { "attributes": { "id": "sign-in-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2f6", "voted": false }, "id": "sign-in-alt", "links": { "self": "/api/icons/sign-in-alt" }, "type": "icon" }, { "attributes": { "id": "sign-language", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2a7", "voted": false }, "id": "sign-language", "links": { "self": "/api/icons/sign-language" }, "type": "icon" }, { - "attributes": { - "id": "sign-out", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], - "unicode": "f08b", "voted": false - }, "id": "sign-out", "links": { "self": "/api/icons/sign-out" }, "type": "icon" -}, { "attributes": { "id": "sign-out-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2f5", "voted": false }, "id": "sign-out-alt", "links": { "self": "/api/icons/sign-out-alt" }, "type": "icon" }, { "attributes": { "id": "signal", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f012", "voted": false }, "id": "signal", "links": { "self": "/api/icons/signal" }, "type": "icon" }, { "attributes": { "id": "signal-1", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f68c", "voted": true }, "id": "signal-1", "links": { "self": "/api/icons/signal-1" }, "type": "icon" }, { "attributes": { "id": "signal-2", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f68d", "voted": true }, "id": "signal-2", "links": { "self": "/api/icons/signal-2" }, "type": "icon" }, { "attributes": { "id": "signal-3", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f68e", "voted": true }, "id": "signal-3", "links": { "self": "/api/icons/signal-3" }, "type": "icon" }, { "attributes": { "id": "signal-4", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f68f", "voted": true }, "id": "signal-4", "links": { "self": "/api/icons/signal-4" }, "type": "icon" }, { "attributes": { "id": "signal-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f690", "voted": true }, "id": "signal-alt", "links": { "self": "/api/icons/signal-alt" }, "type": "icon" }, { "attributes": { "id": "signal-alt-1", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f691", "voted": true }, "id": "signal-alt-1", "links": { "self": "/api/icons/signal-alt-1" }, "type": "icon" }, { "attributes": { "id": "signal-alt-2", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f692", "voted": true }, "id": "signal-alt-2", "links": { "self": "/api/icons/signal-alt-2" }, "type": "icon" }, { "attributes": { "id": "signal-alt-3", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f693", "voted": true }, "id": "signal-alt-3", "links": { "self": "/api/icons/signal-alt-3" }, "type": "icon" }, { "attributes": { "id": "signal-alt-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f694", "voted": true }, "id": "signal-alt-slash", "links": { "self": "/api/icons/signal-alt-slash" }, "type": "icon" }, { "attributes": { "id": "signal-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f695", "voted": true }, "id": "signal-slash", "links": { "self": "/api/icons/signal-slash" }, "type": "icon" }, { "attributes": { "id": "signal-stream", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8dd", "voted": false }, "id": "signal-stream", "links": { "self": "/api/icons/signal-stream" }, "type": "icon" }, { "attributes": { "id": "signature", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5b7", "voted": true }, "id": "signature", "links": { "self": "/api/icons/signature" }, "type": "icon" }, { "attributes": { "id": "sim-card", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7c4", "voted": true }, "id": "sim-card", "links": { "self": "/api/icons/sim-card" }, "type": "icon" }, { "attributes": { "id": "simplybuilt", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f215", "voted": false }, "id": "simplybuilt", "links": { "self": "/api/icons/simplybuilt" }, "type": "icon" }, { "attributes": { "id": "sink", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f96d", "voted": false }, "id": "sink", "links": { "self": "/api/icons/sink" }, "type": "icon" }, { "attributes": { "id": "siren", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f92d", "voted": false }, "id": "siren", "links": { "self": "/api/icons/siren" }, "type": "icon" }, { "attributes": { "id": "siren-on", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f92e", "voted": false }, "id": "siren-on", "links": { "self": "/api/icons/siren-on" }, "type": "icon" }, { "attributes": { "id": "sistrix", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3ee", "voted": false }, "id": "sistrix", "links": { "self": "/api/icons/sistrix" }, "type": "icon" }, { "attributes": { "id": "sitemap", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0e8", "voted": false }, "id": "sitemap", "links": { "self": "/api/icons/sitemap" }, "type": "icon" }, { "attributes": { "id": "sith", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f512", "voted": false }, "id": "sith", "links": { "self": "/api/icons/sith" }, "type": "icon" }, { "attributes": { "id": "skating", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7c5", "voted": false }, "id": "skating", "links": { "self": "/api/icons/skating" }, "type": "icon" }, { "attributes": { "id": "skeleton", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f620", "voted": false }, "id": "skeleton", "links": { "self": "/api/icons/skeleton" }, "type": "icon" }, { "attributes": { "id": "sketch", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f7c6", "voted": false }, "id": "sketch", "links": { "self": "/api/icons/sketch" }, "type": "icon" }, { "attributes": { "id": "ski-jump", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7c7", "voted": false }, "id": "ski-jump", "links": { "self": "/api/icons/ski-jump" }, "type": "icon" }, { "attributes": { "id": "ski-lift", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7c8", "voted": false }, "id": "ski-lift", "links": { "self": "/api/icons/ski-lift" }, "type": "icon" }, { "attributes": { "id": "skiing", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7c9", "voted": false }, "id": "skiing", "links": { "self": "/api/icons/skiing" }, "type": "icon" }, { "attributes": { "id": "skiing-nordic", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7ca", "voted": false }, "id": "skiing-nordic", "links": { "self": "/api/icons/skiing-nordic" }, "type": "icon" }, { "attributes": { "id": "skull", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f54c", "voted": true }, "id": "skull", "links": { "self": "/api/icons/skull" }, "type": "icon" }, { "attributes": { "id": "skull-cow", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f8de", "voted": false }, "id": "skull-cow", "links": { "self": "/api/icons/skull-cow" }, "type": "icon" }, { "attributes": { "id": "skull-crossbones", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f714", "voted": false }, "id": "skull-crossbones", "links": { "self": "/api/icons/skull-crossbones" }, "type": "icon" }, { "attributes": { "id": "skyatlas", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f216", "voted": false }, "id": "skyatlas", "links": { "self": "/api/icons/skyatlas" }, "type": "icon" }, { "attributes": { "id": "skype", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f17e", "voted": false }, "id": "skype", "links": { "self": "/api/icons/skype" }, "type": "icon" }, { "attributes": { "id": "slack", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f198", "voted": false }, "id": "slack", "links": { "self": "/api/icons/slack" }, "type": "icon" }, { "attributes": { "id": "slack-hash", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3ef", "voted": false }, "id": "slack-hash", "links": { "self": "/api/icons/slack-hash" }, "type": "icon" }, { "attributes": { "id": "slash", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f715", "voted": true }, "id": "slash", "links": { "self": "/api/icons/slash" }, "type": "icon" }, { "attributes": { "id": "sledding", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7cb", "voted": false }, "id": "sledding", "links": { "self": "/api/icons/sledding" }, "type": "icon" }, { "attributes": { "id": "sleigh", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7cc", "voted": false }, "id": "sleigh", "links": { "self": "/api/icons/sleigh" }, "type": "icon" }, { "attributes": { "id": "sliders-h", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1de", "voted": false }, "id": "sliders-h", "links": { "self": "/api/icons/sliders-h" }, "type": "icon" }, { - "attributes": { - "id": "sliders-h-square", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], - "unicode": "f3f0", "voted": false - }, "id": "sliders-h-square", "links": { "self": "/api/icons/sliders-h-square" }, "type": "icon" -}, { "attributes": { "id": "sliders-v", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3f1", "voted": false }, "id": "sliders-v", "links": { "self": "/api/icons/sliders-v" }, "type": "icon" }, { "attributes": { "id": "sliders-v-square", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3f2", "voted": false }, "id": "sliders-v-square", "links": { "self": "/api/icons/sliders-v-square" }, "type": "icon" }, { "attributes": { "id": "slideshare", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1e7", "voted": false }, "id": "slideshare", "links": { "self": "/api/icons/slideshare" }, "type": "icon" }, { "attributes": { "id": "smile", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f118", "voted": false }, "id": "smile", "links": { "self": "/api/icons/smile" }, "type": "icon" }, { "attributes": { "id": "smile-beam", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5b8", "voted": false }, "id": "smile-beam", "links": { "self": "/api/icons/smile-beam" }, "type": "icon" }, { "attributes": { "id": "smile-plus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5b9", "voted": false }, "id": "smile-plus", "links": { "self": "/api/icons/smile-plus" }, "type": "icon" }, { "attributes": { "id": "smile-wink", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4da", "voted": false }, "id": "smile-wink", "links": { "self": "/api/icons/smile-wink" }, "type": "icon" }, { "attributes": { "id": "smog", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f75f", "voted": false }, "id": "smog", "links": { "self": "/api/icons/smog" }, "type": "icon" }, { "attributes": { "id": "smoke", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f760", "voted": false }, "id": "smoke", "links": { "self": "/api/icons/smoke" }, "type": "icon" }, { "attributes": { "id": "smoking", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f48d", "voted": true }, "id": "smoking", "links": { "self": "/api/icons/smoking" }, "type": "icon" }, { "attributes": { "id": "smoking-ban", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f54d", "voted": true }, "id": "smoking-ban", "links": { "self": "/api/icons/smoking-ban" }, "type": "icon" }, { "attributes": { "id": "sms", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7cd", "voted": true }, "id": "sms", "links": { "self": "/api/icons/sms" }, "type": "icon" }, { "attributes": { "id": "snake", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f716", "voted": false }, "id": "snake", "links": { "self": "/api/icons/snake" }, "type": "icon" }, { "attributes": { "id": "snapchat", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2ab", "voted": false }, "id": "snapchat", "links": { "self": "/api/icons/snapchat" }, "type": "icon" }, { "attributes": { "id": "snapchat-ghost", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2ac", "voted": false }, "id": "snapchat-ghost", "links": { "self": "/api/icons/snapchat-ghost" }, "type": "icon" }, { "attributes": { "id": "snapchat-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2ad", "voted": false }, "id": "snapchat-square", "links": { "self": "/api/icons/snapchat-square" }, "type": "icon" }, { "attributes": { "id": "snooze", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f880", "voted": true }, "id": "snooze", "links": { "self": "/api/icons/snooze" }, "type": "icon" }, { "attributes": { "id": "snow-blowing", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f761", "voted": false }, "id": "snow-blowing", "links": { "self": "/api/icons/snow-blowing" }, "type": "icon" }, { "attributes": { "id": "snowboarding", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7ce", "voted": false }, "id": "snowboarding", "links": { "self": "/api/icons/snowboarding" }, "type": "icon" }, { "attributes": { "id": "snowflake", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2dc", "voted": false }, "id": "snowflake", "links": { "self": "/api/icons/snowflake" }, "type": "icon" }, { "attributes": { "id": "snowflakes", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7cf", "voted": false }, "id": "snowflakes", "links": { "self": "/api/icons/snowflakes" }, "type": "icon" }, { "attributes": { "id": "snowman", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7d0", "voted": false }, "id": "snowman", "links": { "self": "/api/icons/snowman" }, "type": "icon" }, { "attributes": { "id": "snowmobile", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7d1", "voted": false }, "id": "snowmobile", "links": { "self": "/api/icons/snowmobile" }, "type": "icon" }, { "attributes": { "id": "snowplow", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7d2", "voted": false }, "id": "snowplow", "links": { "self": "/api/icons/snowplow" }, "type": "icon" }, { "attributes": { "id": "soap", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f96e", "voted": false }, "id": "soap", "links": { "self": "/api/icons/soap" }, "type": "icon" }, { "attributes": { "id": "socks", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f696", "voted": false }, "id": "socks", "links": { "self": "/api/icons/socks" }, "type": "icon" }, { "attributes": { "id": "solar-panel", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5ba", "voted": false }, "id": "solar-panel", "links": { "self": "/api/icons/solar-panel" }, "type": "icon" }, { "attributes": { "id": "solar-system", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f92f", "voted": false }, "id": "solar-system", "links": { "self": "/api/icons/solar-system" }, "type": "icon" }, { "attributes": { "id": "sort", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0dc", "voted": false }, "id": "sort", "links": { "self": "/api/icons/sort" }, "type": "icon" }, { "attributes": { "id": "sort-alpha-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f15d", "voted": false }, "id": "sort-alpha-down", "links": { "self": "/api/icons/sort-alpha-down" }, "type": "icon" }, { "attributes": { "id": "sort-alpha-down-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f881", "voted": false }, "id": "sort-alpha-down-alt", "links": { "self": "/api/icons/sort-alpha-down-alt" }, "type": "icon" }, { "attributes": { "id": "sort-alpha-up", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f15e", "voted": false }, "id": "sort-alpha-up", "links": { "self": "/api/icons/sort-alpha-up" }, "type": "icon" }, { "attributes": { "id": "sort-alpha-up-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f882", "voted": false }, "id": "sort-alpha-up-alt", "links": { "self": "/api/icons/sort-alpha-up-alt" }, "type": "icon" }, { "attributes": { "id": "sort-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f883", "voted": false }, "id": "sort-alt", "links": { "self": "/api/icons/sort-alt" }, "type": "icon" }, { "attributes": { "id": "sort-amount-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f160", "voted": false }, "id": "sort-amount-down", "links": { "self": "/api/icons/sort-amount-down" }, "type": "icon" }, { "attributes": { "id": "sort-amount-down-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f884", "voted": false }, "id": "sort-amount-down-alt", "links": { "self": "/api/icons/sort-amount-down-alt" }, "type": "icon" }, { "attributes": { "id": "sort-amount-up", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f161", "voted": false }, "id": "sort-amount-up", "links": { "self": "/api/icons/sort-amount-up" }, "type": "icon" }, { "attributes": { "id": "sort-amount-up-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f885", "voted": false }, "id": "sort-amount-up-alt", "links": { "self": "/api/icons/sort-amount-up-alt" }, "type": "icon" }, { - "attributes": { - "id": "sort-circle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", - "duotone"], "unicode": "f930", "voted": false - }, "id": "sort-circle", "links": { "self": "/api/icons/sort-circle" }, "type": "icon" -}, { "attributes": { "id": "sort-circle-down", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f931", "voted": false }, "id": "sort-circle-down", "links": { "self": "/api/icons/sort-circle-down" }, "type": "icon" }, { "attributes": { "id": "sort-circle-up", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f932", "voted": false }, "id": "sort-circle-up", "links": { "self": "/api/icons/sort-circle-up" }, "type": "icon" }, { "attributes": { "id": "sort-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0dd", "voted": false }, "id": "sort-down", "links": { "self": "/api/icons/sort-down" }, "type": "icon" }, { "attributes": { "id": "sort-numeric-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f162", "voted": false }, "id": "sort-numeric-down", "links": { "self": "/api/icons/sort-numeric-down" }, "type": "icon" }, { "attributes": { "id": "sort-numeric-down-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f886", "voted": false }, "id": "sort-numeric-down-alt", "links": { "self": "/api/icons/sort-numeric-down-alt" }, "type": "icon" }, { "attributes": { "id": "sort-numeric-up", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f163", "voted": false }, "id": "sort-numeric-up", "links": { "self": "/api/icons/sort-numeric-up" }, "type": "icon" }, { "attributes": { "id": "sort-numeric-up-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f887", "voted": false }, "id": "sort-numeric-up-alt", "links": { "self": "/api/icons/sort-numeric-up-alt" }, "type": "icon" }, { "attributes": { "id": "sort-shapes-down", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f888", "voted": false }, "id": "sort-shapes-down", "links": { "self": "/api/icons/sort-shapes-down" }, "type": "icon" }, { "attributes": { "id": "sort-shapes-down-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f889", "voted": false }, "id": "sort-shapes-down-alt", "links": { "self": "/api/icons/sort-shapes-down-alt" }, "type": "icon" }, { "attributes": { "id": "sort-shapes-up", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f88a", "voted": false }, "id": "sort-shapes-up", "links": { "self": "/api/icons/sort-shapes-up" }, "type": "icon" }, { "attributes": { "id": "sort-shapes-up-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f88b", "voted": false }, "id": "sort-shapes-up-alt", "links": { "self": "/api/icons/sort-shapes-up-alt" }, "type": "icon" }, { "attributes": { "id": "sort-size-down", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f88c", "voted": false }, "id": "sort-size-down", "links": { "self": "/api/icons/sort-size-down" }, "type": "icon" }, { "attributes": { "id": "sort-size-down-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f88d", "voted": false }, "id": "sort-size-down-alt", "links": { "self": "/api/icons/sort-size-down-alt" }, "type": "icon" }, { "attributes": { "id": "sort-size-up", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f88e", "voted": false }, "id": "sort-size-up", "links": { "self": "/api/icons/sort-size-up" }, "type": "icon" }, { "attributes": { "id": "sort-size-up-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f88f", "voted": false }, "id": "sort-size-up-alt", "links": { "self": "/api/icons/sort-size-up-alt" }, "type": "icon" }, { "attributes": { "id": "sort-up", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0de", "voted": false }, "id": "sort-up", "links": { "self": "/api/icons/sort-up" }, "type": "icon" }, { "attributes": { "id": "soundcloud", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1be", "voted": false }, "id": "soundcloud", "links": { "self": "/api/icons/soundcloud" }, "type": "icon" }, { "attributes": { "id": "soup", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f823", "voted": false }, "id": "soup", "links": { "self": "/api/icons/soup" }, "type": "icon" }, { "attributes": { "id": "sourcetree", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f7d3", "voted": true }, "id": "sourcetree", "links": { "self": "/api/icons/sourcetree" }, "type": "icon" }, { "attributes": { "id": "spa", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5bb", "voted": false }, "id": "spa", "links": { "self": "/api/icons/spa" }, "type": "icon" }, { "attributes": { "id": "space-shuttle", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f197", "voted": false }, "id": "space-shuttle", "links": { "self": "/api/icons/space-shuttle" }, "type": "icon" }, { "attributes": { "id": "space-station-moon", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f933", "voted": false }, "id": "space-station-moon", "links": { "self": "/api/icons/space-station-moon" }, "type": "icon" }, { "attributes": { "id": "space-station-moon-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f934", "voted": false }, "id": "space-station-moon-alt", "links": { "self": "/api/icons/space-station-moon-alt" }, "type": "icon" }, { "attributes": { "id": "spade", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2f4", "voted": false }, "id": "spade", "links": { "self": "/api/icons/spade" }, "type": "icon" }, { "attributes": { "id": "sparkles", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f890", "voted": false }, "id": "sparkles", "links": { "self": "/api/icons/sparkles" }, "type": "icon" }, { "attributes": { "id": "speakap", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3f3", "voted": false }, "id": "speakap", "links": { "self": "/api/icons/speakap" }, "type": "icon" }, { "attributes": { "id": "speaker", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8df", "voted": false }, "id": "speaker", "links": { "self": "/api/icons/speaker" }, "type": "icon" }, { "attributes": { "id": "speaker-deck", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f83c", "voted": false }, "id": "speaker-deck", "links": { "self": "/api/icons/speaker-deck" }, "type": "icon" }, { "attributes": { "id": "speakers", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8e0", "voted": false }, "id": "speakers", "links": { "self": "/api/icons/speakers" }, "type": "icon" }, { "attributes": { "id": "spell-check", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f891", "voted": false }, "id": "spell-check", "links": { "self": "/api/icons/spell-check" }, "type": "icon" }, { "attributes": { "id": "spider", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f717", "voted": true }, "id": "spider", "links": { "self": "/api/icons/spider" }, "type": "icon" }, { "attributes": { "id": "spider-black-widow", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f718", "voted": false }, "id": "spider-black-widow", "links": { "self": "/api/icons/spider-black-widow" }, "type": "icon" }, { "attributes": { "id": "spider-web", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f719", "voted": false }, "id": "spider-web", "links": { "self": "/api/icons/spider-web" }, "type": "icon" }, { "attributes": { "id": "spinner", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f110", "voted": false }, "id": "spinner", "links": { "self": "/api/icons/spinner" }, "type": "icon" }, { "attributes": { "id": "spinner-third", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3f4", "voted": false }, "id": "spinner-third", "links": { "self": "/api/icons/spinner-third" }, "type": "icon" }, { "attributes": { "id": "splotch", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5bc", "voted": false }, "id": "splotch", "links": { "self": "/api/icons/splotch" }, "type": "icon" }, { "attributes": { "id": "spotify", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1bc", "voted": false }, "id": "spotify", "links": { "self": "/api/icons/spotify" }, "type": "icon" }, { "attributes": { "id": "spray-can", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5bd", "voted": false }, "id": "spray-can", "links": { "self": "/api/icons/spray-can" }, "type": "icon" }, { - "attributes": { - "id": "sprinkler", "membership": { - "free": [], - "pro": ["solid", "regular", "light", "duotone"] - }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f935", "voted": false - }, "id": "sprinkler", "links": { "self": "/api/icons/sprinkler" }, "type": "icon" -}, { "attributes": { "id": "square", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0c8", "voted": false }, "id": "square", "links": { "self": "/api/icons/square" }, "type": "icon" }, { "attributes": { "id": "square-full", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f45c", "voted": false }, "id": "square-full", "links": { "self": "/api/icons/square-full" }, "type": "icon" }, { "attributes": { "id": "square-root", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f697", "voted": false }, "id": "square-root", "links": { "self": "/api/icons/square-root" }, "type": "icon" }, { "attributes": { "id": "square-root-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f698", "voted": false }, "id": "square-root-alt", "links": { "self": "/api/icons/square-root-alt" }, "type": "icon" }, { "attributes": { "id": "squarespace", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f5be", "voted": true }, "id": "squarespace", "links": { "self": "/api/icons/squarespace" }, "type": "icon" }, { "attributes": { "id": "squirrel", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f71a", "voted": false }, "id": "squirrel", "links": { "self": "/api/icons/squirrel" }, "type": "icon" }, { "attributes": { "id": "stack-exchange", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f18d", "voted": false }, "id": "stack-exchange", "links": { "self": "/api/icons/stack-exchange" }, "type": "icon" }, { "attributes": { "id": "stack-overflow", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f16c", "voted": false }, "id": "stack-overflow", "links": { "self": "/api/icons/stack-overflow" }, "type": "icon" }, { "attributes": { "id": "stackpath", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f842", "voted": false }, "id": "stackpath", "links": { "self": "/api/icons/stackpath" }, "type": "icon" }, { "attributes": { "id": "staff", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f71b", "voted": false }, "id": "staff", "links": { "self": "/api/icons/staff" }, "type": "icon" }, { "attributes": { "id": "stamp", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5bf", "voted": false }, "id": "stamp", "links": { "self": "/api/icons/stamp" }, "type": "icon" }, { "attributes": { "id": "star", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f005", "voted": false }, "id": "star", "links": { "self": "/api/icons/star" }, "type": "icon" }, { "attributes": { "id": "star-and-crescent", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f699", "voted": false }, "id": "star-and-crescent", "links": { "self": "/api/icons/star-and-crescent" }, "type": "icon" }, { "attributes": { "id": "star-christmas", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7d4", "voted": false }, "id": "star-christmas", "links": { "self": "/api/icons/star-christmas" }, "type": "icon" }, { "attributes": { "id": "star-exclamation", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2f3", "voted": false }, "id": "star-exclamation", "links": { "self": "/api/icons/star-exclamation" }, "type": "icon" }, { "attributes": { "id": "star-half", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f089", "voted": false }, "id": "star-half", "links": { "self": "/api/icons/star-half" }, "type": "icon" }, { "attributes": { "id": "star-half-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5c0", "voted": true }, "id": "star-half-alt", "links": { "self": "/api/icons/star-half-alt" }, "type": "icon" }, { "attributes": { "id": "star-of-david", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f69a", "voted": false }, "id": "star-of-david", "links": { "self": "/api/icons/star-of-david" }, "type": "icon" }, { "attributes": { "id": "star-of-life", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f621", "voted": false }, "id": "star-of-life", "links": { "self": "/api/icons/star-of-life" }, "type": "icon" }, { "attributes": { "id": "star-shooting", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f936", "voted": false }, "id": "star-shooting", "links": { "self": "/api/icons/star-shooting" }, "type": "icon" }, { "attributes": { "id": "starfighter", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f937", "voted": false }, "id": "starfighter", "links": { "self": "/api/icons/starfighter" }, "type": "icon" }, { "attributes": { "id": "starfighter-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f938", "voted": false }, "id": "starfighter-alt", "links": { "self": "/api/icons/starfighter-alt" }, "type": "icon" }, { "attributes": { "id": "stars", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f762", "voted": false }, "id": "stars", "links": { "self": "/api/icons/stars" }, "type": "icon" }, { "attributes": { "id": "starship", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f939", "voted": false }, "id": "starship", "links": { "self": "/api/icons/starship" }, "type": "icon" }, { "attributes": { "id": "starship-freighter", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f93a", "voted": false }, "id": "starship-freighter", "links": { "self": "/api/icons/starship-freighter" }, "type": "icon" }, { "attributes": { "id": "staylinked", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3f5", "voted": false }, "id": "staylinked", "links": { "self": "/api/icons/staylinked" }, "type": "icon" }, { "attributes": { "id": "steak", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f824", "voted": false }, "id": "steak", "links": { "self": "/api/icons/steak" }, "type": "icon" }, { "attributes": { "id": "steam", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1b6", "voted": false }, "id": "steam", "links": { "self": "/api/icons/steam" }, "type": "icon" }, { "attributes": { "id": "steam-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1b7", "voted": false }, "id": "steam-square", "links": { "self": "/api/icons/steam-square" }, "type": "icon" }, { "attributes": { "id": "steam-symbol", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3f6", "voted": false }, "id": "steam-symbol", "links": { "self": "/api/icons/steam-symbol" }, "type": "icon" }, { "attributes": { "id": "steering-wheel", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f622", "voted": false }, "id": "steering-wheel", "links": { "self": "/api/icons/steering-wheel" }, "type": "icon" }, { "attributes": { "id": "step-backward", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f048", "voted": false }, "id": "step-backward", "links": { "self": "/api/icons/step-backward" }, "type": "icon" }, { "attributes": { "id": "step-forward", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f051", "voted": false }, "id": "step-forward", "links": { "self": "/api/icons/step-forward" }, "type": "icon" }, { "attributes": { "id": "stethoscope", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0f1", "voted": false }, "id": "stethoscope", "links": { "self": "/api/icons/stethoscope" }, "type": "icon" }, { "attributes": { "id": "sticker-mule", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3f7", "voted": false }, "id": "sticker-mule", "links": { "self": "/api/icons/sticker-mule" }, "type": "icon" }, { "attributes": { "id": "sticky-note", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f249", "voted": false }, "id": "sticky-note", "links": { "self": "/api/icons/sticky-note" }, "type": "icon" }, { "attributes": { "id": "stocking", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7d5", "voted": false }, "id": "stocking", "links": { "self": "/api/icons/stocking" }, "type": "icon" }, { "attributes": { "id": "stomach", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f623", "voted": false }, "id": "stomach", "links": { "self": "/api/icons/stomach" }, "type": "icon" }, { "attributes": { "id": "stop", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f04d", "voted": false }, "id": "stop", "links": { "self": "/api/icons/stop" }, "type": "icon" }, { - "attributes": { - "id": "stop-circle", "membership": - { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f28d", "voted": false - }, "id": "stop-circle", "links": { "self": "/api/icons/stop-circle" }, "type": "icon" -}, { "attributes": { "id": "stopwatch", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2f2", "voted": false }, "id": "stopwatch", "links": { "self": "/api/icons/stopwatch" }, "type": "icon" }, { "attributes": { "id": "stopwatch-20", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f96f", "voted": false }, "id": "stopwatch-20", "links": { "self": "/api/icons/stopwatch-20" }, "type": "icon" }, { "attributes": { "id": "store", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f54e", "voted": true }, "id": "store", "links": { "self": "/api/icons/store" }, "type": "icon" }, { "attributes": { "id": "store-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f54f", "voted": true }, "id": "store-alt", "links": { "self": "/api/icons/store-alt" }, "type": "icon" }, { "attributes": { "id": "store-alt-slash", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f970", "voted": false }, "id": "store-alt-slash", "links": { "self": "/api/icons/store-alt-slash" }, "type": "icon" }, { "attributes": { "id": "store-slash", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f971", "voted": false }, "id": "store-slash", "links": { "self": "/api/icons/store-slash" }, "type": "icon" }, { "attributes": { "id": "strava", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f428", "voted": false }, "id": "strava", "links": { "self": "/api/icons/strava" }, "type": "icon" }, { "attributes": { "id": "stream", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f550", "voted": false }, "id": "stream", "links": { "self": "/api/icons/stream" }, "type": "icon" }, { "attributes": { "id": "street-view", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f21d", "voted": false }, "id": "street-view", "links": { "self": "/api/icons/street-view" }, "type": "icon" }, { "attributes": { "id": "stretcher", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f825", "voted": false }, "id": "stretcher", "links": { "self": "/api/icons/stretcher" }, "type": "icon" }, { "attributes": { "id": "strikethrough", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0cc", "voted": false }, "id": "strikethrough", "links": { "self": "/api/icons/strikethrough" }, "type": "icon" }, { "attributes": { "id": "stripe", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f429", "voted": false }, "id": "stripe", "links": { "self": "/api/icons/stripe" }, "type": "icon" }, { "attributes": { "id": "stripe-s", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f42a", "voted": false }, "id": "stripe-s", "links": { "self": "/api/icons/stripe-s" }, "type": "icon" }, { "attributes": { "id": "stroopwafel", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f551", "voted": false }, "id": "stroopwafel", "links": { "self": "/api/icons/stroopwafel" }, "type": "icon" }, { "attributes": { "id": "studiovinari", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3f8", "voted": false }, "id": "studiovinari", "links": { "self": "/api/icons/studiovinari" }, "type": "icon" }, { "attributes": { "id": "stumbleupon", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1a4", "voted": false }, "id": "stumbleupon", "links": { "self": "/api/icons/stumbleupon" }, "type": "icon" }, { "attributes": { "id": "stumbleupon-circle", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1a3", "voted": false }, "id": "stumbleupon-circle", "links": { "self": "/api/icons/stumbleupon-circle" }, "type": "icon" }, { "attributes": { "id": "subscript", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f12c", "voted": false }, "id": "subscript", "links": { "self": "/api/icons/subscript" }, "type": "icon" }, { "attributes": { "id": "subway", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f239", "voted": false }, "id": "subway", "links": { "self": "/api/icons/subway" }, "type": "icon" }, { "attributes": { "id": "suitcase", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0f2", "voted": false }, "id": "suitcase", "links": { "self": "/api/icons/suitcase" }, "type": "icon" }, { "attributes": { "id": "suitcase-rolling", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5c1", "voted": false }, "id": "suitcase-rolling", "links": { "self": "/api/icons/suitcase-rolling" }, "type": "icon" }, { "attributes": { "id": "sun", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f185", "voted": false }, "id": "sun", "links": { "self": "/api/icons/sun" }, "type": "icon" }, { "attributes": { "id": "sun-cloud", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f763", "voted": false }, "id": "sun-cloud", "links": { "self": "/api/icons/sun-cloud" }, "type": "icon" }, { "attributes": { "id": "sun-dust", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f764", "voted": false }, "id": "sun-dust", "links": { "self": "/api/icons/sun-dust" }, "type": "icon" }, { "attributes": { "id": "sun-haze", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f765", "voted": false }, "id": "sun-haze", "links": { "self": "/api/icons/sun-haze" }, "type": "icon" }, { "attributes": { "id": "sunglasses", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f892", "voted": true }, "id": "sunglasses", "links": { "self": "/api/icons/sunglasses" }, "type": "icon" }, { "attributes": { "id": "sunrise", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f766", "voted": false }, "id": "sunrise", "links": { "self": "/api/icons/sunrise" }, "type": "icon" }, { "attributes": { "id": "sunset", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f767", "voted": false }, "id": "sunset", "links": { "self": "/api/icons/sunset" }, "type": "icon" }, { "attributes": { "id": "superpowers", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2dd", "voted": false }, "id": "superpowers", "links": { "self": "/api/icons/superpowers" }, "type": "icon" }, { "attributes": { "id": "superscript", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f12b", "voted": false }, "id": "superscript", "links": { "self": "/api/icons/superscript" }, "type": "icon" }, { "attributes": { "id": "supple", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3f9", "voted": false }, "id": "supple", "links": { "self": "/api/icons/supple" }, "type": "icon" }, { "attributes": { "id": "surprise", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5c2", "voted": false }, "id": "surprise", "links": { "self": "/api/icons/surprise" }, "type": "icon" }, { "attributes": { "id": "suse", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f7d6", "voted": true }, "id": "suse", "links": { "self": "/api/icons/suse" }, "type": "icon" }, { "attributes": { "id": "swatchbook", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5c3", "voted": false }, "id": "swatchbook", "links": { "self": "/api/icons/swatchbook" }, "type": "icon" }, { "attributes": { "id": "swift", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f8e1", "voted": false }, "id": "swift", "links": { "self": "/api/icons/swift" }, "type": "icon" }, { "attributes": { "id": "swimmer", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5c4", "voted": false }, "id": "swimmer", "links": { "self": "/api/icons/swimmer" }, "type": "icon" }, { "attributes": { "id": "swimming-pool", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5c5", "voted": false }, "id": "swimming-pool", "links": { "self": "/api/icons/swimming-pool" }, "type": "icon" }, { "attributes": { "id": "sword", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f71c", "voted": false }, "id": "sword", "links": { "self": "/api/icons/sword" }, "type": "icon" }, { "attributes": { "id": "sword-laser", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f93b", "voted": false }, "id": "sword-laser", "links": { "self": "/api/icons/sword-laser" }, "type": "icon" }, { - "attributes": { "id": "sword-laser-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f93c", "voted": false }, "id": "sword-laser-alt", "links": - { "self": "/api/icons/sword-laser-alt" }, "type": "icon" -}, { "attributes": { "id": "swords", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f71d", "voted": false }, "id": "swords", "links": { "self": "/api/icons/swords" }, "type": "icon" }, { "attributes": { "id": "swords-laser", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f93d", "voted": false }, "id": "swords-laser", "links": { "self": "/api/icons/swords-laser" }, "type": "icon" }, { "attributes": { "id": "symfony", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f83d", "voted": false }, "id": "symfony", "links": { "self": "/api/icons/symfony" }, "type": "icon" }, { "attributes": { "id": "synagogue", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f69b", "voted": false }, "id": "synagogue", "links": { "self": "/api/icons/synagogue" }, "type": "icon" }, { "attributes": { "id": "sync", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f021", "voted": false }, "id": "sync", "links": { "self": "/api/icons/sync" }, "type": "icon" }, { "attributes": { "id": "sync-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2f1", "voted": false }, "id": "sync-alt", "links": { "self": "/api/icons/sync-alt" }, "type": "icon" }, { "attributes": { "id": "syringe", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f48e", "voted": false }, "id": "syringe", "links": { "self": "/api/icons/syringe" }, "type": "icon" }, { "attributes": { "id": "table", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0ce", "voted": false }, "id": "table", "links": { "self": "/api/icons/table" }, "type": "icon" }, { "attributes": { "id": "table-tennis", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f45d", "voted": false }, "id": "table-tennis", "links": { "self": "/api/icons/table-tennis" }, "type": "icon" }, { "attributes": { "id": "tablet", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f10a", "voted": false }, "id": "tablet", "links": { "self": "/api/icons/tablet" }, "type": "icon" }, { "attributes": { "id": "tablet-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3fa", "voted": false }, "id": "tablet-alt", "links": { "self": "/api/icons/tablet-alt" }, "type": "icon" }, { "attributes": { "id": "tablet-android", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3fb", "voted": false }, "id": "tablet-android", "links": { "self": "/api/icons/tablet-android" }, "type": "icon" }, { "attributes": { "id": "tablet-android-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3fc", "voted": false }, "id": "tablet-android-alt", "links": { "self": "/api/icons/tablet-android-alt" }, "type": "icon" }, { "attributes": { "id": "tablet-rugged", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f48f", "voted": false }, "id": "tablet-rugged", "links": { "self": "/api/icons/tablet-rugged" }, "type": "icon" }, { "attributes": { "id": "tablets", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f490", "voted": false }, "id": "tablets", "links": { "self": "/api/icons/tablets" }, "type": "icon" }, { "attributes": { "id": "tachometer", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0e4", "voted": false }, "id": "tachometer", "links": { "self": "/api/icons/tachometer" }, "type": "icon" }, { "attributes": { "id": "tachometer-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3fd", "voted": false }, "id": "tachometer-alt", "links": { "self": "/api/icons/tachometer-alt" }, "type": "icon" }, { "attributes": { "id": "tachometer-alt-average", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f624", "voted": false }, "id": "tachometer-alt-average", "links": { "self": "/api/icons/tachometer-alt-average" }, "type": "icon" }, { "attributes": { "id": "tachometer-alt-fast", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f625", "voted": false }, "id": "tachometer-alt-fast", "links": { "self": "/api/icons/tachometer-alt-fast" }, "type": "icon" }, { "attributes": { "id": "tachometer-alt-fastest", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f626", "voted": false }, "id": "tachometer-alt-fastest", "links": { "self": "/api/icons/tachometer-alt-fastest" }, "type": "icon" }, { "attributes": { "id": "tachometer-alt-slow", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f627", "voted": false }, "id": "tachometer-alt-slow", "links": { "self": "/api/icons/tachometer-alt-slow" }, "type": "icon" }, { "attributes": { "id": "tachometer-alt-slowest", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f628", "voted": false }, "id": "tachometer-alt-slowest", "links": { "self": "/api/icons/tachometer-alt-slowest" }, "type": "icon" }, { "attributes": { "id": "tachometer-average", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f629", "voted": false }, "id": "tachometer-average", "links": { "self": "/api/icons/tachometer-average" }, "type": "icon" }, { "attributes": { "id": "tachometer-fast", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f62a", "voted": false }, "id": "tachometer-fast", "links": { "self": "/api/icons/tachometer-fast" }, "type": "icon" }, { "attributes": { "id": "tachometer-fastest", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f62b", "voted": false }, "id": "tachometer-fastest", "links": { "self": "/api/icons/tachometer-fastest" }, "type": "icon" }, { "attributes": { "id": "tachometer-slow", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f62c", "voted": false }, "id": "tachometer-slow", "links": { "self": "/api/icons/tachometer-slow" }, "type": "icon" }, { "attributes": { "id": "tachometer-slowest", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f62d", "voted": false }, "id": "tachometer-slowest", "links": { "self": "/api/icons/tachometer-slowest" }, "type": "icon" }, { "attributes": { "id": "taco", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f826", "voted": false }, "id": "taco", "links": { "self": "/api/icons/taco" }, "type": "icon" }, { "attributes": { "id": "tag", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f02b", "voted": false }, "id": "tag", "links": { "self": "/api/icons/tag" }, "type": "icon" }, { "attributes": { "id": "tags", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f02c", "voted": false }, "id": "tags", "links": { "self": "/api/icons/tags" }, "type": "icon" }, { "attributes": { "id": "tally", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f69c", "voted": false }, "id": "tally", "links": { "self": "/api/icons/tally" }, "type": "icon" }, { "attributes": { "id": "tanakh", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f827", "voted": false }, "id": "tanakh", "links": { "self": "/api/icons/tanakh" }, "type": "icon" }, { "attributes": { "id": "tape", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4db", "voted": false }, "id": "tape", "links": { "self": "/api/icons/tape" }, "type": "icon" }, { "attributes": { "id": "tasks", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0ae", "voted": false }, "id": "tasks", "links": { "self": "/api/icons/tasks" }, "type": "icon" }, { "attributes": { "id": "tasks-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f828", "voted": false }, "id": "tasks-alt", "links": { "self": "/api/icons/tasks-alt" }, "type": "icon" }, { "attributes": { "id": "taxi", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1ba", "voted": false }, "id": "taxi", "links": { "self": "/api/icons/taxi" }, "type": "icon" }, { "attributes": { "id": "teamspeak", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f4f9", "voted": true }, "id": "teamspeak", "links": { "self": "/api/icons/teamspeak" }, "type": "icon" }, { "attributes": { "id": "teeth", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f62e", "voted": false }, "id": "teeth", "links": { "self": "/api/icons/teeth" }, "type": "icon" }, { - "attributes": { - "id": "teeth-open", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", - "duotone"], "unicode": "f62f", "voted": false - }, "id": "teeth-open", "links": { "self": "/api/icons/teeth-open" }, "type": "icon" -}, { "attributes": { "id": "telegram", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2c6", "voted": false }, "id": "telegram", "links": { "self": "/api/icons/telegram" }, "type": "icon" }, { "attributes": { "id": "telegram-plane", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3fe", "voted": false }, "id": "telegram-plane", "links": { "self": "/api/icons/telegram-plane" }, "type": "icon" }, { "attributes": { "id": "telescope", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f93e", "voted": false }, "id": "telescope", "links": { "self": "/api/icons/telescope" }, "type": "icon" }, { "attributes": { "id": "temperature-down", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f93f", "voted": false }, "id": "temperature-down", "links": { "self": "/api/icons/temperature-down" }, "type": "icon" }, { "attributes": { "id": "temperature-frigid", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f768", "voted": false }, "id": "temperature-frigid", "links": { "self": "/api/icons/temperature-frigid" }, "type": "icon" }, { "attributes": { "id": "temperature-high", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f769", "voted": false }, "id": "temperature-high", "links": { "self": "/api/icons/temperature-high" }, "type": "icon" }, { "attributes": { "id": "temperature-hot", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f76a", "voted": false }, "id": "temperature-hot", "links": { "self": "/api/icons/temperature-hot" }, "type": "icon" }, { "attributes": { "id": "temperature-low", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f76b", "voted": false }, "id": "temperature-low", "links": { "self": "/api/icons/temperature-low" }, "type": "icon" }, { "attributes": { "id": "temperature-up", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f940", "voted": false }, "id": "temperature-up", "links": { "self": "/api/icons/temperature-up" }, "type": "icon" }, { "attributes": { "id": "tencent-weibo", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1d5", "voted": false }, "id": "tencent-weibo", "links": { "self": "/api/icons/tencent-weibo" }, "type": "icon" }, { "attributes": { "id": "tenge", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7d7", "voted": true }, "id": "tenge", "links": { "self": "/api/icons/tenge" }, "type": "icon" }, { "attributes": { "id": "tennis-ball", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f45e", "voted": false }, "id": "tennis-ball", "links": { "self": "/api/icons/tennis-ball" }, "type": "icon" }, { "attributes": { "id": "terminal", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f120", "voted": false }, "id": "terminal", "links": { "self": "/api/icons/terminal" }, "type": "icon" }, { "attributes": { "id": "text", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f893", "voted": false }, "id": "text", "links": { "self": "/api/icons/text" }, "type": "icon" }, { "attributes": { "id": "text-height", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f034", "voted": false }, "id": "text-height", "links": { "self": "/api/icons/text-height" }, "type": "icon" }, { "attributes": { "id": "text-size", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f894", "voted": false }, "id": "text-size", "links": { "self": "/api/icons/text-size" }, "type": "icon" }, { "attributes": { "id": "text-width", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f035", "voted": false }, "id": "text-width", "links": { "self": "/api/icons/text-width" }, "type": "icon" }, { "attributes": { "id": "th", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f00a", "voted": false }, "id": "th", "links": { "self": "/api/icons/th" }, "type": "icon" }, { "attributes": { "id": "th-large", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f009", "voted": false }, "id": "th-large", "links": { "self": "/api/icons/th-large" }, "type": "icon" }, { "attributes": { "id": "th-list", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f00b", "voted": false }, "id": "th-list", "links": { "self": "/api/icons/th-list" }, "type": "icon" }, { "attributes": { "id": "the-red-yeti", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f69d", "voted": false }, "id": "the-red-yeti", "links": { "self": "/api/icons/the-red-yeti" }, "type": "icon" }, { "attributes": { "id": "theater-masks", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f630", "voted": false }, "id": "theater-masks", "links": { "self": "/api/icons/theater-masks" }, "type": "icon" }, { "attributes": { "id": "themeco", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f5c6", "voted": false }, "id": "themeco", "links": { "self": "/api/icons/themeco" }, "type": "icon" }, { "attributes": { "id": "themeisle", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2b2", "voted": false }, "id": "themeisle", "links": { "self": "/api/icons/themeisle" }, "type": "icon" }, { "attributes": { "id": "thermometer", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f491", "voted": false }, "id": "thermometer", "links": { "self": "/api/icons/thermometer" }, "type": "icon" }, { "attributes": { "id": "thermometer-empty", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2cb", "voted": false }, "id": "thermometer-empty", "links": { "self": "/api/icons/thermometer-empty" }, "type": "icon" }, { "attributes": { "id": "thermometer-full", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2c7", "voted": false }, "id": "thermometer-full", "links": { "self": "/api/icons/thermometer-full" }, "type": "icon" }, { "attributes": { "id": "thermometer-half", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2c9", "voted": false }, "id": "thermometer-half", "links": { "self": "/api/icons/thermometer-half" }, "type": "icon" }, { "attributes": { "id": "thermometer-quarter", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2ca", "voted": false }, "id": "thermometer-quarter", "links": { "self": "/api/icons/thermometer-quarter" }, "type": "icon" }, { "attributes": { "id": "thermometer-three-quarters", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2c8", "voted": false }, "id": "thermometer-three-quarters", "links": { "self": "/api/icons/thermometer-three-quarters" }, "type": "icon" }, { "attributes": { "id": "theta", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f69e", "voted": false }, "id": "theta", "links": { "self": "/api/icons/theta" }, "type": "icon" }, { "attributes": { "id": "think-peaks", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f731", "voted": false }, "id": "think-peaks", "links": { "self": "/api/icons/think-peaks" }, "type": "icon" }, { "attributes": { "id": "thumbs-down", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f165", "voted": false }, "id": "thumbs-down", "links": { "self": "/api/icons/thumbs-down" }, "type": "icon" }, { "attributes": { "id": "thumbs-up", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f164", "voted": false }, "id": "thumbs-up", "links": { "self": "/api/icons/thumbs-up" }, "type": "icon" }, { "attributes": { "id": "thumbtack", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f08d", "voted": false }, "id": "thumbtack", "links": { "self": "/api/icons/thumbtack" }, "type": "icon" }, { "attributes": { "id": "thunderstorm", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f76c", "voted": false }, "id": "thunderstorm", "links": { "self": "/api/icons/thunderstorm" }, "type": "icon" }, { "attributes": { "id": "thunderstorm-moon", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f76d", "voted": false }, "id": "thunderstorm-moon", "links": { "self": "/api/icons/thunderstorm-moon" }, "type": "icon" }, { "attributes": { "id": "thunderstorm-sun", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f76e", "voted": false }, "id": "thunderstorm-sun", "links": { "self": "/api/icons/thunderstorm-sun" }, "type": "icon" }, { - "attributes": { - "id": "ticket", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], - "unicode": "f145", "voted": false - }, "id": "ticket", "links": { "self": "/api/icons/ticket" }, "type": "icon" -}, { "attributes": { "id": "ticket-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f3ff", "voted": false }, "id": "ticket-alt", "links": { "self": "/api/icons/ticket-alt" }, "type": "icon" }, { "attributes": { "id": "tilde", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f69f", "voted": false }, "id": "tilde", "links": { "self": "/api/icons/tilde" }, "type": "icon" }, { "attributes": { "id": "times", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f00d", "voted": false }, "id": "times", "links": { "self": "/api/icons/times" }, "type": "icon" }, { "attributes": { "id": "times-circle", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f057", "voted": false }, "id": "times-circle", "links": { "self": "/api/icons/times-circle" }, "type": "icon" }, { "attributes": { "id": "times-hexagon", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2ee", "voted": false }, "id": "times-hexagon", "links": { "self": "/api/icons/times-hexagon" }, "type": "icon" }, { "attributes": { "id": "times-octagon", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2f0", "voted": false }, "id": "times-octagon", "links": { "self": "/api/icons/times-octagon" }, "type": "icon" }, { "attributes": { "id": "times-square", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2d3", "voted": false }, "id": "times-square", "links": { "self": "/api/icons/times-square" }, "type": "icon" }, { "attributes": { "id": "tint", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f043", "voted": false }, "id": "tint", "links": { "self": "/api/icons/tint" }, "type": "icon" }, { "attributes": { "id": "tint-slash", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5c7", "voted": false }, "id": "tint-slash", "links": { "self": "/api/icons/tint-slash" }, "type": "icon" }, { "attributes": { "id": "tire", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f631", "voted": false }, "id": "tire", "links": { "self": "/api/icons/tire" }, "type": "icon" }, { "attributes": { "id": "tire-flat", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f632", "voted": false }, "id": "tire-flat", "links": { "self": "/api/icons/tire-flat" }, "type": "icon" }, { "attributes": { "id": "tire-pressure-warning", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f633", "voted": false }, "id": "tire-pressure-warning", "links": { "self": "/api/icons/tire-pressure-warning" }, "type": "icon" }, { "attributes": { "id": "tire-rugged", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f634", "voted": false }, "id": "tire-rugged", "links": { "self": "/api/icons/tire-rugged" }, "type": "icon" }, { "attributes": { "id": "tired", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5c8", "voted": false }, "id": "tired", "links": { "self": "/api/icons/tired" }, "type": "icon" }, { "attributes": { "id": "toggle-off", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f204", "voted": false }, "id": "toggle-off", "links": { "self": "/api/icons/toggle-off" }, "type": "icon" }, { "attributes": { "id": "toggle-on", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f205", "voted": false }, "id": "toggle-on", "links": { "self": "/api/icons/toggle-on" }, "type": "icon" }, { "attributes": { "id": "toilet", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7d8", "voted": true }, "id": "toilet", "links": { "self": "/api/icons/toilet" }, "type": "icon" }, { "attributes": { "id": "toilet-paper", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f71e", "voted": false }, "id": "toilet-paper", "links": { "self": "/api/icons/toilet-paper" }, "type": "icon" }, { "attributes": { "id": "toilet-paper-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f71f", "voted": false }, "id": "toilet-paper-alt", "links": { "self": "/api/icons/toilet-paper-alt" }, "type": "icon" }, { "attributes": { "id": "toilet-paper-slash", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f972", "voted": false }, "id": "toilet-paper-slash", "links": { "self": "/api/icons/toilet-paper-slash" }, "type": "icon" }, { "attributes": { "id": "tombstone", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f720", "voted": false }, "id": "tombstone", "links": { "self": "/api/icons/tombstone" }, "type": "icon" }, { "attributes": { "id": "tombstone-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f721", "voted": false }, "id": "tombstone-alt", "links": { "self": "/api/icons/tombstone-alt" }, "type": "icon" }, { "attributes": { "id": "toolbox", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f552", "voted": true }, "id": "toolbox", "links": { "self": "/api/icons/toolbox" }, "type": "icon" }, { "attributes": { "id": "tools", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7d9", "voted": true }, "id": "tools", "links": { "self": "/api/icons/tools" }, "type": "icon" }, { "attributes": { "id": "tooth", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5c9", "voted": true }, "id": "tooth", "links": { "self": "/api/icons/tooth" }, "type": "icon" }, { "attributes": { "id": "toothbrush", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f635", "voted": false }, "id": "toothbrush", "links": { "self": "/api/icons/toothbrush" }, "type": "icon" }, { "attributes": { "id": "torah", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6a0", "voted": false }, "id": "torah", "links": { "self": "/api/icons/torah" }, "type": "icon" }, { "attributes": { "id": "torii-gate", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6a1", "voted": false }, "id": "torii-gate", "links": { "self": "/api/icons/torii-gate" }, "type": "icon" }, { "attributes": { "id": "tornado", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f76f", "voted": false }, "id": "tornado", "links": { "self": "/api/icons/tornado" }, "type": "icon" }, { "attributes": { "id": "tractor", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f722", "voted": false }, "id": "tractor", "links": { "self": "/api/icons/tractor" }, "type": "icon" }, { "attributes": { "id": "trade-federation", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f513", "voted": false }, "id": "trade-federation", "links": { "self": "/api/icons/trade-federation" }, "type": "icon" }, { "attributes": { "id": "trademark", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f25c", "voted": false }, "id": "trademark", "links": { "self": "/api/icons/trademark" }, "type": "icon" }, { "attributes": { "id": "traffic-cone", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f636", "voted": false }, "id": "traffic-cone", "links": { "self": "/api/icons/traffic-cone" }, "type": "icon" }, { "attributes": { "id": "traffic-light", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f637", "voted": false }, "id": "traffic-light", "links": { "self": "/api/icons/traffic-light" }, "type": "icon" }, { "attributes": { "id": "traffic-light-go", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f638", "voted": false }, "id": "traffic-light-go", "links": { "self": "/api/icons/traffic-light-go" }, "type": "icon" }, { "attributes": { "id": "traffic-light-slow", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f639", "voted": false }, "id": "traffic-light-slow", "links": { "self": "/api/icons/traffic-light-slow" }, "type": "icon" }, { "attributes": { "id": "traffic-light-stop", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f63a", "voted": false }, "id": "traffic-light-stop", "links": { "self": "/api/icons/traffic-light-stop" }, "type": "icon" }, { "attributes": { "id": "trailer", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f941", "voted": true }, "id": "trailer", "links": { "self": "/api/icons/trailer" }, "type": "icon" }, { - "attributes": { - "id": "train", "membership": { - "free": ["solid"], - "pro": ["solid", "regular", "light", "duotone"] - }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f238", "voted": false - }, "id": "train", "links": { "self": "/api/icons/train" }, "type": "icon" -}, { "attributes": { "id": "tram", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7da", "voted": false }, "id": "tram", "links": { "self": "/api/icons/tram" }, "type": "icon" }, { "attributes": { "id": "transgender", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f224", "voted": false }, "id": "transgender", "links": { "self": "/api/icons/transgender" }, "type": "icon" }, { "attributes": { "id": "transgender-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f225", "voted": false }, "id": "transgender-alt", "links": { "self": "/api/icons/transgender-alt" }, "type": "icon" }, { "attributes": { "id": "transporter", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f942", "voted": false }, "id": "transporter", "links": { "self": "/api/icons/transporter" }, "type": "icon" }, { "attributes": { "id": "transporter-1", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f943", "voted": false }, "id": "transporter-1", "links": { "self": "/api/icons/transporter-1" }, "type": "icon" }, { "attributes": { "id": "transporter-2", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f944", "voted": false }, "id": "transporter-2", "links": { "self": "/api/icons/transporter-2" }, "type": "icon" }, { "attributes": { "id": "transporter-3", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f945", "voted": false }, "id": "transporter-3", "links": { "self": "/api/icons/transporter-3" }, "type": "icon" }, { "attributes": { "id": "transporter-empty", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f946", "voted": false }, "id": "transporter-empty", "links": { "self": "/api/icons/transporter-empty" }, "type": "icon" }, { "attributes": { "id": "trash", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1f8", "voted": false }, "id": "trash", "links": { "self": "/api/icons/trash" }, "type": "icon" }, { "attributes": { "id": "trash-alt", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2ed", "voted": false }, "id": "trash-alt", "links": { "self": "/api/icons/trash-alt" }, "type": "icon" }, { "attributes": { "id": "trash-restore", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f829", "voted": true }, "id": "trash-restore", "links": { "self": "/api/icons/trash-restore" }, "type": "icon" }, { "attributes": { "id": "trash-restore-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f82a", "voted": true }, "id": "trash-restore-alt", "links": { "self": "/api/icons/trash-restore-alt" }, "type": "icon" }, { "attributes": { "id": "trash-undo", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f895", "voted": true }, "id": "trash-undo", "links": { "self": "/api/icons/trash-undo" }, "type": "icon" }, { "attributes": { "id": "trash-undo-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f896", "voted": false }, "id": "trash-undo-alt", "links": { "self": "/api/icons/trash-undo-alt" }, "type": "icon" }, { "attributes": { "id": "treasure-chest", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f723", "voted": false }, "id": "treasure-chest", "links": { "self": "/api/icons/treasure-chest" }, "type": "icon" }, { "attributes": { "id": "tree", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1bb", "voted": false }, "id": "tree", "links": { "self": "/api/icons/tree" }, "type": "icon" }, { "attributes": { "id": "tree-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f400", "voted": false }, "id": "tree-alt", "links": { "self": "/api/icons/tree-alt" }, "type": "icon" }, { "attributes": { "id": "tree-christmas", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7db", "voted": false }, "id": "tree-christmas", "links": { "self": "/api/icons/tree-christmas" }, "type": "icon" }, { "attributes": { "id": "tree-decorated", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7dc", "voted": false }, "id": "tree-decorated", "links": { "self": "/api/icons/tree-decorated" }, "type": "icon" }, { "attributes": { "id": "tree-large", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7dd", "voted": false }, "id": "tree-large", "links": { "self": "/api/icons/tree-large" }, "type": "icon" }, { "attributes": { "id": "tree-palm", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f82b", "voted": false }, "id": "tree-palm", "links": { "self": "/api/icons/tree-palm" }, "type": "icon" }, { "attributes": { "id": "trees", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f724", "voted": false }, "id": "trees", "links": { "self": "/api/icons/trees" }, "type": "icon" }, { "attributes": { "id": "trello", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f181", "voted": false }, "id": "trello", "links": { "self": "/api/icons/trello" }, "type": "icon" }, { "attributes": { "id": "triangle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2ec", "voted": false }, "id": "triangle", "links": { "self": "/api/icons/triangle" }, "type": "icon" }, { "attributes": { "id": "triangle-music", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8e2", "voted": false }, "id": "triangle-music", "links": { "self": "/api/icons/triangle-music" }, "type": "icon" }, { "attributes": { "id": "tripadvisor", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f262", "voted": false }, "id": "tripadvisor", "links": { "self": "/api/icons/tripadvisor" }, "type": "icon" }, { "attributes": { "id": "trophy", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f091", "voted": false }, "id": "trophy", "links": { "self": "/api/icons/trophy" }, "type": "icon" }, { "attributes": { "id": "trophy-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2eb", "voted": false }, "id": "trophy-alt", "links": { "self": "/api/icons/trophy-alt" }, "type": "icon" }, { "attributes": { "id": "truck", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0d1", "voted": false }, "id": "truck", "links": { "self": "/api/icons/truck" }, "type": "icon" }, { "attributes": { "id": "truck-container", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4dc", "voted": false }, "id": "truck-container", "links": { "self": "/api/icons/truck-container" }, "type": "icon" }, { "attributes": { "id": "truck-couch", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4dd", "voted": false }, "id": "truck-couch", "links": { "self": "/api/icons/truck-couch" }, "type": "icon" }, { "attributes": { "id": "truck-loading", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4de", "voted": false }, "id": "truck-loading", "links": { "self": "/api/icons/truck-loading" }, "type": "icon" }, { "attributes": { "id": "truck-monster", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f63b", "voted": false }, "id": "truck-monster", "links": { "self": "/api/icons/truck-monster" }, "type": "icon" }, { "attributes": { "id": "truck-moving", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4df", "voted": false }, "id": "truck-moving", "links": { "self": "/api/icons/truck-moving" }, "type": "icon" }, { "attributes": { "id": "truck-pickup", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f63c", "voted": false }, "id": "truck-pickup", "links": { "self": "/api/icons/truck-pickup" }, "type": "icon" }, { "attributes": { "id": "truck-plow", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7de", "voted": false }, "id": "truck-plow", "links": { "self": "/api/icons/truck-plow" }, "type": "icon" }, { "attributes": { "id": "truck-ramp", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4e0", "voted": false }, "id": "truck-ramp", "links": { "self": "/api/icons/truck-ramp" }, "type": "icon" }, { "attributes": { "id": "trumpet", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8e3", "voted": false }, "id": "trumpet", "links": { "self": "/api/icons/trumpet" }, "type": "icon" }, { - "attributes": { - "id": "tshirt", - "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f553", "voted": true - }, "id": "tshirt", "links": { "self": "/api/icons/tshirt" }, "type": "icon" -}, { "attributes": { "id": "tty", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1e4", "voted": false }, "id": "tty", "links": { "self": "/api/icons/tty" }, "type": "icon" }, { "attributes": { "id": "tumblr", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f173", "voted": false }, "id": "tumblr", "links": { "self": "/api/icons/tumblr" }, "type": "icon" }, { "attributes": { "id": "tumblr-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f174", "voted": false }, "id": "tumblr-square", "links": { "self": "/api/icons/tumblr-square" }, "type": "icon" }, { "attributes": { "id": "turkey", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f725", "voted": false }, "id": "turkey", "links": { "self": "/api/icons/turkey" }, "type": "icon" }, { "attributes": { "id": "turntable", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8e4", "voted": false }, "id": "turntable", "links": { "self": "/api/icons/turntable" }, "type": "icon" }, { "attributes": { "id": "turtle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f726", "voted": true }, "id": "turtle", "links": { "self": "/api/icons/turtle" }, "type": "icon" }, { "attributes": { "id": "tv", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f26c", "voted": false }, "id": "tv", "links": { "self": "/api/icons/tv" }, "type": "icon" }, { "attributes": { "id": "tv-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8e5", "voted": false }, "id": "tv-alt", "links": { "self": "/api/icons/tv-alt" }, "type": "icon" }, { "attributes": { "id": "tv-music", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8e6", "voted": false }, "id": "tv-music", "links": { "self": "/api/icons/tv-music" }, "type": "icon" }, { "attributes": { "id": "tv-retro", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f401", "voted": true }, "id": "tv-retro", "links": { "self": "/api/icons/tv-retro" }, "type": "icon" }, { "attributes": { "id": "twitch", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1e8", "voted": false }, "id": "twitch", "links": { "self": "/api/icons/twitch" }, "type": "icon" }, { "attributes": { "id": "twitter", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f099", "voted": false }, "id": "twitter", "links": { "self": "/api/icons/twitter" }, "type": "icon" }, { "attributes": { "id": "twitter-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f081", "voted": false }, "id": "twitter-square", "links": { "self": "/api/icons/twitter-square" }, "type": "icon" }, { "attributes": { "id": "typewriter", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8e7", "voted": false }, "id": "typewriter", "links": { "self": "/api/icons/typewriter" }, "type": "icon" }, { "attributes": { "id": "typo3", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f42b", "voted": false }, "id": "typo3", "links": { "self": "/api/icons/typo3" }, "type": "icon" }, { "attributes": { "id": "uber", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f402", "voted": false }, "id": "uber", "links": { "self": "/api/icons/uber" }, "type": "icon" }, { "attributes": { "id": "ubuntu", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f7df", "voted": true }, "id": "ubuntu", "links": { "self": "/api/icons/ubuntu" }, "type": "icon" }, { "attributes": { "id": "ufo", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f947", "voted": false }, "id": "ufo", "links": { "self": "/api/icons/ufo" }, "type": "icon" }, { "attributes": { "id": "ufo-beam", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f948", "voted": false }, "id": "ufo-beam", "links": { "self": "/api/icons/ufo-beam" }, "type": "icon" }, { "attributes": { "id": "uikit", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f403", "voted": false }, "id": "uikit", "links": { "self": "/api/icons/uikit" }, "type": "icon" }, { "attributes": { "id": "umbraco", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f8e8", "voted": false }, "id": "umbraco", "links": { "self": "/api/icons/umbraco" }, "type": "icon" }, { "attributes": { "id": "umbrella", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0e9", "voted": false }, "id": "umbrella", "links": { "self": "/api/icons/umbrella" }, "type": "icon" }, { "attributes": { "id": "umbrella-beach", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5ca", "voted": false }, "id": "umbrella-beach", "links": { "self": "/api/icons/umbrella-beach" }, "type": "icon" }, { "attributes": { "id": "underline", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0cd", "voted": false }, "id": "underline", "links": { "self": "/api/icons/underline" }, "type": "icon" }, { "attributes": { "id": "undo", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0e2", "voted": false }, "id": "undo", "links": { "self": "/api/icons/undo" }, "type": "icon" }, { "attributes": { "id": "undo-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2ea", "voted": false }, "id": "undo-alt", "links": { "self": "/api/icons/undo-alt" }, "type": "icon" }, { "attributes": { "id": "unicorn", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f727", "voted": true }, "id": "unicorn", "links": { "self": "/api/icons/unicorn" }, "type": "icon" }, { "attributes": { "id": "union", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6a2", "voted": false }, "id": "union", "links": { "self": "/api/icons/union" }, "type": "icon" }, { "attributes": { "id": "uniregistry", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f404", "voted": false }, "id": "uniregistry", "links": { "self": "/api/icons/uniregistry" }, "type": "icon" }, { "attributes": { "id": "unity", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f949", "voted": true }, "id": "unity", "links": { "self": "/api/icons/unity" }, "type": "icon" }, { "attributes": { "id": "universal-access", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f29a", "voted": false }, "id": "universal-access", "links": { "self": "/api/icons/universal-access" }, "type": "icon" }, { "attributes": { "id": "university", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f19c", "voted": false }, "id": "university", "links": { "self": "/api/icons/university" }, "type": "icon" }, { "attributes": { "id": "unlink", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f127", "voted": false }, "id": "unlink", "links": { "self": "/api/icons/unlink" }, "type": "icon" }, { "attributes": { "id": "unlock", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f09c", "voted": false }, "id": "unlock", "links": { "self": "/api/icons/unlock" }, "type": "icon" }, { "attributes": { "id": "unlock-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f13e", "voted": false }, "id": "unlock-alt", "links": { "self": "/api/icons/unlock-alt" }, "type": "icon" }, { "attributes": { "id": "untappd", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f405", "voted": false }, "id": "untappd", "links": { "self": "/api/icons/untappd" }, "type": "icon" }, { "attributes": { "id": "upload", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f093", "voted": false }, "id": "upload", "links": { "self": "/api/icons/upload" }, "type": "icon" }, { "attributes": { "id": "ups", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f7e0", "voted": false }, "id": "ups", "links": { "self": "/api/icons/ups" }, "type": "icon" }, { "attributes": { "id": "usb", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f287", "voted": false }, "id": "usb", "links": { "self": "/api/icons/usb" }, "type": "icon" }, { "attributes": { "id": "usb-drive", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8e9", "voted": false }, "id": "usb-drive", "links": { "self": "/api/icons/usb-drive" }, "type": "icon" }, { "attributes": { "id": "usd-circle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2e8", "voted": false }, "id": "usd-circle", "links": { "self": "/api/icons/usd-circle" }, "type": "icon" }, { "attributes": { "id": "usd-square", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2e9", "voted": false }, "id": "usd-square", "links": { "self": "/api/icons/usd-square" }, "type": "icon" }, -{ "attributes": { "id": "user", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f007", "voted": false }, "id": "user", "links": { "self": "/api/icons/user" }, "type": "icon" }, { "attributes": { "id": "user-alien", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f94a", "voted": false }, "id": "user-alien", "links": { "self": "/api/icons/user-alien" }, "type": "icon" }, { "attributes": { "id": "user-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f406", "voted": false }, "id": "user-alt", "links": { "self": "/api/icons/user-alt" }, "type": "icon" }, { "attributes": { "id": "user-alt-slash", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4fa", "voted": false }, "id": "user-alt-slash", "links": { "self": "/api/icons/user-alt-slash" }, "type": "icon" }, { "attributes": { "id": "user-astronaut", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4fb", "voted": false }, "id": "user-astronaut", "links": { "self": "/api/icons/user-astronaut" }, "type": "icon" }, { "attributes": { "id": "user-chart", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6a3", "voted": false }, "id": "user-chart", "links": { "self": "/api/icons/user-chart" }, "type": "icon" }, { "attributes": { "id": "user-check", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4fc", "voted": false }, "id": "user-check", "links": { "self": "/api/icons/user-check" }, "type": "icon" }, { "attributes": { "id": "user-circle", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2bd", "voted": false }, "id": "user-circle", "links": { "self": "/api/icons/user-circle" }, "type": "icon" }, { "attributes": { "id": "user-clock", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4fd", "voted": false }, "id": "user-clock", "links": { "self": "/api/icons/user-clock" }, "type": "icon" }, { "attributes": { "id": "user-cog", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4fe", "voted": false }, "id": "user-cog", "links": { "self": "/api/icons/user-cog" }, "type": "icon" }, { "attributes": { "id": "user-cowboy", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f8ea", "voted": false }, "id": "user-cowboy", "links": { "self": "/api/icons/user-cowboy" }, "type": "icon" }, { "attributes": { "id": "user-crown", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6a4", "voted": false }, "id": "user-crown", "links": { "self": "/api/icons/user-crown" }, "type": "icon" }, { "attributes": { "id": "user-edit", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4ff", "voted": false }, "id": "user-edit", "links": { "self": "/api/icons/user-edit" }, "type": "icon" }, { "attributes": { "id": "user-friends", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f500", "voted": false }, "id": "user-friends", "links": { "self": "/api/icons/user-friends" }, "type": "icon" }, { "attributes": { "id": "user-graduate", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f501", "voted": false }, "id": "user-graduate", "links": { "self": "/api/icons/user-graduate" }, "type": "icon" }, { "attributes": { "id": "user-hard-hat", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f82c", "voted": false }, "id": "user-hard-hat", "links": { "self": "/api/icons/user-hard-hat" }, "type": "icon" }, { "attributes": { "id": "user-headset", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f82d", "voted": true }, "id": "user-headset", "links": { "self": "/api/icons/user-headset" }, "type": "icon" }, { "attributes": { "id": "user-injured", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f728", "voted": false }, "id": "user-injured", "links": { "self": "/api/icons/user-injured" }, "type": "icon" }, { "attributes": { "id": "user-lock", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f502", "voted": false }, "id": "user-lock", "links": { "self": "/api/icons/user-lock" }, "type": "icon" }, { "attributes": { "id": "user-md", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0f0", "voted": false }, "id": "user-md", "links": { "self": "/api/icons/user-md" }, "type": "icon" }, { "attributes": { "id": "user-md-chat", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f82e", "voted": false }, "id": "user-md-chat", "links": { "self": "/api/icons/user-md-chat" }, "type": "icon" }, { "attributes": { "id": "user-minus", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f503", "voted": false }, "id": "user-minus", "links": { "self": "/api/icons/user-minus" }, "type": "icon" }, { "attributes": { "id": "user-music", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8eb", "voted": false }, "id": "user-music", "links": { "self": "/api/icons/user-music" }, "type": "icon" }, { "attributes": { "id": "user-ninja", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f504", "voted": false }, "id": "user-ninja", "links": { "self": "/api/icons/user-ninja" }, "type": "icon" }, { "attributes": { "id": "user-nurse", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f82f", "voted": false }, "id": "user-nurse", "links": { "self": "/api/icons/user-nurse" }, "type": "icon" }, { "attributes": { "id": "user-plus", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f234", "voted": false }, "id": "user-plus", "links": { "self": "/api/icons/user-plus" }, "type": "icon" }, { "attributes": { "id": "user-robot", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f94b", "voted": false }, "id": "user-robot", "links": { "self": "/api/icons/user-robot" }, "type": "icon" }, { "attributes": { "id": "user-secret", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f21b", "voted": false }, "id": "user-secret", "links": { "self": "/api/icons/user-secret" }, "type": "icon" }, { "attributes": { "id": "user-shield", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f505", "voted": false }, "id": "user-shield", "links": { "self": "/api/icons/user-shield" }, "type": "icon" }, { "attributes": { "id": "user-slash", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f506", "voted": false }, "id": "user-slash", "links": { "self": "/api/icons/user-slash" }, "type": "icon" }, { "attributes": { "id": "user-tag", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f507", "voted": false }, "id": "user-tag", "links": { "self": "/api/icons/user-tag" }, "type": "icon" }, { "attributes": { "id": "user-tie", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f508", "voted": false }, "id": "user-tie", "links": { "self": "/api/icons/user-tie" }, "type": "icon" }, { "attributes": { "id": "user-times", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f235", "voted": false }, "id": "user-times", "links": { "self": "/api/icons/user-times" }, "type": "icon" }, { "attributes": { "id": "user-unlock", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f958", "voted": false }, "id": "user-unlock", "links": { "self": "/api/icons/user-unlock" }, "type": "icon" }, { "attributes": { "id": "user-visor", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f94c", "voted": false }, "id": "user-visor", "links": { "self": "/api/icons/user-visor" }, "type": "icon" }, { "attributes": { "id": "users", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0c0", "voted": false }, "id": "users", "links": { "self": "/api/icons/users" }, "type": "icon" }, { "attributes": { "id": "users-class", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f63d", "voted": false }, "id": "users-class", "links": { "self": "/api/icons/users-class" }, "type": "icon" }, { "attributes": { "id": "users-cog", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f509", "voted": false }, "id": "users-cog", "links": { "self": "/api/icons/users-cog" }, "type": "icon" }, { - "attributes": { - "id": "users-crown", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] } - , "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6a5", "voted": false - }, "id": "users-crown", "links": { "self": "/api/icons/users-crown" }, "type": "icon" -}, { "attributes": { "id": "users-medical", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f830", "voted": false }, "id": "users-medical", "links": { "self": "/api/icons/users-medical" }, "type": "icon" }, { "attributes": { "id": "users-slash", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f973", "voted": false }, "id": "users-slash", "links": { "self": "/api/icons/users-slash" }, "type": "icon" }, { "attributes": { "id": "usps", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f7e1", "voted": false }, "id": "usps", "links": { "self": "/api/icons/usps" }, "type": "icon" }, { "attributes": { "id": "ussunnah", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f407", "voted": false }, "id": "ussunnah", "links": { "self": "/api/icons/ussunnah" }, "type": "icon" }, { "attributes": { "id": "utensil-fork", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2e3", "voted": false }, "id": "utensil-fork", "links": { "self": "/api/icons/utensil-fork" }, "type": "icon" }, { "attributes": { "id": "utensil-knife", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2e4", "voted": false }, "id": "utensil-knife", "links": { "self": "/api/icons/utensil-knife" }, "type": "icon" }, { "attributes": { "id": "utensil-spoon", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2e5", "voted": false }, "id": "utensil-spoon", "links": { "self": "/api/icons/utensil-spoon" }, "type": "icon" }, { "attributes": { "id": "utensils", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2e7", "voted": false }, "id": "utensils", "links": { "self": "/api/icons/utensils" }, "type": "icon" }, { "attributes": { "id": "utensils-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2e6", "voted": false }, "id": "utensils-alt", "links": { "self": "/api/icons/utensils-alt" }, "type": "icon" }, { "attributes": { "id": "vaadin", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f408", "voted": false }, "id": "vaadin", "links": { "self": "/api/icons/vaadin" }, "type": "icon" }, { "attributes": { "id": "vacuum", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f94d", "voted": false }, "id": "vacuum", "links": { "self": "/api/icons/vacuum" }, "type": "icon" }, { "attributes": { "id": "vacuum-robot", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f94e", "voted": false }, "id": "vacuum-robot", "links": { "self": "/api/icons/vacuum-robot" }, "type": "icon" }, { "attributes": { "id": "value-absolute", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6a6", "voted": false }, "id": "value-absolute", "links": { "self": "/api/icons/value-absolute" }, "type": "icon" }, { "attributes": { "id": "vector-square", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5cb", "voted": false }, "id": "vector-square", "links": { "self": "/api/icons/vector-square" }, "type": "icon" }, { "attributes": { "id": "venus", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f221", "voted": false }, "id": "venus", "links": { "self": "/api/icons/venus" }, "type": "icon" }, { "attributes": { "id": "venus-double", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f226", "voted": false }, "id": "venus-double", "links": { "self": "/api/icons/venus-double" }, "type": "icon" }, { "attributes": { "id": "venus-mars", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f228", "voted": false }, "id": "venus-mars", "links": { "self": "/api/icons/venus-mars" }, "type": "icon" }, { "attributes": { "id": "vhs", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8ec", "voted": false }, "id": "vhs", "links": { "self": "/api/icons/vhs" }, "type": "icon" }, { "attributes": { "id": "viacoin", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f237", "voted": false }, "id": "viacoin", "links": { "self": "/api/icons/viacoin" }, "type": "icon" }, { "attributes": { "id": "viadeo", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2a9", "voted": false }, "id": "viadeo", "links": { "self": "/api/icons/viadeo" }, "type": "icon" }, { "attributes": { "id": "viadeo-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2aa", "voted": false }, "id": "viadeo-square", "links": { "self": "/api/icons/viadeo-square" }, "type": "icon" }, { "attributes": { "id": "vial", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f492", "voted": false }, "id": "vial", "links": { "self": "/api/icons/vial" }, "type": "icon" }, { "attributes": { "id": "vials", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f493", "voted": false }, "id": "vials", "links": { "self": "/api/icons/vials" }, "type": "icon" }, { "attributes": { "id": "viber", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f409", "voted": false }, "id": "viber", "links": { "self": "/api/icons/viber" }, "type": "icon" }, { "attributes": { "id": "video", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f03d", "voted": false }, "id": "video", "links": { "self": "/api/icons/video" }, "type": "icon" }, { "attributes": { "id": "video-plus", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4e1", "voted": false }, "id": "video-plus", "links": { "self": "/api/icons/video-plus" }, "type": "icon" }, { "attributes": { "id": "video-slash", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4e2", "voted": false }, "id": "video-slash", "links": { "self": "/api/icons/video-slash" }, "type": "icon" }, { "attributes": { "id": "vihara", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6a7", "voted": false }, "id": "vihara", "links": { "self": "/api/icons/vihara" }, "type": "icon" }, { "attributes": { "id": "vimeo", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f40a", "voted": false }, "id": "vimeo", "links": { "self": "/api/icons/vimeo" }, "type": "icon" }, { "attributes": { "id": "vimeo-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f194", "voted": false }, "id": "vimeo-square", "links": { "self": "/api/icons/vimeo-square" }, "type": "icon" }, { "attributes": { "id": "vimeo-v", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f27d", "voted": false }, "id": "vimeo-v", "links": { "self": "/api/icons/vimeo-v" }, "type": "icon" }, { "attributes": { "id": "vine", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1ca", "voted": false }, "id": "vine", "links": { "self": "/api/icons/vine" }, "type": "icon" }, { "attributes": { "id": "violin", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8ed", "voted": false }, "id": "violin", "links": { "self": "/api/icons/violin" }, "type": "icon" }, { "attributes": { "id": "virus", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f974", "voted": false }, "id": "virus", "links": { "self": "/api/icons/virus" }, "type": "icon" }, { "attributes": { "id": "virus-slash", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f975", "voted": false }, "id": "virus-slash", "links": { "self": "/api/icons/virus-slash" }, "type": "icon" }, { "attributes": { "id": "viruses", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f976", "voted": false }, "id": "viruses", "links": { "self": "/api/icons/viruses" }, "type": "icon" }, { "attributes": { "id": "vk", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f189", "voted": false }, "id": "vk", "links": { "self": "/api/icons/vk" }, "type": "icon" }, { "attributes": { "id": "vnv", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f40b", "voted": false }, "id": "vnv", "links": { "self": "/api/icons/vnv" }, "type": "icon" }, { "attributes": { "id": "voicemail", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f897", "voted": true }, "id": "voicemail", "links": { "self": "/api/icons/voicemail" }, "type": "icon" }, { "attributes": { "id": "volcano", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f770", "voted": false }, "id": "volcano", "links": { "self": "/api/icons/volcano" }, "type": "icon" }, { "attributes": { "id": "volleyball-ball", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f45f", "voted": false }, "id": "volleyball-ball", "links": { "self": "/api/icons/volleyball-ball" }, "type": "icon" }, { - "attributes": { - "id": "volume", "membership": { - "free": [], "pro": ["solid", "regular", "light" - , "duotone"] - }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6a8", "voted": false - }, "id": "volume", "links": { "self": "/api/icons/volume" }, "type": "icon" -}, { "attributes": { "id": "volume-down", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f027", "voted": false }, "id": "volume-down", "links": { "self": "/api/icons/volume-down" }, "type": "icon" }, { "attributes": { "id": "volume-mute", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6a9", "voted": true }, "id": "volume-mute", "links": { "self": "/api/icons/volume-mute" }, "type": "icon" }, { "attributes": { "id": "volume-off", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f026", "voted": false }, "id": "volume-off", "links": { "self": "/api/icons/volume-off" }, "type": "icon" }, { "attributes": { "id": "volume-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2e2", "voted": false }, "id": "volume-slash", "links": { "self": "/api/icons/volume-slash" }, "type": "icon" }, { "attributes": { "id": "volume-up", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f028", "voted": false }, "id": "volume-up", "links": { "self": "/api/icons/volume-up" }, "type": "icon" }, { "attributes": { "id": "vote-nay", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f771", "voted": false }, "id": "vote-nay", "links": { "self": "/api/icons/vote-nay" }, "type": "icon" }, { "attributes": { "id": "vote-yea", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f772", "voted": false }, "id": "vote-yea", "links": { "self": "/api/icons/vote-yea" }, "type": "icon" }, { "attributes": { "id": "vr-cardboard", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f729", "voted": true }, "id": "vr-cardboard", "links": { "self": "/api/icons/vr-cardboard" }, "type": "icon" }, { "attributes": { "id": "vuejs", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f41f", "voted": false }, "id": "vuejs", "links": { "self": "/api/icons/vuejs" }, "type": "icon" }, { "attributes": { "id": "wagon-covered", "membership": { "free": [], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f8ee", "voted": false }, "id": "wagon-covered", "links": { "self": "/api/icons/wagon-covered" }, "type": "icon" }, { "attributes": { "id": "walker", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f831", "voted": false }, "id": "walker", "links": { "self": "/api/icons/walker" }, "type": "icon" }, { "attributes": { "id": "walkie-talkie", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8ef", "voted": false }, "id": "walkie-talkie", "links": { "self": "/api/icons/walkie-talkie" }, "type": "icon" }, { "attributes": { "id": "walking", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f554", "voted": true }, "id": "walking", "links": { "self": "/api/icons/walking" }, "type": "icon" }, { "attributes": { "id": "wallet", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f555", "voted": true }, "id": "wallet", "links": { "self": "/api/icons/wallet" }, "type": "icon" }, { "attributes": { "id": "wand", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f72a", "voted": false }, "id": "wand", "links": { "self": "/api/icons/wand" }, "type": "icon" }, { "attributes": { "id": "wand-magic", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f72b", "voted": false }, "id": "wand-magic", "links": { "self": "/api/icons/wand-magic" }, "type": "icon" }, { "attributes": { "id": "warehouse", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f494", "voted": false }, "id": "warehouse", "links": { "self": "/api/icons/warehouse" }, "type": "icon" }, { "attributes": { "id": "warehouse-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f495", "voted": false }, "id": "warehouse-alt", "links": { "self": "/api/icons/warehouse-alt" }, "type": "icon" }, { "attributes": { "id": "washer", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f898", "voted": true }, "id": "washer", "links": { "self": "/api/icons/washer" }, "type": "icon" }, { "attributes": { "id": "watch", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2e1", "voted": false }, "id": "watch", "links": { "self": "/api/icons/watch" }, "type": "icon" }, { "attributes": { "id": "watch-calculator", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8f0", "voted": false }, "id": "watch-calculator", "links": { "self": "/api/icons/watch-calculator" }, "type": "icon" }, { "attributes": { "id": "watch-fitness", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f63e", "voted": false }, "id": "watch-fitness", "links": { "self": "/api/icons/watch-fitness" }, "type": "icon" }, { "attributes": { "id": "water", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f773", "voted": false }, "id": "water", "links": { "self": "/api/icons/water" }, "type": "icon" }, { "attributes": { "id": "water-lower", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f774", "voted": false }, "id": "water-lower", "links": { "self": "/api/icons/water-lower" }, "type": "icon" }, { "attributes": { "id": "water-rise", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f775", "voted": false }, "id": "water-rise", "links": { "self": "/api/icons/water-rise" }, "type": "icon" }, { "attributes": { "id": "wave-sine", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f899", "voted": false }, "id": "wave-sine", "links": { "self": "/api/icons/wave-sine" }, "type": "icon" }, { "attributes": { "id": "wave-square", "membership": { "free": ["solid"], "pro": ["light", "regular", "solid", "duotone"] }, "styles": ["light", "regular", "solid", "duotone"], "unicode": "f83e", "voted": false }, "id": "wave-square", "links": { "self": "/api/icons/wave-square" }, "type": "icon" }, { "attributes": { "id": "wave-triangle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f89a", "voted": false }, "id": "wave-triangle", "links": { "self": "/api/icons/wave-triangle" }, "type": "icon" }, { "attributes": { "id": "waveform", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8f1", "voted": false }, "id": "waveform", "links": { "self": "/api/icons/waveform" }, "type": "icon" }, { "attributes": { "id": "waveform-path", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f8f2", "voted": false }, "id": "waveform-path", "links": { "self": "/api/icons/waveform-path" }, "type": "icon" }, { "attributes": { "id": "waze", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f83f", "voted": false }, "id": "waze", "links": { "self": "/api/icons/waze" }, "type": "icon" }, { "attributes": { "id": "webcam", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f832", "voted": true }, "id": "webcam", "links": { "self": "/api/icons/webcam" }, "type": "icon" }, { "attributes": { "id": "webcam-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f833", "voted": true }, "id": "webcam-slash", "links": { "self": "/api/icons/webcam-slash" }, "type": "icon" }, { "attributes": { "id": "weebly", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f5cc", "voted": true }, "id": "weebly", "links": { "self": "/api/icons/weebly" }, "type": "icon" }, { "attributes": { "id": "weibo", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f18a", "voted": false }, "id": "weibo", "links": { "self": "/api/icons/weibo" }, "type": "icon" }, { "attributes": { "id": "weight", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f496", "voted": false }, "id": "weight", "links": { "self": "/api/icons/weight" }, "type": "icon" }, { "attributes": { "id": "weight-hanging", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5cd", "voted": false }, "id": "weight-hanging", "links": { "self": "/api/icons/weight-hanging" }, "type": "icon" }, { "attributes": { "id": "weixin", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1d7", "voted": false }, "id": "weixin", "links": { "self": "/api/icons/weixin" }, "type": "icon" }, { "attributes": { "id": "whale", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f72c", "voted": false }, "id": "whale", "links": { "self": "/api/icons/whale" }, "type": "icon" }, { - "attributes": { "id": "whatsapp", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f232", "voted": false }, "id": "whatsapp", - "links": { "self": "/api/icons/whatsapp" }, "type": "icon" -}, { "attributes": { "id": "whatsapp-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f40c", "voted": false }, "id": "whatsapp-square", "links": { "self": "/api/icons/whatsapp-square" }, "type": "icon" }, { "attributes": { "id": "wheat", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f72d", "voted": false }, "id": "wheat", "links": { "self": "/api/icons/wheat" }, "type": "icon" }, { "attributes": { "id": "wheelchair", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f193", "voted": false }, "id": "wheelchair", "links": { "self": "/api/icons/wheelchair" }, "type": "icon" }, { "attributes": { "id": "whistle", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f460", "voted": false }, "id": "whistle", "links": { "self": "/api/icons/whistle" }, "type": "icon" }, { "attributes": { "id": "whmcs", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f40d", "voted": false }, "id": "whmcs", "links": { "self": "/api/icons/whmcs" }, "type": "icon" }, { "attributes": { "id": "wifi", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f1eb", "voted": false }, "id": "wifi", "links": { "self": "/api/icons/wifi" }, "type": "icon" }, { "attributes": { "id": "wifi-1", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6aa", "voted": true }, "id": "wifi-1", "links": { "self": "/api/icons/wifi-1" }, "type": "icon" }, { "attributes": { "id": "wifi-2", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6ab", "voted": true }, "id": "wifi-2", "links": { "self": "/api/icons/wifi-2" }, "type": "icon" }, { "attributes": { "id": "wifi-slash", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6ac", "voted": true }, "id": "wifi-slash", "links": { "self": "/api/icons/wifi-slash" }, "type": "icon" }, { "attributes": { "id": "wikipedia-w", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f266", "voted": false }, "id": "wikipedia-w", "links": { "self": "/api/icons/wikipedia-w" }, "type": "icon" }, { "attributes": { "id": "wind", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f72e", "voted": false }, "id": "wind", "links": { "self": "/api/icons/wind" }, "type": "icon" }, { "attributes": { "id": "wind-turbine", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f89b", "voted": true }, "id": "wind-turbine", "links": { "self": "/api/icons/wind-turbine" }, "type": "icon" }, { "attributes": { "id": "wind-warning", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f776", "voted": false }, "id": "wind-warning", "links": { "self": "/api/icons/wind-warning" }, "type": "icon" }, { "attributes": { "id": "window", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f40e", "voted": false }, "id": "window", "links": { "self": "/api/icons/window" }, "type": "icon" }, { "attributes": { "id": "window-alt", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f40f", "voted": false }, "id": "window-alt", "links": { "self": "/api/icons/window-alt" }, "type": "icon" }, { "attributes": { "id": "window-close", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f410", "voted": false }, "id": "window-close", "links": { "self": "/api/icons/window-close" }, "type": "icon" }, { "attributes": { "id": "window-frame", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f94f", "voted": false }, "id": "window-frame", "links": { "self": "/api/icons/window-frame" }, "type": "icon" }, { "attributes": { "id": "window-frame-open", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f950", "voted": false }, "id": "window-frame-open", "links": { "self": "/api/icons/window-frame-open" }, "type": "icon" }, { "attributes": { "id": "window-maximize", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2d0", "voted": false }, "id": "window-maximize", "links": { "self": "/api/icons/window-maximize" }, "type": "icon" }, { "attributes": { "id": "window-minimize", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2d1", "voted": false }, "id": "window-minimize", "links": { "self": "/api/icons/window-minimize" }, "type": "icon" }, { "attributes": { "id": "window-restore", "membership": { "free": ["solid", "regular"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f2d2", "voted": false }, "id": "window-restore", "links": { "self": "/api/icons/window-restore" }, "type": "icon" }, { "attributes": { "id": "windows", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f17a", "voted": false }, "id": "windows", "links": { "self": "/api/icons/windows" }, "type": "icon" }, { "attributes": { "id": "windsock", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f777", "voted": false }, "id": "windsock", "links": { "self": "/api/icons/windsock" }, "type": "icon" }, { "attributes": { "id": "wine-bottle", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f72f", "voted": false }, "id": "wine-bottle", "links": { "self": "/api/icons/wine-bottle" }, "type": "icon" }, { "attributes": { "id": "wine-glass", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f4e3", "voted": false }, "id": "wine-glass", "links": { "self": "/api/icons/wine-glass" }, "type": "icon" }, { "attributes": { "id": "wine-glass-alt", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f5ce", "voted": false }, "id": "wine-glass-alt", "links": { "self": "/api/icons/wine-glass-alt" }, "type": "icon" }, { "attributes": { "id": "wix", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f5cf", "voted": true }, "id": "wix", "links": { "self": "/api/icons/wix" }, "type": "icon" }, { "attributes": { "id": "wizards-of-the-coast", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f730", "voted": false }, "id": "wizards-of-the-coast", "links": { "self": "/api/icons/wizards-of-the-coast" }, "type": "icon" }, { "attributes": { "id": "wolf-pack-battalion", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f514", "voted": false }, "id": "wolf-pack-battalion", "links": { "self": "/api/icons/wolf-pack-battalion" }, "type": "icon" }, { "attributes": { "id": "won-sign", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f159", "voted": false }, "id": "won-sign", "links": { "self": "/api/icons/won-sign" }, "type": "icon" }, { "attributes": { "id": "wordpress", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f19a", "voted": false }, "id": "wordpress", "links": { "self": "/api/icons/wordpress" }, "type": "icon" }, { "attributes": { "id": "wordpress-simple", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f411", "voted": false }, "id": "wordpress-simple", "links": { "self": "/api/icons/wordpress-simple" }, "type": "icon" }, { "attributes": { "id": "wpbeginner", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f297", "voted": false }, "id": "wpbeginner", "links": { "self": "/api/icons/wpbeginner" }, "type": "icon" }, { "attributes": { "id": "wpexplorer", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2de", "voted": false }, "id": "wpexplorer", "links": { "self": "/api/icons/wpexplorer" }, "type": "icon" }, { "attributes": { "id": "wpforms", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f298", "voted": false }, "id": "wpforms", "links": { "self": "/api/icons/wpforms" }, "type": "icon" }, { "attributes": { "id": "wpressr", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f3e4", "voted": false }, "id": "wpressr", "links": { "self": "/api/icons/wpressr" }, "type": "icon" }, { "attributes": { "id": "wreath", "membership": { "free": [], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f7e2", "voted": false }, "id": "wreath", "links": { "self": "/api/icons/wreath" }, "type": "icon" }, { "attributes": { "id": "wrench", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f0ad", "voted": false }, "id": "wrench", "links": { "self": "/api/icons/wrench" }, "type": "icon" }, { "attributes": { "id": "x-ray", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f497", "voted": false }, "id": "x-ray", "links": { "self": "/api/icons/x-ray" }, "type": "icon" }, { "attributes": { "id": "xbox", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f412", "voted": false }, "id": "xbox", "links": { "self": "/api/icons/xbox" }, "type": "icon" }, { "attributes": { "id": "xing", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f168", "voted": false }, "id": "xing", "links": { "self": "/api/icons/xing" }, "type": "icon" }, { - "attributes": { - "id": "xing-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], - "unicode": "f169", "voted": false - }, "id": "xing-square", "links": { "self": "/api/icons/xing-square" }, "type": "icon" -}, { "attributes": { "id": "y-combinator", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f23b", "voted": false }, "id": "y-combinator", "links": { "self": "/api/icons/y-combinator" }, "type": "icon" }, { "attributes": { "id": "yahoo", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f19e", "voted": false }, "id": "yahoo", "links": { "self": "/api/icons/yahoo" }, "type": "icon" }, { "attributes": { "id": "yammer", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f840", "voted": false }, "id": "yammer", "links": { "self": "/api/icons/yammer" }, "type": "icon" }, { "attributes": { "id": "yandex", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f413", "voted": false }, "id": "yandex", "links": { "self": "/api/icons/yandex" }, "type": "icon" }, { "attributes": { "id": "yandex-international", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f414", "voted": false }, "id": "yandex-international", "links": { "self": "/api/icons/yandex-international" }, "type": "icon" }, { "attributes": { "id": "yarn", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f7e3", "voted": true }, "id": "yarn", "links": { "self": "/api/icons/yarn" }, "type": "icon" }, { "attributes": { "id": "yelp", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f1e9", "voted": false }, "id": "yelp", "links": { "self": "/api/icons/yelp" }, "type": "icon" }, { "attributes": { "id": "yen-sign", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f157", "voted": false }, "id": "yen-sign", "links": { "self": "/api/icons/yen-sign" }, "type": "icon" }, { "attributes": { "id": "yin-yang", "membership": { "free": ["solid"], "pro": ["solid", "regular", "light", "duotone"] }, "styles": ["solid", "regular", "light", "duotone"], "unicode": "f6ad", "voted": false }, "id": "yin-yang", "links": { "self": "/api/icons/yin-yang" }, "type": "icon" }, { "attributes": { "id": "yoast", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f2b1", "voted": false }, "id": "yoast", "links": { "self": "/api/icons/yoast" }, "type": "icon" }, { "attributes": { "id": "youtube", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f167", "voted": false }, "id": "youtube", "links": { "self": "/api/icons/youtube" }, "type": "icon" }, { "attributes": { "id": "youtube-square", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f431", "voted": false }, "id": "youtube-square", "links": { "self": "/api/icons/youtube-square" }, "type": "icon" }, { "attributes": { "id": "zhihu", "membership": { "free": ["brands"], "pro": ["brands"] }, "styles": ["brands"], "unicode": "f63f", "voted": true }, "id": "zhihu", "links": { "self": "/api/icons/zhihu" }, "type": "icon" }]; +const icons = [ + { + attributes: { id: "500px", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f26e", voted: false }, + id: "500px", + links: { self: "/api/icons/500px" }, + type: "icon", + }, + { + attributes: { + id: "abacus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f640", + voted: false, + }, + id: "abacus", + links: { self: "/api/icons/abacus" }, + type: "icon", + }, + { + attributes: { + id: "accessible-icon", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f368", + voted: false, + }, + id: "accessible-icon", + links: { self: "/api/icons/accessible-icon" }, + type: "icon", + }, + { + attributes: { id: "accusoft", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f369", voted: false }, + id: "accusoft", + links: { self: "/api/icons/accusoft" }, + type: "icon", + }, + { + attributes: { + id: "acorn", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6ae", + voted: false, + }, + id: "acorn", + links: { self: "/api/icons/acorn" }, + type: "icon", + }, + { + attributes: { + id: "acquisitions-incorporated", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f6af", + voted: false, + }, + id: "acquisitions-incorporated", + links: { self: "/api/icons/acquisitions-incorporated" }, + type: "icon", + }, + { + attributes: { + id: "ad", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f641", + voted: false, + }, + id: "ad", + links: { self: "/api/icons/ad" }, + type: "icon", + }, + { + attributes: { + id: "address-book", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2b9", + voted: false, + }, + id: "address-book", + links: { self: "/api/icons/address-book" }, + type: "icon", + }, + { + attributes: { + id: "address-card", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2bb", + voted: false, + }, + id: "address-card", + links: { self: "/api/icons/address-card" }, + type: "icon", + }, + { + attributes: { + id: "adjust", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f042", + voted: false, + }, + id: "adjust", + links: { self: "/api/icons/adjust" }, + type: "icon", + }, + { + attributes: { id: "adn", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f170", voted: false }, + id: "adn", + links: { self: "/api/icons/adn" }, + type: "icon", + }, + { + attributes: { id: "adobe", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f778", voted: false }, + id: "adobe", + links: { self: "/api/icons/adobe" }, + type: "icon", + }, + { + attributes: { id: "adversal", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f36a", voted: false }, + id: "adversal", + links: { self: "/api/icons/adversal" }, + type: "icon", + }, + { + attributes: { + id: "affiliatetheme", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f36b", + voted: false, + }, + id: "affiliatetheme", + links: { self: "/api/icons/affiliatetheme" }, + type: "icon", + }, + { + attributes: { + id: "air-conditioner", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8f4", + voted: false, + }, + id: "air-conditioner", + links: { self: "/api/icons/air-conditioner" }, + type: "icon", + }, + { + attributes: { + id: "air-freshener", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5d0", + voted: false, + }, + id: "air-freshener", + links: { self: "/api/icons/air-freshener" }, + type: "icon", + }, + { + attributes: { id: "airbnb", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f834", voted: false }, + id: "airbnb", + links: { self: "/api/icons/airbnb" }, + type: "icon", + }, + { + attributes: { + id: "alarm-clock", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f34e", + voted: false, + }, + id: "alarm-clock", + links: { self: "/api/icons/alarm-clock" }, + type: "icon", + }, + { + attributes: { + id: "alarm-exclamation", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f843", + voted: false, + }, + id: "alarm-exclamation", + links: { self: "/api/icons/alarm-exclamation" }, + type: "icon", + }, + { + attributes: { + id: "alarm-plus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f844", + voted: false, + }, + id: "alarm-plus", + links: { self: "/api/icons/alarm-plus" }, + type: "icon", + }, + { + attributes: { + id: "alarm-snooze", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f845", + voted: true, + }, + id: "alarm-snooze", + links: { self: "/api/icons/alarm-snooze" }, + type: "icon", + }, + { + attributes: { + id: "album", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f89f", + voted: true, + }, + id: "album", + links: { self: "/api/icons/album" }, + type: "icon", + }, + { + attributes: { + id: "album-collection", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8a0", + voted: false, + }, + id: "album-collection", + links: { self: "/api/icons/album-collection" }, + type: "icon", + }, + { + attributes: { id: "algolia", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f36c", voted: false }, + id: "algolia", + links: { self: "/api/icons/algolia" }, + type: "icon", + }, + { + attributes: { + id: "alicorn", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6b0", + voted: false, + }, + id: "alicorn", + links: { self: "/api/icons/alicorn" }, + type: "icon", + }, + { + attributes: { + id: "alien", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8f5", + voted: false, + }, + id: "alien", + links: { self: "/api/icons/alien" }, + type: "icon", + }, + { + attributes: { + id: "alien-monster", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8f6", + voted: false, + }, + id: "alien-monster", + links: { self: "/api/icons/alien-monster" }, + type: "icon", + }, + { + attributes: { + id: "align-center", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f037", + voted: false, + }, + id: "align-center", + links: { self: "/api/icons/align-center" }, + type: "icon", + }, + { + attributes: { + id: "align-justify", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f039", + voted: false, + }, + id: "align-justify", + links: { self: "/api/icons/align-justify" }, + type: "icon", + }, + { + attributes: { + id: "align-left", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f036", + voted: false, + }, + id: "align-left", + links: { self: "/api/icons/align-left" }, + type: "icon", + }, + { + attributes: { + id: "align-right", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f038", + voted: false, + }, + id: "align-right", + links: { self: "/api/icons/align-right" }, + type: "icon", + }, + { + attributes: { + id: "align-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f846", + voted: false, + }, + id: "align-slash", + links: { self: "/api/icons/align-slash" }, + type: "icon", + }, + { + attributes: { id: "alipay", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f642", voted: false }, + id: "alipay", + links: { self: "/api/icons/alipay" }, + type: "icon", + }, + { + attributes: { + id: "allergies", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f461", + voted: false, + }, + id: "allergies", + links: { self: "/api/icons/allergies" }, + type: "icon", + }, + { + attributes: { id: "amazon", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f270", voted: false }, + id: "amazon", + links: { self: "/api/icons/amazon" }, + type: "icon", + }, + { + attributes: { id: "amazon-pay", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f42c", voted: false }, + id: "amazon-pay", + links: { self: "/api/icons/amazon-pay" }, + type: "icon", + }, + { + attributes: { + id: "ambulance", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0f9", + voted: false, + }, + id: "ambulance", + links: { self: "/api/icons/ambulance" }, + type: "icon", + }, + { + attributes: { + id: "american-sign-language-interpreting", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2a3", + voted: false, + }, + id: "american-sign-language-interpreting", + links: { self: "/api/icons/american-sign-language-interpreting" }, + type: "icon", + }, + { + attributes: { id: "amilia", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f36d", voted: false }, + id: "amilia", + links: { self: "/api/icons/amilia" }, + type: "icon", + }, + { + attributes: { + id: "amp-guitar", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f8a1", + voted: false, + }, + id: "amp-guitar", + links: { self: "/api/icons/amp-guitar" }, + type: "icon", + }, + { + attributes: { + id: "analytics", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f643", + voted: false, + }, + id: "analytics", + links: { self: "/api/icons/analytics" }, + type: "icon", + }, + { + attributes: { + id: "anchor", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f13d", + voted: false, + }, + id: "anchor", + links: { self: "/api/icons/anchor" }, + type: "icon", + }, + { + attributes: { id: "android", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f17b", voted: false }, + id: "android", + links: { self: "/api/icons/android" }, + type: "icon", + }, + { + attributes: { + id: "angel", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f779", + voted: false, + }, + id: "angel", + links: { self: "/api/icons/angel" }, + type: "icon", + }, + { + attributes: { id: "angellist", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f209", voted: false }, + id: "angellist", + links: { self: "/api/icons/angellist" }, + type: "icon", + }, + { + attributes: { + id: "angle-double-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f103", + voted: false, + }, + id: "angle-double-down", + links: { self: "/api/icons/angle-double-down" }, + type: "icon", + }, + { + attributes: { + id: "angle-double-left", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f100", + voted: false, + }, + id: "angle-double-left", + links: { self: "/api/icons/angle-double-left" }, + type: "icon", + }, + { + attributes: { + id: "angle-double-right", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f101", + voted: false, + }, + id: "angle-double-right", + links: { self: "/api/icons/angle-double-right" }, + type: "icon", + }, + { + attributes: { + id: "angle-double-up", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f102", + voted: false, + }, + id: "angle-double-up", + links: { self: "/api/icons/angle-double-up" }, + type: "icon", + }, + { + attributes: { + id: "angle-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f107", + voted: false, + }, + id: "angle-down", + links: { self: "/api/icons/angle-down" }, + type: "icon", + }, + { + attributes: { + id: "angle-left", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f104", + voted: false, + }, + id: "angle-left", + links: { self: "/api/icons/angle-left" }, + type: "icon", + }, + { + attributes: { + id: "angle-right", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f105", + voted: false, + }, + id: "angle-right", + links: { self: "/api/icons/angle-right" }, + type: "icon", + }, + { + attributes: { + id: "angle-up", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f106", + voted: false, + }, + id: "angle-up", + links: { self: "/api/icons/angle-up" }, + type: "icon", + }, + { + attributes: { + id: "angry", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f556", + voted: false, + }, + id: "angry", + links: { self: "/api/icons/angry" }, + type: "icon", + }, + { + attributes: { + id: "angrycreative", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f36e", + voted: false, + }, + id: "angrycreative", + links: { self: "/api/icons/angrycreative" }, + type: "icon", + }, + { + attributes: { id: "angular", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f420", voted: false }, + id: "angular", + links: { self: "/api/icons/angular" }, + type: "icon", + }, + { + attributes: { + id: "ankh", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f644", + voted: false, + }, + id: "ankh", + links: { self: "/api/icons/ankh" }, + type: "icon", + }, + { + attributes: { id: "app-store", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f36f", voted: false }, + id: "app-store", + links: { self: "/api/icons/app-store" }, + type: "icon", + }, + { + attributes: { + id: "app-store-ios", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f370", + voted: false, + }, + id: "app-store-ios", + links: { self: "/api/icons/app-store-ios" }, + type: "icon", + }, + { + attributes: { id: "apper", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f371", voted: false }, + id: "apper", + links: { self: "/api/icons/apper" }, + type: "icon", + }, + { + attributes: { id: "apple", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f179", voted: false }, + id: "apple", + links: { self: "/api/icons/apple" }, + type: "icon", + }, + { + attributes: { + id: "apple-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5d1", + voted: false, + }, + id: "apple-alt", + links: { self: "/api/icons/apple-alt" }, + type: "icon", + }, + { + attributes: { + id: "apple-crate", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6b1", + voted: false, + }, + id: "apple-crate", + links: { self: "/api/icons/apple-crate" }, + type: "icon", + }, + { + attributes: { id: "apple-pay", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f415", voted: true }, + id: "apple-pay", + links: { self: "/api/icons/apple-pay" }, + type: "icon", + }, + { + attributes: { + id: "archive", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f187", + voted: false, + }, + id: "archive", + links: { self: "/api/icons/archive" }, + type: "icon", + }, + { + attributes: { + id: "archway", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f557", + voted: false, + }, + id: "archway", + links: { self: "/api/icons/archway" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-circle-down", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f358", + voted: false, + }, + id: "arrow-alt-circle-down", + links: { self: "/api/icons/arrow-alt-circle-down" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-circle-left", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f359", + voted: false, + }, + id: "arrow-alt-circle-left", + links: { self: "/api/icons/arrow-alt-circle-left" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-circle-right", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f35a", + voted: false, + }, + id: "arrow-alt-circle-right", + links: { self: "/api/icons/arrow-alt-circle-right" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-circle-up", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f35b", + voted: false, + }, + id: "arrow-alt-circle-up", + links: { self: "/api/icons/arrow-alt-circle-up" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-down", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f354", + voted: false, + }, + id: "arrow-alt-down", + links: { self: "/api/icons/arrow-alt-down" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-from-bottom", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f346", + voted: false, + }, + id: "arrow-alt-from-bottom", + links: { self: "/api/icons/arrow-alt-from-bottom" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-from-left", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f347", + voted: false, + }, + id: "arrow-alt-from-left", + links: { self: "/api/icons/arrow-alt-from-left" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-from-right", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f348", + voted: false, + }, + id: "arrow-alt-from-right", + links: { self: "/api/icons/arrow-alt-from-right" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-from-top", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f349", + voted: false, + }, + id: "arrow-alt-from-top", + links: { self: "/api/icons/arrow-alt-from-top" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-left", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f355", + voted: false, + }, + id: "arrow-alt-left", + links: { self: "/api/icons/arrow-alt-left" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-right", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f356", + voted: false, + }, + id: "arrow-alt-right", + links: { self: "/api/icons/arrow-alt-right" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-square-down", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f350", + voted: false, + }, + id: "arrow-alt-square-down", + links: { self: "/api/icons/arrow-alt-square-down" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-square-left", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f351", + voted: false, + }, + id: "arrow-alt-square-left", + links: { self: "/api/icons/arrow-alt-square-left" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-square-right", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f352", + voted: false, + }, + id: "arrow-alt-square-right", + links: { self: "/api/icons/arrow-alt-square-right" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-square-up", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f353", + voted: false, + }, + id: "arrow-alt-square-up", + links: { self: "/api/icons/arrow-alt-square-up" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-to-bottom", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f34a", + voted: false, + }, + id: "arrow-alt-to-bottom", + links: { self: "/api/icons/arrow-alt-to-bottom" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-to-left", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f34b", + voted: false, + }, + id: "arrow-alt-to-left", + links: { self: "/api/icons/arrow-alt-to-left" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-to-right", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f34c", + voted: false, + }, + id: "arrow-alt-to-right", + links: { self: "/api/icons/arrow-alt-to-right" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-to-top", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f34d", + voted: false, + }, + id: "arrow-alt-to-top", + links: { self: "/api/icons/arrow-alt-to-top" }, + type: "icon", + }, + { + attributes: { + id: "arrow-alt-up", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f357", + voted: false, + }, + id: "arrow-alt-up", + links: { self: "/api/icons/arrow-alt-up" }, + type: "icon", + }, + { + attributes: { + id: "arrow-circle-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0ab", + voted: false, + }, + id: "arrow-circle-down", + links: { self: "/api/icons/arrow-circle-down" }, + type: "icon", + }, + { + attributes: { + id: "arrow-circle-left", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0a8", + voted: false, + }, + id: "arrow-circle-left", + links: { self: "/api/icons/arrow-circle-left" }, + type: "icon", + }, + { + attributes: { + id: "arrow-circle-right", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0a9", + voted: false, + }, + id: "arrow-circle-right", + links: { self: "/api/icons/arrow-circle-right" }, + type: "icon", + }, + { + attributes: { + id: "arrow-circle-up", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0aa", + voted: false, + }, + id: "arrow-circle-up", + links: { self: "/api/icons/arrow-circle-up" }, + type: "icon", + }, + { + attributes: { + id: "arrow-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f063", + voted: false, + }, + id: "arrow-down", + links: { self: "/api/icons/arrow-down" }, + type: "icon", + }, + { + attributes: { + id: "arrow-from-bottom", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f342", + voted: false, + }, + id: "arrow-from-bottom", + links: { self: "/api/icons/arrow-from-bottom" }, + type: "icon", + }, + { + attributes: { + id: "arrow-from-left", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f343", + voted: false, + }, + id: "arrow-from-left", + links: { self: "/api/icons/arrow-from-left" }, + type: "icon", + }, + { + attributes: { + id: "arrow-from-right", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f344", + voted: false, + }, + id: "arrow-from-right", + links: { self: "/api/icons/arrow-from-right" }, + type: "icon", + }, + { + attributes: { + id: "arrow-from-top", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f345", + voted: false, + }, + id: "arrow-from-top", + links: { self: "/api/icons/arrow-from-top" }, + type: "icon", + }, + { + attributes: { + id: "arrow-left", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f060", + voted: false, + }, + id: "arrow-left", + links: { self: "/api/icons/arrow-left" }, + type: "icon", + }, + { + attributes: { + id: "arrow-right", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f061", + voted: false, + }, + id: "arrow-right", + links: { self: "/api/icons/arrow-right" }, + type: "icon", + }, + { + attributes: { + id: "arrow-square-down", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f339", + voted: false, + }, + id: "arrow-square-down", + links: { self: "/api/icons/arrow-square-down" }, + type: "icon", + }, + { + attributes: { + id: "arrow-square-left", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f33a", + voted: false, + }, + id: "arrow-square-left", + links: { self: "/api/icons/arrow-square-left" }, + type: "icon", + }, + { + attributes: { + id: "arrow-square-right", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f33b", + voted: false, + }, + id: "arrow-square-right", + links: { self: "/api/icons/arrow-square-right" }, + type: "icon", + }, + { + attributes: { + id: "arrow-square-up", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f33c", + voted: false, + }, + id: "arrow-square-up", + links: { self: "/api/icons/arrow-square-up" }, + type: "icon", + }, + { + attributes: { + id: "arrow-to-bottom", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f33d", + voted: false, + }, + id: "arrow-to-bottom", + links: { self: "/api/icons/arrow-to-bottom" }, + type: "icon", + }, + { + attributes: { + id: "arrow-to-left", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f33e", + voted: false, + }, + id: "arrow-to-left", + links: { self: "/api/icons/arrow-to-left" }, + type: "icon", + }, + { + attributes: { + id: "arrow-to-right", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f340", + voted: false, + }, + id: "arrow-to-right", + links: { self: "/api/icons/arrow-to-right" }, + type: "icon", + }, + { + attributes: { + id: "arrow-to-top", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f341", + voted: false, + }, + id: "arrow-to-top", + links: { self: "/api/icons/arrow-to-top" }, + type: "icon", + }, + { + attributes: { + id: "arrow-up", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f062", + voted: false, + }, + id: "arrow-up", + links: { self: "/api/icons/arrow-up" }, + type: "icon", + }, + { + attributes: { + id: "arrows", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f047", + voted: false, + }, + id: "arrows", + links: { self: "/api/icons/arrows" }, + type: "icon", + }, + { + attributes: { + id: "arrows-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0b2", + voted: false, + }, + id: "arrows-alt", + links: { self: "/api/icons/arrows-alt" }, + type: "icon", + }, + { + attributes: { + id: "arrows-alt-h", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f337", + voted: false, + }, + id: "arrows-alt-h", + links: { self: "/api/icons/arrows-alt-h" }, + type: "icon", + }, + { + attributes: { + id: "arrows-alt-v", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f338", + voted: false, + }, + id: "arrows-alt-v", + links: { self: "/api/icons/arrows-alt-v" }, + type: "icon", + }, + { + attributes: { + id: "arrows-h", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f07e", + voted: false, + }, + id: "arrows-h", + links: { self: "/api/icons/arrows-h" }, + type: "icon", + }, + { + attributes: { + id: "arrows-v", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f07d", + voted: false, + }, + id: "arrows-v", + links: { self: "/api/icons/arrows-v" }, + type: "icon", + }, + { + attributes: { id: "artstation", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f77a", voted: true }, + id: "artstation", + links: { self: "/api/icons/artstation" }, + type: "icon", + }, + { + attributes: { + id: "assistive-listening-systems", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2a2", + voted: false, + }, + id: "assistive-listening-systems", + links: { self: "/api/icons/assistive-listening-systems" }, + type: "icon", + }, + { + attributes: { + id: "asterisk", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f069", + voted: false, + }, + id: "asterisk", + links: { self: "/api/icons/asterisk" }, + type: "icon", + }, + { + attributes: { id: "asymmetrik", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f372", voted: false }, + id: "asymmetrik", + links: { self: "/api/icons/asymmetrik" }, + type: "icon", + }, + { + attributes: { + id: "at", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1fa", + voted: false, + }, + id: "at", + links: { self: "/api/icons/at" }, + type: "icon", + }, + { + attributes: { + id: "atlas", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f558", + voted: false, + }, + id: "atlas", + links: { self: "/api/icons/atlas" }, + type: "icon", + }, + { + attributes: { id: "atlassian", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f77b", voted: true }, + id: "atlassian", + links: { self: "/api/icons/atlassian" }, + type: "icon", + }, + { + attributes: { + id: "atom", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5d2", + voted: false, + }, + id: "atom", + links: { self: "/api/icons/atom" }, + type: "icon", + }, + { + attributes: { + id: "atom-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5d3", + voted: false, + }, + id: "atom-alt", + links: { self: "/api/icons/atom-alt" }, + type: "icon", + }, + { + attributes: { id: "audible", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f373", voted: false }, + id: "audible", + links: { self: "/api/icons/audible" }, + type: "icon", + }, + { + attributes: { + id: "audio-description", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f29e", + voted: false, + }, + id: "audio-description", + links: { self: "/api/icons/audio-description" }, + type: "icon", + }, + { + attributes: { + id: "autoprefixer", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f41c", + voted: false, + }, + id: "autoprefixer", + links: { self: "/api/icons/autoprefixer" }, + type: "icon", + }, + { + attributes: { id: "avianex", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f374", voted: false }, + id: "avianex", + links: { self: "/api/icons/avianex" }, + type: "icon", + }, + { + attributes: { id: "aviato", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f421", voted: false }, + id: "aviato", + links: { self: "/api/icons/aviato" }, + type: "icon", + }, + { + attributes: { + id: "award", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f559", + voted: true, + }, + id: "award", + links: { self: "/api/icons/award" }, + type: "icon", + }, + { + attributes: { id: "aws", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f375", voted: false }, + id: "aws", + links: { self: "/api/icons/aws" }, + type: "icon", + }, + { + attributes: { + id: "axe", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6b2", + voted: false, + }, + id: "axe", + links: { self: "/api/icons/axe" }, + type: "icon", + }, + { + attributes: { + id: "axe-battle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6b3", + voted: false, + }, + id: "axe-battle", + links: { self: "/api/icons/axe-battle" }, + type: "icon", + }, + { + attributes: { + id: "baby", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f77c", + voted: true, + }, + id: "baby", + links: { self: "/api/icons/baby" }, + type: "icon", + }, + { + attributes: { + id: "baby-carriage", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f77d", + voted: true, + }, + id: "baby-carriage", + links: { self: "/api/icons/baby-carriage" }, + type: "icon", + }, + { + attributes: { + id: "backpack", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5d4", + voted: false, + }, + id: "backpack", + links: { self: "/api/icons/backpack" }, + type: "icon", + }, + { + attributes: { + id: "backspace", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f55a", + voted: true, + }, + id: "backspace", + links: { self: "/api/icons/backspace" }, + type: "icon", + }, + { + attributes: { + id: "backward", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f04a", + voted: false, + }, + id: "backward", + links: { self: "/api/icons/backward" }, + type: "icon", + }, + { + attributes: { + id: "bacon", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7e5", + voted: false, + }, + id: "bacon", + links: { self: "/api/icons/bacon" }, + type: "icon", + }, + { + attributes: { + id: "bacteria", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f959", + voted: false, + }, + id: "bacteria", + links: { self: "/api/icons/bacteria" }, + type: "icon", + }, + { + attributes: { + id: "bacterium", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f95a", + voted: false, + }, + id: "bacterium", + links: { self: "/api/icons/bacterium" }, + type: "icon", + }, + { + attributes: { + id: "badge", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f335", + voted: false, + }, + id: "badge", + links: { self: "/api/icons/badge" }, + type: "icon", + }, + { + attributes: { + id: "badge-check", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f336", + voted: false, + }, + id: "badge-check", + links: { self: "/api/icons/badge-check" }, + type: "icon", + }, + { + attributes: { + id: "badge-dollar", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f645", + voted: false, + }, + id: "badge-dollar", + links: { self: "/api/icons/badge-dollar" }, + type: "icon", + }, + { + attributes: { + id: "badge-percent", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f646", + voted: false, + }, + id: "badge-percent", + links: { self: "/api/icons/badge-percent" }, + type: "icon", + }, + { + attributes: { + id: "badge-sheriff", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f8a2", + voted: false, + }, + id: "badge-sheriff", + links: { self: "/api/icons/badge-sheriff" }, + type: "icon", + }, + { + attributes: { + id: "badger-honey", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6b4", + voted: false, + }, + id: "badger-honey", + links: { self: "/api/icons/badger-honey" }, + type: "icon", + }, + { + attributes: { + id: "bags-shopping", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f847", + voted: false, + }, + id: "bags-shopping", + links: { self: "/api/icons/bags-shopping" }, + type: "icon", + }, + { + attributes: { + id: "bahai", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f666", + voted: false, + }, + id: "bahai", + links: { self: "/api/icons/bahai" }, + type: "icon", + }, + { + attributes: { + id: "balance-scale", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f24e", + voted: false, + }, + id: "balance-scale", + links: { self: "/api/icons/balance-scale" }, + type: "icon", + }, + { + attributes: { + id: "balance-scale-left", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f515", + voted: true, + }, + id: "balance-scale-left", + links: { self: "/api/icons/balance-scale-left" }, + type: "icon", + }, + { + attributes: { + id: "balance-scale-right", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f516", + voted: true, + }, + id: "balance-scale-right", + links: { self: "/api/icons/balance-scale-right" }, + type: "icon", + }, + { + attributes: { + id: "ball-pile", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f77e", + voted: false, + }, + id: "ball-pile", + links: { self: "/api/icons/ball-pile" }, + type: "icon", + }, + { + attributes: { + id: "ballot", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f732", + voted: false, + }, + id: "ballot", + links: { self: "/api/icons/ballot" }, + type: "icon", + }, + { + attributes: { + id: "ballot-check", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f733", + voted: false, + }, + id: "ballot-check", + links: { self: "/api/icons/ballot-check" }, + type: "icon", + }, + { + attributes: { + id: "ban", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f05e", + voted: false, + }, + id: "ban", + links: { self: "/api/icons/ban" }, + type: "icon", + }, + { + attributes: { + id: "band-aid", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f462", + voted: false, + }, + id: "band-aid", + links: { self: "/api/icons/band-aid" }, + type: "icon", + }, + { + attributes: { id: "bandcamp", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2d5", voted: false }, + id: "bandcamp", + links: { self: "/api/icons/bandcamp" }, + type: "icon", + }, + { + attributes: { + id: "banjo", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8a3", + voted: false, + }, + id: "banjo", + links: { self: "/api/icons/banjo" }, + type: "icon", + }, + { + attributes: { + id: "barcode", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f02a", + voted: false, + }, + id: "barcode", + links: { self: "/api/icons/barcode" }, + type: "icon", + }, + { + attributes: { + id: "barcode-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f463", + voted: false, + }, + id: "barcode-alt", + links: { self: "/api/icons/barcode-alt" }, + type: "icon", + }, + { + attributes: { + id: "barcode-read", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f464", + voted: false, + }, + id: "barcode-read", + links: { self: "/api/icons/barcode-read" }, + type: "icon", + }, + { + attributes: { + id: "barcode-scan", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f465", + voted: false, + }, + id: "barcode-scan", + links: { self: "/api/icons/barcode-scan" }, + type: "icon", + }, + { + attributes: { + id: "bars", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0c9", + voted: false, + }, + id: "bars", + links: { self: "/api/icons/bars" }, + type: "icon", + }, + { + attributes: { + id: "baseball", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f432", + voted: false, + }, + id: "baseball", + links: { self: "/api/icons/baseball" }, + type: "icon", + }, + { + attributes: { + id: "baseball-ball", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f433", + voted: false, + }, + id: "baseball-ball", + links: { self: "/api/icons/baseball-ball" }, + type: "icon", + }, + { + attributes: { + id: "basketball-ball", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f434", + voted: false, + }, + id: "basketball-ball", + links: { self: "/api/icons/basketball-ball" }, + type: "icon", + }, + { + attributes: { + id: "basketball-hoop", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f435", + voted: false, + }, + id: "basketball-hoop", + links: { self: "/api/icons/basketball-hoop" }, + type: "icon", + }, + { + attributes: { + id: "bat", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6b5", + voted: false, + }, + id: "bat", + links: { self: "/api/icons/bat" }, + type: "icon", + }, + { + attributes: { + id: "bath", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2cd", + voted: false, + }, + id: "bath", + links: { self: "/api/icons/bath" }, + type: "icon", + }, + { + attributes: { + id: "battery-bolt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f376", + voted: false, + }, + id: "battery-bolt", + links: { self: "/api/icons/battery-bolt" }, + type: "icon", + }, + { + attributes: { + id: "battery-empty", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f244", + voted: false, + }, + id: "battery-empty", + links: { self: "/api/icons/battery-empty" }, + type: "icon", + }, + { + attributes: { + id: "battery-full", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f240", + voted: false, + }, + id: "battery-full", + links: { self: "/api/icons/battery-full" }, + type: "icon", + }, + { + attributes: { + id: "battery-half", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f242", + voted: false, + }, + id: "battery-half", + links: { self: "/api/icons/battery-half" }, + type: "icon", + }, + { + attributes: { + id: "battery-quarter", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f243", + voted: false, + }, + id: "battery-quarter", + links: { self: "/api/icons/battery-quarter" }, + type: "icon", + }, + { + attributes: { + id: "battery-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f377", + voted: false, + }, + id: "battery-slash", + links: { self: "/api/icons/battery-slash" }, + type: "icon", + }, + { + attributes: { + id: "battery-three-quarters", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f241", + voted: false, + }, + id: "battery-three-quarters", + links: { self: "/api/icons/battery-three-quarters" }, + type: "icon", + }, + { + attributes: { id: "battle-net", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f835", voted: false }, + id: "battle-net", + links: { self: "/api/icons/battle-net" }, + type: "icon", + }, + { + attributes: { + id: "bed", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f236", + voted: false, + }, + id: "bed", + links: { self: "/api/icons/bed" }, + type: "icon", + }, + { + attributes: { + id: "bed-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8f7", + voted: false, + }, + id: "bed-alt", + links: { self: "/api/icons/bed-alt" }, + type: "icon", + }, + { + attributes: { + id: "bed-bunk", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8f8", + voted: false, + }, + id: "bed-bunk", + links: { self: "/api/icons/bed-bunk" }, + type: "icon", + }, + { + attributes: { + id: "bed-empty", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8f9", + voted: false, + }, + id: "bed-empty", + links: { self: "/api/icons/bed-empty" }, + type: "icon", + }, + { + attributes: { + id: "beer", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0fc", + voted: false, + }, + id: "beer", + links: { self: "/api/icons/beer" }, + type: "icon", + }, + { + attributes: { id: "behance", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1b4", voted: false }, + id: "behance", + links: { self: "/api/icons/behance" }, + type: "icon", + }, + { + attributes: { + id: "behance-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f1b5", + voted: false, + }, + id: "behance-square", + links: { self: "/api/icons/behance-square" }, + type: "icon", + }, + { + attributes: { + id: "bell", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0f3", + voted: false, + }, + id: "bell", + links: { self: "/api/icons/bell" }, + type: "icon", + }, + { + attributes: { + id: "bell-exclamation", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f848", + voted: false, + }, + id: "bell-exclamation", + links: { self: "/api/icons/bell-exclamation" }, + type: "icon", + }, + { + attributes: { + id: "bell-on", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8fa", + voted: false, + }, + id: "bell-on", + links: { self: "/api/icons/bell-on" }, + type: "icon", + }, + { + attributes: { + id: "bell-plus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f849", + voted: false, + }, + id: "bell-plus", + links: { self: "/api/icons/bell-plus" }, + type: "icon", + }, + { + attributes: { + id: "bell-school", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5d5", + voted: false, + }, + id: "bell-school", + links: { self: "/api/icons/bell-school" }, + type: "icon", + }, + { + attributes: { + id: "bell-school-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5d6", + voted: false, + }, + id: "bell-school-slash", + links: { self: "/api/icons/bell-school-slash" }, + type: "icon", + }, + { + attributes: { + id: "bell-slash", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1f6", + voted: false, + }, + id: "bell-slash", + links: { self: "/api/icons/bell-slash" }, + type: "icon", + }, + { + attributes: { + id: "bells", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f77f", + voted: false, + }, + id: "bells", + links: { self: "/api/icons/bells" }, + type: "icon", + }, + { + attributes: { + id: "betamax", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8a4", + voted: false, + }, + id: "betamax", + links: { self: "/api/icons/betamax" }, + type: "icon", + }, + { + attributes: { + id: "bezier-curve", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f55b", + voted: false, + }, + id: "bezier-curve", + links: { self: "/api/icons/bezier-curve" }, + type: "icon", + }, + { + attributes: { + id: "bible", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f647", + voted: false, + }, + id: "bible", + links: { self: "/api/icons/bible" }, + type: "icon", + }, + { + attributes: { + id: "bicycle", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f206", + voted: false, + }, + id: "bicycle", + links: { self: "/api/icons/bicycle" }, + type: "icon", + }, + { + attributes: { + id: "biking", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f84a", + voted: false, + }, + id: "biking", + links: { self: "/api/icons/biking" }, + type: "icon", + }, + { + attributes: { + id: "biking-mountain", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f84b", + voted: false, + }, + id: "biking-mountain", + links: { self: "/api/icons/biking-mountain" }, + type: "icon", + }, + { + attributes: { id: "bimobject", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f378", voted: false }, + id: "bimobject", + links: { self: "/api/icons/bimobject" }, + type: "icon", + }, + { + attributes: { + id: "binoculars", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1e5", + voted: false, + }, + id: "binoculars", + links: { self: "/api/icons/binoculars" }, + type: "icon", + }, + { + attributes: { + id: "biohazard", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f780", + voted: true, + }, + id: "biohazard", + links: { self: "/api/icons/biohazard" }, + type: "icon", + }, + { + attributes: { + id: "birthday-cake", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1fd", + voted: false, + }, + id: "birthday-cake", + links: { self: "/api/icons/birthday-cake" }, + type: "icon", + }, + { + attributes: { id: "bitbucket", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f171", voted: false }, + id: "bitbucket", + links: { self: "/api/icons/bitbucket" }, + type: "icon", + }, + { + attributes: { id: "bitcoin", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f379", voted: false }, + id: "bitcoin", + links: { self: "/api/icons/bitcoin" }, + type: "icon", + }, + { + attributes: { id: "bity", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f37a", voted: false }, + id: "bity", + links: { self: "/api/icons/bity" }, + type: "icon", + }, + { + attributes: { id: "black-tie", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f27e", voted: false }, + id: "black-tie", + links: { self: "/api/icons/black-tie" }, + type: "icon", + }, + { + attributes: { id: "blackberry", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f37b", voted: false }, + id: "blackberry", + links: { self: "/api/icons/blackberry" }, + type: "icon", + }, + { + attributes: { + id: "blanket", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f498", + voted: false, + }, + id: "blanket", + links: { self: "/api/icons/blanket" }, + type: "icon", + }, + { + attributes: { + id: "blender", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f517", + voted: false, + }, + id: "blender", + links: { self: "/api/icons/blender" }, + type: "icon", + }, + { + attributes: { + id: "blender-phone", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6b6", + voted: false, + }, + id: "blender-phone", + links: { self: "/api/icons/blender-phone" }, + type: "icon", + }, + { + attributes: { + id: "blind", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f29d", + voted: false, + }, + id: "blind", + links: { self: "/api/icons/blind" }, + type: "icon", + }, + { + attributes: { + id: "blinds", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8fb", + voted: false, + }, + id: "blinds", + links: { self: "/api/icons/blinds" }, + type: "icon", + }, + { + attributes: { + id: "blinds-open", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8fc", + voted: false, + }, + id: "blinds-open", + links: { self: "/api/icons/blinds-open" }, + type: "icon", + }, + { + attributes: { + id: "blinds-raised", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8fd", + voted: false, + }, + id: "blinds-raised", + links: { self: "/api/icons/blinds-raised" }, + type: "icon", + }, + { + attributes: { + id: "blog", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f781", + voted: true, + }, + id: "blog", + links: { self: "/api/icons/blog" }, + type: "icon", + }, + { + attributes: { id: "blogger", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f37c", voted: false }, + id: "blogger", + links: { self: "/api/icons/blogger" }, + type: "icon", + }, + { + attributes: { id: "blogger-b", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f37d", voted: false }, + id: "blogger-b", + links: { self: "/api/icons/blogger-b" }, + type: "icon", + }, + { + attributes: { id: "bluetooth", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f293", voted: false }, + id: "bluetooth", + links: { self: "/api/icons/bluetooth" }, + type: "icon", + }, + { + attributes: { id: "bluetooth-b", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f294", voted: false }, + id: "bluetooth-b", + links: { self: "/api/icons/bluetooth-b" }, + type: "icon", + }, + { + attributes: { + id: "bold", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f032", + voted: false, + }, + id: "bold", + links: { self: "/api/icons/bold" }, + type: "icon", + }, + { + attributes: { + id: "bolt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0e7", + voted: false, + }, + id: "bolt", + links: { self: "/api/icons/bolt" }, + type: "icon", + }, + { + attributes: { + id: "bomb", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1e2", + voted: false, + }, + id: "bomb", + links: { self: "/api/icons/bomb" }, + type: "icon", + }, + { + attributes: { + id: "bone", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5d7", + voted: false, + }, + id: "bone", + links: { self: "/api/icons/bone" }, + type: "icon", + }, + { + attributes: { + id: "bone-break", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5d8", + voted: false, + }, + id: "bone-break", + links: { self: "/api/icons/bone-break" }, + type: "icon", + }, + { + attributes: { + id: "bong", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f55c", + voted: false, + }, + id: "bong", + links: { self: "/api/icons/bong" }, + type: "icon", + }, + { + attributes: { + id: "book", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f02d", + voted: false, + }, + id: "book", + links: { self: "/api/icons/book" }, + type: "icon", + }, + { + attributes: { + id: "book-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5d9", + voted: false, + }, + id: "book-alt", + links: { self: "/api/icons/book-alt" }, + type: "icon", + }, + { + attributes: { + id: "book-dead", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6b7", + voted: false, + }, + id: "book-dead", + links: { self: "/api/icons/book-dead" }, + type: "icon", + }, + { + attributes: { + id: "book-heart", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f499", + voted: false, + }, + id: "book-heart", + links: { self: "/api/icons/book-heart" }, + type: "icon", + }, + { + attributes: { + id: "book-medical", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7e6", + voted: false, + }, + id: "book-medical", + links: { self: "/api/icons/book-medical" }, + type: "icon", + }, + { + attributes: { + id: "book-open", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f518", + voted: true, + }, + id: "book-open", + links: { self: "/api/icons/book-open" }, + type: "icon", + }, + { + attributes: { + id: "book-reader", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5da", + voted: false, + }, + id: "book-reader", + links: { self: "/api/icons/book-reader" }, + type: "icon", + }, + { + attributes: { + id: "book-spells", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6b8", + voted: false, + }, + id: "book-spells", + links: { self: "/api/icons/book-spells" }, + type: "icon", + }, + { + attributes: { + id: "book-user", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7e7", + voted: false, + }, + id: "book-user", + links: { self: "/api/icons/book-user" }, + type: "icon", + }, + { + attributes: { + id: "bookmark", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f02e", + voted: false, + }, + id: "bookmark", + links: { self: "/api/icons/bookmark" }, + type: "icon", + }, + { + attributes: { + id: "books", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5db", + voted: false, + }, + id: "books", + links: { self: "/api/icons/books" }, + type: "icon", + }, + { + attributes: { + id: "books-medical", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7e8", + voted: false, + }, + id: "books-medical", + links: { self: "/api/icons/books-medical" }, + type: "icon", + }, + { + attributes: { + id: "boombox", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8a5", + voted: false, + }, + id: "boombox", + links: { self: "/api/icons/boombox" }, + type: "icon", + }, + { + attributes: { + id: "boot", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f782", + voted: false, + }, + id: "boot", + links: { self: "/api/icons/boot" }, + type: "icon", + }, + { + attributes: { + id: "booth-curtain", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f734", + voted: false, + }, + id: "booth-curtain", + links: { self: "/api/icons/booth-curtain" }, + type: "icon", + }, + { + attributes: { id: "bootstrap", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f836", voted: false }, + id: "bootstrap", + links: { self: "/api/icons/bootstrap" }, + type: "icon", + }, + { + attributes: { + id: "border-all", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f84c", + voted: false, + }, + id: "border-all", + links: { self: "/api/icons/border-all" }, + type: "icon", + }, + { + attributes: { + id: "border-bottom", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f84d", + voted: false, + }, + id: "border-bottom", + links: { self: "/api/icons/border-bottom" }, + type: "icon", + }, + { + attributes: { + id: "border-center-h", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f89c", + voted: false, + }, + id: "border-center-h", + links: { self: "/api/icons/border-center-h" }, + type: "icon", + }, + { + attributes: { + id: "border-center-v", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f89d", + voted: false, + }, + id: "border-center-v", + links: { self: "/api/icons/border-center-v" }, + type: "icon", + }, + { + attributes: { + id: "border-inner", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f84e", + voted: false, + }, + id: "border-inner", + links: { self: "/api/icons/border-inner" }, + type: "icon", + }, + { + attributes: { + id: "border-left", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f84f", + voted: false, + }, + id: "border-left", + links: { self: "/api/icons/border-left" }, + type: "icon", + }, + { + attributes: { + id: "border-none", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f850", + voted: false, + }, + id: "border-none", + links: { self: "/api/icons/border-none" }, + type: "icon", + }, + { + attributes: { + id: "border-outer", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f851", + voted: false, + }, + id: "border-outer", + links: { self: "/api/icons/border-outer" }, + type: "icon", + }, + { + attributes: { + id: "border-right", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f852", + voted: false, + }, + id: "border-right", + links: { self: "/api/icons/border-right" }, + type: "icon", + }, + { + attributes: { + id: "border-style", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f853", + voted: false, + }, + id: "border-style", + links: { self: "/api/icons/border-style" }, + type: "icon", + }, + { + attributes: { + id: "border-style-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f854", + voted: false, + }, + id: "border-style-alt", + links: { self: "/api/icons/border-style-alt" }, + type: "icon", + }, + { + attributes: { + id: "border-top", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f855", + voted: false, + }, + id: "border-top", + links: { self: "/api/icons/border-top" }, + type: "icon", + }, + { + attributes: { + id: "bow-arrow", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6b9", + voted: false, + }, + id: "bow-arrow", + links: { self: "/api/icons/bow-arrow" }, + type: "icon", + }, + { + attributes: { + id: "bowling-ball", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f436", + voted: false, + }, + id: "bowling-ball", + links: { self: "/api/icons/bowling-ball" }, + type: "icon", + }, + { + attributes: { + id: "bowling-pins", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f437", + voted: false, + }, + id: "bowling-pins", + links: { self: "/api/icons/bowling-pins" }, + type: "icon", + }, + { + attributes: { + id: "box", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f466", + voted: false, + }, + id: "box", + links: { self: "/api/icons/box" }, + type: "icon", + }, + { + attributes: { + id: "box-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f49a", + voted: false, + }, + id: "box-alt", + links: { self: "/api/icons/box-alt" }, + type: "icon", + }, + { + attributes: { + id: "box-ballot", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f735", + voted: false, + }, + id: "box-ballot", + links: { self: "/api/icons/box-ballot" }, + type: "icon", + }, + { + attributes: { + id: "box-check", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f467", + voted: false, + }, + id: "box-check", + links: { self: "/api/icons/box-check" }, + type: "icon", + }, + { + attributes: { + id: "box-fragile", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f49b", + voted: false, + }, + id: "box-fragile", + links: { self: "/api/icons/box-fragile" }, + type: "icon", + }, + { + attributes: { + id: "box-full", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f49c", + voted: false, + }, + id: "box-full", + links: { self: "/api/icons/box-full" }, + type: "icon", + }, + { + attributes: { + id: "box-heart", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f49d", + voted: false, + }, + id: "box-heart", + links: { self: "/api/icons/box-heart" }, + type: "icon", + }, + { + attributes: { + id: "box-open", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f49e", + voted: false, + }, + id: "box-open", + links: { self: "/api/icons/box-open" }, + type: "icon", + }, + { + attributes: { + id: "box-tissue", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f95b", + voted: false, + }, + id: "box-tissue", + links: { self: "/api/icons/box-tissue" }, + type: "icon", + }, + { + attributes: { + id: "box-up", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f49f", + voted: false, + }, + id: "box-up", + links: { self: "/api/icons/box-up" }, + type: "icon", + }, + { + attributes: { + id: "box-usd", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4a0", + voted: false, + }, + id: "box-usd", + links: { self: "/api/icons/box-usd" }, + type: "icon", + }, + { + attributes: { + id: "boxes", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f468", + voted: false, + }, + id: "boxes", + links: { self: "/api/icons/boxes" }, + type: "icon", + }, + { + attributes: { + id: "boxes-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4a1", + voted: false, + }, + id: "boxes-alt", + links: { self: "/api/icons/boxes-alt" }, + type: "icon", + }, + { + attributes: { + id: "boxing-glove", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f438", + voted: false, + }, + id: "boxing-glove", + links: { self: "/api/icons/boxing-glove" }, + type: "icon", + }, + { + attributes: { + id: "brackets", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7e9", + voted: false, + }, + id: "brackets", + links: { self: "/api/icons/brackets" }, + type: "icon", + }, + { + attributes: { + id: "brackets-curly", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7ea", + voted: true, + }, + id: "brackets-curly", + links: { self: "/api/icons/brackets-curly" }, + type: "icon", + }, + { + attributes: { + id: "braille", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2a1", + voted: false, + }, + id: "braille", + links: { self: "/api/icons/braille" }, + type: "icon", + }, + { + attributes: { + id: "brain", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5dc", + voted: false, + }, + id: "brain", + links: { self: "/api/icons/brain" }, + type: "icon", + }, + { + attributes: { + id: "bread-loaf", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7eb", + voted: false, + }, + id: "bread-loaf", + links: { self: "/api/icons/bread-loaf" }, + type: "icon", + }, + { + attributes: { + id: "bread-slice", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7ec", + voted: false, + }, + id: "bread-slice", + links: { self: "/api/icons/bread-slice" }, + type: "icon", + }, + { + attributes: { + id: "briefcase", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0b1", + voted: false, + }, + id: "briefcase", + links: { self: "/api/icons/briefcase" }, + type: "icon", + }, + { + attributes: { + id: "briefcase-medical", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f469", + voted: false, + }, + id: "briefcase-medical", + links: { self: "/api/icons/briefcase-medical" }, + type: "icon", + }, + { + attributes: { + id: "bring-forward", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f856", + voted: true, + }, + id: "bring-forward", + links: { self: "/api/icons/bring-forward" }, + type: "icon", + }, + { + attributes: { + id: "bring-front", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f857", + voted: true, + }, + id: "bring-front", + links: { self: "/api/icons/bring-front" }, + type: "icon", + }, + { + attributes: { + id: "broadcast-tower", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f519", + voted: true, + }, + id: "broadcast-tower", + links: { self: "/api/icons/broadcast-tower" }, + type: "icon", + }, + { + attributes: { + id: "broom", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f51a", + voted: true, + }, + id: "broom", + links: { self: "/api/icons/broom" }, + type: "icon", + }, + { + attributes: { + id: "browser", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f37e", + voted: false, + }, + id: "browser", + links: { self: "/api/icons/browser" }, + type: "icon", + }, + { + attributes: { + id: "brush", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f55d", + voted: false, + }, + id: "brush", + links: { self: "/api/icons/brush" }, + type: "icon", + }, + { + attributes: { id: "btc", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f15a", voted: false }, + id: "btc", + links: { self: "/api/icons/btc" }, + type: "icon", + }, + { + attributes: { id: "buffer", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f837", voted: false }, + id: "buffer", + links: { self: "/api/icons/buffer" }, + type: "icon", + }, + { + attributes: { + id: "bug", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f188", + voted: false, + }, + id: "bug", + links: { self: "/api/icons/bug" }, + type: "icon", + }, + { + attributes: { + id: "building", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1ad", + voted: false, + }, + id: "building", + links: { self: "/api/icons/building" }, + type: "icon", + }, + { + attributes: { + id: "bullhorn", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0a1", + voted: false, + }, + id: "bullhorn", + links: { self: "/api/icons/bullhorn" }, + type: "icon", + }, + { + attributes: { + id: "bullseye", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f140", + voted: false, + }, + id: "bullseye", + links: { self: "/api/icons/bullseye" }, + type: "icon", + }, + { + attributes: { + id: "bullseye-arrow", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f648", + voted: false, + }, + id: "bullseye-arrow", + links: { self: "/api/icons/bullseye-arrow" }, + type: "icon", + }, + { + attributes: { + id: "bullseye-pointer", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f649", + voted: false, + }, + id: "bullseye-pointer", + links: { self: "/api/icons/bullseye-pointer" }, + type: "icon", + }, + { + attributes: { + id: "burger-soda", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f858", + voted: false, + }, + id: "burger-soda", + links: { self: "/api/icons/burger-soda" }, + type: "icon", + }, + { + attributes: { + id: "burn", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f46a", + voted: false, + }, + id: "burn", + links: { self: "/api/icons/burn" }, + type: "icon", + }, + { + attributes: { + id: "buromobelexperte", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f37f", + voted: false, + }, + id: "buromobelexperte", + links: { self: "/api/icons/buromobelexperte" }, + type: "icon", + }, + { + attributes: { + id: "burrito", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7ed", + voted: false, + }, + id: "burrito", + links: { self: "/api/icons/burrito" }, + type: "icon", + }, + { + attributes: { + id: "bus", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f207", + voted: false, + }, + id: "bus", + links: { self: "/api/icons/bus" }, + type: "icon", + }, + { + attributes: { + id: "bus-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f55e", + voted: false, + }, + id: "bus-alt", + links: { self: "/api/icons/bus-alt" }, + type: "icon", + }, + { + attributes: { + id: "bus-school", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5dd", + voted: false, + }, + id: "bus-school", + links: { self: "/api/icons/bus-school" }, + type: "icon", + }, + { + attributes: { + id: "business-time", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f64a", + voted: false, + }, + id: "business-time", + links: { self: "/api/icons/business-time" }, + type: "icon", + }, + { + attributes: { id: "buy-n-large", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f8a6", voted: false }, + id: "buy-n-large", + links: { self: "/api/icons/buy-n-large" }, + type: "icon", + }, + { + attributes: { id: "buysellads", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f20d", voted: false }, + id: "buysellads", + links: { self: "/api/icons/buysellads" }, + type: "icon", + }, + { + attributes: { + id: "cabinet-filing", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f64b", + voted: false, + }, + id: "cabinet-filing", + links: { self: "/api/icons/cabinet-filing" }, + type: "icon", + }, + { + attributes: { + id: "cactus", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f8a7", + voted: false, + }, + id: "cactus", + links: { self: "/api/icons/cactus" }, + type: "icon", + }, + { + attributes: { + id: "calculator", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1ec", + voted: false, + }, + id: "calculator", + links: { self: "/api/icons/calculator" }, + type: "icon", + }, + { + attributes: { + id: "calculator-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f64c", + voted: false, + }, + id: "calculator-alt", + links: { self: "/api/icons/calculator-alt" }, + type: "icon", + }, + { + attributes: { + id: "calendar", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f133", + voted: false, + }, + id: "calendar", + links: { self: "/api/icons/calendar" }, + type: "icon", + }, + { + attributes: { + id: "calendar-alt", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f073", + voted: false, + }, + id: "calendar-alt", + links: { self: "/api/icons/calendar-alt" }, + type: "icon", + }, + { + attributes: { + id: "calendar-check", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f274", + voted: false, + }, + id: "calendar-check", + links: { self: "/api/icons/calendar-check" }, + type: "icon", + }, + { + attributes: { + id: "calendar-day", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f783", + voted: true, + }, + id: "calendar-day", + links: { self: "/api/icons/calendar-day" }, + type: "icon", + }, + { + attributes: { + id: "calendar-edit", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f333", + voted: false, + }, + id: "calendar-edit", + links: { self: "/api/icons/calendar-edit" }, + type: "icon", + }, + { + attributes: { + id: "calendar-exclamation", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f334", + voted: false, + }, + id: "calendar-exclamation", + links: { self: "/api/icons/calendar-exclamation" }, + type: "icon", + }, + { + attributes: { + id: "calendar-minus", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f272", + voted: false, + }, + id: "calendar-minus", + links: { self: "/api/icons/calendar-minus" }, + type: "icon", + }, + { + attributes: { + id: "calendar-plus", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f271", + voted: false, + }, + id: "calendar-plus", + links: { self: "/api/icons/calendar-plus" }, + type: "icon", + }, + { + attributes: { + id: "calendar-star", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f736", + voted: false, + }, + id: "calendar-star", + links: { self: "/api/icons/calendar-star" }, + type: "icon", + }, + { + attributes: { + id: "calendar-times", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f273", + voted: false, + }, + id: "calendar-times", + links: { self: "/api/icons/calendar-times" }, + type: "icon", + }, + { + attributes: { + id: "calendar-week", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f784", + voted: true, + }, + id: "calendar-week", + links: { self: "/api/icons/calendar-week" }, + type: "icon", + }, + { + attributes: { + id: "camcorder", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8a8", + voted: false, + }, + id: "camcorder", + links: { self: "/api/icons/camcorder" }, + type: "icon", + }, + { + attributes: { + id: "camera", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f030", + voted: false, + }, + id: "camera", + links: { self: "/api/icons/camera" }, + type: "icon", + }, + { + attributes: { + id: "camera-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f332", + voted: false, + }, + id: "camera-alt", + links: { self: "/api/icons/camera-alt" }, + type: "icon", + }, + { + attributes: { + id: "camera-home", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8fe", + voted: false, + }, + id: "camera-home", + links: { self: "/api/icons/camera-home" }, + type: "icon", + }, + { + attributes: { + id: "camera-movie", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8a9", + voted: false, + }, + id: "camera-movie", + links: { self: "/api/icons/camera-movie" }, + type: "icon", + }, + { + attributes: { + id: "camera-polaroid", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8aa", + voted: false, + }, + id: "camera-polaroid", + links: { self: "/api/icons/camera-polaroid" }, + type: "icon", + }, + { + attributes: { + id: "camera-retro", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f083", + voted: false, + }, + id: "camera-retro", + links: { self: "/api/icons/camera-retro" }, + type: "icon", + }, + { + attributes: { + id: "campfire", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6ba", + voted: false, + }, + id: "campfire", + links: { self: "/api/icons/campfire" }, + type: "icon", + }, + { + attributes: { + id: "campground", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6bb", + voted: false, + }, + id: "campground", + links: { self: "/api/icons/campground" }, + type: "icon", + }, + { + attributes: { + id: "canadian-maple-leaf", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f785", + voted: false, + }, + id: "canadian-maple-leaf", + links: { self: "/api/icons/canadian-maple-leaf" }, + type: "icon", + }, + { + attributes: { + id: "candle-holder", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6bc", + voted: false, + }, + id: "candle-holder", + links: { self: "/api/icons/candle-holder" }, + type: "icon", + }, + { + attributes: { + id: "candy-cane", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f786", + voted: false, + }, + id: "candy-cane", + links: { self: "/api/icons/candy-cane" }, + type: "icon", + }, + { + attributes: { + id: "candy-corn", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6bd", + voted: false, + }, + id: "candy-corn", + links: { self: "/api/icons/candy-corn" }, + type: "icon", + }, + { + attributes: { + id: "cannabis", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f55f", + voted: false, + }, + id: "cannabis", + links: { self: "/api/icons/cannabis" }, + type: "icon", + }, + { + attributes: { + id: "capsules", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f46b", + voted: false, + }, + id: "capsules", + links: { self: "/api/icons/capsules" }, + type: "icon", + }, + { + attributes: { + id: "car", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1b9", + voted: false, + }, + id: "car", + links: { self: "/api/icons/car" }, + type: "icon", + }, + { + attributes: { + id: "car-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5de", + voted: false, + }, + id: "car-alt", + links: { self: "/api/icons/car-alt" }, + type: "icon", + }, + { + attributes: { + id: "car-battery", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5df", + voted: false, + }, + id: "car-battery", + links: { self: "/api/icons/car-battery" }, + type: "icon", + }, + { + attributes: { + id: "car-building", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f859", + voted: false, + }, + id: "car-building", + links: { self: "/api/icons/car-building" }, + type: "icon", + }, + { + attributes: { + id: "car-bump", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5e0", + voted: false, + }, + id: "car-bump", + links: { self: "/api/icons/car-bump" }, + type: "icon", + }, + { + attributes: { + id: "car-bus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f85a", + voted: false, + }, + id: "car-bus", + links: { self: "/api/icons/car-bus" }, + type: "icon", + }, + { + attributes: { + id: "car-crash", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5e1", + voted: false, + }, + id: "car-crash", + links: { self: "/api/icons/car-crash" }, + type: "icon", + }, + { + attributes: { + id: "car-garage", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5e2", + voted: false, + }, + id: "car-garage", + links: { self: "/api/icons/car-garage" }, + type: "icon", + }, + { + attributes: { + id: "car-mechanic", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5e3", + voted: false, + }, + id: "car-mechanic", + links: { self: "/api/icons/car-mechanic" }, + type: "icon", + }, + { + attributes: { + id: "car-side", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5e4", + voted: false, + }, + id: "car-side", + links: { self: "/api/icons/car-side" }, + type: "icon", + }, + { + attributes: { + id: "car-tilt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5e5", + voted: false, + }, + id: "car-tilt", + links: { self: "/api/icons/car-tilt" }, + type: "icon", + }, + { + attributes: { + id: "car-wash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5e6", + voted: false, + }, + id: "car-wash", + links: { self: "/api/icons/car-wash" }, + type: "icon", + }, + { + attributes: { + id: "caravan", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8ff", + voted: true, + }, + id: "caravan", + links: { self: "/api/icons/caravan" }, + type: "icon", + }, + { + attributes: { + id: "caravan-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f900", + voted: false, + }, + id: "caravan-alt", + links: { self: "/api/icons/caravan-alt" }, + type: "icon", + }, + { + attributes: { + id: "caret-circle-down", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f32d", + voted: false, + }, + id: "caret-circle-down", + links: { self: "/api/icons/caret-circle-down" }, + type: "icon", + }, + { + attributes: { + id: "caret-circle-left", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f32e", + voted: false, + }, + id: "caret-circle-left", + links: { self: "/api/icons/caret-circle-left" }, + type: "icon", + }, + { + attributes: { + id: "caret-circle-right", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f330", + voted: false, + }, + id: "caret-circle-right", + links: { self: "/api/icons/caret-circle-right" }, + type: "icon", + }, + { + attributes: { + id: "caret-circle-up", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f331", + voted: false, + }, + id: "caret-circle-up", + links: { self: "/api/icons/caret-circle-up" }, + type: "icon", + }, + { + attributes: { + id: "caret-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0d7", + voted: false, + }, + id: "caret-down", + links: { self: "/api/icons/caret-down" }, + type: "icon", + }, + { + attributes: { + id: "caret-left", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0d9", + voted: false, + }, + id: "caret-left", + links: { self: "/api/icons/caret-left" }, + type: "icon", + }, + { + attributes: { + id: "caret-right", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0da", + voted: false, + }, + id: "caret-right", + links: { self: "/api/icons/caret-right" }, + type: "icon", + }, + { + attributes: { + id: "caret-square-down", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f150", + voted: false, + }, + id: "caret-square-down", + links: { self: "/api/icons/caret-square-down" }, + type: "icon", + }, + { + attributes: { + id: "caret-square-left", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f191", + voted: false, + }, + id: "caret-square-left", + links: { self: "/api/icons/caret-square-left" }, + type: "icon", + }, + { + attributes: { + id: "caret-square-right", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f152", + voted: false, + }, + id: "caret-square-right", + links: { self: "/api/icons/caret-square-right" }, + type: "icon", + }, + { + attributes: { + id: "caret-square-up", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f151", + voted: false, + }, + id: "caret-square-up", + links: { self: "/api/icons/caret-square-up" }, + type: "icon", + }, + { + attributes: { + id: "caret-up", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0d8", + voted: false, + }, + id: "caret-up", + links: { self: "/api/icons/caret-up" }, + type: "icon", + }, + { + attributes: { + id: "carrot", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f787", + voted: false, + }, + id: "carrot", + links: { self: "/api/icons/carrot" }, + type: "icon", + }, + { + attributes: { + id: "cars", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f85b", + voted: false, + }, + id: "cars", + links: { self: "/api/icons/cars" }, + type: "icon", + }, + { + attributes: { + id: "cart-arrow-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f218", + voted: false, + }, + id: "cart-arrow-down", + links: { self: "/api/icons/cart-arrow-down" }, + type: "icon", + }, + { + attributes: { + id: "cart-plus", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f217", + voted: false, + }, + id: "cart-plus", + links: { self: "/api/icons/cart-plus" }, + type: "icon", + }, + { + attributes: { + id: "cash-register", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f788", + voted: true, + }, + id: "cash-register", + links: { self: "/api/icons/cash-register" }, + type: "icon", + }, + { + attributes: { + id: "cassette-tape", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8ab", + voted: false, + }, + id: "cassette-tape", + links: { self: "/api/icons/cassette-tape" }, + type: "icon", + }, + { + attributes: { + id: "cat", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6be", + voted: true, + }, + id: "cat", + links: { self: "/api/icons/cat" }, + type: "icon", + }, + { + attributes: { + id: "cat-space", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f901", + voted: false, + }, + id: "cat-space", + links: { self: "/api/icons/cat-space" }, + type: "icon", + }, + { + attributes: { + id: "cauldron", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6bf", + voted: false, + }, + id: "cauldron", + links: { self: "/api/icons/cauldron" }, + type: "icon", + }, + { + attributes: { + id: "cc-amazon-pay", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f42d", + voted: false, + }, + id: "cc-amazon-pay", + links: { self: "/api/icons/cc-amazon-pay" }, + type: "icon", + }, + { + attributes: { id: "cc-amex", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1f3", voted: false }, + id: "cc-amex", + links: { self: "/api/icons/cc-amex" }, + type: "icon", + }, + { + attributes: { + id: "cc-apple-pay", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f416", + voted: false, + }, + id: "cc-apple-pay", + links: { self: "/api/icons/cc-apple-pay" }, + type: "icon", + }, + { + attributes: { + id: "cc-diners-club", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f24c", + voted: false, + }, + id: "cc-diners-club", + links: { self: "/api/icons/cc-diners-club" }, + type: "icon", + }, + { + attributes: { id: "cc-discover", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1f2", voted: false }, + id: "cc-discover", + links: { self: "/api/icons/cc-discover" }, + type: "icon", + }, + { + attributes: { id: "cc-jcb", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f24b", voted: false }, + id: "cc-jcb", + links: { self: "/api/icons/cc-jcb" }, + type: "icon", + }, + { + attributes: { + id: "cc-mastercard", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f1f1", + voted: false, + }, + id: "cc-mastercard", + links: { self: "/api/icons/cc-mastercard" }, + type: "icon", + }, + { + attributes: { id: "cc-paypal", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1f4", voted: false }, + id: "cc-paypal", + links: { self: "/api/icons/cc-paypal" }, + type: "icon", + }, + { + attributes: { id: "cc-stripe", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1f5", voted: false }, + id: "cc-stripe", + links: { self: "/api/icons/cc-stripe" }, + type: "icon", + }, + { + attributes: { id: "cc-visa", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1f0", voted: false }, + id: "cc-visa", + links: { self: "/api/icons/cc-visa" }, + type: "icon", + }, + { + attributes: { + id: "cctv", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8ac", + voted: false, + }, + id: "cctv", + links: { self: "/api/icons/cctv" }, + type: "icon", + }, + { + attributes: { id: "centercode", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f380", voted: false }, + id: "centercode", + links: { self: "/api/icons/centercode" }, + type: "icon", + }, + { + attributes: { id: "centos", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f789", voted: true }, + id: "centos", + links: { self: "/api/icons/centos" }, + type: "icon", + }, + { + attributes: { + id: "certificate", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0a3", + voted: false, + }, + id: "certificate", + links: { self: "/api/icons/certificate" }, + type: "icon", + }, + { + attributes: { + id: "chair", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6c0", + voted: true, + }, + id: "chair", + links: { self: "/api/icons/chair" }, + type: "icon", + }, + { + attributes: { + id: "chair-office", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6c1", + voted: true, + }, + id: "chair-office", + links: { self: "/api/icons/chair-office" }, + type: "icon", + }, + { + attributes: { + id: "chalkboard", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f51b", + voted: false, + }, + id: "chalkboard", + links: { self: "/api/icons/chalkboard" }, + type: "icon", + }, + { + attributes: { + id: "chalkboard-teacher", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f51c", + voted: false, + }, + id: "chalkboard-teacher", + links: { self: "/api/icons/chalkboard-teacher" }, + type: "icon", + }, + { + attributes: { + id: "charging-station", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5e7", + voted: false, + }, + id: "charging-station", + links: { self: "/api/icons/charging-station" }, + type: "icon", + }, + { + attributes: { + id: "chart-area", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1fe", + voted: false, + }, + id: "chart-area", + links: { self: "/api/icons/chart-area" }, + type: "icon", + }, + { + attributes: { + id: "chart-bar", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f080", + voted: false, + }, + id: "chart-bar", + links: { self: "/api/icons/chart-bar" }, + type: "icon", + }, + { + attributes: { + id: "chart-line", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f201", + voted: false, + }, + id: "chart-line", + links: { self: "/api/icons/chart-line" }, + type: "icon", + }, + { + attributes: { + id: "chart-line-down", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f64d", + voted: false, + }, + id: "chart-line-down", + links: { self: "/api/icons/chart-line-down" }, + type: "icon", + }, + { + attributes: { + id: "chart-network", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f78a", + voted: true, + }, + id: "chart-network", + links: { self: "/api/icons/chart-network" }, + type: "icon", + }, + { + attributes: { + id: "chart-pie", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f200", + voted: false, + }, + id: "chart-pie", + links: { self: "/api/icons/chart-pie" }, + type: "icon", + }, + { + attributes: { + id: "chart-pie-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f64e", + voted: false, + }, + id: "chart-pie-alt", + links: { self: "/api/icons/chart-pie-alt" }, + type: "icon", + }, + { + attributes: { + id: "chart-scatter", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7ee", + voted: true, + }, + id: "chart-scatter", + links: { self: "/api/icons/chart-scatter" }, + type: "icon", + }, + { + attributes: { + id: "check", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f00c", + voted: false, + }, + id: "check", + links: { self: "/api/icons/check" }, + type: "icon", + }, + { + attributes: { + id: "check-circle", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f058", + voted: false, + }, + id: "check-circle", + links: { self: "/api/icons/check-circle" }, + type: "icon", + }, + { + attributes: { + id: "check-double", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f560", + voted: true, + }, + id: "check-double", + links: { self: "/api/icons/check-double" }, + type: "icon", + }, + { + attributes: { + id: "check-square", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f14a", + voted: false, + }, + id: "check-square", + links: { self: "/api/icons/check-square" }, + type: "icon", + }, + { + attributes: { + id: "cheese", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7ef", + voted: false, + }, + id: "cheese", + links: { self: "/api/icons/cheese" }, + type: "icon", + }, + { + attributes: { + id: "cheese-swiss", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7f0", + voted: false, + }, + id: "cheese-swiss", + links: { self: "/api/icons/cheese-swiss" }, + type: "icon", + }, + { + attributes: { + id: "cheeseburger", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7f1", + voted: false, + }, + id: "cheeseburger", + links: { self: "/api/icons/cheeseburger" }, + type: "icon", + }, + { + attributes: { + id: "chess", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f439", + voted: false, + }, + id: "chess", + links: { self: "/api/icons/chess" }, + type: "icon", + }, + { + attributes: { + id: "chess-bishop", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f43a", + voted: false, + }, + id: "chess-bishop", + links: { self: "/api/icons/chess-bishop" }, + type: "icon", + }, + { + attributes: { + id: "chess-bishop-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f43b", + voted: false, + }, + id: "chess-bishop-alt", + links: { self: "/api/icons/chess-bishop-alt" }, + type: "icon", + }, + { + attributes: { + id: "chess-board", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f43c", + voted: false, + }, + id: "chess-board", + links: { self: "/api/icons/chess-board" }, + type: "icon", + }, + { + attributes: { + id: "chess-clock", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f43d", + voted: false, + }, + id: "chess-clock", + links: { self: "/api/icons/chess-clock" }, + type: "icon", + }, + { + attributes: { + id: "chess-clock-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f43e", + voted: false, + }, + id: "chess-clock-alt", + links: { self: "/api/icons/chess-clock-alt" }, + type: "icon", + }, + { + attributes: { + id: "chess-king", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f43f", + voted: false, + }, + id: "chess-king", + links: { self: "/api/icons/chess-king" }, + type: "icon", + }, + { + attributes: { + id: "chess-king-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f440", + voted: false, + }, + id: "chess-king-alt", + links: { self: "/api/icons/chess-king-alt" }, + type: "icon", + }, + { + attributes: { + id: "chess-knight", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f441", + voted: false, + }, + id: "chess-knight", + links: { self: "/api/icons/chess-knight" }, + type: "icon", + }, + { + attributes: { + id: "chess-knight-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f442", + voted: false, + }, + id: "chess-knight-alt", + links: { self: "/api/icons/chess-knight-alt" }, + type: "icon", + }, + { + attributes: { + id: "chess-pawn", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f443", + voted: false, + }, + id: "chess-pawn", + links: { self: "/api/icons/chess-pawn" }, + type: "icon", + }, + { + attributes: { + id: "chess-pawn-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f444", + voted: false, + }, + id: "chess-pawn-alt", + links: { self: "/api/icons/chess-pawn-alt" }, + type: "icon", + }, + { + attributes: { + id: "chess-queen", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f445", + voted: false, + }, + id: "chess-queen", + links: { self: "/api/icons/chess-queen" }, + type: "icon", + }, + { + attributes: { + id: "chess-queen-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f446", + voted: false, + }, + id: "chess-queen-alt", + links: { self: "/api/icons/chess-queen-alt" }, + type: "icon", + }, + { + attributes: { + id: "chess-rook", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f447", + voted: false, + }, + id: "chess-rook", + links: { self: "/api/icons/chess-rook" }, + type: "icon", + }, + { + attributes: { + id: "chess-rook-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f448", + voted: false, + }, + id: "chess-rook-alt", + links: { self: "/api/icons/chess-rook-alt" }, + type: "icon", + }, + { + attributes: { + id: "chevron-circle-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f13a", + voted: false, + }, + id: "chevron-circle-down", + links: { self: "/api/icons/chevron-circle-down" }, + type: "icon", + }, + { + attributes: { + id: "chevron-circle-left", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f137", + voted: false, + }, + id: "chevron-circle-left", + links: { self: "/api/icons/chevron-circle-left" }, + type: "icon", + }, + { + attributes: { + id: "chevron-circle-right", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f138", + voted: false, + }, + id: "chevron-circle-right", + links: { self: "/api/icons/chevron-circle-right" }, + type: "icon", + }, + { + attributes: { + id: "chevron-circle-up", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f139", + voted: false, + }, + id: "chevron-circle-up", + links: { self: "/api/icons/chevron-circle-up" }, + type: "icon", + }, + { + attributes: { + id: "chevron-double-down", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f322", + voted: false, + }, + id: "chevron-double-down", + links: { self: "/api/icons/chevron-double-down" }, + type: "icon", + }, + { + attributes: { + id: "chevron-double-left", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f323", + voted: false, + }, + id: "chevron-double-left", + links: { self: "/api/icons/chevron-double-left" }, + type: "icon", + }, + { + attributes: { + id: "chevron-double-right", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f324", + voted: false, + }, + id: "chevron-double-right", + links: { self: "/api/icons/chevron-double-right" }, + type: "icon", + }, + { + attributes: { + id: "chevron-double-up", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f325", + voted: false, + }, + id: "chevron-double-up", + links: { self: "/api/icons/chevron-double-up" }, + type: "icon", + }, + { + attributes: { + id: "chevron-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f078", + voted: false, + }, + id: "chevron-down", + links: { self: "/api/icons/chevron-down" }, + type: "icon", + }, + { + attributes: { + id: "chevron-left", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f053", + voted: false, + }, + id: "chevron-left", + links: { self: "/api/icons/chevron-left" }, + type: "icon", + }, + { + attributes: { + id: "chevron-right", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f054", + voted: false, + }, + id: "chevron-right", + links: { self: "/api/icons/chevron-right" }, + type: "icon", + }, + { + attributes: { + id: "chevron-square-down", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f329", + voted: false, + }, + id: "chevron-square-down", + links: { self: "/api/icons/chevron-square-down" }, + type: "icon", + }, + { + attributes: { + id: "chevron-square-left", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f32a", + voted: false, + }, + id: "chevron-square-left", + links: { self: "/api/icons/chevron-square-left" }, + type: "icon", + }, + { + attributes: { + id: "chevron-square-right", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f32b", + voted: false, + }, + id: "chevron-square-right", + links: { self: "/api/icons/chevron-square-right" }, + type: "icon", + }, + { + attributes: { + id: "chevron-square-up", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f32c", + voted: false, + }, + id: "chevron-square-up", + links: { self: "/api/icons/chevron-square-up" }, + type: "icon", + }, + { + attributes: { + id: "chevron-up", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f077", + voted: false, + }, + id: "chevron-up", + links: { self: "/api/icons/chevron-up" }, + type: "icon", + }, + { + attributes: { + id: "child", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1ae", + voted: false, + }, + id: "child", + links: { self: "/api/icons/child" }, + type: "icon", + }, + { + attributes: { + id: "chimney", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f78b", + voted: false, + }, + id: "chimney", + links: { self: "/api/icons/chimney" }, + type: "icon", + }, + { + attributes: { id: "chrome", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f268", voted: false }, + id: "chrome", + links: { self: "/api/icons/chrome" }, + type: "icon", + }, + { + attributes: { id: "chromecast", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f838", voted: false }, + id: "chromecast", + links: { self: "/api/icons/chromecast" }, + type: "icon", + }, + { + attributes: { + id: "church", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f51d", + voted: true, + }, + id: "church", + links: { self: "/api/icons/church" }, + type: "icon", + }, + { + attributes: { + id: "circle", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f111", + voted: false, + }, + id: "circle", + links: { self: "/api/icons/circle" }, + type: "icon", + }, + { + attributes: { + id: "circle-notch", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1ce", + voted: false, + }, + id: "circle-notch", + links: { self: "/api/icons/circle-notch" }, + type: "icon", + }, + { + attributes: { + id: "city", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f64f", + voted: false, + }, + id: "city", + links: { self: "/api/icons/city" }, + type: "icon", + }, + { + attributes: { + id: "clarinet", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8ad", + voted: false, + }, + id: "clarinet", + links: { self: "/api/icons/clarinet" }, + type: "icon", + }, + { + attributes: { + id: "claw-marks", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6c2", + voted: false, + }, + id: "claw-marks", + links: { self: "/api/icons/claw-marks" }, + type: "icon", + }, + { + attributes: { + id: "clinic-medical", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7f2", + voted: false, + }, + id: "clinic-medical", + links: { self: "/api/icons/clinic-medical" }, + type: "icon", + }, + { + attributes: { + id: "clipboard", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f328", + voted: false, + }, + id: "clipboard", + links: { self: "/api/icons/clipboard" }, + type: "icon", + }, + { + attributes: { + id: "clipboard-check", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f46c", + voted: false, + }, + id: "clipboard-check", + links: { self: "/api/icons/clipboard-check" }, + type: "icon", + }, + { + attributes: { + id: "clipboard-list", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f46d", + voted: false, + }, + id: "clipboard-list", + links: { self: "/api/icons/clipboard-list" }, + type: "icon", + }, + { + attributes: { + id: "clipboard-list-check", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f737", + voted: false, + }, + id: "clipboard-list-check", + links: { self: "/api/icons/clipboard-list-check" }, + type: "icon", + }, + { + attributes: { + id: "clipboard-prescription", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5e8", + voted: false, + }, + id: "clipboard-prescription", + links: { self: "/api/icons/clipboard-prescription" }, + type: "icon", + }, + { + attributes: { + id: "clipboard-user", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7f3", + voted: false, + }, + id: "clipboard-user", + links: { self: "/api/icons/clipboard-user" }, + type: "icon", + }, + { + attributes: { + id: "clock", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f017", + voted: false, + }, + id: "clock", + links: { self: "/api/icons/clock" }, + type: "icon", + }, + { + attributes: { + id: "clone", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f24d", + voted: false, + }, + id: "clone", + links: { self: "/api/icons/clone" }, + type: "icon", + }, + { + attributes: { + id: "closed-captioning", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f20a", + voted: false, + }, + id: "closed-captioning", + links: { self: "/api/icons/closed-captioning" }, + type: "icon", + }, + { + attributes: { + id: "cloud", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0c2", + voted: false, + }, + id: "cloud", + links: { self: "/api/icons/cloud" }, + type: "icon", + }, + { + attributes: { + id: "cloud-download", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0ed", + voted: false, + }, + id: "cloud-download", + links: { self: "/api/icons/cloud-download" }, + type: "icon", + }, + { + attributes: { + id: "cloud-download-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f381", + voted: false, + }, + id: "cloud-download-alt", + links: { self: "/api/icons/cloud-download-alt" }, + type: "icon", + }, + { + attributes: { + id: "cloud-drizzle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f738", + voted: false, + }, + id: "cloud-drizzle", + links: { self: "/api/icons/cloud-drizzle" }, + type: "icon", + }, + { + attributes: { + id: "cloud-hail", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f739", + voted: false, + }, + id: "cloud-hail", + links: { self: "/api/icons/cloud-hail" }, + type: "icon", + }, + { + attributes: { + id: "cloud-hail-mixed", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f73a", + voted: false, + }, + id: "cloud-hail-mixed", + links: { self: "/api/icons/cloud-hail-mixed" }, + type: "icon", + }, + { + attributes: { + id: "cloud-meatball", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f73b", + voted: false, + }, + id: "cloud-meatball", + links: { self: "/api/icons/cloud-meatball" }, + type: "icon", + }, + { + attributes: { + id: "cloud-moon", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6c3", + voted: false, + }, + id: "cloud-moon", + links: { self: "/api/icons/cloud-moon" }, + type: "icon", + }, + { + attributes: { + id: "cloud-moon-rain", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f73c", + voted: false, + }, + id: "cloud-moon-rain", + links: { self: "/api/icons/cloud-moon-rain" }, + type: "icon", + }, + { + attributes: { + id: "cloud-music", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8ae", + voted: false, + }, + id: "cloud-music", + links: { self: "/api/icons/cloud-music" }, + type: "icon", + }, + { + attributes: { + id: "cloud-rain", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f73d", + voted: false, + }, + id: "cloud-rain", + links: { self: "/api/icons/cloud-rain" }, + type: "icon", + }, + { + attributes: { + id: "cloud-rainbow", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f73e", + voted: false, + }, + id: "cloud-rainbow", + links: { self: "/api/icons/cloud-rainbow" }, + type: "icon", + }, + { + attributes: { + id: "cloud-showers", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f73f", + voted: false, + }, + id: "cloud-showers", + links: { self: "/api/icons/cloud-showers" }, + type: "icon", + }, + { + attributes: { + id: "cloud-showers-heavy", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f740", + voted: false, + }, + id: "cloud-showers-heavy", + links: { self: "/api/icons/cloud-showers-heavy" }, + type: "icon", + }, + { + attributes: { + id: "cloud-sleet", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f741", + voted: false, + }, + id: "cloud-sleet", + links: { self: "/api/icons/cloud-sleet" }, + type: "icon", + }, + { + attributes: { + id: "cloud-snow", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f742", + voted: false, + }, + id: "cloud-snow", + links: { self: "/api/icons/cloud-snow" }, + type: "icon", + }, + { + attributes: { + id: "cloud-sun", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6c4", + voted: false, + }, + id: "cloud-sun", + links: { self: "/api/icons/cloud-sun" }, + type: "icon", + }, + { + attributes: { + id: "cloud-sun-rain", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f743", + voted: false, + }, + id: "cloud-sun-rain", + links: { self: "/api/icons/cloud-sun-rain" }, + type: "icon", + }, + { + attributes: { + id: "cloud-upload", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0ee", + voted: false, + }, + id: "cloud-upload", + links: { self: "/api/icons/cloud-upload" }, + type: "icon", + }, + { + attributes: { + id: "cloud-upload-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f382", + voted: false, + }, + id: "cloud-upload-alt", + links: { self: "/api/icons/cloud-upload-alt" }, + type: "icon", + }, + { + attributes: { + id: "clouds", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f744", + voted: false, + }, + id: "clouds", + links: { self: "/api/icons/clouds" }, + type: "icon", + }, + { + attributes: { + id: "clouds-moon", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f745", + voted: false, + }, + id: "clouds-moon", + links: { self: "/api/icons/clouds-moon" }, + type: "icon", + }, + { + attributes: { + id: "clouds-sun", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f746", + voted: false, + }, + id: "clouds-sun", + links: { self: "/api/icons/clouds-sun" }, + type: "icon", + }, + { + attributes: { id: "cloudscale", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f383", voted: false }, + id: "cloudscale", + links: { self: "/api/icons/cloudscale" }, + type: "icon", + }, + { + attributes: { id: "cloudsmith", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f384", voted: false }, + id: "cloudsmith", + links: { self: "/api/icons/cloudsmith" }, + type: "icon", + }, + { + attributes: { + id: "cloudversify", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f385", + voted: false, + }, + id: "cloudversify", + links: { self: "/api/icons/cloudversify" }, + type: "icon", + }, + { + attributes: { + id: "club", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f327", + voted: false, + }, + id: "club", + links: { self: "/api/icons/club" }, + type: "icon", + }, + { + attributes: { + id: "cocktail", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f561", + voted: false, + }, + id: "cocktail", + links: { self: "/api/icons/cocktail" }, + type: "icon", + }, + { + attributes: { + id: "code", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f121", + voted: false, + }, + id: "code", + links: { self: "/api/icons/code" }, + type: "icon", + }, + { + attributes: { + id: "code-branch", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f126", + voted: false, + }, + id: "code-branch", + links: { self: "/api/icons/code-branch" }, + type: "icon", + }, + { + attributes: { + id: "code-commit", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f386", + voted: false, + }, + id: "code-commit", + links: { self: "/api/icons/code-commit" }, + type: "icon", + }, + { + attributes: { + id: "code-merge", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f387", + voted: false, + }, + id: "code-merge", + links: { self: "/api/icons/code-merge" }, + type: "icon", + }, + { + attributes: { id: "codepen", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1cb", voted: false }, + id: "codepen", + links: { self: "/api/icons/codepen" }, + type: "icon", + }, + { + attributes: { id: "codiepie", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f284", voted: false }, + id: "codiepie", + links: { self: "/api/icons/codiepie" }, + type: "icon", + }, + { + attributes: { + id: "coffee", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0f4", + voted: false, + }, + id: "coffee", + links: { self: "/api/icons/coffee" }, + type: "icon", + }, + { + attributes: { + id: "coffee-pot", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f902", + voted: false, + }, + id: "coffee-pot", + links: { self: "/api/icons/coffee-pot" }, + type: "icon", + }, + { + attributes: { + id: "coffee-togo", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6c5", + voted: false, + }, + id: "coffee-togo", + links: { self: "/api/icons/coffee-togo" }, + type: "icon", + }, + { + attributes: { + id: "coffin", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6c6", + voted: false, + }, + id: "coffin", + links: { self: "/api/icons/coffin" }, + type: "icon", + }, + { + attributes: { + id: "coffin-cross", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f951", + voted: false, + }, + id: "coffin-cross", + links: { self: "/api/icons/coffin-cross" }, + type: "icon", + }, + { + attributes: { + id: "cog", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f013", + voted: false, + }, + id: "cog", + links: { self: "/api/icons/cog" }, + type: "icon", + }, + { + attributes: { + id: "cogs", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f085", + voted: false, + }, + id: "cogs", + links: { self: "/api/icons/cogs" }, + type: "icon", + }, + { + attributes: { + id: "coin", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f85c", + voted: true, + }, + id: "coin", + links: { self: "/api/icons/coin" }, + type: "icon", + }, + { + attributes: { + id: "coins", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f51e", + voted: true, + }, + id: "coins", + links: { self: "/api/icons/coins" }, + type: "icon", + }, + { + attributes: { + id: "columns", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0db", + voted: false, + }, + id: "columns", + links: { self: "/api/icons/columns" }, + type: "icon", + }, + { + attributes: { + id: "comet", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f903", + voted: false, + }, + id: "comet", + links: { self: "/api/icons/comet" }, + type: "icon", + }, + { + attributes: { + id: "comment", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f075", + voted: false, + }, + id: "comment", + links: { self: "/api/icons/comment" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f27a", + voted: false, + }, + id: "comment-alt", + links: { self: "/api/icons/comment-alt" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt-check", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4a2", + voted: false, + }, + id: "comment-alt-check", + links: { self: "/api/icons/comment-alt-check" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt-dollar", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f650", + voted: false, + }, + id: "comment-alt-dollar", + links: { self: "/api/icons/comment-alt-dollar" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt-dots", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4a3", + voted: false, + }, + id: "comment-alt-dots", + links: { self: "/api/icons/comment-alt-dots" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt-edit", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4a4", + voted: false, + }, + id: "comment-alt-edit", + links: { self: "/api/icons/comment-alt-edit" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt-exclamation", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4a5", + voted: false, + }, + id: "comment-alt-exclamation", + links: { self: "/api/icons/comment-alt-exclamation" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt-lines", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4a6", + voted: false, + }, + id: "comment-alt-lines", + links: { self: "/api/icons/comment-alt-lines" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt-medical", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7f4", + voted: false, + }, + id: "comment-alt-medical", + links: { self: "/api/icons/comment-alt-medical" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt-minus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4a7", + voted: false, + }, + id: "comment-alt-minus", + links: { self: "/api/icons/comment-alt-minus" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt-music", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8af", + voted: false, + }, + id: "comment-alt-music", + links: { self: "/api/icons/comment-alt-music" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt-plus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4a8", + voted: false, + }, + id: "comment-alt-plus", + links: { self: "/api/icons/comment-alt-plus" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4a9", + voted: false, + }, + id: "comment-alt-slash", + links: { self: "/api/icons/comment-alt-slash" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt-smile", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4aa", + voted: false, + }, + id: "comment-alt-smile", + links: { self: "/api/icons/comment-alt-smile" }, + type: "icon", + }, + { + attributes: { + id: "comment-alt-times", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4ab", + voted: false, + }, + id: "comment-alt-times", + links: { self: "/api/icons/comment-alt-times" }, + type: "icon", + }, + { + attributes: { + id: "comment-check", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4ac", + voted: false, + }, + id: "comment-check", + links: { self: "/api/icons/comment-check" }, + type: "icon", + }, + { + attributes: { + id: "comment-dollar", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f651", + voted: false, + }, + id: "comment-dollar", + links: { self: "/api/icons/comment-dollar" }, + type: "icon", + }, + { + attributes: { + id: "comment-dots", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4ad", + voted: false, + }, + id: "comment-dots", + links: { self: "/api/icons/comment-dots" }, + type: "icon", + }, + { + attributes: { + id: "comment-edit", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4ae", + voted: false, + }, + id: "comment-edit", + links: { self: "/api/icons/comment-edit" }, + type: "icon", + }, + { + attributes: { + id: "comment-exclamation", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4af", + voted: false, + }, + id: "comment-exclamation", + links: { self: "/api/icons/comment-exclamation" }, + type: "icon", + }, + { + attributes: { + id: "comment-lines", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4b0", + voted: false, + }, + id: "comment-lines", + links: { self: "/api/icons/comment-lines" }, + type: "icon", + }, + { + attributes: { + id: "comment-medical", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7f5", + voted: false, + }, + id: "comment-medical", + links: { self: "/api/icons/comment-medical" }, + type: "icon", + }, + { + attributes: { + id: "comment-minus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4b1", + voted: false, + }, + id: "comment-minus", + links: { self: "/api/icons/comment-minus" }, + type: "icon", + }, + { + attributes: { + id: "comment-music", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8b0", + voted: false, + }, + id: "comment-music", + links: { self: "/api/icons/comment-music" }, + type: "icon", + }, + { + attributes: { + id: "comment-plus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4b2", + voted: false, + }, + id: "comment-plus", + links: { self: "/api/icons/comment-plus" }, + type: "icon", + }, + { + attributes: { + id: "comment-slash", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4b3", + voted: false, + }, + id: "comment-slash", + links: { self: "/api/icons/comment-slash" }, + type: "icon", + }, + { + attributes: { + id: "comment-smile", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4b4", + voted: false, + }, + id: "comment-smile", + links: { self: "/api/icons/comment-smile" }, + type: "icon", + }, + { + attributes: { + id: "comment-times", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4b5", + voted: false, + }, + id: "comment-times", + links: { self: "/api/icons/comment-times" }, + type: "icon", + }, + { + attributes: { + id: "comments", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f086", + voted: false, + }, + id: "comments", + links: { self: "/api/icons/comments" }, + type: "icon", + }, + { + attributes: { + id: "comments-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4b6", + voted: false, + }, + id: "comments-alt", + links: { self: "/api/icons/comments-alt" }, + type: "icon", + }, + { + attributes: { + id: "comments-alt-dollar", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f652", + voted: false, + }, + id: "comments-alt-dollar", + links: { self: "/api/icons/comments-alt-dollar" }, + type: "icon", + }, + { + attributes: { + id: "comments-dollar", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f653", + voted: false, + }, + id: "comments-dollar", + links: { self: "/api/icons/comments-dollar" }, + type: "icon", + }, + { + attributes: { + id: "compact-disc", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f51f", + voted: true, + }, + id: "compact-disc", + links: { self: "/api/icons/compact-disc" }, + type: "icon", + }, + { + attributes: { + id: "compass", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f14e", + voted: false, + }, + id: "compass", + links: { self: "/api/icons/compass" }, + type: "icon", + }, + { + attributes: { + id: "compass-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5e9", + voted: false, + }, + id: "compass-slash", + links: { self: "/api/icons/compass-slash" }, + type: "icon", + }, + { + attributes: { + id: "compress", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f066", + voted: false, + }, + id: "compress", + links: { self: "/api/icons/compress" }, + type: "icon", + }, + { + attributes: { + id: "compress-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f422", + voted: false, + }, + id: "compress-alt", + links: { self: "/api/icons/compress-alt" }, + type: "icon", + }, + { + attributes: { + id: "compress-arrows-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f78c", + voted: true, + }, + id: "compress-arrows-alt", + links: { self: "/api/icons/compress-arrows-alt" }, + type: "icon", + }, + { + attributes: { + id: "compress-wide", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f326", + voted: false, + }, + id: "compress-wide", + links: { self: "/api/icons/compress-wide" }, + type: "icon", + }, + { + attributes: { + id: "computer-classic", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8b1", + voted: false, + }, + id: "computer-classic", + links: { self: "/api/icons/computer-classic" }, + type: "icon", + }, + { + attributes: { + id: "computer-speaker", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8b2", + voted: false, + }, + id: "computer-speaker", + links: { self: "/api/icons/computer-speaker" }, + type: "icon", + }, + { + attributes: { + id: "concierge-bell", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f562", + voted: false, + }, + id: "concierge-bell", + links: { self: "/api/icons/concierge-bell" }, + type: "icon", + }, + { + attributes: { id: "confluence", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f78d", voted: true }, + id: "confluence", + links: { self: "/api/icons/confluence" }, + type: "icon", + }, + { + attributes: { + id: "connectdevelop", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f20e", + voted: false, + }, + id: "connectdevelop", + links: { self: "/api/icons/connectdevelop" }, + type: "icon", + }, + { + attributes: { + id: "construction", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f85d", + voted: true, + }, + id: "construction", + links: { self: "/api/icons/construction" }, + type: "icon", + }, + { + attributes: { + id: "container-storage", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4b7", + voted: false, + }, + id: "container-storage", + links: { self: "/api/icons/container-storage" }, + type: "icon", + }, + { + attributes: { id: "contao", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f26d", voted: false }, + id: "contao", + links: { self: "/api/icons/contao" }, + type: "icon", + }, + { + attributes: { + id: "conveyor-belt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f46e", + voted: false, + }, + id: "conveyor-belt", + links: { self: "/api/icons/conveyor-belt" }, + type: "icon", + }, + { + attributes: { + id: "conveyor-belt-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f46f", + voted: false, + }, + id: "conveyor-belt-alt", + links: { self: "/api/icons/conveyor-belt-alt" }, + type: "icon", + }, + { + attributes: { + id: "cookie", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f563", + voted: true, + }, + id: "cookie", + links: { self: "/api/icons/cookie" }, + type: "icon", + }, + { + attributes: { + id: "cookie-bite", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f564", + voted: true, + }, + id: "cookie-bite", + links: { self: "/api/icons/cookie-bite" }, + type: "icon", + }, + { + attributes: { + id: "copy", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0c5", + voted: false, + }, + id: "copy", + links: { self: "/api/icons/copy" }, + type: "icon", + }, + { + attributes: { + id: "copyright", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1f9", + voted: false, + }, + id: "copyright", + links: { self: "/api/icons/copyright" }, + type: "icon", + }, + { + attributes: { + id: "corn", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6c7", + voted: false, + }, + id: "corn", + links: { self: "/api/icons/corn" }, + type: "icon", + }, + { + attributes: { + id: "cotton-bureau", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f89e", + voted: false, + }, + id: "cotton-bureau", + links: { self: "/api/icons/cotton-bureau" }, + type: "icon", + }, + { + attributes: { + id: "couch", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4b8", + voted: false, + }, + id: "couch", + links: { self: "/api/icons/couch" }, + type: "icon", + }, + { + attributes: { + id: "cow", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6c8", + voted: false, + }, + id: "cow", + links: { self: "/api/icons/cow" }, + type: "icon", + }, + { + attributes: { + id: "cowbell", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8b3", + voted: false, + }, + id: "cowbell", + links: { self: "/api/icons/cowbell" }, + type: "icon", + }, + { + attributes: { + id: "cowbell-more", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8b4", + voted: false, + }, + id: "cowbell-more", + links: { self: "/api/icons/cowbell-more" }, + type: "icon", + }, + { + attributes: { + id: "cpanel", + membership: { + free: ["brands"], + pro: ["brands"], + }, + styles: ["brands"], + unicode: "f388", + voted: false, + }, + id: "cpanel", + links: { self: "/api/icons/cpanel" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f25e", + voted: false, + }, + id: "creative-commons", + links: { self: "/api/icons/creative-commons" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons-by", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4e7", + voted: false, + }, + id: "creative-commons-by", + links: { self: "/api/icons/creative-commons-by" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons-nc", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4e8", + voted: false, + }, + id: "creative-commons-nc", + links: { self: "/api/icons/creative-commons-nc" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons-nc-eu", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4e9", + voted: false, + }, + id: "creative-commons-nc-eu", + links: { self: "/api/icons/creative-commons-nc-eu" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons-nc-jp", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4ea", + voted: false, + }, + id: "creative-commons-nc-jp", + links: { self: "/api/icons/creative-commons-nc-jp" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons-nd", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4eb", + voted: false, + }, + id: "creative-commons-nd", + links: { self: "/api/icons/creative-commons-nd" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons-pd", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4ec", + voted: false, + }, + id: "creative-commons-pd", + links: { self: "/api/icons/creative-commons-pd" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons-pd-alt", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4ed", + voted: false, + }, + id: "creative-commons-pd-alt", + links: { self: "/api/icons/creative-commons-pd-alt" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons-remix", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4ee", + voted: false, + }, + id: "creative-commons-remix", + links: { self: "/api/icons/creative-commons-remix" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons-sa", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4ef", + voted: false, + }, + id: "creative-commons-sa", + links: { self: "/api/icons/creative-commons-sa" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons-sampling", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4f0", + voted: false, + }, + id: "creative-commons-sampling", + links: { self: "/api/icons/creative-commons-sampling" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons-sampling-plus", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4f1", + voted: false, + }, + id: "creative-commons-sampling-plus", + links: { self: "/api/icons/creative-commons-sampling-plus" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons-share", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4f2", + voted: false, + }, + id: "creative-commons-share", + links: { self: "/api/icons/creative-commons-share" }, + type: "icon", + }, + { + attributes: { + id: "creative-commons-zero", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4f3", + voted: false, + }, + id: "creative-commons-zero", + links: { self: "/api/icons/creative-commons-zero" }, + type: "icon", + }, + { + attributes: { + id: "credit-card", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f09d", + voted: false, + }, + id: "credit-card", + links: { self: "/api/icons/credit-card" }, + type: "icon", + }, + { + attributes: { + id: "credit-card-blank", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f389", + voted: false, + }, + id: "credit-card-blank", + links: { self: "/api/icons/credit-card-blank" }, + type: "icon", + }, + { + attributes: { + id: "credit-card-front", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f38a", + voted: false, + }, + id: "credit-card-front", + links: { self: "/api/icons/credit-card-front" }, + type: "icon", + }, + { + attributes: { + id: "cricket", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f449", + voted: false, + }, + id: "cricket", + links: { self: "/api/icons/cricket" }, + type: "icon", + }, + { + attributes: { + id: "critical-role", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f6c9", + voted: false, + }, + id: "critical-role", + links: { self: "/api/icons/critical-role" }, + type: "icon", + }, + { + attributes: { + id: "croissant", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7f6", + voted: false, + }, + id: "croissant", + links: { self: "/api/icons/croissant" }, + type: "icon", + }, + { + attributes: { + id: "crop", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f125", + voted: false, + }, + id: "crop", + links: { self: "/api/icons/crop" }, + type: "icon", + }, + { + attributes: { + id: "crop-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f565", + voted: false, + }, + id: "crop-alt", + links: { self: "/api/icons/crop-alt" }, + type: "icon", + }, + { + attributes: { + id: "cross", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f654", + voted: false, + }, + id: "cross", + links: { self: "/api/icons/cross" }, + type: "icon", + }, + { + attributes: { + id: "crosshairs", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f05b", + voted: false, + }, + id: "crosshairs", + links: { self: "/api/icons/crosshairs" }, + type: "icon", + }, + { + attributes: { + id: "crow", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f520", + voted: false, + }, + id: "crow", + links: { self: "/api/icons/crow" }, + type: "icon", + }, + { + attributes: { + id: "crown", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f521", + voted: true, + }, + id: "crown", + links: { self: "/api/icons/crown" }, + type: "icon", + }, + { + attributes: { + id: "crutch", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7f7", + voted: false, + }, + id: "crutch", + links: { self: "/api/icons/crutch" }, + type: "icon", + }, + { + attributes: { + id: "crutches", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7f8", + voted: false, + }, + id: "crutches", + links: { self: "/api/icons/crutches" }, + type: "icon", + }, + { + attributes: { id: "css3", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f13c", voted: false }, + id: "css3", + links: { self: "/api/icons/css3" }, + type: "icon", + }, + { + attributes: { id: "css3-alt", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f38b", voted: false }, + id: "css3-alt", + links: { self: "/api/icons/css3-alt" }, + type: "icon", + }, + { + attributes: { + id: "cube", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1b2", + voted: false, + }, + id: "cube", + links: { self: "/api/icons/cube" }, + type: "icon", + }, + { + attributes: { + id: "cubes", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1b3", + voted: false, + }, + id: "cubes", + links: { self: "/api/icons/cubes" }, + type: "icon", + }, + { + attributes: { + id: "curling", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f44a", + voted: false, + }, + id: "curling", + links: { self: "/api/icons/curling" }, + type: "icon", + }, + { + attributes: { + id: "cut", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0c4", + voted: false, + }, + id: "cut", + links: { self: "/api/icons/cut" }, + type: "icon", + }, + { + attributes: { id: "cuttlefish", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f38c", voted: false }, + id: "cuttlefish", + links: { self: "/api/icons/cuttlefish" }, + type: "icon", + }, + { + attributes: { id: "d-and-d", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f38d", voted: false }, + id: "d-and-d", + links: { self: "/api/icons/d-and-d" }, + type: "icon", + }, + { + attributes: { + id: "d-and-d-beyond", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f6ca", + voted: false, + }, + id: "d-and-d-beyond", + links: { self: "/api/icons/d-and-d-beyond" }, + type: "icon", + }, + { + attributes: { + id: "dagger", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6cb", + voted: false, + }, + id: "dagger", + links: { self: "/api/icons/dagger" }, + type: "icon", + }, + { + attributes: { id: "dailymotion", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f952", voted: true }, + id: "dailymotion", + links: { self: "/api/icons/dailymotion" }, + type: "icon", + }, + { + attributes: { id: "dashcube", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f210", voted: false }, + id: "dashcube", + links: { self: "/api/icons/dashcube" }, + type: "icon", + }, + { + attributes: { + id: "database", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1c0", + voted: false, + }, + id: "database", + links: { self: "/api/icons/database" }, + type: "icon", + }, + { + attributes: { + id: "deaf", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2a4", + voted: false, + }, + id: "deaf", + links: { self: "/api/icons/deaf" }, + type: "icon", + }, + { + attributes: { + id: "debug", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7f9", + voted: false, + }, + id: "debug", + links: { self: "/api/icons/debug" }, + type: "icon", + }, + { + attributes: { + id: "deer", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f78e", + voted: false, + }, + id: "deer", + links: { self: "/api/icons/deer" }, + type: "icon", + }, + { + attributes: { + id: "deer-rudolph", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f78f", + voted: false, + }, + id: "deer-rudolph", + links: { self: "/api/icons/deer-rudolph" }, + type: "icon", + }, + { + attributes: { id: "delicious", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1a5", voted: false }, + id: "delicious", + links: { self: "/api/icons/delicious" }, + type: "icon", + }, + { + attributes: { + id: "democrat", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f747", + voted: false, + }, + id: "democrat", + links: { self: "/api/icons/democrat" }, + type: "icon", + }, + { + attributes: { id: "deploydog", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f38e", voted: false }, + id: "deploydog", + links: { self: "/api/icons/deploydog" }, + type: "icon", + }, + { + attributes: { id: "deskpro", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f38f", voted: false }, + id: "deskpro", + links: { self: "/api/icons/deskpro" }, + type: "icon", + }, + { + attributes: { + id: "desktop", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f108", + voted: false, + }, + id: "desktop", + links: { self: "/api/icons/desktop" }, + type: "icon", + }, + { + attributes: { + id: "desktop-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f390", + voted: false, + }, + id: "desktop-alt", + links: { self: "/api/icons/desktop-alt" }, + type: "icon", + }, + { + attributes: { id: "dev", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f6cc", voted: true }, + id: "dev", + links: { self: "/api/icons/dev" }, + type: "icon", + }, + { + attributes: { id: "deviantart", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1bd", voted: false }, + id: "deviantart", + links: { self: "/api/icons/deviantart" }, + type: "icon", + }, + { + attributes: { + id: "dewpoint", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f748", + voted: false, + }, + id: "dewpoint", + links: { self: "/api/icons/dewpoint" }, + type: "icon", + }, + { + attributes: { + id: "dharmachakra", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f655", + voted: false, + }, + id: "dharmachakra", + links: { self: "/api/icons/dharmachakra" }, + type: "icon", + }, + { + attributes: { id: "dhl", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f790", voted: false }, + id: "dhl", + links: { self: "/api/icons/dhl" }, + type: "icon", + }, + { + attributes: { + id: "diagnoses", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f470", + voted: false, + }, + id: "diagnoses", + links: { self: "/api/icons/diagnoses" }, + type: "icon", + }, + { + attributes: { + id: "diamond", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f219", + voted: false, + }, + id: "diamond", + links: { self: "/api/icons/diamond" }, + type: "icon", + }, + { + attributes: { id: "diaspora", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f791", voted: true }, + id: "diaspora", + links: { self: "/api/icons/diaspora" }, + type: "icon", + }, + { + attributes: { + id: "dice", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f522", + voted: true, + }, + id: "dice", + links: { self: "/api/icons/dice" }, + type: "icon", + }, + { + attributes: { + id: "dice-d10", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6cd", + voted: false, + }, + id: "dice-d10", + links: { self: "/api/icons/dice-d10" }, + type: "icon", + }, + { + attributes: { + id: "dice-d12", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6ce", + voted: false, + }, + id: "dice-d12", + links: { self: "/api/icons/dice-d12" }, + type: "icon", + }, + { + attributes: { + id: "dice-d20", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6cf", + voted: true, + }, + id: "dice-d20", + links: { self: "/api/icons/dice-d20" }, + type: "icon", + }, + { + attributes: { + id: "dice-d4", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6d0", + voted: false, + }, + id: "dice-d4", + links: { self: "/api/icons/dice-d4" }, + type: "icon", + }, + { + attributes: { + id: "dice-d6", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6d1", + voted: false, + }, + id: "dice-d6", + links: { self: "/api/icons/dice-d6" }, + type: "icon", + }, + { + attributes: { + id: "dice-d8", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6d2", + voted: false, + }, + id: "dice-d8", + links: { self: "/api/icons/dice-d8" }, + type: "icon", + }, + { + attributes: { + id: "dice-five", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f523", + voted: true, + }, + id: "dice-five", + links: { self: "/api/icons/dice-five" }, + type: "icon", + }, + { + attributes: { + id: "dice-four", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f524", + voted: true, + }, + id: "dice-four", + links: { self: "/api/icons/dice-four" }, + type: "icon", + }, + { + attributes: { + id: "dice-one", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f525", + voted: true, + }, + id: "dice-one", + links: { self: "/api/icons/dice-one" }, + type: "icon", + }, + { + attributes: { + id: "dice-six", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f526", + voted: true, + }, + id: "dice-six", + links: { self: "/api/icons/dice-six" }, + type: "icon", + }, + { + attributes: { + id: "dice-three", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f527", + voted: true, + }, + id: "dice-three", + links: { self: "/api/icons/dice-three" }, + type: "icon", + }, + { + attributes: { + id: "dice-two", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f528", + voted: true, + }, + id: "dice-two", + links: { self: "/api/icons/dice-two" }, + type: "icon", + }, + { + attributes: { id: "digg", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1a6", voted: false }, + id: "digg", + links: { self: "/api/icons/digg" }, + type: "icon", + }, + { + attributes: { + id: "digging", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f85e", + voted: false, + }, + id: "digging", + links: { self: "/api/icons/digging" }, + type: "icon", + }, + { + attributes: { + id: "digital-ocean", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f391", + voted: false, + }, + id: "digital-ocean", + links: { self: "/api/icons/digital-ocean" }, + type: "icon", + }, + { + attributes: { + id: "digital-tachograph", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f566", + voted: true, + }, + id: "digital-tachograph", + links: { self: "/api/icons/digital-tachograph" }, + type: "icon", + }, + { + attributes: { + id: "diploma", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5ea", + voted: false, + }, + id: "diploma", + links: { self: "/api/icons/diploma" }, + type: "icon", + }, + { + attributes: { + id: "directions", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5eb", + voted: false, + }, + id: "directions", + links: { self: "/api/icons/directions" }, + type: "icon", + }, + { + attributes: { + id: "disc-drive", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8b5", + voted: false, + }, + id: "disc-drive", + links: { self: "/api/icons/disc-drive" }, + type: "icon", + }, + { + attributes: { id: "discord", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f392", voted: false }, + id: "discord", + links: { self: "/api/icons/discord" }, + type: "icon", + }, + { + attributes: { id: "discourse", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f393", voted: false }, + id: "discourse", + links: { self: "/api/icons/discourse" }, + type: "icon", + }, + { + attributes: { + id: "disease", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7fa", + voted: false, + }, + id: "disease", + links: { self: "/api/icons/disease" }, + type: "icon", + }, + { + attributes: { + id: "divide", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f529", + voted: false, + }, + id: "divide", + links: { self: "/api/icons/divide" }, + type: "icon", + }, + { + attributes: { + id: "dizzy", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f567", + voted: false, + }, + id: "dizzy", + links: { self: "/api/icons/dizzy" }, + type: "icon", + }, + { + attributes: { + id: "dna", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f471", + voted: false, + }, + id: "dna", + links: { self: "/api/icons/dna" }, + type: "icon", + }, + { + attributes: { + id: "do-not-enter", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5ec", + voted: false, + }, + id: "do-not-enter", + links: { self: "/api/icons/do-not-enter" }, + type: "icon", + }, + { + attributes: { id: "dochub", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f394", voted: false }, + id: "dochub", + links: { self: "/api/icons/dochub" }, + type: "icon", + }, + { + attributes: { id: "docker", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f395", voted: false }, + id: "docker", + links: { self: "/api/icons/docker" }, + type: "icon", + }, + { + attributes: { + id: "dog", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6d3", + voted: false, + }, + id: "dog", + links: { self: "/api/icons/dog" }, + type: "icon", + }, + { + attributes: { + id: "dog-leashed", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6d4", + voted: false, + }, + id: "dog-leashed", + links: { self: "/api/icons/dog-leashed" }, + type: "icon", + }, + { + attributes: { + id: "dollar-sign", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f155", + voted: false, + }, + id: "dollar-sign", + links: { self: "/api/icons/dollar-sign" }, + type: "icon", + }, + { + attributes: { + id: "dolly", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f472", + voted: false, + }, + id: "dolly", + links: { self: "/api/icons/dolly" }, + type: "icon", + }, + { + attributes: { + id: "dolly-empty", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f473", + voted: false, + }, + id: "dolly-empty", + links: { self: "/api/icons/dolly-empty" }, + type: "icon", + }, + { + attributes: { + id: "dolly-flatbed", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f474", + voted: false, + }, + id: "dolly-flatbed", + links: { self: "/api/icons/dolly-flatbed" }, + type: "icon", + }, + { + attributes: { + id: "dolly-flatbed-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f475", + voted: false, + }, + id: "dolly-flatbed-alt", + links: { self: "/api/icons/dolly-flatbed-alt" }, + type: "icon", + }, + { + attributes: { + id: "dolly-flatbed-empty", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f476", + voted: false, + }, + id: "dolly-flatbed-empty", + links: { self: "/api/icons/dolly-flatbed-empty" }, + type: "icon", + }, + { + attributes: { + id: "donate", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4b9", + voted: false, + }, + id: "donate", + links: { self: "/api/icons/donate" }, + type: "icon", + }, + { + attributes: { + id: "door-closed", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f52a", + voted: true, + }, + id: "door-closed", + links: { self: "/api/icons/door-closed" }, + type: "icon", + }, + { + attributes: { + id: "door-open", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f52b", + voted: true, + }, + id: "door-open", + links: { self: "/api/icons/door-open" }, + type: "icon", + }, + { + attributes: { + id: "dot-circle", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f192", + voted: false, + }, + id: "dot-circle", + links: { self: "/api/icons/dot-circle" }, + type: "icon", + }, + { + attributes: { + id: "dove", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4ba", + voted: false, + }, + id: "dove", + links: { self: "/api/icons/dove" }, + type: "icon", + }, + { + attributes: { + id: "download", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f019", + voted: false, + }, + id: "download", + links: { self: "/api/icons/download" }, + type: "icon", + }, + { + attributes: { + id: "draft2digital", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f396", + voted: false, + }, + id: "draft2digital", + links: { self: "/api/icons/draft2digital" }, + type: "icon", + }, + { + attributes: { + id: "drafting-compass", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f568", + voted: false, + }, + id: "drafting-compass", + links: { self: "/api/icons/drafting-compass" }, + type: "icon", + }, + { + attributes: { + id: "dragon", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6d5", + voted: false, + }, + id: "dragon", + links: { self: "/api/icons/dragon" }, + type: "icon", + }, + { + attributes: { + id: "draw-circle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5ed", + voted: false, + }, + id: "draw-circle", + links: { self: "/api/icons/draw-circle" }, + type: "icon", + }, + { + attributes: { + id: "draw-polygon", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5ee", + voted: false, + }, + id: "draw-polygon", + links: { self: "/api/icons/draw-polygon" }, + type: "icon", + }, + { + attributes: { + id: "draw-square", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5ef", + voted: false, + }, + id: "draw-square", + links: { self: "/api/icons/draw-square" }, + type: "icon", + }, + { + attributes: { + id: "dreidel", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f792", + voted: false, + }, + id: "dreidel", + links: { self: "/api/icons/dreidel" }, + type: "icon", + }, + { + attributes: { id: "dribbble", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f17d", voted: false }, + id: "dribbble", + links: { self: "/api/icons/dribbble" }, + type: "icon", + }, + { + attributes: { + id: "dribbble-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f397", + voted: false, + }, + id: "dribbble-square", + links: { self: "/api/icons/dribbble-square" }, + type: "icon", + }, + { + attributes: { + id: "drone", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f85f", + voted: true, + }, + id: "drone", + links: { self: "/api/icons/drone" }, + type: "icon", + }, + { + attributes: { + id: "drone-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f860", + voted: false, + }, + id: "drone-alt", + links: { self: "/api/icons/drone-alt" }, + type: "icon", + }, + { + attributes: { id: "dropbox", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f16b", voted: false }, + id: "dropbox", + links: { self: "/api/icons/dropbox" }, + type: "icon", + }, + { + attributes: { + id: "drum", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f569", + voted: true, + }, + id: "drum", + links: { self: "/api/icons/drum" }, + type: "icon", + }, + { + attributes: { + id: "drum-steelpan", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f56a", + voted: false, + }, + id: "drum-steelpan", + links: { self: "/api/icons/drum-steelpan" }, + type: "icon", + }, + { + attributes: { + id: "drumstick", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6d6", + voted: false, + }, + id: "drumstick", + links: { self: "/api/icons/drumstick" }, + type: "icon", + }, + { + attributes: { + id: "drumstick-bite", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6d7", + voted: false, + }, + id: "drumstick-bite", + links: { self: "/api/icons/drumstick-bite" }, + type: "icon", + }, + { + attributes: { id: "drupal", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1a9", voted: false }, + id: "drupal", + links: { self: "/api/icons/drupal" }, + type: "icon", + }, + { + attributes: { + id: "dryer", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f861", + voted: false, + }, + id: "dryer", + links: { self: "/api/icons/dryer" }, + type: "icon", + }, + { + attributes: { + id: "dryer-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f862", + voted: false, + }, + id: "dryer-alt", + links: { self: "/api/icons/dryer-alt" }, + type: "icon", + }, + { + attributes: { + id: "duck", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6d8", + voted: false, + }, + id: "duck", + links: { self: "/api/icons/duck" }, + type: "icon", + }, + { + attributes: { + id: "dumbbell", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f44b", + voted: false, + }, + id: "dumbbell", + links: { self: "/api/icons/dumbbell" }, + type: "icon", + }, + { + attributes: { + id: "dumpster", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f793", + voted: true, + }, + id: "dumpster", + links: { self: "/api/icons/dumpster" }, + type: "icon", + }, + { + attributes: { + id: "dumpster-fire", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f794", + voted: true, + }, + id: "dumpster-fire", + links: { self: "/api/icons/dumpster-fire" }, + type: "icon", + }, + { + attributes: { + id: "dungeon", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6d9", + voted: false, + }, + id: "dungeon", + links: { self: "/api/icons/dungeon" }, + type: "icon", + }, + { + attributes: { id: "dyalog", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f399", voted: false }, + id: "dyalog", + links: { self: "/api/icons/dyalog" }, + type: "icon", + }, + { + attributes: { + id: "ear", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5f0", + voted: false, + }, + id: "ear", + links: { self: "/api/icons/ear" }, + type: "icon", + }, + { + attributes: { + id: "ear-muffs", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f795", + voted: false, + }, + id: "ear-muffs", + links: { self: "/api/icons/ear-muffs" }, + type: "icon", + }, + { + attributes: { id: "earlybirds", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f39a", voted: false }, + id: "earlybirds", + links: { self: "/api/icons/earlybirds" }, + type: "icon", + }, + { + attributes: { id: "ebay", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f4f4", voted: true }, + id: "ebay", + links: { self: "/api/icons/ebay" }, + type: "icon", + }, + { + attributes: { + id: "eclipse", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f749", + voted: false, + }, + id: "eclipse", + links: { self: "/api/icons/eclipse" }, + type: "icon", + }, + { + attributes: { + id: "eclipse-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f74a", + voted: false, + }, + id: "eclipse-alt", + links: { self: "/api/icons/eclipse-alt" }, + type: "icon", + }, + { + attributes: { id: "edge", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f282", voted: false }, + id: "edge", + links: { self: "/api/icons/edge" }, + type: "icon", + }, + { + attributes: { + id: "edit", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f044", + voted: false, + }, + id: "edit", + links: { self: "/api/icons/edit" }, + type: "icon", + }, + { + attributes: { + id: "egg", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7fb", + voted: false, + }, + id: "egg", + links: { self: "/api/icons/egg" }, + type: "icon", + }, + { + attributes: { + id: "egg-fried", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7fc", + voted: false, + }, + id: "egg-fried", + links: { self: "/api/icons/egg-fried" }, + type: "icon", + }, + { + attributes: { + id: "eject", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f052", + voted: false, + }, + id: "eject", + links: { self: "/api/icons/eject" }, + type: "icon", + }, + { + attributes: { id: "elementor", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f430", voted: true }, + id: "elementor", + links: { self: "/api/icons/elementor" }, + type: "icon", + }, + { + attributes: { + id: "elephant", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6da", + voted: false, + }, + id: "elephant", + links: { self: "/api/icons/elephant" }, + type: "icon", + }, + { + attributes: { + id: "ellipsis-h", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f141", + voted: false, + }, + id: "ellipsis-h", + links: { self: "/api/icons/ellipsis-h" }, + type: "icon", + }, + { + attributes: { + id: "ellipsis-h-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f39b", + voted: false, + }, + id: "ellipsis-h-alt", + links: { self: "/api/icons/ellipsis-h-alt" }, + type: "icon", + }, + { + attributes: { + id: "ellipsis-v", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f142", + voted: false, + }, + id: "ellipsis-v", + links: { self: "/api/icons/ellipsis-v" }, + type: "icon", + }, + { + attributes: { + id: "ellipsis-v-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f39c", + voted: false, + }, + id: "ellipsis-v-alt", + links: { self: "/api/icons/ellipsis-v-alt" }, + type: "icon", + }, + { + attributes: { id: "ello", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f5f1", voted: true }, + id: "ello", + links: { self: "/api/icons/ello" }, + type: "icon", + }, + { + attributes: { id: "ember", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f423", voted: false }, + id: "ember", + links: { self: "/api/icons/ember" }, + type: "icon", + }, + { + attributes: { id: "empire", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1d1", voted: false }, + id: "empire", + links: { self: "/api/icons/empire" }, + type: "icon", + }, + { + attributes: { + id: "empty-set", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f656", + voted: false, + }, + id: "empty-set", + links: { self: "/api/icons/empty-set" }, + type: "icon", + }, + { + attributes: { + id: "engine-warning", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5f2", + voted: false, + }, + id: "engine-warning", + links: { self: "/api/icons/engine-warning" }, + type: "icon", + }, + { + attributes: { + id: "envelope", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0e0", + voted: false, + }, + id: "envelope", + links: { self: "/api/icons/envelope" }, + type: "icon", + }, + { + attributes: { + id: "envelope-open", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2b6", + voted: false, + }, + id: "envelope-open", + links: { self: "/api/icons/envelope-open" }, + type: "icon", + }, + { + attributes: { + id: "envelope-open-dollar", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f657", + voted: false, + }, + id: "envelope-open-dollar", + links: { self: "/api/icons/envelope-open-dollar" }, + type: "icon", + }, + { + attributes: { + id: "envelope-open-text", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f658", + voted: false, + }, + id: "envelope-open-text", + links: { self: "/api/icons/envelope-open-text" }, + type: "icon", + }, + { + attributes: { + id: "envelope-square", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f199", + voted: false, + }, + id: "envelope-square", + links: { self: "/api/icons/envelope-square" }, + type: "icon", + }, + { + attributes: { id: "envira", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f299", voted: false }, + id: "envira", + links: { self: "/api/icons/envira" }, + type: "icon", + }, + { + attributes: { + id: "equals", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f52c", + voted: false, + }, + id: "equals", + links: { self: "/api/icons/equals" }, + type: "icon", + }, + { + attributes: { + id: "eraser", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f12d", + voted: false, + }, + id: "eraser", + links: { self: "/api/icons/eraser" }, + type: "icon", + }, + { + attributes: { id: "erlang", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f39d", voted: false }, + id: "erlang", + links: { self: "/api/icons/erlang" }, + type: "icon", + }, + { + attributes: { id: "ethereum", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f42e", voted: true }, + id: "ethereum", + links: { self: "/api/icons/ethereum" }, + type: "icon", + }, + { + attributes: { + id: "ethernet", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f796", + voted: true, + }, + id: "ethernet", + links: { self: "/api/icons/ethernet" }, + type: "icon", + }, + { + attributes: { id: "etsy", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2d7", voted: false }, + id: "etsy", + links: { self: "/api/icons/etsy" }, + type: "icon", + }, + { + attributes: { + id: "euro-sign", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f153", + voted: false, + }, + id: "euro-sign", + links: { self: "/api/icons/euro-sign" }, + type: "icon", + }, + { + attributes: { id: "evernote", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f839", voted: false }, + id: "evernote", + links: { self: "/api/icons/evernote" }, + type: "icon", + }, + { + attributes: { + id: "exchange", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0ec", + voted: false, + }, + id: "exchange", + links: { self: "/api/icons/exchange" }, + type: "icon", + }, + { + attributes: { + id: "exchange-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f362", + voted: false, + }, + id: "exchange-alt", + links: { self: "/api/icons/exchange-alt" }, + type: "icon", + }, + { + attributes: { + id: "exclamation", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f12a", + voted: false, + }, + id: "exclamation", + links: { self: "/api/icons/exclamation" }, + type: "icon", + }, + { + attributes: { + id: "exclamation-circle", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f06a", + voted: false, + }, + id: "exclamation-circle", + links: { self: "/api/icons/exclamation-circle" }, + type: "icon", + }, + { + attributes: { + id: "exclamation-square", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f321", + voted: false, + }, + id: "exclamation-square", + links: { self: "/api/icons/exclamation-square" }, + type: "icon", + }, + { + attributes: { + id: "exclamation-triangle", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f071", + voted: false, + }, + id: "exclamation-triangle", + links: { self: "/api/icons/exclamation-triangle" }, + type: "icon", + }, + { + attributes: { + id: "expand", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f065", + voted: false, + }, + id: "expand", + links: { self: "/api/icons/expand" }, + type: "icon", + }, + { + attributes: { + id: "expand-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f424", + voted: false, + }, + id: "expand-alt", + links: { self: "/api/icons/expand-alt" }, + type: "icon", + }, + { + attributes: { + id: "expand-arrows", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f31d", + voted: false, + }, + id: "expand-arrows", + links: { self: "/api/icons/expand-arrows" }, + type: "icon", + }, + { + attributes: { + id: "expand-arrows-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f31e", + voted: false, + }, + id: "expand-arrows-alt", + links: { self: "/api/icons/expand-arrows-alt" }, + type: "icon", + }, + { + attributes: { + id: "expand-wide", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f320", + voted: false, + }, + id: "expand-wide", + links: { self: "/api/icons/expand-wide" }, + type: "icon", + }, + { + attributes: { + id: "expeditedssl", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f23e", + voted: false, + }, + id: "expeditedssl", + links: { self: "/api/icons/expeditedssl" }, + type: "icon", + }, + { + attributes: { + id: "external-link", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f08e", + voted: false, + }, + id: "external-link", + links: { self: "/api/icons/external-link" }, + type: "icon", + }, + { + attributes: { + id: "external-link-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f35d", + voted: false, + }, + id: "external-link-alt", + links: { self: "/api/icons/external-link-alt" }, + type: "icon", + }, + { + attributes: { + id: "external-link-square", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f14c", + voted: false, + }, + id: "external-link-square", + links: { self: "/api/icons/external-link-square" }, + type: "icon", + }, + { + attributes: { + id: "external-link-square-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f360", + voted: false, + }, + id: "external-link-square-alt", + links: { self: "/api/icons/external-link-square-alt" }, + type: "icon", + }, + { + attributes: { + id: "eye", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f06e", + voted: false, + }, + id: "eye", + links: { self: "/api/icons/eye" }, + type: "icon", + }, + { + attributes: { + id: "eye-dropper", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1fb", + voted: false, + }, + id: "eye-dropper", + links: { self: "/api/icons/eye-dropper" }, + type: "icon", + }, + { + attributes: { + id: "eye-evil", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6db", + voted: false, + }, + id: "eye-evil", + links: { self: "/api/icons/eye-evil" }, + type: "icon", + }, + { + attributes: { + id: "eye-slash", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f070", + voted: false, + }, + id: "eye-slash", + links: { self: "/api/icons/eye-slash" }, + type: "icon", + }, + { + attributes: { id: "facebook", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f09a", voted: false }, + id: "facebook", + links: { self: "/api/icons/facebook" }, + type: "icon", + }, + { + attributes: { id: "facebook-f", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f39e", voted: false }, + id: "facebook-f", + links: { self: "/api/icons/facebook-f" }, + type: "icon", + }, + { + attributes: { + id: "facebook-messenger", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f39f", + voted: false, + }, + id: "facebook-messenger", + links: { self: "/api/icons/facebook-messenger" }, + type: "icon", + }, + { + attributes: { + id: "facebook-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f082", + voted: false, + }, + id: "facebook-square", + links: { self: "/api/icons/facebook-square" }, + type: "icon", + }, + { + attributes: { + id: "fan", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f863", + voted: true, + }, + id: "fan", + links: { self: "/api/icons/fan" }, + type: "icon", + }, + { + attributes: { + id: "fan-table", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f904", + voted: false, + }, + id: "fan-table", + links: { self: "/api/icons/fan-table" }, + type: "icon", + }, + { + attributes: { + id: "fantasy-flight-games", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f6dc", + voted: false, + }, + id: "fantasy-flight-games", + links: { self: "/api/icons/fantasy-flight-games" }, + type: "icon", + }, + { + attributes: { + id: "farm", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f864", + voted: false, + }, + id: "farm", + links: { self: "/api/icons/farm" }, + type: "icon", + }, + { + attributes: { + id: "fast-backward", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f049", + voted: false, + }, + id: "fast-backward", + links: { self: "/api/icons/fast-backward" }, + type: "icon", + }, + { + attributes: { + id: "fast-forward", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f050", + voted: false, + }, + id: "fast-forward", + links: { self: "/api/icons/fast-forward" }, + type: "icon", + }, + { + attributes: { + id: "faucet", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f905", + voted: false, + }, + id: "faucet", + links: { self: "/api/icons/faucet" }, + type: "icon", + }, + { + attributes: { + id: "faucet-drip", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f906", + voted: false, + }, + id: "faucet-drip", + links: { self: "/api/icons/faucet-drip" }, + type: "icon", + }, + { + attributes: { + id: "fax", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1ac", + voted: false, + }, + id: "fax", + links: { self: "/api/icons/fax" }, + type: "icon", + }, + { + attributes: { + id: "feather", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f52d", + voted: true, + }, + id: "feather", + links: { self: "/api/icons/feather" }, + type: "icon", + }, + { + attributes: { + id: "feather-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f56b", + voted: true, + }, + id: "feather-alt", + links: { self: "/api/icons/feather-alt" }, + type: "icon", + }, + { + attributes: { id: "fedex", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f797", voted: false }, + id: "fedex", + links: { self: "/api/icons/fedex" }, + type: "icon", + }, + { + attributes: { id: "fedora", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f798", voted: true }, + id: "fedora", + links: { self: "/api/icons/fedora" }, + type: "icon", + }, + { + attributes: { + id: "female", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f182", + voted: false, + }, + id: "female", + links: { self: "/api/icons/female" }, + type: "icon", + }, + { + attributes: { + id: "field-hockey", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f44c", + voted: false, + }, + id: "field-hockey", + links: { self: "/api/icons/field-hockey" }, + type: "icon", + }, + { + attributes: { + id: "fighter-jet", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0fb", + voted: false, + }, + id: "fighter-jet", + links: { self: "/api/icons/fighter-jet" }, + type: "icon", + }, + { + attributes: { id: "figma", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f799", voted: false }, + id: "figma", + links: { self: "/api/icons/figma" }, + type: "icon", + }, + { + attributes: { + id: "file", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f15b", + voted: false, + }, + id: "file", + links: { self: "/api/icons/file" }, + type: "icon", + }, + { + attributes: { + id: "file-alt", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f15c", + voted: false, + }, + id: "file-alt", + links: { self: "/api/icons/file-alt" }, + type: "icon", + }, + { + attributes: { + id: "file-archive", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1c6", + voted: false, + }, + id: "file-archive", + links: { self: "/api/icons/file-archive" }, + type: "icon", + }, + { + attributes: { + id: "file-audio", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1c7", + voted: false, + }, + id: "file-audio", + links: { self: "/api/icons/file-audio" }, + type: "icon", + }, + { + attributes: { + id: "file-certificate", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5f3", + voted: false, + }, + id: "file-certificate", + links: { self: "/api/icons/file-certificate" }, + type: "icon", + }, + { + attributes: { + id: "file-chart-line", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f659", + voted: false, + }, + id: "file-chart-line", + links: { self: "/api/icons/file-chart-line" }, + type: "icon", + }, + { + attributes: { + id: "file-chart-pie", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f65a", + voted: false, + }, + id: "file-chart-pie", + links: { self: "/api/icons/file-chart-pie" }, + type: "icon", + }, + { + attributes: { + id: "file-check", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f316", + voted: false, + }, + id: "file-check", + links: { self: "/api/icons/file-check" }, + type: "icon", + }, + { + attributes: { + id: "file-code", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1c9", + voted: false, + }, + id: "file-code", + links: { self: "/api/icons/file-code" }, + type: "icon", + }, + { + attributes: { + id: "file-contract", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f56c", + voted: false, + }, + id: "file-contract", + links: { self: "/api/icons/file-contract" }, + type: "icon", + }, + { + attributes: { + id: "file-csv", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6dd", + voted: false, + }, + id: "file-csv", + links: { self: "/api/icons/file-csv" }, + type: "icon", + }, + { + attributes: { + id: "file-download", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f56d", + voted: true, + }, + id: "file-download", + links: { self: "/api/icons/file-download" }, + type: "icon", + }, + { + attributes: { + id: "file-edit", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f31c", + voted: false, + }, + id: "file-edit", + links: { self: "/api/icons/file-edit" }, + type: "icon", + }, + { + attributes: { + id: "file-excel", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1c3", + voted: false, + }, + id: "file-excel", + links: { self: "/api/icons/file-excel" }, + type: "icon", + }, + { + attributes: { + id: "file-exclamation", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f31a", + voted: false, + }, + id: "file-exclamation", + links: { self: "/api/icons/file-exclamation" }, + type: "icon", + }, + { + attributes: { + id: "file-export", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f56e", + voted: true, + }, + id: "file-export", + links: { self: "/api/icons/file-export" }, + type: "icon", + }, + { + attributes: { + id: "file-image", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1c5", + voted: false, + }, + id: "file-image", + links: { self: "/api/icons/file-image" }, + type: "icon", + }, + { + attributes: { + id: "file-import", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f56f", + voted: true, + }, + id: "file-import", + links: { self: "/api/icons/file-import" }, + type: "icon", + }, + { + attributes: { + id: "file-invoice", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f570", + voted: true, + }, + id: "file-invoice", + links: { self: "/api/icons/file-invoice" }, + type: "icon", + }, + { + attributes: { + id: "file-invoice-dollar", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f571", + voted: true, + }, + id: "file-invoice-dollar", + links: { self: "/api/icons/file-invoice-dollar" }, + type: "icon", + }, + { + attributes: { + id: "file-medical", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f477", + voted: false, + }, + id: "file-medical", + links: { self: "/api/icons/file-medical" }, + type: "icon", + }, + { + attributes: { + id: "file-medical-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f478", + voted: false, + }, + id: "file-medical-alt", + links: { self: "/api/icons/file-medical-alt" }, + type: "icon", + }, + { + attributes: { + id: "file-minus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f318", + voted: false, + }, + id: "file-minus", + links: { self: "/api/icons/file-minus" }, + type: "icon", + }, + { + attributes: { + id: "file-music", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8b6", + voted: false, + }, + id: "file-music", + links: { self: "/api/icons/file-music" }, + type: "icon", + }, + { + attributes: { + id: "file-pdf", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1c1", + voted: false, + }, + id: "file-pdf", + links: { self: "/api/icons/file-pdf" }, + type: "icon", + }, + { + attributes: { + id: "file-plus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f319", + voted: false, + }, + id: "file-plus", + links: { self: "/api/icons/file-plus" }, + type: "icon", + }, + { + attributes: { + id: "file-powerpoint", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1c4", + voted: false, + }, + id: "file-powerpoint", + links: { self: "/api/icons/file-powerpoint" }, + type: "icon", + }, + { + attributes: { + id: "file-prescription", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f572", + voted: false, + }, + id: "file-prescription", + links: { self: "/api/icons/file-prescription" }, + type: "icon", + }, + { + attributes: { + id: "file-search", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f865", + voted: true, + }, + id: "file-search", + links: { self: "/api/icons/file-search" }, + type: "icon", + }, + { + attributes: { + id: "file-signature", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f573", + voted: true, + }, + id: "file-signature", + links: { self: "/api/icons/file-signature" }, + type: "icon", + }, + { + attributes: { + id: "file-spreadsheet", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f65b", + voted: false, + }, + id: "file-spreadsheet", + links: { self: "/api/icons/file-spreadsheet" }, + type: "icon", + }, + { + attributes: { + id: "file-times", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f317", + voted: false, + }, + id: "file-times", + links: { self: "/api/icons/file-times" }, + type: "icon", + }, + { + attributes: { + id: "file-upload", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f574", + voted: true, + }, + id: "file-upload", + links: { self: "/api/icons/file-upload" }, + type: "icon", + }, + { + attributes: { + id: "file-user", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f65c", + voted: true, + }, + id: "file-user", + links: { self: "/api/icons/file-user" }, + type: "icon", + }, + { + attributes: { + id: "file-video", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1c8", + voted: false, + }, + id: "file-video", + links: { self: "/api/icons/file-video" }, + type: "icon", + }, + { + attributes: { + id: "file-word", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1c2", + voted: false, + }, + id: "file-word", + links: { self: "/api/icons/file-word" }, + type: "icon", + }, + { + attributes: { + id: "files-medical", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7fd", + voted: false, + }, + id: "files-medical", + links: { self: "/api/icons/files-medical" }, + type: "icon", + }, + { + attributes: { + id: "fill", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f575", + voted: false, + }, + id: "fill", + links: { self: "/api/icons/fill" }, + type: "icon", + }, + { + attributes: { + id: "fill-drip", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f576", + voted: false, + }, + id: "fill-drip", + links: { self: "/api/icons/fill-drip" }, + type: "icon", + }, + { + attributes: { + id: "film", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f008", + voted: false, + }, + id: "film", + links: { self: "/api/icons/film" }, + type: "icon", + }, + { + attributes: { + id: "film-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3a0", + voted: false, + }, + id: "film-alt", + links: { self: "/api/icons/film-alt" }, + type: "icon", + }, + { + attributes: { + id: "film-canister", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8b7", + voted: false, + }, + id: "film-canister", + links: { self: "/api/icons/film-canister" }, + type: "icon", + }, + { + attributes: { + id: "filter", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0b0", + voted: false, + }, + id: "filter", + links: { self: "/api/icons/filter" }, + type: "icon", + }, + { + attributes: { + id: "fingerprint", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f577", + voted: true, + }, + id: "fingerprint", + links: { self: "/api/icons/fingerprint" }, + type: "icon", + }, + { + attributes: { + id: "fire", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f06d", + voted: false, + }, + id: "fire", + links: { self: "/api/icons/fire" }, + type: "icon", + }, + { + attributes: { + id: "fire-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7e4", + voted: false, + }, + id: "fire-alt", + links: { self: "/api/icons/fire-alt" }, + type: "icon", + }, + { + attributes: { + id: "fire-extinguisher", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f134", + voted: false, + }, + id: "fire-extinguisher", + links: { self: "/api/icons/fire-extinguisher" }, + type: "icon", + }, + { + attributes: { + id: "fire-smoke", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f74b", + voted: false, + }, + id: "fire-smoke", + links: { self: "/api/icons/fire-smoke" }, + type: "icon", + }, + { + attributes: { id: "firefox", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f269", voted: false }, + id: "firefox", + links: { self: "/api/icons/firefox" }, + type: "icon", + }, + { + attributes: { + id: "firefox-browser", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f907", + voted: false, + }, + id: "firefox-browser", + links: { self: "/api/icons/firefox-browser" }, + type: "icon", + }, + { + attributes: { + id: "fireplace", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f79a", + voted: false, + }, + id: "fireplace", + links: { self: "/api/icons/fireplace" }, + type: "icon", + }, + { + attributes: { + id: "first-aid", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f479", + voted: false, + }, + id: "first-aid", + links: { self: "/api/icons/first-aid" }, + type: "icon", + }, + { + attributes: { id: "first-order", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2b0", voted: false }, + id: "first-order", + links: { self: "/api/icons/first-order" }, + type: "icon", + }, + { + attributes: { + id: "first-order-alt", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f50a", + voted: false, + }, + id: "first-order-alt", + links: { self: "/api/icons/first-order-alt" }, + type: "icon", + }, + { + attributes: { id: "firstdraft", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3a1", voted: false }, + id: "firstdraft", + links: { self: "/api/icons/firstdraft" }, + type: "icon", + }, + { + attributes: { + id: "fish", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f578", + voted: true, + }, + id: "fish", + links: { self: "/api/icons/fish" }, + type: "icon", + }, + { + attributes: { + id: "fish-cooked", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7fe", + voted: false, + }, + id: "fish-cooked", + links: { self: "/api/icons/fish-cooked" }, + type: "icon", + }, + { + attributes: { + id: "fist-raised", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6de", + voted: false, + }, + id: "fist-raised", + links: { self: "/api/icons/fist-raised" }, + type: "icon", + }, + { + attributes: { + id: "flag", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f024", + voted: false, + }, + id: "flag", + links: { self: "/api/icons/flag" }, + type: "icon", + }, + { + attributes: { + id: "flag-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f74c", + voted: false, + }, + id: "flag-alt", + links: { self: "/api/icons/flag-alt" }, + type: "icon", + }, + { + attributes: { + id: "flag-checkered", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f11e", + voted: false, + }, + id: "flag-checkered", + links: { self: "/api/icons/flag-checkered" }, + type: "icon", + }, + { + attributes: { + id: "flag-usa", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f74d", + voted: false, + }, + id: "flag-usa", + links: { self: "/api/icons/flag-usa" }, + type: "icon", + }, + { + attributes: { + id: "flame", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6df", + voted: false, + }, + id: "flame", + links: { self: "/api/icons/flame" }, + type: "icon", + }, + { + attributes: { + id: "flashlight", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8b8", + voted: false, + }, + id: "flashlight", + links: { self: "/api/icons/flashlight" }, + type: "icon", + }, + { + attributes: { + id: "flask", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0c3", + voted: false, + }, + id: "flask", + links: { self: "/api/icons/flask" }, + type: "icon", + }, + { + attributes: { + id: "flask-poison", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6e0", + voted: false, + }, + id: "flask-poison", + links: { self: "/api/icons/flask-poison" }, + type: "icon", + }, + { + attributes: { + id: "flask-potion", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6e1", + voted: false, + }, + id: "flask-potion", + links: { self: "/api/icons/flask-potion" }, + type: "icon", + }, + { + attributes: { id: "flickr", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f16e", voted: false }, + id: "flickr", + links: { self: "/api/icons/flickr" }, + type: "icon", + }, + { + attributes: { id: "flipboard", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f44d", voted: true }, + id: "flipboard", + links: { self: "/api/icons/flipboard" }, + type: "icon", + }, + { + attributes: { + id: "flower", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7ff", + voted: true, + }, + id: "flower", + links: { self: "/api/icons/flower" }, + type: "icon", + }, + { + attributes: { + id: "flower-daffodil", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f800", + voted: false, + }, + id: "flower-daffodil", + links: { self: "/api/icons/flower-daffodil" }, + type: "icon", + }, + { + attributes: { + id: "flower-tulip", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f801", + voted: false, + }, + id: "flower-tulip", + links: { self: "/api/icons/flower-tulip" }, + type: "icon", + }, + { + attributes: { + id: "flushed", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f579", + voted: false, + }, + id: "flushed", + links: { self: "/api/icons/flushed" }, + type: "icon", + }, + { + attributes: { + id: "flute", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8b9", + voted: false, + }, + id: "flute", + links: { self: "/api/icons/flute" }, + type: "icon", + }, + { + attributes: { + id: "flux-capacitor", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8ba", + voted: false, + }, + id: "flux-capacitor", + links: { self: "/api/icons/flux-capacitor" }, + type: "icon", + }, + { + attributes: { id: "fly", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f417", voted: false }, + id: "fly", + links: { self: "/api/icons/fly" }, + type: "icon", + }, + { + attributes: { + id: "fog", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f74e", + voted: false, + }, + id: "fog", + links: { self: "/api/icons/fog" }, + type: "icon", + }, + { + attributes: { + id: "folder", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f07b", + voted: false, + }, + id: "folder", + links: { self: "/api/icons/folder" }, + type: "icon", + }, + { + attributes: { + id: "folder-download", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f953", + voted: false, + }, + id: "folder-download", + links: { self: "/api/icons/folder-download" }, + type: "icon", + }, + { + attributes: { + id: "folder-minus", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f65d", + voted: false, + }, + id: "folder-minus", + links: { self: "/api/icons/folder-minus" }, + type: "icon", + }, + { + attributes: { + id: "folder-open", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f07c", + voted: false, + }, + id: "folder-open", + links: { self: "/api/icons/folder-open" }, + type: "icon", + }, + { + attributes: { + id: "folder-plus", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f65e", + voted: false, + }, + id: "folder-plus", + links: { self: "/api/icons/folder-plus" }, + type: "icon", + }, + { + attributes: { + id: "folder-times", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f65f", + voted: false, + }, + id: "folder-times", + links: { self: "/api/icons/folder-times" }, + type: "icon", + }, + { + attributes: { + id: "folder-tree", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f802", + voted: true, + }, + id: "folder-tree", + links: { self: "/api/icons/folder-tree" }, + type: "icon", + }, + { + attributes: { + id: "folder-upload", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f954", + voted: false, + }, + id: "folder-upload", + links: { self: "/api/icons/folder-upload" }, + type: "icon", + }, + { + attributes: { + id: "folders", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f660", + voted: false, + }, + id: "folders", + links: { self: "/api/icons/folders" }, + type: "icon", + }, + { + attributes: { + id: "font", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f031", + voted: false, + }, + id: "font", + links: { self: "/api/icons/font" }, + type: "icon", + }, + { + attributes: { + id: "font-awesome", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f2b4", + voted: false, + }, + id: "font-awesome", + links: { self: "/api/icons/font-awesome" }, + type: "icon", + }, + { + attributes: { + id: "font-awesome-alt", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f35c", + voted: false, + }, + id: "font-awesome-alt", + links: { self: "/api/icons/font-awesome-alt" }, + type: "icon", + }, + { + attributes: { + id: "font-awesome-flag", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f425", + voted: false, + }, + id: "font-awesome-flag", + links: { self: "/api/icons/font-awesome-flag" }, + type: "icon", + }, + { + attributes: { + id: "font-case", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f866", + voted: false, + }, + id: "font-case", + links: { self: "/api/icons/font-case" }, + type: "icon", + }, + { + attributes: { id: "fonticons", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f280", voted: false }, + id: "fonticons", + links: { self: "/api/icons/fonticons" }, + type: "icon", + }, + { + attributes: { + id: "fonticons-fi", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f3a2", + voted: false, + }, + id: "fonticons-fi", + links: { self: "/api/icons/fonticons-fi" }, + type: "icon", + }, + { + attributes: { + id: "football-ball", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f44e", + voted: false, + }, + id: "football-ball", + links: { self: "/api/icons/football-ball" }, + type: "icon", + }, + { + attributes: { + id: "football-helmet", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f44f", + voted: false, + }, + id: "football-helmet", + links: { self: "/api/icons/football-helmet" }, + type: "icon", + }, + { + attributes: { + id: "forklift", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f47a", + voted: false, + }, + id: "forklift", + links: { self: "/api/icons/forklift" }, + type: "icon", + }, + { + attributes: { + id: "fort-awesome", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f286", + voted: false, + }, + id: "fort-awesome", + links: { self: "/api/icons/fort-awesome" }, + type: "icon", + }, + { + attributes: { + id: "fort-awesome-alt", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f3a3", + voted: false, + }, + id: "fort-awesome-alt", + links: { self: "/api/icons/fort-awesome-alt" }, + type: "icon", + }, + { + attributes: { id: "forumbee", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f211", voted: false }, + id: "forumbee", + links: { self: "/api/icons/forumbee" }, + type: "icon", + }, + { + attributes: { + id: "forward", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f04e", + voted: false, + }, + id: "forward", + links: { self: "/api/icons/forward" }, + type: "icon", + }, + { + attributes: { id: "foursquare", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f180", voted: false }, + id: "foursquare", + links: { self: "/api/icons/foursquare" }, + type: "icon", + }, + { + attributes: { + id: "fragile", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4bb", + voted: false, + }, + id: "fragile", + links: { self: "/api/icons/fragile" }, + type: "icon", + }, + { + attributes: { + id: "free-code-camp", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f2c5", + voted: false, + }, + id: "free-code-camp", + links: { self: "/api/icons/free-code-camp" }, + type: "icon", + }, + { + attributes: { id: "freebsd", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3a4", voted: false }, + id: "freebsd", + links: { self: "/api/icons/freebsd" }, + type: "icon", + }, + { + attributes: { + id: "french-fries", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f803", + voted: false, + }, + id: "french-fries", + links: { self: "/api/icons/french-fries" }, + type: "icon", + }, + { + attributes: { + id: "frog", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f52e", + voted: false, + }, + id: "frog", + links: { self: "/api/icons/frog" }, + type: "icon", + }, + { + attributes: { + id: "frosty-head", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f79b", + voted: false, + }, + id: "frosty-head", + links: { self: "/api/icons/frosty-head" }, + type: "icon", + }, + { + attributes: { + id: "frown", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f119", + voted: false, + }, + id: "frown", + links: { self: "/api/icons/frown" }, + type: "icon", + }, + { + attributes: { + id: "frown-open", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f57a", + voted: false, + }, + id: "frown-open", + links: { self: "/api/icons/frown-open" }, + type: "icon", + }, + { + attributes: { id: "fulcrum", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f50b", voted: false }, + id: "fulcrum", + links: { self: "/api/icons/fulcrum" }, + type: "icon", + }, + { + attributes: { + id: "function", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f661", + voted: false, + }, + id: "function", + links: { self: "/api/icons/function" }, + type: "icon", + }, + { + attributes: { + id: "funnel-dollar", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f662", + voted: false, + }, + id: "funnel-dollar", + links: { self: "/api/icons/funnel-dollar" }, + type: "icon", + }, + { + attributes: { + id: "futbol", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1e3", + voted: false, + }, + id: "futbol", + links: { self: "/api/icons/futbol" }, + type: "icon", + }, + { + attributes: { + id: "galactic-republic", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f50c", + voted: false, + }, + id: "galactic-republic", + links: { self: "/api/icons/galactic-republic" }, + type: "icon", + }, + { + attributes: { + id: "galactic-senate", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f50d", + voted: false, + }, + id: "galactic-senate", + links: { self: "/api/icons/galactic-senate" }, + type: "icon", + }, + { + attributes: { + id: "galaxy", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f908", + voted: false, + }, + id: "galaxy", + links: { self: "/api/icons/galaxy" }, + type: "icon", + }, + { + attributes: { + id: "game-board", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f867", + voted: false, + }, + id: "game-board", + links: { self: "/api/icons/game-board" }, + type: "icon", + }, + { + attributes: { + id: "game-board-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f868", + voted: false, + }, + id: "game-board-alt", + links: { self: "/api/icons/game-board-alt" }, + type: "icon", + }, + { + attributes: { + id: "game-console-handheld", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8bb", + voted: false, + }, + id: "game-console-handheld", + links: { self: "/api/icons/game-console-handheld" }, + type: "icon", + }, + { + attributes: { + id: "gamepad", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f11b", + voted: false, + }, + id: "gamepad", + links: { self: "/api/icons/gamepad" }, + type: "icon", + }, + { + attributes: { + id: "gamepad-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8bc", + voted: false, + }, + id: "gamepad-alt", + links: { self: "/api/icons/gamepad-alt" }, + type: "icon", + }, + { + attributes: { + id: "garage", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f909", + voted: false, + }, + id: "garage", + links: { self: "/api/icons/garage" }, + type: "icon", + }, + { + attributes: { + id: "garage-car", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f90a", + voted: false, + }, + id: "garage-car", + links: { self: "/api/icons/garage-car" }, + type: "icon", + }, + { + attributes: { + id: "garage-open", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f90b", + voted: false, + }, + id: "garage-open", + links: { self: "/api/icons/garage-open" }, + type: "icon", + }, + { + attributes: { + id: "gas-pump", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f52f", + voted: true, + }, + id: "gas-pump", + links: { self: "/api/icons/gas-pump" }, + type: "icon", + }, + { + attributes: { + id: "gas-pump-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5f4", + voted: true, + }, + id: "gas-pump-slash", + links: { self: "/api/icons/gas-pump-slash" }, + type: "icon", + }, + { + attributes: { + id: "gavel", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0e3", + voted: false, + }, + id: "gavel", + links: { self: "/api/icons/gavel" }, + type: "icon", + }, + { + attributes: { + id: "gem", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3a5", + voted: false, + }, + id: "gem", + links: { self: "/api/icons/gem" }, + type: "icon", + }, + { + attributes: { + id: "genderless", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f22d", + voted: false, + }, + id: "genderless", + links: { self: "/api/icons/genderless" }, + type: "icon", + }, + { + attributes: { id: "get-pocket", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f265", voted: false }, + id: "get-pocket", + links: { self: "/api/icons/get-pocket" }, + type: "icon", + }, + { + attributes: { id: "gg", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f260", voted: false }, + id: "gg", + links: { self: "/api/icons/gg" }, + type: "icon", + }, + { + attributes: { id: "gg-circle", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f261", voted: false }, + id: "gg-circle", + links: { self: "/api/icons/gg-circle" }, + type: "icon", + }, + { + attributes: { + id: "ghost", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6e2", + voted: false, + }, + id: "ghost", + links: { self: "/api/icons/ghost" }, + type: "icon", + }, + { + attributes: { + id: "gift", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f06b", + voted: false, + }, + id: "gift", + links: { self: "/api/icons/gift" }, + type: "icon", + }, + { + attributes: { + id: "gift-card", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f663", + voted: false, + }, + id: "gift-card", + links: { self: "/api/icons/gift-card" }, + type: "icon", + }, + { + attributes: { + id: "gifts", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f79c", + voted: false, + }, + id: "gifts", + links: { self: "/api/icons/gifts" }, + type: "icon", + }, + { + attributes: { + id: "gingerbread-man", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f79d", + voted: false, + }, + id: "gingerbread-man", + links: { self: "/api/icons/gingerbread-man" }, + type: "icon", + }, + { + attributes: { id: "git", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1d3", voted: false }, + id: "git", + links: { self: "/api/icons/git" }, + type: "icon", + }, + { + attributes: { id: "git-alt", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f841", voted: false }, + id: "git-alt", + links: { self: "/api/icons/git-alt" }, + type: "icon", + }, + { + attributes: { id: "git-square", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1d2", voted: false }, + id: "git-square", + links: { self: "/api/icons/git-square" }, + type: "icon", + }, + { + attributes: { id: "github", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f09b", voted: false }, + id: "github", + links: { self: "/api/icons/github" }, + type: "icon", + }, + { + attributes: { id: "github-alt", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f113", voted: false }, + id: "github-alt", + links: { self: "/api/icons/github-alt" }, + type: "icon", + }, + { + attributes: { + id: "github-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f092", + voted: false, + }, + id: "github-square", + links: { self: "/api/icons/github-square" }, + type: "icon", + }, + { + attributes: { id: "gitkraken", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3a6", voted: false }, + id: "gitkraken", + links: { self: "/api/icons/gitkraken" }, + type: "icon", + }, + { + attributes: { id: "gitlab", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f296", voted: false }, + id: "gitlab", + links: { self: "/api/icons/gitlab" }, + type: "icon", + }, + { + attributes: { id: "gitter", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f426", voted: false }, + id: "gitter", + links: { self: "/api/icons/gitter" }, + type: "icon", + }, + { + attributes: { + id: "glass", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f804", + voted: true, + }, + id: "glass", + links: { self: "/api/icons/glass" }, + type: "icon", + }, + { + attributes: { + id: "glass-champagne", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f79e", + voted: false, + }, + id: "glass-champagne", + links: { self: "/api/icons/glass-champagne" }, + type: "icon", + }, + { + attributes: { + id: "glass-cheers", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f79f", + voted: false, + }, + id: "glass-cheers", + links: { self: "/api/icons/glass-cheers" }, + type: "icon", + }, + { + attributes: { + id: "glass-citrus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f869", + voted: false, + }, + id: "glass-citrus", + links: { self: "/api/icons/glass-citrus" }, + type: "icon", + }, + { + attributes: { + id: "glass-martini", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f000", + voted: false, + }, + id: "glass-martini", + links: { self: "/api/icons/glass-martini" }, + type: "icon", + }, + { + attributes: { + id: "glass-martini-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f57b", + voted: false, + }, + id: "glass-martini-alt", + links: { self: "/api/icons/glass-martini-alt" }, + type: "icon", + }, + { + attributes: { + id: "glass-whiskey", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7a0", + voted: false, + }, + id: "glass-whiskey", + links: { self: "/api/icons/glass-whiskey" }, + type: "icon", + }, + { + attributes: { + id: "glass-whiskey-rocks", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7a1", + voted: false, + }, + id: "glass-whiskey-rocks", + links: { self: "/api/icons/glass-whiskey-rocks" }, + type: "icon", + }, + { + attributes: { + id: "glasses", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f530", + voted: true, + }, + id: "glasses", + links: { self: "/api/icons/glasses" }, + type: "icon", + }, + { + attributes: { + id: "glasses-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5f5", + voted: false, + }, + id: "glasses-alt", + links: { self: "/api/icons/glasses-alt" }, + type: "icon", + }, + { + attributes: { id: "glide", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2a5", voted: false }, + id: "glide", + links: { self: "/api/icons/glide" }, + type: "icon", + }, + { + attributes: { id: "glide-g", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2a6", voted: false }, + id: "glide-g", + links: { self: "/api/icons/glide-g" }, + type: "icon", + }, + { + attributes: { + id: "globe", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0ac", + voted: false, + }, + id: "globe", + links: { self: "/api/icons/globe" }, + type: "icon", + }, + { + attributes: { + id: "globe-africa", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f57c", + voted: false, + }, + id: "globe-africa", + links: { self: "/api/icons/globe-africa" }, + type: "icon", + }, + { + attributes: { + id: "globe-americas", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f57d", + voted: false, + }, + id: "globe-americas", + links: { self: "/api/icons/globe-americas" }, + type: "icon", + }, + { + attributes: { + id: "globe-asia", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f57e", + voted: false, + }, + id: "globe-asia", + links: { self: "/api/icons/globe-asia" }, + type: "icon", + }, + { + attributes: { + id: "globe-europe", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7a2", + voted: true, + }, + id: "globe-europe", + links: { self: "/api/icons/globe-europe" }, + type: "icon", + }, + { + attributes: { + id: "globe-snow", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7a3", + voted: false, + }, + id: "globe-snow", + links: { self: "/api/icons/globe-snow" }, + type: "icon", + }, + { + attributes: { + id: "globe-stand", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5f6", + voted: false, + }, + id: "globe-stand", + links: { self: "/api/icons/globe-stand" }, + type: "icon", + }, + { + attributes: { id: "gofore", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3a7", voted: false }, + id: "gofore", + links: { self: "/api/icons/gofore" }, + type: "icon", + }, + { + attributes: { + id: "golf-ball", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f450", + voted: false, + }, + id: "golf-ball", + links: { self: "/api/icons/golf-ball" }, + type: "icon", + }, + { + attributes: { + id: "golf-club", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f451", + voted: false, + }, + id: "golf-club", + links: { self: "/api/icons/golf-club" }, + type: "icon", + }, + { + attributes: { id: "goodreads", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3a8", voted: false }, + id: "goodreads", + links: { self: "/api/icons/goodreads" }, + type: "icon", + }, + { + attributes: { id: "goodreads-g", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3a9", voted: false }, + id: "goodreads-g", + links: { self: "/api/icons/goodreads-g" }, + type: "icon", + }, + { + attributes: { id: "google", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1a0", voted: false }, + id: "google", + links: { self: "/api/icons/google" }, + type: "icon", + }, + { + attributes: { + id: "google-drive", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f3aa", + voted: false, + }, + id: "google-drive", + links: { self: "/api/icons/google-drive" }, + type: "icon", + }, + { + attributes: { id: "google-play", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3ab", voted: false }, + id: "google-play", + links: { self: "/api/icons/google-play" }, + type: "icon", + }, + { + attributes: { id: "google-plus", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2b3", voted: false }, + id: "google-plus", + links: { self: "/api/icons/google-plus" }, + type: "icon", + }, + { + attributes: { + id: "google-plus-g", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f0d5", + voted: false, + }, + id: "google-plus-g", + links: { self: "/api/icons/google-plus-g" }, + type: "icon", + }, + { + attributes: { + id: "google-plus-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f0d4", + voted: false, + }, + id: "google-plus-square", + links: { self: "/api/icons/google-plus-square" }, + type: "icon", + }, + { + attributes: { + id: "google-wallet", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f1ee", + voted: false, + }, + id: "google-wallet", + links: { self: "/api/icons/google-wallet" }, + type: "icon", + }, + { + attributes: { + id: "gopuram", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f664", + voted: false, + }, + id: "gopuram", + links: { self: "/api/icons/gopuram" }, + type: "icon", + }, + { + attributes: { + id: "graduation-cap", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f19d", + voted: false, + }, + id: "graduation-cap", + links: { self: "/api/icons/graduation-cap" }, + type: "icon", + }, + { + attributes: { + id: "gramophone", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8bd", + voted: false, + }, + id: "gramophone", + links: { self: "/api/icons/gramophone" }, + type: "icon", + }, + { + attributes: { id: "gratipay", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f184", voted: false }, + id: "gratipay", + links: { self: "/api/icons/gratipay" }, + type: "icon", + }, + { + attributes: { id: "grav", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2d6", voted: false }, + id: "grav", + links: { self: "/api/icons/grav" }, + type: "icon", + }, + { + attributes: { + id: "greater-than", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f531", + voted: true, + }, + id: "greater-than", + links: { self: "/api/icons/greater-than" }, + type: "icon", + }, + { + attributes: { + id: "greater-than-equal", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f532", + voted: true, + }, + id: "greater-than-equal", + links: { self: "/api/icons/greater-than-equal" }, + type: "icon", + }, + { + attributes: { + id: "grimace", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f57f", + voted: false, + }, + id: "grimace", + links: { self: "/api/icons/grimace" }, + type: "icon", + }, + { + attributes: { + id: "grin", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f580", + voted: false, + }, + id: "grin", + links: { self: "/api/icons/grin" }, + type: "icon", + }, + { + attributes: { + id: "grin-alt", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f581", + voted: false, + }, + id: "grin-alt", + links: { self: "/api/icons/grin-alt" }, + type: "icon", + }, + { + attributes: { + id: "grin-beam", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f582", + voted: false, + }, + id: "grin-beam", + links: { self: "/api/icons/grin-beam" }, + type: "icon", + }, + { + attributes: { + id: "grin-beam-sweat", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f583", + voted: false, + }, + id: "grin-beam-sweat", + links: { self: "/api/icons/grin-beam-sweat" }, + type: "icon", + }, + { + attributes: { + id: "grin-hearts", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f584", + voted: false, + }, + id: "grin-hearts", + links: { self: "/api/icons/grin-hearts" }, + type: "icon", + }, + { + attributes: { + id: "grin-squint", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f585", + voted: false, + }, + id: "grin-squint", + links: { self: "/api/icons/grin-squint" }, + type: "icon", + }, + { + attributes: { + id: "grin-squint-tears", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f586", + voted: false, + }, + id: "grin-squint-tears", + links: { self: "/api/icons/grin-squint-tears" }, + type: "icon", + }, + { + attributes: { + id: "grin-stars", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f587", + voted: false, + }, + id: "grin-stars", + links: { self: "/api/icons/grin-stars" }, + type: "icon", + }, + { + attributes: { + id: "grin-tears", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f588", + voted: false, + }, + id: "grin-tears", + links: { self: "/api/icons/grin-tears" }, + type: "icon", + }, + { + attributes: { + id: "grin-tongue", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f589", + voted: false, + }, + id: "grin-tongue", + links: { self: "/api/icons/grin-tongue" }, + type: "icon", + }, + { + attributes: { + id: "grin-tongue-squint", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f58a", + voted: false, + }, + id: "grin-tongue-squint", + links: { self: "/api/icons/grin-tongue-squint" }, + type: "icon", + }, + { + attributes: { + id: "grin-tongue-wink", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f58b", + voted: false, + }, + id: "grin-tongue-wink", + links: { self: "/api/icons/grin-tongue-wink" }, + type: "icon", + }, + { + attributes: { + id: "grin-wink", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f58c", + voted: false, + }, + id: "grin-wink", + links: { self: "/api/icons/grin-wink" }, + type: "icon", + }, + { + attributes: { + id: "grip-horizontal", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f58d", + voted: true, + }, + id: "grip-horizontal", + links: { self: "/api/icons/grip-horizontal" }, + type: "icon", + }, + { + attributes: { + id: "grip-lines", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7a4", + voted: true, + }, + id: "grip-lines", + links: { self: "/api/icons/grip-lines" }, + type: "icon", + }, + { + attributes: { + id: "grip-lines-vertical", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7a5", + voted: true, + }, + id: "grip-lines-vertical", + links: { self: "/api/icons/grip-lines-vertical" }, + type: "icon", + }, + { + attributes: { + id: "grip-vertical", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f58e", + voted: true, + }, + id: "grip-vertical", + links: { self: "/api/icons/grip-vertical" }, + type: "icon", + }, + { + attributes: { id: "gripfire", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3ac", voted: false }, + id: "gripfire", + links: { self: "/api/icons/gripfire" }, + type: "icon", + }, + { + attributes: { id: "grunt", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3ad", voted: false }, + id: "grunt", + links: { self: "/api/icons/grunt" }, + type: "icon", + }, + { + attributes: { + id: "guitar", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7a6", + voted: true, + }, + id: "guitar", + links: { self: "/api/icons/guitar" }, + type: "icon", + }, + { + attributes: { + id: "guitar-electric", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8be", + voted: false, + }, + id: "guitar-electric", + links: { self: "/api/icons/guitar-electric" }, + type: "icon", + }, + { + attributes: { + id: "guitars", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8bf", + voted: false, + }, + id: "guitars", + links: { self: "/api/icons/guitars" }, + type: "icon", + }, + { + attributes: { id: "gulp", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3ae", voted: false }, + id: "gulp", + links: { self: "/api/icons/gulp" }, + type: "icon", + }, + { + attributes: { + id: "h-square", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0fd", + voted: false, + }, + id: "h-square", + links: { self: "/api/icons/h-square" }, + type: "icon", + }, + { + attributes: { + id: "h1", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f313", + voted: false, + }, + id: "h1", + links: { self: "/api/icons/h1" }, + type: "icon", + }, + { + attributes: { + id: "h2", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f314", + voted: false, + }, + id: "h2", + links: { self: "/api/icons/h2" }, + type: "icon", + }, + { + attributes: { + id: "h3", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f315", + voted: false, + }, + id: "h3", + links: { self: "/api/icons/h3" }, + type: "icon", + }, + { + attributes: { + id: "h4", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f86a", + voted: false, + }, + id: "h4", + links: { self: "/api/icons/h4" }, + type: "icon", + }, + { + attributes: { id: "hacker-news", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1d4", voted: false }, + id: "hacker-news", + links: { self: "/api/icons/hacker-news" }, + type: "icon", + }, + { + attributes: { + id: "hacker-news-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f3af", + voted: false, + }, + id: "hacker-news-square", + links: { self: "/api/icons/hacker-news-square" }, + type: "icon", + }, + { + attributes: { id: "hackerrank", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f5f7", voted: true }, + id: "hackerrank", + links: { self: "/api/icons/hackerrank" }, + type: "icon", + }, + { + attributes: { + id: "hamburger", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f805", + voted: false, + }, + id: "hamburger", + links: { self: "/api/icons/hamburger" }, + type: "icon", + }, + { + attributes: { + id: "hammer", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6e3", + voted: true, + }, + id: "hammer", + links: { self: "/api/icons/hammer" }, + type: "icon", + }, + { + attributes: { + id: "hammer-war", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6e4", + voted: false, + }, + id: "hammer-war", + links: { self: "/api/icons/hammer-war" }, + type: "icon", + }, + { + attributes: { + id: "hamsa", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f665", + voted: false, + }, + id: "hamsa", + links: { self: "/api/icons/hamsa" }, + type: "icon", + }, + { + attributes: { + id: "hand-heart", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4bc", + voted: false, + }, + id: "hand-heart", + links: { self: "/api/icons/hand-heart" }, + type: "icon", + }, + { + attributes: { + id: "hand-holding", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4bd", + voted: false, + }, + id: "hand-holding", + links: { self: "/api/icons/hand-holding" }, + type: "icon", + }, + { + attributes: { + id: "hand-holding-box", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f47b", + voted: false, + }, + id: "hand-holding-box", + links: { self: "/api/icons/hand-holding-box" }, + type: "icon", + }, + { + attributes: { + id: "hand-holding-heart", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4be", + voted: false, + }, + id: "hand-holding-heart", + links: { self: "/api/icons/hand-holding-heart" }, + type: "icon", + }, + { + attributes: { + id: "hand-holding-magic", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6e5", + voted: false, + }, + id: "hand-holding-magic", + links: { self: "/api/icons/hand-holding-magic" }, + type: "icon", + }, + { + attributes: { + id: "hand-holding-medical", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f95c", + voted: false, + }, + id: "hand-holding-medical", + links: { self: "/api/icons/hand-holding-medical" }, + type: "icon", + }, + { + attributes: { + id: "hand-holding-seedling", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4bf", + voted: false, + }, + id: "hand-holding-seedling", + links: { self: "/api/icons/hand-holding-seedling" }, + type: "icon", + }, + { + attributes: { + id: "hand-holding-usd", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4c0", + voted: false, + }, + id: "hand-holding-usd", + links: { self: "/api/icons/hand-holding-usd" }, + type: "icon", + }, + { + attributes: { + id: "hand-holding-water", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4c1", + voted: false, + }, + id: "hand-holding-water", + links: { self: "/api/icons/hand-holding-water" }, + type: "icon", + }, + { + attributes: { + id: "hand-lizard", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f258", + voted: false, + }, + id: "hand-lizard", + links: { self: "/api/icons/hand-lizard" }, + type: "icon", + }, + { + attributes: { + id: "hand-middle-finger", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f806", + voted: true, + }, + id: "hand-middle-finger", + links: { self: "/api/icons/hand-middle-finger" }, + type: "icon", + }, + { + attributes: { + id: "hand-paper", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f256", + voted: false, + }, + id: "hand-paper", + links: { self: "/api/icons/hand-paper" }, + type: "icon", + }, + { + attributes: { + id: "hand-peace", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f25b", + voted: false, + }, + id: "hand-peace", + links: { self: "/api/icons/hand-peace" }, + type: "icon", + }, + { + attributes: { + id: "hand-point-down", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0a7", + voted: false, + }, + id: "hand-point-down", + links: { self: "/api/icons/hand-point-down" }, + type: "icon", + }, + { + attributes: { + id: "hand-point-left", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0a5", + voted: false, + }, + id: "hand-point-left", + links: { self: "/api/icons/hand-point-left" }, + type: "icon", + }, + { + attributes: { + id: "hand-point-right", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0a4", + voted: false, + }, + id: "hand-point-right", + links: { self: "/api/icons/hand-point-right" }, + type: "icon", + }, + { + attributes: { + id: "hand-point-up", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0a6", + voted: false, + }, + id: "hand-point-up", + links: { self: "/api/icons/hand-point-up" }, + type: "icon", + }, + { + attributes: { + id: "hand-pointer", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f25a", + voted: false, + }, + id: "hand-pointer", + links: { self: "/api/icons/hand-pointer" }, + type: "icon", + }, + { + attributes: { + id: "hand-receiving", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f47c", + voted: false, + }, + id: "hand-receiving", + links: { self: "/api/icons/hand-receiving" }, + type: "icon", + }, + { + attributes: { + id: "hand-rock", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f255", + voted: false, + }, + id: "hand-rock", + links: { self: "/api/icons/hand-rock" }, + type: "icon", + }, + { + attributes: { + id: "hand-scissors", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f257", + voted: false, + }, + id: "hand-scissors", + links: { self: "/api/icons/hand-scissors" }, + type: "icon", + }, + { + attributes: { + id: "hand-sparkles", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f95d", + voted: false, + }, + id: "hand-sparkles", + links: { self: "/api/icons/hand-sparkles" }, + type: "icon", + }, + { + attributes: { + id: "hand-spock", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f259", + voted: false, + }, + id: "hand-spock", + links: { self: "/api/icons/hand-spock" }, + type: "icon", + }, + { + attributes: { + id: "hands", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4c2", + voted: false, + }, + id: "hands", + links: { self: "/api/icons/hands" }, + type: "icon", + }, + { + attributes: { + id: "hands-heart", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4c3", + voted: false, + }, + id: "hands-heart", + links: { self: "/api/icons/hands-heart" }, + type: "icon", + }, + { + attributes: { + id: "hands-helping", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4c4", + voted: false, + }, + id: "hands-helping", + links: { self: "/api/icons/hands-helping" }, + type: "icon", + }, + { + attributes: { + id: "hands-usd", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4c5", + voted: false, + }, + id: "hands-usd", + links: { self: "/api/icons/hands-usd" }, + type: "icon", + }, + { + attributes: { + id: "hands-wash", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f95e", + voted: false, + }, + id: "hands-wash", + links: { self: "/api/icons/hands-wash" }, + type: "icon", + }, + { + attributes: { + id: "handshake", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2b5", + voted: false, + }, + id: "handshake", + links: { self: "/api/icons/handshake" }, + type: "icon", + }, + { + attributes: { + id: "handshake-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4c6", + voted: false, + }, + id: "handshake-alt", + links: { self: "/api/icons/handshake-alt" }, + type: "icon", + }, + { + attributes: { + id: "handshake-alt-slash", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f95f", + voted: false, + }, + id: "handshake-alt-slash", + links: { self: "/api/icons/handshake-alt-slash" }, + type: "icon", + }, + { + attributes: { + id: "handshake-slash", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f960", + voted: false, + }, + id: "handshake-slash", + links: { self: "/api/icons/handshake-slash" }, + type: "icon", + }, + { + attributes: { + id: "hanukiah", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6e6", + voted: false, + }, + id: "hanukiah", + links: { self: "/api/icons/hanukiah" }, + type: "icon", + }, + { + attributes: { + id: "hard-hat", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f807", + voted: true, + }, + id: "hard-hat", + links: { self: "/api/icons/hard-hat" }, + type: "icon", + }, + { + attributes: { + id: "hashtag", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f292", + voted: false, + }, + id: "hashtag", + links: { self: "/api/icons/hashtag" }, + type: "icon", + }, + { + attributes: { + id: "hat-chef", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f86b", + voted: true, + }, + id: "hat-chef", + links: { self: "/api/icons/hat-chef" }, + type: "icon", + }, + { + attributes: { + id: "hat-cowboy", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f8c0", + voted: false, + }, + id: "hat-cowboy", + links: { self: "/api/icons/hat-cowboy" }, + type: "icon", + }, + { + attributes: { + id: "hat-cowboy-side", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f8c1", + voted: false, + }, + id: "hat-cowboy-side", + links: { self: "/api/icons/hat-cowboy-side" }, + type: "icon", + }, + { + attributes: { + id: "hat-santa", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7a7", + voted: false, + }, + id: "hat-santa", + links: { self: "/api/icons/hat-santa" }, + type: "icon", + }, + { + attributes: { + id: "hat-winter", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7a8", + voted: false, + }, + id: "hat-winter", + links: { self: "/api/icons/hat-winter" }, + type: "icon", + }, + { + attributes: { + id: "hat-witch", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6e7", + voted: false, + }, + id: "hat-witch", + links: { self: "/api/icons/hat-witch" }, + type: "icon", + }, + { + attributes: { + id: "hat-wizard", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6e8", + voted: false, + }, + id: "hat-wizard", + links: { self: "/api/icons/hat-wizard" }, + type: "icon", + }, + { + attributes: { + id: "hdd", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0a0", + voted: false, + }, + id: "hdd", + links: { self: "/api/icons/hdd" }, + type: "icon", + }, + { + attributes: { + id: "head-side", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6e9", + voted: false, + }, + id: "head-side", + links: { self: "/api/icons/head-side" }, + type: "icon", + }, + { + attributes: { + id: "head-side-brain", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f808", + voted: false, + }, + id: "head-side-brain", + links: { self: "/api/icons/head-side-brain" }, + type: "icon", + }, + { + attributes: { + id: "head-side-cough", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f961", + voted: false, + }, + id: "head-side-cough", + links: { self: "/api/icons/head-side-cough" }, + type: "icon", + }, + { + attributes: { + id: "head-side-cough-slash", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f962", + voted: false, + }, + id: "head-side-cough-slash", + links: { self: "/api/icons/head-side-cough-slash" }, + type: "icon", + }, + { + attributes: { + id: "head-side-headphones", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8c2", + voted: false, + }, + id: "head-side-headphones", + links: { self: "/api/icons/head-side-headphones" }, + type: "icon", + }, + { + attributes: { + id: "head-side-mask", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f963", + voted: false, + }, + id: "head-side-mask", + links: { self: "/api/icons/head-side-mask" }, + type: "icon", + }, + { + attributes: { + id: "head-side-medical", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f809", + voted: false, + }, + id: "head-side-medical", + links: { self: "/api/icons/head-side-medical" }, + type: "icon", + }, + { + attributes: { + id: "head-side-virus", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f964", + voted: false, + }, + id: "head-side-virus", + links: { self: "/api/icons/head-side-virus" }, + type: "icon", + }, + { + attributes: { + id: "head-vr", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6ea", + voted: true, + }, + id: "head-vr", + links: { self: "/api/icons/head-vr" }, + type: "icon", + }, + { + attributes: { + id: "heading", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1dc", + voted: false, + }, + id: "heading", + links: { self: "/api/icons/heading" }, + type: "icon", + }, + { + attributes: { + id: "headphones", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f025", + voted: false, + }, + id: "headphones", + links: { self: "/api/icons/headphones" }, + type: "icon", + }, + { + attributes: { + id: "headphones-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f58f", + voted: true, + }, + id: "headphones-alt", + links: { self: "/api/icons/headphones-alt" }, + type: "icon", + }, + { + attributes: { + id: "headset", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f590", + voted: true, + }, + id: "headset", + links: { self: "/api/icons/headset" }, + type: "icon", + }, + { + attributes: { + id: "heart", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f004", + voted: false, + }, + id: "heart", + links: { self: "/api/icons/heart" }, + type: "icon", + }, + { + attributes: { + id: "heart-broken", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7a9", + voted: true, + }, + id: "heart-broken", + links: { self: "/api/icons/heart-broken" }, + type: "icon", + }, + { + attributes: { + id: "heart-circle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4c7", + voted: false, + }, + id: "heart-circle", + links: { self: "/api/icons/heart-circle" }, + type: "icon", + }, + { + attributes: { + id: "heart-rate", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5f8", + voted: false, + }, + id: "heart-rate", + links: { self: "/api/icons/heart-rate" }, + type: "icon", + }, + { + attributes: { + id: "heart-square", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4c8", + voted: false, + }, + id: "heart-square", + links: { self: "/api/icons/heart-square" }, + type: "icon", + }, + { + attributes: { + id: "heartbeat", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f21e", + voted: false, + }, + id: "heartbeat", + links: { self: "/api/icons/heartbeat" }, + type: "icon", + }, + { + attributes: { + id: "heat", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f90c", + voted: false, + }, + id: "heat", + links: { self: "/api/icons/heat" }, + type: "icon", + }, + { + attributes: { + id: "helicopter", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f533", + voted: true, + }, + id: "helicopter", + links: { self: "/api/icons/helicopter" }, + type: "icon", + }, + { + attributes: { + id: "helmet-battle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6eb", + voted: false, + }, + id: "helmet-battle", + links: { self: "/api/icons/helmet-battle" }, + type: "icon", + }, + { + attributes: { + id: "hexagon", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f312", + voted: false, + }, + id: "hexagon", + links: { self: "/api/icons/hexagon" }, + type: "icon", + }, + { + attributes: { + id: "highlighter", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f591", + voted: true, + }, + id: "highlighter", + links: { self: "/api/icons/highlighter" }, + type: "icon", + }, + { + attributes: { + id: "hiking", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6ec", + voted: false, + }, + id: "hiking", + links: { self: "/api/icons/hiking" }, + type: "icon", + }, + { + attributes: { + id: "hippo", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6ed", + voted: false, + }, + id: "hippo", + links: { self: "/api/icons/hippo" }, + type: "icon", + }, + { + attributes: { id: "hips", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f452", voted: false }, + id: "hips", + links: { self: "/api/icons/hips" }, + type: "icon", + }, + { + attributes: { + id: "hire-a-helper", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f3b0", + voted: false, + }, + id: "hire-a-helper", + links: { self: "/api/icons/hire-a-helper" }, + type: "icon", + }, + { + attributes: { + id: "history", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1da", + voted: false, + }, + id: "history", + links: { self: "/api/icons/history" }, + type: "icon", + }, + { + attributes: { + id: "hockey-mask", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6ee", + voted: false, + }, + id: "hockey-mask", + links: { self: "/api/icons/hockey-mask" }, + type: "icon", + }, + { + attributes: { + id: "hockey-puck", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f453", + voted: false, + }, + id: "hockey-puck", + links: { self: "/api/icons/hockey-puck" }, + type: "icon", + }, + { + attributes: { + id: "hockey-sticks", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f454", + voted: false, + }, + id: "hockey-sticks", + links: { self: "/api/icons/hockey-sticks" }, + type: "icon", + }, + { + attributes: { + id: "holly-berry", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7aa", + voted: false, + }, + id: "holly-berry", + links: { self: "/api/icons/holly-berry" }, + type: "icon", + }, + { + attributes: { + id: "home", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f015", + voted: false, + }, + id: "home", + links: { self: "/api/icons/home" }, + type: "icon", + }, + { + attributes: { + id: "home-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f80a", + voted: false, + }, + id: "home-alt", + links: { self: "/api/icons/home-alt" }, + type: "icon", + }, + { + attributes: { + id: "home-heart", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4c9", + voted: false, + }, + id: "home-heart", + links: { self: "/api/icons/home-heart" }, + type: "icon", + }, + { + attributes: { + id: "home-lg", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f80b", + voted: false, + }, + id: "home-lg", + links: { self: "/api/icons/home-lg" }, + type: "icon", + }, + { + attributes: { + id: "home-lg-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f80c", + voted: false, + }, + id: "home-lg-alt", + links: { self: "/api/icons/home-lg-alt" }, + type: "icon", + }, + { + attributes: { + id: "hood-cloak", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6ef", + voted: false, + }, + id: "hood-cloak", + links: { self: "/api/icons/hood-cloak" }, + type: "icon", + }, + { + attributes: { id: "hooli", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f427", voted: false }, + id: "hooli", + links: { self: "/api/icons/hooli" }, + type: "icon", + }, + { + attributes: { + id: "horizontal-rule", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f86c", + voted: false, + }, + id: "horizontal-rule", + links: { self: "/api/icons/horizontal-rule" }, + type: "icon", + }, + { + attributes: { id: "hornbill", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f592", voted: false }, + id: "hornbill", + links: { self: "/api/icons/hornbill" }, + type: "icon", + }, + { + attributes: { + id: "horse", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6f0", + voted: false, + }, + id: "horse", + links: { self: "/api/icons/horse" }, + type: "icon", + }, + { + attributes: { + id: "horse-head", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7ab", + voted: false, + }, + id: "horse-head", + links: { self: "/api/icons/horse-head" }, + type: "icon", + }, + { + attributes: { + id: "horse-saddle", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f8c3", + voted: false, + }, + id: "horse-saddle", + links: { self: "/api/icons/horse-saddle" }, + type: "icon", + }, + { + attributes: { + id: "hospital", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0f8", + voted: false, + }, + id: "hospital", + links: { self: "/api/icons/hospital" }, + type: "icon", + }, + { + attributes: { + id: "hospital-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f47d", + voted: false, + }, + id: "hospital-alt", + links: { self: "/api/icons/hospital-alt" }, + type: "icon", + }, + { + attributes: { + id: "hospital-symbol", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f47e", + voted: false, + }, + id: "hospital-symbol", + links: { self: "/api/icons/hospital-symbol" }, + type: "icon", + }, + { + attributes: { + id: "hospital-user", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f80d", + voted: false, + }, + id: "hospital-user", + links: { self: "/api/icons/hospital-user" }, + type: "icon", + }, + { + attributes: { + id: "hospitals", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f80e", + voted: false, + }, + id: "hospitals", + links: { self: "/api/icons/hospitals" }, + type: "icon", + }, + { + attributes: { + id: "hot-tub", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f593", + voted: false, + }, + id: "hot-tub", + links: { self: "/api/icons/hot-tub" }, + type: "icon", + }, + { + attributes: { + id: "hotdog", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f80f", + voted: false, + }, + id: "hotdog", + links: { self: "/api/icons/hotdog" }, + type: "icon", + }, + { + attributes: { + id: "hotel", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f594", + voted: false, + }, + id: "hotel", + links: { self: "/api/icons/hotel" }, + type: "icon", + }, + { + attributes: { id: "hotjar", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3b1", voted: false }, + id: "hotjar", + links: { self: "/api/icons/hotjar" }, + type: "icon", + }, + { + attributes: { + id: "hourglass", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f254", + voted: false, + }, + id: "hourglass", + links: { self: "/api/icons/hourglass" }, + type: "icon", + }, + { + attributes: { + id: "hourglass-end", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f253", + voted: false, + }, + id: "hourglass-end", + links: { self: "/api/icons/hourglass-end" }, + type: "icon", + }, + { + attributes: { + id: "hourglass-half", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f252", + voted: false, + }, + id: "hourglass-half", + links: { self: "/api/icons/hourglass-half" }, + type: "icon", + }, + { + attributes: { + id: "hourglass-start", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f251", + voted: false, + }, + id: "hourglass-start", + links: { self: "/api/icons/hourglass-start" }, + type: "icon", + }, + { + attributes: { + id: "house", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f90d", + voted: false, + }, + id: "house", + links: { self: "/api/icons/house" }, + type: "icon", + }, + { + attributes: { + id: "house-damage", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6f1", + voted: false, + }, + id: "house-damage", + links: { self: "/api/icons/house-damage" }, + type: "icon", + }, + { + attributes: { + id: "house-day", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f90e", + voted: false, + }, + id: "house-day", + links: { self: "/api/icons/house-day" }, + type: "icon", + }, + { + attributes: { + id: "house-flood", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f74f", + voted: false, + }, + id: "house-flood", + links: { self: "/api/icons/house-flood" }, + type: "icon", + }, + { + attributes: { + id: "house-leave", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f90f", + voted: false, + }, + id: "house-leave", + links: { self: "/api/icons/house-leave" }, + type: "icon", + }, + { + attributes: { + id: "house-night", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f910", + voted: false, + }, + id: "house-night", + links: { self: "/api/icons/house-night" }, + type: "icon", + }, + { + attributes: { + id: "house-return", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f911", + voted: false, + }, + id: "house-return", + links: { self: "/api/icons/house-return" }, + type: "icon", + }, + { + attributes: { + id: "house-signal", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f912", + voted: false, + }, + id: "house-signal", + links: { self: "/api/icons/house-signal" }, + type: "icon", + }, + { + attributes: { + id: "house-user", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f965", + voted: false, + }, + id: "house-user", + links: { self: "/api/icons/house-user" }, + type: "icon", + }, + { + attributes: { id: "houzz", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f27c", voted: false }, + id: "houzz", + links: { self: "/api/icons/houzz" }, + type: "icon", + }, + { + attributes: { + id: "hryvnia", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6f2", + voted: true, + }, + id: "hryvnia", + links: { self: "/api/icons/hryvnia" }, + type: "icon", + }, + { + attributes: { id: "html5", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f13b", voted: false }, + id: "html5", + links: { self: "/api/icons/html5" }, + type: "icon", + }, + { + attributes: { id: "hubspot", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3b2", voted: false }, + id: "hubspot", + links: { self: "/api/icons/hubspot" }, + type: "icon", + }, + { + attributes: { + id: "humidity", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f750", + voted: false, + }, + id: "humidity", + links: { self: "/api/icons/humidity" }, + type: "icon", + }, + { + attributes: { + id: "hurricane", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f751", + voted: false, + }, + id: "hurricane", + links: { self: "/api/icons/hurricane" }, + type: "icon", + }, + { + attributes: { + id: "i-cursor", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f246", + voted: false, + }, + id: "i-cursor", + links: { self: "/api/icons/i-cursor" }, + type: "icon", + }, + { + attributes: { + id: "ice-cream", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f810", + voted: false, + }, + id: "ice-cream", + links: { self: "/api/icons/ice-cream" }, + type: "icon", + }, + { + attributes: { + id: "ice-skate", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7ac", + voted: false, + }, + id: "ice-skate", + links: { self: "/api/icons/ice-skate" }, + type: "icon", + }, + { + attributes: { + id: "icicles", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7ad", + voted: false, + }, + id: "icicles", + links: { self: "/api/icons/icicles" }, + type: "icon", + }, + { + attributes: { + id: "icons", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f86d", + voted: false, + }, + id: "icons", + links: { self: "/api/icons/icons" }, + type: "icon", + }, + { + attributes: { + id: "icons-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f86e", + voted: false, + }, + id: "icons-alt", + links: { self: "/api/icons/icons-alt" }, + type: "icon", + }, + { + attributes: { + id: "id-badge", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2c1", + voted: false, + }, + id: "id-badge", + links: { self: "/api/icons/id-badge" }, + type: "icon", + }, + { + attributes: { + id: "id-card", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2c2", + voted: false, + }, + id: "id-card", + links: { self: "/api/icons/id-card" }, + type: "icon", + }, + { + attributes: { + id: "id-card-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f47f", + voted: false, + }, + id: "id-card-alt", + links: { self: "/api/icons/id-card-alt" }, + type: "icon", + }, + { + attributes: { id: "ideal", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f913", voted: true }, + id: "ideal", + links: { self: "/api/icons/ideal" }, + type: "icon", + }, + { + attributes: { + id: "igloo", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7ae", + voted: false, + }, + id: "igloo", + links: { self: "/api/icons/igloo" }, + type: "icon", + }, + { + attributes: { + id: "image", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f03e", + voted: false, + }, + id: "image", + links: { self: "/api/icons/image" }, + type: "icon", + }, + { + attributes: { + id: "image-polaroid", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8c4", + voted: false, + }, + id: "image-polaroid", + links: { self: "/api/icons/image-polaroid" }, + type: "icon", + }, + { + attributes: { + id: "images", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f302", + voted: false, + }, + id: "images", + links: { self: "/api/icons/images" }, + type: "icon", + }, + { + attributes: { id: "imdb", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2d8", voted: false }, + id: "imdb", + links: { self: "/api/icons/imdb" }, + type: "icon", + }, + { + attributes: { + id: "inbox", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f01c", + voted: false, + }, + id: "inbox", + links: { self: "/api/icons/inbox" }, + type: "icon", + }, + { + attributes: { + id: "inbox-in", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f310", + voted: false, + }, + id: "inbox-in", + links: { self: "/api/icons/inbox-in" }, + type: "icon", + }, + { + attributes: { + id: "inbox-out", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f311", + voted: false, + }, + id: "inbox-out", + links: { self: "/api/icons/inbox-out" }, + type: "icon", + }, + { + attributes: { + id: "indent", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f03c", + voted: false, + }, + id: "indent", + links: { self: "/api/icons/indent" }, + type: "icon", + }, + { + attributes: { + id: "industry", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f275", + voted: false, + }, + id: "industry", + links: { self: "/api/icons/industry" }, + type: "icon", + }, + { + attributes: { + id: "industry-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3b3", + voted: false, + }, + id: "industry-alt", + links: { self: "/api/icons/industry-alt" }, + type: "icon", + }, + { + attributes: { + id: "infinity", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f534", + voted: true, + }, + id: "infinity", + links: { self: "/api/icons/infinity" }, + type: "icon", + }, + { + attributes: { + id: "info", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f129", + voted: false, + }, + id: "info", + links: { self: "/api/icons/info" }, + type: "icon", + }, + { + attributes: { + id: "info-circle", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f05a", + voted: false, + }, + id: "info-circle", + links: { self: "/api/icons/info-circle" }, + type: "icon", + }, + { + attributes: { + id: "info-square", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f30f", + voted: false, + }, + id: "info-square", + links: { self: "/api/icons/info-square" }, + type: "icon", + }, + { + attributes: { + id: "inhaler", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5f9", + voted: false, + }, + id: "inhaler", + links: { self: "/api/icons/inhaler" }, + type: "icon", + }, + { + attributes: { id: "instagram", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f16d", voted: false }, + id: "instagram", + links: { self: "/api/icons/instagram" }, + type: "icon", + }, + { + attributes: { + id: "instagram-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f955", + voted: true, + }, + id: "instagram-square", + links: { self: "/api/icons/instagram-square" }, + type: "icon", + }, + { + attributes: { + id: "integral", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f667", + voted: false, + }, + id: "integral", + links: { self: "/api/icons/integral" }, + type: "icon", + }, + { + attributes: { id: "intercom", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f7af", voted: false }, + id: "intercom", + links: { self: "/api/icons/intercom" }, + type: "icon", + }, + { + attributes: { + id: "internet-explorer", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f26b", + voted: false, + }, + id: "internet-explorer", + links: { self: "/api/icons/internet-explorer" }, + type: "icon", + }, + { + attributes: { + id: "intersection", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f668", + voted: false, + }, + id: "intersection", + links: { self: "/api/icons/intersection" }, + type: "icon", + }, + { + attributes: { + id: "inventory", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f480", + voted: false, + }, + id: "inventory", + links: { self: "/api/icons/inventory" }, + type: "icon", + }, + { + attributes: { id: "invision", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f7b0", voted: false }, + id: "invision", + links: { self: "/api/icons/invision" }, + type: "icon", + }, + { + attributes: { id: "ioxhost", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f208", voted: false }, + id: "ioxhost", + links: { self: "/api/icons/ioxhost" }, + type: "icon", + }, + { + attributes: { + id: "island-tropical", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f811", + voted: true, + }, + id: "island-tropical", + links: { self: "/api/icons/island-tropical" }, + type: "icon", + }, + { + attributes: { + id: "italic", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f033", + voted: false, + }, + id: "italic", + links: { self: "/api/icons/italic" }, + type: "icon", + }, + { + attributes: { id: "itch-io", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f83a", voted: false }, + id: "itch-io", + links: { self: "/api/icons/itch-io" }, + type: "icon", + }, + { + attributes: { id: "itunes", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3b4", voted: false }, + id: "itunes", + links: { self: "/api/icons/itunes" }, + type: "icon", + }, + { + attributes: { id: "itunes-note", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3b5", voted: false }, + id: "itunes-note", + links: { self: "/api/icons/itunes-note" }, + type: "icon", + }, + { + attributes: { + id: "jack-o-lantern", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f30e", + voted: false, + }, + id: "jack-o-lantern", + links: { self: "/api/icons/jack-o-lantern" }, + type: "icon", + }, + { + attributes: { id: "java", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f4e4", voted: false }, + id: "java", + links: { self: "/api/icons/java" }, + type: "icon", + }, + { + attributes: { + id: "jedi", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f669", + voted: false, + }, + id: "jedi", + links: { self: "/api/icons/jedi" }, + type: "icon", + }, + { + attributes: { id: "jedi-order", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f50e", voted: false }, + id: "jedi-order", + links: { self: "/api/icons/jedi-order" }, + type: "icon", + }, + { + attributes: { id: "jenkins", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3b6", voted: false }, + id: "jenkins", + links: { self: "/api/icons/jenkins" }, + type: "icon", + }, + { + attributes: { id: "jira", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f7b1", voted: true }, + id: "jira", + links: { self: "/api/icons/jira" }, + type: "icon", + }, + { + attributes: { id: "joget", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3b7", voted: false }, + id: "joget", + links: { self: "/api/icons/joget" }, + type: "icon", + }, + { + attributes: { + id: "joint", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f595", + voted: false, + }, + id: "joint", + links: { self: "/api/icons/joint" }, + type: "icon", + }, + { + attributes: { id: "joomla", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1aa", voted: false }, + id: "joomla", + links: { self: "/api/icons/joomla" }, + type: "icon", + }, + { + attributes: { + id: "journal-whills", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f66a", + voted: false, + }, + id: "journal-whills", + links: { self: "/api/icons/journal-whills" }, + type: "icon", + }, + { + attributes: { + id: "joystick", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8c5", + voted: false, + }, + id: "joystick", + links: { self: "/api/icons/joystick" }, + type: "icon", + }, + { + attributes: { id: "js", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3b8", voted: false }, + id: "js", + links: { self: "/api/icons/js" }, + type: "icon", + }, + { + attributes: { id: "js-square", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3b9", voted: false }, + id: "js-square", + links: { self: "/api/icons/js-square" }, + type: "icon", + }, + { + attributes: { id: "jsfiddle", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1cc", voted: false }, + id: "jsfiddle", + links: { self: "/api/icons/jsfiddle" }, + type: "icon", + }, + { + attributes: { + id: "jug", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f8c6", + voted: false, + }, + id: "jug", + links: { self: "/api/icons/jug" }, + type: "icon", + }, + { + attributes: { + id: "kaaba", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f66b", + voted: false, + }, + id: "kaaba", + links: { self: "/api/icons/kaaba" }, + type: "icon", + }, + { + attributes: { id: "kaggle", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f5fa", voted: true }, + id: "kaggle", + links: { self: "/api/icons/kaggle" }, + type: "icon", + }, + { + attributes: { + id: "kazoo", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8c7", + voted: false, + }, + id: "kazoo", + links: { self: "/api/icons/kazoo" }, + type: "icon", + }, + { + attributes: { + id: "kerning", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f86f", + voted: false, + }, + id: "kerning", + links: { self: "/api/icons/kerning" }, + type: "icon", + }, + { + attributes: { + id: "key", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f084", + voted: false, + }, + id: "key", + links: { self: "/api/icons/key" }, + type: "icon", + }, + { + attributes: { + id: "key-skeleton", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6f3", + voted: false, + }, + id: "key-skeleton", + links: { self: "/api/icons/key-skeleton" }, + type: "icon", + }, + { + attributes: { id: "keybase", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f4f5", voted: true }, + id: "keybase", + links: { self: "/api/icons/keybase" }, + type: "icon", + }, + { + attributes: { + id: "keyboard", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f11c", + voted: false, + }, + id: "keyboard", + links: { self: "/api/icons/keyboard" }, + type: "icon", + }, + { + attributes: { id: "keycdn", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3ba", voted: false }, + id: "keycdn", + links: { self: "/api/icons/keycdn" }, + type: "icon", + }, + { + attributes: { + id: "keynote", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f66c", + voted: false, + }, + id: "keynote", + links: { self: "/api/icons/keynote" }, + type: "icon", + }, + { + attributes: { + id: "khanda", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f66d", + voted: false, + }, + id: "khanda", + links: { self: "/api/icons/khanda" }, + type: "icon", + }, + { + attributes: { id: "kickstarter", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3bb", voted: false }, + id: "kickstarter", + links: { self: "/api/icons/kickstarter" }, + type: "icon", + }, + { + attributes: { + id: "kickstarter-k", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f3bc", + voted: false, + }, + id: "kickstarter-k", + links: { self: "/api/icons/kickstarter-k" }, + type: "icon", + }, + { + attributes: { + id: "kidneys", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5fb", + voted: false, + }, + id: "kidneys", + links: { self: "/api/icons/kidneys" }, + type: "icon", + }, + { + attributes: { + id: "kiss", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f596", + voted: false, + }, + id: "kiss", + links: { self: "/api/icons/kiss" }, + type: "icon", + }, + { + attributes: { + id: "kiss-beam", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f597", + voted: false, + }, + id: "kiss-beam", + links: { self: "/api/icons/kiss-beam" }, + type: "icon", + }, + { + attributes: { + id: "kiss-wink-heart", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f598", + voted: false, + }, + id: "kiss-wink-heart", + links: { self: "/api/icons/kiss-wink-heart" }, + type: "icon", + }, + { + attributes: { + id: "kite", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6f4", + voted: false, + }, + id: "kite", + links: { self: "/api/icons/kite" }, + type: "icon", + }, + { + attributes: { + id: "kiwi-bird", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f535", + voted: false, + }, + id: "kiwi-bird", + links: { self: "/api/icons/kiwi-bird" }, + type: "icon", + }, + { + attributes: { + id: "knife-kitchen", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6f5", + voted: false, + }, + id: "knife-kitchen", + links: { self: "/api/icons/knife-kitchen" }, + type: "icon", + }, + { + attributes: { id: "korvue", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f42f", voted: false }, + id: "korvue", + links: { self: "/api/icons/korvue" }, + type: "icon", + }, + { + attributes: { + id: "lambda", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f66e", + voted: false, + }, + id: "lambda", + links: { self: "/api/icons/lambda" }, + type: "icon", + }, + { + attributes: { + id: "lamp", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4ca", + voted: false, + }, + id: "lamp", + links: { self: "/api/icons/lamp" }, + type: "icon", + }, + { + attributes: { + id: "lamp-desk", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f914", + voted: false, + }, + id: "lamp-desk", + links: { self: "/api/icons/lamp-desk" }, + type: "icon", + }, + { + attributes: { + id: "lamp-floor", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f915", + voted: false, + }, + id: "lamp-floor", + links: { self: "/api/icons/lamp-floor" }, + type: "icon", + }, + { + attributes: { + id: "landmark", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f66f", + voted: false, + }, + id: "landmark", + links: { self: "/api/icons/landmark" }, + type: "icon", + }, + { + attributes: { + id: "landmark-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f752", + voted: false, + }, + id: "landmark-alt", + links: { self: "/api/icons/landmark-alt" }, + type: "icon", + }, + { + attributes: { + id: "language", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1ab", + voted: false, + }, + id: "language", + links: { self: "/api/icons/language" }, + type: "icon", + }, + { + attributes: { + id: "laptop", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f109", + voted: false, + }, + id: "laptop", + links: { self: "/api/icons/laptop" }, + type: "icon", + }, + { + attributes: { + id: "laptop-code", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5fc", + voted: false, + }, + id: "laptop-code", + links: { self: "/api/icons/laptop-code" }, + type: "icon", + }, + { + attributes: { + id: "laptop-house", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f966", + voted: false, + }, + id: "laptop-house", + links: { self: "/api/icons/laptop-house" }, + type: "icon", + }, + { + attributes: { + id: "laptop-medical", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f812", + voted: false, + }, + id: "laptop-medical", + links: { self: "/api/icons/laptop-medical" }, + type: "icon", + }, + { + attributes: { id: "laravel", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3bd", voted: false }, + id: "laravel", + links: { self: "/api/icons/laravel" }, + type: "icon", + }, + { + attributes: { + id: "lasso", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f8c8", + voted: false, + }, + id: "lasso", + links: { self: "/api/icons/lasso" }, + type: "icon", + }, + { + attributes: { id: "lastfm", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f202", voted: false }, + id: "lastfm", + links: { self: "/api/icons/lastfm" }, + type: "icon", + }, + { + attributes: { + id: "lastfm-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f203", + voted: false, + }, + id: "lastfm-square", + links: { self: "/api/icons/lastfm-square" }, + type: "icon", + }, + { + attributes: { + id: "laugh", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f599", + voted: false, + }, + id: "laugh", + links: { self: "/api/icons/laugh" }, + type: "icon", + }, + { + attributes: { + id: "laugh-beam", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f59a", + voted: false, + }, + id: "laugh-beam", + links: { self: "/api/icons/laugh-beam" }, + type: "icon", + }, + { + attributes: { + id: "laugh-squint", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f59b", + voted: false, + }, + id: "laugh-squint", + links: { self: "/api/icons/laugh-squint" }, + type: "icon", + }, + { + attributes: { + id: "laugh-wink", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f59c", + voted: false, + }, + id: "laugh-wink", + links: { self: "/api/icons/laugh-wink" }, + type: "icon", + }, + { + attributes: { + id: "layer-group", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5fd", + voted: false, + }, + id: "layer-group", + links: { self: "/api/icons/layer-group" }, + type: "icon", + }, + { + attributes: { + id: "layer-minus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5fe", + voted: false, + }, + id: "layer-minus", + links: { self: "/api/icons/layer-minus" }, + type: "icon", + }, + { + attributes: { + id: "layer-plus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5ff", + voted: false, + }, + id: "layer-plus", + links: { self: "/api/icons/layer-plus" }, + type: "icon", + }, + { + attributes: { + id: "leaf", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f06c", + voted: false, + }, + id: "leaf", + links: { self: "/api/icons/leaf" }, + type: "icon", + }, + { + attributes: { + id: "leaf-heart", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4cb", + voted: false, + }, + id: "leaf-heart", + links: { self: "/api/icons/leaf-heart" }, + type: "icon", + }, + { + attributes: { + id: "leaf-maple", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6f6", + voted: false, + }, + id: "leaf-maple", + links: { self: "/api/icons/leaf-maple" }, + type: "icon", + }, + { + attributes: { + id: "leaf-oak", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6f7", + voted: false, + }, + id: "leaf-oak", + links: { self: "/api/icons/leaf-oak" }, + type: "icon", + }, + { + attributes: { id: "leanpub", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f212", voted: false }, + id: "leanpub", + links: { self: "/api/icons/leanpub" }, + type: "icon", + }, + { + attributes: { + id: "lemon", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f094", + voted: false, + }, + id: "lemon", + links: { self: "/api/icons/lemon" }, + type: "icon", + }, + { + attributes: { id: "less", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f41d", voted: false }, + id: "less", + links: { self: "/api/icons/less" }, + type: "icon", + }, + { + attributes: { + id: "less-than", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f536", + voted: true, + }, + id: "less-than", + links: { self: "/api/icons/less-than" }, + type: "icon", + }, + { + attributes: { + id: "less-than-equal", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f537", + voted: true, + }, + id: "less-than-equal", + links: { self: "/api/icons/less-than-equal" }, + type: "icon", + }, + { + attributes: { + id: "level-down", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f149", + voted: false, + }, + id: "level-down", + links: { self: "/api/icons/level-down" }, + type: "icon", + }, + { + attributes: { + id: "level-down-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3be", + voted: false, + }, + id: "level-down-alt", + links: { self: "/api/icons/level-down-alt" }, + type: "icon", + }, + { + attributes: { + id: "level-up", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f148", + voted: false, + }, + id: "level-up", + links: { self: "/api/icons/level-up" }, + type: "icon", + }, + { + attributes: { + id: "level-up-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3bf", + voted: false, + }, + id: "level-up-alt", + links: { self: "/api/icons/level-up-alt" }, + type: "icon", + }, + { + attributes: { + id: "life-ring", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1cd", + voted: false, + }, + id: "life-ring", + links: { self: "/api/icons/life-ring" }, + type: "icon", + }, + { + attributes: { + id: "light-ceiling", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f916", + voted: false, + }, + id: "light-ceiling", + links: { self: "/api/icons/light-ceiling" }, + type: "icon", + }, + { + attributes: { + id: "light-switch", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f917", + voted: false, + }, + id: "light-switch", + links: { self: "/api/icons/light-switch" }, + type: "icon", + }, + { + attributes: { + id: "light-switch-off", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f918", + voted: false, + }, + id: "light-switch-off", + links: { self: "/api/icons/light-switch-off" }, + type: "icon", + }, + { + attributes: { + id: "light-switch-on", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f919", + voted: false, + }, + id: "light-switch-on", + links: { self: "/api/icons/light-switch-on" }, + type: "icon", + }, + { + attributes: { + id: "lightbulb", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0eb", + voted: false, + }, + id: "lightbulb", + links: { self: "/api/icons/lightbulb" }, + type: "icon", + }, + { + attributes: { + id: "lightbulb-dollar", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f670", + voted: false, + }, + id: "lightbulb-dollar", + links: { self: "/api/icons/lightbulb-dollar" }, + type: "icon", + }, + { + attributes: { + id: "lightbulb-exclamation", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f671", + voted: false, + }, + id: "lightbulb-exclamation", + links: { self: "/api/icons/lightbulb-exclamation" }, + type: "icon", + }, + { + attributes: { + id: "lightbulb-on", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f672", + voted: false, + }, + id: "lightbulb-on", + links: { self: "/api/icons/lightbulb-on" }, + type: "icon", + }, + { + attributes: { + id: "lightbulb-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f673", + voted: false, + }, + id: "lightbulb-slash", + links: { self: "/api/icons/lightbulb-slash" }, + type: "icon", + }, + { + attributes: { + id: "lights-holiday", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7b2", + voted: false, + }, + id: "lights-holiday", + links: { self: "/api/icons/lights-holiday" }, + type: "icon", + }, + { + attributes: { id: "line", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3c0", voted: false }, + id: "line", + links: { self: "/api/icons/line" }, + type: "icon", + }, + { + attributes: { + id: "line-columns", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f870", + voted: false, + }, + id: "line-columns", + links: { self: "/api/icons/line-columns" }, + type: "icon", + }, + { + attributes: { + id: "line-height", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f871", + voted: false, + }, + id: "line-height", + links: { self: "/api/icons/line-height" }, + type: "icon", + }, + { + attributes: { + id: "link", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0c1", + voted: false, + }, + id: "link", + links: { self: "/api/icons/link" }, + type: "icon", + }, + { + attributes: { id: "linkedin", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f08c", voted: false }, + id: "linkedin", + links: { self: "/api/icons/linkedin" }, + type: "icon", + }, + { + attributes: { id: "linkedin-in", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f0e1", voted: false }, + id: "linkedin-in", + links: { self: "/api/icons/linkedin-in" }, + type: "icon", + }, + { + attributes: { id: "linode", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2b8", voted: false }, + id: "linode", + links: { self: "/api/icons/linode" }, + type: "icon", + }, + { + attributes: { id: "linux", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f17c", voted: false }, + id: "linux", + links: { self: "/api/icons/linux" }, + type: "icon", + }, + { + attributes: { + id: "lips", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f600", + voted: false, + }, + id: "lips", + links: { self: "/api/icons/lips" }, + type: "icon", + }, + { + attributes: { + id: "lira-sign", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f195", + voted: false, + }, + id: "lira-sign", + links: { self: "/api/icons/lira-sign" }, + type: "icon", + }, + { + attributes: { + id: "list", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f03a", + voted: false, + }, + id: "list", + links: { self: "/api/icons/list" }, + type: "icon", + }, + { + attributes: { + id: "list-alt", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f022", + voted: false, + }, + id: "list-alt", + links: { self: "/api/icons/list-alt" }, + type: "icon", + }, + { + attributes: { + id: "list-music", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8c9", + voted: false, + }, + id: "list-music", + links: { self: "/api/icons/list-music" }, + type: "icon", + }, + { + attributes: { + id: "list-ol", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0cb", + voted: false, + }, + id: "list-ol", + links: { self: "/api/icons/list-ol" }, + type: "icon", + }, + { + attributes: { + id: "list-ul", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0ca", + voted: false, + }, + id: "list-ul", + links: { self: "/api/icons/list-ul" }, + type: "icon", + }, + { + attributes: { + id: "location", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f601", + voted: false, + }, + id: "location", + links: { self: "/api/icons/location" }, + type: "icon", + }, + { + attributes: { + id: "location-arrow", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f124", + voted: false, + }, + id: "location-arrow", + links: { self: "/api/icons/location-arrow" }, + type: "icon", + }, + { + attributes: { + id: "location-circle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f602", + voted: false, + }, + id: "location-circle", + links: { self: "/api/icons/location-circle" }, + type: "icon", + }, + { + attributes: { + id: "location-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f603", + voted: false, + }, + id: "location-slash", + links: { self: "/api/icons/location-slash" }, + type: "icon", + }, + { + attributes: { + id: "lock", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f023", + voted: false, + }, + id: "lock", + links: { self: "/api/icons/lock" }, + type: "icon", + }, + { + attributes: { + id: "lock-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f30d", + voted: false, + }, + id: "lock-alt", + links: { self: "/api/icons/lock-alt" }, + type: "icon", + }, + { + attributes: { + id: "lock-open", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3c1", + voted: false, + }, + id: "lock-open", + links: { self: "/api/icons/lock-open" }, + type: "icon", + }, + { + attributes: { + id: "lock-open-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3c2", + voted: false, + }, + id: "lock-open-alt", + links: { self: "/api/icons/lock-open-alt" }, + type: "icon", + }, + { + attributes: { + id: "long-arrow-alt-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f309", + voted: false, + }, + id: "long-arrow-alt-down", + links: { self: "/api/icons/long-arrow-alt-down" }, + type: "icon", + }, + { + attributes: { + id: "long-arrow-alt-left", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f30a", + voted: false, + }, + id: "long-arrow-alt-left", + links: { self: "/api/icons/long-arrow-alt-left" }, + type: "icon", + }, + { + attributes: { + id: "long-arrow-alt-right", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f30b", + voted: false, + }, + id: "long-arrow-alt-right", + links: { self: "/api/icons/long-arrow-alt-right" }, + type: "icon", + }, + { + attributes: { + id: "long-arrow-alt-up", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f30c", + voted: false, + }, + id: "long-arrow-alt-up", + links: { self: "/api/icons/long-arrow-alt-up" }, + type: "icon", + }, + { + attributes: { + id: "long-arrow-down", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f175", + voted: false, + }, + id: "long-arrow-down", + links: { self: "/api/icons/long-arrow-down" }, + type: "icon", + }, + { + attributes: { + id: "long-arrow-left", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f177", + voted: false, + }, + id: "long-arrow-left", + links: { self: "/api/icons/long-arrow-left" }, + type: "icon", + }, + { + attributes: { + id: "long-arrow-right", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f178", + voted: false, + }, + id: "long-arrow-right", + links: { self: "/api/icons/long-arrow-right" }, + type: "icon", + }, + { + attributes: { + id: "long-arrow-up", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f176", + voted: false, + }, + id: "long-arrow-up", + links: { self: "/api/icons/long-arrow-up" }, + type: "icon", + }, + { + attributes: { + id: "loveseat", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4cc", + voted: false, + }, + id: "loveseat", + links: { self: "/api/icons/loveseat" }, + type: "icon", + }, + { + attributes: { + id: "low-vision", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2a8", + voted: false, + }, + id: "low-vision", + links: { self: "/api/icons/low-vision" }, + type: "icon", + }, + { + attributes: { + id: "luchador", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f455", + voted: false, + }, + id: "luchador", + links: { self: "/api/icons/luchador" }, + type: "icon", + }, + { + attributes: { + id: "luggage-cart", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f59d", + voted: false, + }, + id: "luggage-cart", + links: { self: "/api/icons/luggage-cart" }, + type: "icon", + }, + { + attributes: { + id: "lungs", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f604", + voted: false, + }, + id: "lungs", + links: { self: "/api/icons/lungs" }, + type: "icon", + }, + { + attributes: { + id: "lungs-virus", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f967", + voted: false, + }, + id: "lungs-virus", + links: { self: "/api/icons/lungs-virus" }, + type: "icon", + }, + { + attributes: { id: "lyft", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3c3", voted: false }, + id: "lyft", + links: { self: "/api/icons/lyft" }, + type: "icon", + }, + { + attributes: { + id: "mace", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6f8", + voted: false, + }, + id: "mace", + links: { self: "/api/icons/mace" }, + type: "icon", + }, + { + attributes: { id: "magento", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3c4", voted: false }, + id: "magento", + links: { self: "/api/icons/magento" }, + type: "icon", + }, + { + attributes: { + id: "magic", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0d0", + voted: false, + }, + id: "magic", + links: { self: "/api/icons/magic" }, + type: "icon", + }, + { + attributes: { + id: "magnet", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f076", + voted: false, + }, + id: "magnet", + links: { self: "/api/icons/magnet" }, + type: "icon", + }, + { + attributes: { + id: "mail-bulk", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f674", + voted: false, + }, + id: "mail-bulk", + links: { self: "/api/icons/mail-bulk" }, + type: "icon", + }, + { + attributes: { + id: "mailbox", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f813", + voted: true, + }, + id: "mailbox", + links: { self: "/api/icons/mailbox" }, + type: "icon", + }, + { + attributes: { id: "mailchimp", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f59e", voted: true }, + id: "mailchimp", + links: { self: "/api/icons/mailchimp" }, + type: "icon", + }, + { + attributes: { + id: "male", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f183", + voted: false, + }, + id: "male", + links: { self: "/api/icons/male" }, + type: "icon", + }, + { + attributes: { id: "mandalorian", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f50f", voted: false }, + id: "mandalorian", + links: { self: "/api/icons/mandalorian" }, + type: "icon", + }, + { + attributes: { + id: "mandolin", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6f9", + voted: false, + }, + id: "mandolin", + links: { self: "/api/icons/mandolin" }, + type: "icon", + }, + { + attributes: { + id: "map", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f279", + voted: false, + }, + id: "map", + links: { self: "/api/icons/map" }, + type: "icon", + }, + { + attributes: { + id: "map-marked", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f59f", + voted: false, + }, + id: "map-marked", + links: { self: "/api/icons/map-marked" }, + type: "icon", + }, + { + attributes: { + id: "map-marked-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5a0", + voted: false, + }, + id: "map-marked-alt", + links: { self: "/api/icons/map-marked-alt" }, + type: "icon", + }, + { + attributes: { + id: "map-marker", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f041", + voted: false, + }, + id: "map-marker", + links: { self: "/api/icons/map-marker" }, + type: "icon", + }, + { + attributes: { + id: "map-marker-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3c5", + voted: false, + }, + id: "map-marker-alt", + links: { self: "/api/icons/map-marker-alt" }, + type: "icon", + }, + { + attributes: { + id: "map-marker-alt-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f605", + voted: false, + }, + id: "map-marker-alt-slash", + links: { self: "/api/icons/map-marker-alt-slash" }, + type: "icon", + }, + { + attributes: { + id: "map-marker-check", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f606", + voted: false, + }, + id: "map-marker-check", + links: { self: "/api/icons/map-marker-check" }, + type: "icon", + }, + { + attributes: { + id: "map-marker-edit", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f607", + voted: false, + }, + id: "map-marker-edit", + links: { self: "/api/icons/map-marker-edit" }, + type: "icon", + }, + { + attributes: { + id: "map-marker-exclamation", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f608", + voted: false, + }, + id: "map-marker-exclamation", + links: { self: "/api/icons/map-marker-exclamation" }, + type: "icon", + }, + { + attributes: { + id: "map-marker-minus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f609", + voted: false, + }, + id: "map-marker-minus", + links: { self: "/api/icons/map-marker-minus" }, + type: "icon", + }, + { + attributes: { + id: "map-marker-plus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f60a", + voted: false, + }, + id: "map-marker-plus", + links: { self: "/api/icons/map-marker-plus" }, + type: "icon", + }, + { + attributes: { + id: "map-marker-question", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f60b", + voted: false, + }, + id: "map-marker-question", + links: { self: "/api/icons/map-marker-question" }, + type: "icon", + }, + { + attributes: { + id: "map-marker-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f60c", + voted: false, + }, + id: "map-marker-slash", + links: { self: "/api/icons/map-marker-slash" }, + type: "icon", + }, + { + attributes: { + id: "map-marker-smile", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f60d", + voted: false, + }, + id: "map-marker-smile", + links: { self: "/api/icons/map-marker-smile" }, + type: "icon", + }, + { + attributes: { + id: "map-marker-times", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f60e", + voted: false, + }, + id: "map-marker-times", + links: { self: "/api/icons/map-marker-times" }, + type: "icon", + }, + { + attributes: { + id: "map-pin", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f276", + voted: false, + }, + id: "map-pin", + links: { self: "/api/icons/map-pin" }, + type: "icon", + }, + { + attributes: { + id: "map-signs", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f277", + voted: false, + }, + id: "map-signs", + links: { self: "/api/icons/map-signs" }, + type: "icon", + }, + { + attributes: { id: "markdown", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f60f", voted: true }, + id: "markdown", + links: { self: "/api/icons/markdown" }, + type: "icon", + }, + { + attributes: { + id: "marker", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5a1", + voted: true, + }, + id: "marker", + links: { self: "/api/icons/marker" }, + type: "icon", + }, + { + attributes: { + id: "mars", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f222", + voted: false, + }, + id: "mars", + links: { self: "/api/icons/mars" }, + type: "icon", + }, + { + attributes: { + id: "mars-double", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f227", + voted: false, + }, + id: "mars-double", + links: { self: "/api/icons/mars-double" }, + type: "icon", + }, + { + attributes: { + id: "mars-stroke", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f229", + voted: false, + }, + id: "mars-stroke", + links: { self: "/api/icons/mars-stroke" }, + type: "icon", + }, + { + attributes: { + id: "mars-stroke-h", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f22b", + voted: false, + }, + id: "mars-stroke-h", + links: { self: "/api/icons/mars-stroke-h" }, + type: "icon", + }, + { + attributes: { + id: "mars-stroke-v", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f22a", + voted: false, + }, + id: "mars-stroke-v", + links: { self: "/api/icons/mars-stroke-v" }, + type: "icon", + }, + { + attributes: { + id: "mask", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6fa", + voted: false, + }, + id: "mask", + links: { self: "/api/icons/mask" }, + type: "icon", + }, + { + attributes: { id: "mastodon", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f4f6", voted: true }, + id: "mastodon", + links: { self: "/api/icons/mastodon" }, + type: "icon", + }, + { + attributes: { id: "maxcdn", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f136", voted: false }, + id: "maxcdn", + links: { self: "/api/icons/maxcdn" }, + type: "icon", + }, + { + attributes: { id: "mdb", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f8ca", voted: false }, + id: "mdb", + links: { self: "/api/icons/mdb" }, + type: "icon", + }, + { + attributes: { + id: "meat", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f814", + voted: false, + }, + id: "meat", + links: { self: "/api/icons/meat" }, + type: "icon", + }, + { + attributes: { + id: "medal", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5a2", + voted: true, + }, + id: "medal", + links: { self: "/api/icons/medal" }, + type: "icon", + }, + { + attributes: { id: "medapps", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3c6", voted: false }, + id: "medapps", + links: { self: "/api/icons/medapps" }, + type: "icon", + }, + { + attributes: { id: "medium", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f23a", voted: false }, + id: "medium", + links: { self: "/api/icons/medium" }, + type: "icon", + }, + { + attributes: { id: "medium-m", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3c7", voted: false }, + id: "medium-m", + links: { self: "/api/icons/medium-m" }, + type: "icon", + }, + { + attributes: { + id: "medkit", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0fa", + voted: false, + }, + id: "medkit", + links: { self: "/api/icons/medkit" }, + type: "icon", + }, + { + attributes: { id: "medrt", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3c8", voted: false }, + id: "medrt", + links: { self: "/api/icons/medrt" }, + type: "icon", + }, + { + attributes: { id: "meetup", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2e0", voted: false }, + id: "meetup", + links: { self: "/api/icons/meetup" }, + type: "icon", + }, + { + attributes: { + id: "megaphone", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f675", + voted: false, + }, + id: "megaphone", + links: { self: "/api/icons/megaphone" }, + type: "icon", + }, + { + attributes: { id: "megaport", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f5a3", voted: false }, + id: "megaport", + links: { self: "/api/icons/megaport" }, + type: "icon", + }, + { + attributes: { + id: "meh", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f11a", + voted: false, + }, + id: "meh", + links: { self: "/api/icons/meh" }, + type: "icon", + }, + { + attributes: { + id: "meh-blank", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5a4", + voted: false, + }, + id: "meh-blank", + links: { self: "/api/icons/meh-blank" }, + type: "icon", + }, + { + attributes: { + id: "meh-rolling-eyes", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5a5", + voted: false, + }, + id: "meh-rolling-eyes", + links: { self: "/api/icons/meh-rolling-eyes" }, + type: "icon", + }, + { + attributes: { + id: "memory", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f538", + voted: true, + }, + id: "memory", + links: { self: "/api/icons/memory" }, + type: "icon", + }, + { + attributes: { id: "mendeley", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f7b3", voted: true }, + id: "mendeley", + links: { self: "/api/icons/mendeley" }, + type: "icon", + }, + { + attributes: { + id: "menorah", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f676", + voted: false, + }, + id: "menorah", + links: { self: "/api/icons/menorah" }, + type: "icon", + }, + { + attributes: { + id: "mercury", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f223", + voted: false, + }, + id: "mercury", + links: { self: "/api/icons/mercury" }, + type: "icon", + }, + { + attributes: { + id: "meteor", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f753", + voted: false, + }, + id: "meteor", + links: { self: "/api/icons/meteor" }, + type: "icon", + }, + { + attributes: { id: "microblog", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f91a", voted: true }, + id: "microblog", + links: { self: "/api/icons/microblog" }, + type: "icon", + }, + { + attributes: { + id: "microchip", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2db", + voted: false, + }, + id: "microchip", + links: { self: "/api/icons/microchip" }, + type: "icon", + }, + { + attributes: { + id: "microphone", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f130", + voted: false, + }, + id: "microphone", + links: { self: "/api/icons/microphone" }, + type: "icon", + }, + { + attributes: { + id: "microphone-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3c9", + voted: false, + }, + id: "microphone-alt", + links: { self: "/api/icons/microphone-alt" }, + type: "icon", + }, + { + attributes: { + id: "microphone-alt-slash", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f539", + voted: false, + }, + id: "microphone-alt-slash", + links: { self: "/api/icons/microphone-alt-slash" }, + type: "icon", + }, + { + attributes: { + id: "microphone-slash", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f131", + voted: false, + }, + id: "microphone-slash", + links: { self: "/api/icons/microphone-slash" }, + type: "icon", + }, + { + attributes: { + id: "microphone-stand", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8cb", + voted: false, + }, + id: "microphone-stand", + links: { self: "/api/icons/microphone-stand" }, + type: "icon", + }, + { + attributes: { + id: "microscope", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f610", + voted: false, + }, + id: "microscope", + links: { self: "/api/icons/microscope" }, + type: "icon", + }, + { + attributes: { id: "microsoft", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3ca", voted: true }, + id: "microsoft", + links: { self: "/api/icons/microsoft" }, + type: "icon", + }, + { + attributes: { + id: "microwave", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f91b", + voted: false, + }, + id: "microwave", + links: { self: "/api/icons/microwave" }, + type: "icon", + }, + { + attributes: { + id: "mind-share", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f677", + voted: false, + }, + id: "mind-share", + links: { self: "/api/icons/mind-share" }, + type: "icon", + }, + { + attributes: { + id: "minus", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f068", + voted: false, + }, + id: "minus", + links: { self: "/api/icons/minus" }, + type: "icon", + }, + { + attributes: { + id: "minus-circle", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f056", + voted: false, + }, + id: "minus-circle", + links: { self: "/api/icons/minus-circle" }, + type: "icon", + }, + { + attributes: { + id: "minus-hexagon", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f307", + voted: false, + }, + id: "minus-hexagon", + links: { self: "/api/icons/minus-hexagon" }, + type: "icon", + }, + { + attributes: { + id: "minus-octagon", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f308", + voted: false, + }, + id: "minus-octagon", + links: { self: "/api/icons/minus-octagon" }, + type: "icon", + }, + { + attributes: { + id: "minus-square", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f146", + voted: false, + }, + id: "minus-square", + links: { self: "/api/icons/minus-square" }, + type: "icon", + }, + { + attributes: { + id: "mistletoe", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7b4", + voted: false, + }, + id: "mistletoe", + links: { self: "/api/icons/mistletoe" }, + type: "icon", + }, + { + attributes: { + id: "mitten", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7b5", + voted: false, + }, + id: "mitten", + links: { self: "/api/icons/mitten" }, + type: "icon", + }, + { + attributes: { id: "mix", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3cb", voted: false }, + id: "mix", + links: { self: "/api/icons/mix" }, + type: "icon", + }, + { + attributes: { id: "mixcloud", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f289", voted: false }, + id: "mixcloud", + links: { self: "/api/icons/mixcloud" }, + type: "icon", + }, + { + attributes: { id: "mixer", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f956", voted: true }, + id: "mixer", + links: { self: "/api/icons/mixer" }, + type: "icon", + }, + { + attributes: { id: "mizuni", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3cc", voted: false }, + id: "mizuni", + links: { self: "/api/icons/mizuni" }, + type: "icon", + }, + { + attributes: { + id: "mobile", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f10b", + voted: false, + }, + id: "mobile", + links: { self: "/api/icons/mobile" }, + type: "icon", + }, + { + attributes: { + id: "mobile-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3cd", + voted: false, + }, + id: "mobile-alt", + links: { self: "/api/icons/mobile-alt" }, + type: "icon", + }, + { + attributes: { + id: "mobile-android", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3ce", + voted: false, + }, + id: "mobile-android", + links: { self: "/api/icons/mobile-android" }, + type: "icon", + }, + { + attributes: { + id: "mobile-android-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3cf", + voted: false, + }, + id: "mobile-android-alt", + links: { self: "/api/icons/mobile-android-alt" }, + type: "icon", + }, + { + attributes: { id: "modx", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f285", voted: false }, + id: "modx", + links: { self: "/api/icons/modx" }, + type: "icon", + }, + { + attributes: { id: "monero", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3d0", voted: false }, + id: "monero", + links: { self: "/api/icons/monero" }, + type: "icon", + }, + { + attributes: { + id: "money-bill", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0d6", + voted: false, + }, + id: "money-bill", + links: { self: "/api/icons/money-bill" }, + type: "icon", + }, + { + attributes: { + id: "money-bill-alt", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3d1", + voted: false, + }, + id: "money-bill-alt", + links: { self: "/api/icons/money-bill-alt" }, + type: "icon", + }, + { + attributes: { + id: "money-bill-wave", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f53a", + voted: true, + }, + id: "money-bill-wave", + links: { self: "/api/icons/money-bill-wave" }, + type: "icon", + }, + { + attributes: { + id: "money-bill-wave-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f53b", + voted: true, + }, + id: "money-bill-wave-alt", + links: { self: "/api/icons/money-bill-wave-alt" }, + type: "icon", + }, + { + attributes: { + id: "money-check", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f53c", + voted: true, + }, + id: "money-check", + links: { self: "/api/icons/money-check" }, + type: "icon", + }, + { + attributes: { + id: "money-check-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f53d", + voted: true, + }, + id: "money-check-alt", + links: { self: "/api/icons/money-check-alt" }, + type: "icon", + }, + { + attributes: { + id: "money-check-edit", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f872", + voted: true, + }, + id: "money-check-edit", + links: { self: "/api/icons/money-check-edit" }, + type: "icon", + }, + { + attributes: { + id: "money-check-edit-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f873", + voted: true, + }, + id: "money-check-edit-alt", + links: { self: "/api/icons/money-check-edit-alt" }, + type: "icon", + }, + { + attributes: { + id: "monitor-heart-rate", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f611", + voted: false, + }, + id: "monitor-heart-rate", + links: { self: "/api/icons/monitor-heart-rate" }, + type: "icon", + }, + { + attributes: { + id: "monkey", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6fb", + voted: false, + }, + id: "monkey", + links: { self: "/api/icons/monkey" }, + type: "icon", + }, + { + attributes: { + id: "monument", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5a6", + voted: false, + }, + id: "monument", + links: { self: "/api/icons/monument" }, + type: "icon", + }, + { + attributes: { + id: "moon", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f186", + voted: false, + }, + id: "moon", + links: { self: "/api/icons/moon" }, + type: "icon", + }, + { + attributes: { + id: "moon-cloud", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f754", + voted: false, + }, + id: "moon-cloud", + links: { self: "/api/icons/moon-cloud" }, + type: "icon", + }, + { + attributes: { + id: "moon-stars", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f755", + voted: false, + }, + id: "moon-stars", + links: { self: "/api/icons/moon-stars" }, + type: "icon", + }, + { + attributes: { + id: "mortar-pestle", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5a7", + voted: false, + }, + id: "mortar-pestle", + links: { self: "/api/icons/mortar-pestle" }, + type: "icon", + }, + { + attributes: { + id: "mosque", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f678", + voted: false, + }, + id: "mosque", + links: { self: "/api/icons/mosque" }, + type: "icon", + }, + { + attributes: { + id: "motorcycle", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f21c", + voted: false, + }, + id: "motorcycle", + links: { self: "/api/icons/motorcycle" }, + type: "icon", + }, + { + attributes: { + id: "mountain", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6fc", + voted: false, + }, + id: "mountain", + links: { self: "/api/icons/mountain" }, + type: "icon", + }, + { + attributes: { + id: "mountains", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6fd", + voted: false, + }, + id: "mountains", + links: { self: "/api/icons/mountains" }, + type: "icon", + }, + { + attributes: { + id: "mouse", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8cc", + voted: true, + }, + id: "mouse", + links: { self: "/api/icons/mouse" }, + type: "icon", + }, + { + attributes: { + id: "mouse-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8cd", + voted: false, + }, + id: "mouse-alt", + links: { self: "/api/icons/mouse-alt" }, + type: "icon", + }, + { + attributes: { + id: "mouse-pointer", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f245", + voted: false, + }, + id: "mouse-pointer", + links: { self: "/api/icons/mouse-pointer" }, + type: "icon", + }, + { + attributes: { + id: "mp3-player", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8ce", + voted: false, + }, + id: "mp3-player", + links: { self: "/api/icons/mp3-player" }, + type: "icon", + }, + { + attributes: { + id: "mug", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f874", + voted: false, + }, + id: "mug", + links: { self: "/api/icons/mug" }, + type: "icon", + }, + { + attributes: { + id: "mug-hot", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7b6", + voted: false, + }, + id: "mug-hot", + links: { self: "/api/icons/mug-hot" }, + type: "icon", + }, + { + attributes: { + id: "mug-marshmallows", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7b7", + voted: false, + }, + id: "mug-marshmallows", + links: { self: "/api/icons/mug-marshmallows" }, + type: "icon", + }, + { + attributes: { + id: "mug-tea", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f875", + voted: false, + }, + id: "mug-tea", + links: { self: "/api/icons/mug-tea" }, + type: "icon", + }, + { + attributes: { + id: "music", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f001", + voted: false, + }, + id: "music", + links: { self: "/api/icons/music" }, + type: "icon", + }, + { + attributes: { + id: "music-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8cf", + voted: false, + }, + id: "music-alt", + links: { self: "/api/icons/music-alt" }, + type: "icon", + }, + { + attributes: { + id: "music-alt-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8d0", + voted: false, + }, + id: "music-alt-slash", + links: { self: "/api/icons/music-alt-slash" }, + type: "icon", + }, + { + attributes: { + id: "music-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8d1", + voted: false, + }, + id: "music-slash", + links: { self: "/api/icons/music-slash" }, + type: "icon", + }, + { + attributes: { id: "napster", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3d2", voted: false }, + id: "napster", + links: { self: "/api/icons/napster" }, + type: "icon", + }, + { + attributes: { + id: "narwhal", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6fe", + voted: false, + }, + id: "narwhal", + links: { self: "/api/icons/narwhal" }, + type: "icon", + }, + { + attributes: { id: "neos", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f612", voted: true }, + id: "neos", + links: { self: "/api/icons/neos" }, + type: "icon", + }, + { + attributes: { + id: "network-wired", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6ff", + voted: true, + }, + id: "network-wired", + links: { self: "/api/icons/network-wired" }, + type: "icon", + }, + { + attributes: { + id: "neuter", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f22c", + voted: false, + }, + id: "neuter", + links: { self: "/api/icons/neuter" }, + type: "icon", + }, + { + attributes: { + id: "newspaper", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1ea", + voted: false, + }, + id: "newspaper", + links: { self: "/api/icons/newspaper" }, + type: "icon", + }, + { + attributes: { id: "nimblr", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f5a8", voted: false }, + id: "nimblr", + links: { self: "/api/icons/nimblr" }, + type: "icon", + }, + { + attributes: { id: "node", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f419", voted: true }, + id: "node", + links: { self: "/api/icons/node" }, + type: "icon", + }, + { + attributes: { id: "node-js", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3d3", voted: false }, + id: "node-js", + links: { self: "/api/icons/node-js" }, + type: "icon", + }, + { + attributes: { + id: "not-equal", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f53e", + voted: true, + }, + id: "not-equal", + links: { self: "/api/icons/not-equal" }, + type: "icon", + }, + { + attributes: { + id: "notes-medical", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f481", + voted: false, + }, + id: "notes-medical", + links: { self: "/api/icons/notes-medical" }, + type: "icon", + }, + { + attributes: { id: "npm", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3d4", voted: false }, + id: "npm", + links: { self: "/api/icons/npm" }, + type: "icon", + }, + { + attributes: { id: "ns8", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3d5", voted: false }, + id: "ns8", + links: { self: "/api/icons/ns8" }, + type: "icon", + }, + { + attributes: { id: "nutritionix", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3d6", voted: false }, + id: "nutritionix", + links: { self: "/api/icons/nutritionix" }, + type: "icon", + }, + { + attributes: { + id: "object-group", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f247", + voted: false, + }, + id: "object-group", + links: { self: "/api/icons/object-group" }, + type: "icon", + }, + { + attributes: { + id: "object-ungroup", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f248", + voted: false, + }, + id: "object-ungroup", + links: { self: "/api/icons/object-ungroup" }, + type: "icon", + }, + { + attributes: { + id: "octagon", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f306", + voted: false, + }, + id: "octagon", + links: { self: "/api/icons/octagon" }, + type: "icon", + }, + { + attributes: { + id: "odnoklassniki", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f263", + voted: false, + }, + id: "odnoklassniki", + links: { self: "/api/icons/odnoklassniki" }, + type: "icon", + }, + { + attributes: { + id: "odnoklassniki-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f264", + voted: false, + }, + id: "odnoklassniki-square", + links: { self: "/api/icons/odnoklassniki-square" }, + type: "icon", + }, + { + attributes: { + id: "oil-can", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f613", + voted: false, + }, + id: "oil-can", + links: { self: "/api/icons/oil-can" }, + type: "icon", + }, + { + attributes: { + id: "oil-temp", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f614", + voted: false, + }, + id: "oil-temp", + links: { self: "/api/icons/oil-temp" }, + type: "icon", + }, + { + attributes: { + id: "old-republic", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f510", + voted: false, + }, + id: "old-republic", + links: { self: "/api/icons/old-republic" }, + type: "icon", + }, + { + attributes: { + id: "om", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f679", + voted: false, + }, + id: "om", + links: { self: "/api/icons/om" }, + type: "icon", + }, + { + attributes: { + id: "omega", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f67a", + voted: false, + }, + id: "omega", + links: { self: "/api/icons/omega" }, + type: "icon", + }, + { + attributes: { + id: "opencart", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f23d", + voted: false, + }, + id: "opencart", + links: { self: "/api/icons/opencart" }, + type: "icon", + }, + { + attributes: { id: "openid", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f19b", voted: false }, + id: "openid", + links: { self: "/api/icons/openid" }, + type: "icon", + }, + { + attributes: { id: "opera", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f26a", voted: false }, + id: "opera", + links: { self: "/api/icons/opera" }, + type: "icon", + }, + { + attributes: { + id: "optin-monster", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f23c", + voted: false, + }, + id: "optin-monster", + links: { self: "/api/icons/optin-monster" }, + type: "icon", + }, + { + attributes: { id: "orcid", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f8d2", voted: false }, + id: "orcid", + links: { self: "/api/icons/orcid" }, + type: "icon", + }, + { + attributes: { + id: "ornament", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7b8", + voted: false, + }, + id: "ornament", + links: { self: "/api/icons/ornament" }, + type: "icon", + }, + { + attributes: { id: "osi", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f41a", voted: false }, + id: "osi", + links: { self: "/api/icons/osi" }, + type: "icon", + }, + { + attributes: { + id: "otter", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f700", + voted: false, + }, + id: "otter", + links: { self: "/api/icons/otter" }, + type: "icon", + }, + { + attributes: { + id: "outdent", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f03b", + voted: false, + }, + id: "outdent", + links: { self: "/api/icons/outdent" }, + type: "icon", + }, + { + attributes: { + id: "outlet", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f91c", + voted: false, + }, + id: "outlet", + links: { self: "/api/icons/outlet" }, + type: "icon", + }, + { + attributes: { + id: "oven", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f91d", + voted: false, + }, + id: "oven", + links: { self: "/api/icons/oven" }, + type: "icon", + }, + { + attributes: { + id: "overline", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f876", + voted: false, + }, + id: "overline", + links: { self: "/api/icons/overline" }, + type: "icon", + }, + { + attributes: { + id: "page-break", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f877", + voted: false, + }, + id: "page-break", + links: { self: "/api/icons/page-break" }, + type: "icon", + }, + { + attributes: { id: "page4", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3d7", voted: false }, + id: "page4", + links: { self: "/api/icons/page4" }, + type: "icon", + }, + { + attributes: { id: "pagelines", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f18c", voted: false }, + id: "pagelines", + links: { self: "/api/icons/pagelines" }, + type: "icon", + }, + { + attributes: { + id: "pager", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f815", + voted: false, + }, + id: "pager", + links: { self: "/api/icons/pager" }, + type: "icon", + }, + { + attributes: { + id: "paint-brush", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1fc", + voted: false, + }, + id: "paint-brush", + links: { self: "/api/icons/paint-brush" }, + type: "icon", + }, + { + attributes: { + id: "paint-brush-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5a9", + voted: false, + }, + id: "paint-brush-alt", + links: { self: "/api/icons/paint-brush-alt" }, + type: "icon", + }, + { + attributes: { + id: "paint-roller", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5aa", + voted: false, + }, + id: "paint-roller", + links: { self: "/api/icons/paint-roller" }, + type: "icon", + }, + { + attributes: { + id: "palette", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f53f", + voted: true, + }, + id: "palette", + links: { self: "/api/icons/palette" }, + type: "icon", + }, + { + attributes: { id: "palfed", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3d8", voted: false }, + id: "palfed", + links: { self: "/api/icons/palfed" }, + type: "icon", + }, + { + attributes: { + id: "pallet", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f482", + voted: false, + }, + id: "pallet", + links: { self: "/api/icons/pallet" }, + type: "icon", + }, + { + attributes: { + id: "pallet-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f483", + voted: false, + }, + id: "pallet-alt", + links: { self: "/api/icons/pallet-alt" }, + type: "icon", + }, + { + attributes: { + id: "paper-plane", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1d8", + voted: false, + }, + id: "paper-plane", + links: { self: "/api/icons/paper-plane" }, + type: "icon", + }, + { + attributes: { + id: "paperclip", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0c6", + voted: false, + }, + id: "paperclip", + links: { self: "/api/icons/paperclip" }, + type: "icon", + }, + { + attributes: { + id: "parachute-box", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4cd", + voted: false, + }, + id: "parachute-box", + links: { self: "/api/icons/parachute-box" }, + type: "icon", + }, + { + attributes: { + id: "paragraph", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1dd", + voted: false, + }, + id: "paragraph", + links: { self: "/api/icons/paragraph" }, + type: "icon", + }, + { + attributes: { + id: "paragraph-rtl", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f878", + voted: false, + }, + id: "paragraph-rtl", + links: { self: "/api/icons/paragraph-rtl" }, + type: "icon", + }, + { + attributes: { + id: "parking", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f540", + voted: true, + }, + id: "parking", + links: { self: "/api/icons/parking" }, + type: "icon", + }, + { + attributes: { + id: "parking-circle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f615", + voted: false, + }, + id: "parking-circle", + links: { self: "/api/icons/parking-circle" }, + type: "icon", + }, + { + attributes: { + id: "parking-circle-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f616", + voted: false, + }, + id: "parking-circle-slash", + links: { self: "/api/icons/parking-circle-slash" }, + type: "icon", + }, + { + attributes: { + id: "parking-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f617", + voted: false, + }, + id: "parking-slash", + links: { self: "/api/icons/parking-slash" }, + type: "icon", + }, + { + attributes: { + id: "passport", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5ab", + voted: false, + }, + id: "passport", + links: { self: "/api/icons/passport" }, + type: "icon", + }, + { + attributes: { + id: "pastafarianism", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f67b", + voted: false, + }, + id: "pastafarianism", + links: { self: "/api/icons/pastafarianism" }, + type: "icon", + }, + { + attributes: { + id: "paste", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0ea", + voted: false, + }, + id: "paste", + links: { self: "/api/icons/paste" }, + type: "icon", + }, + { + attributes: { id: "patreon", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3d9", voted: false }, + id: "patreon", + links: { self: "/api/icons/patreon" }, + type: "icon", + }, + { + attributes: { + id: "pause", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f04c", + voted: false, + }, + id: "pause", + links: { self: "/api/icons/pause" }, + type: "icon", + }, + { + attributes: { + id: "pause-circle", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f28b", + voted: false, + }, + id: "pause-circle", + links: { self: "/api/icons/pause-circle" }, + type: "icon", + }, + { + attributes: { + id: "paw", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1b0", + voted: false, + }, + id: "paw", + links: { self: "/api/icons/paw" }, + type: "icon", + }, + { + attributes: { + id: "paw-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f701", + voted: false, + }, + id: "paw-alt", + links: { self: "/api/icons/paw-alt" }, + type: "icon", + }, + { + attributes: { + id: "paw-claws", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f702", + voted: false, + }, + id: "paw-claws", + links: { self: "/api/icons/paw-claws" }, + type: "icon", + }, + { + attributes: { + id: "paypal", + membership: { + free: ["brands"], + pro: ["brands"], + }, + styles: ["brands"], + unicode: "f1ed", + voted: false, + }, + id: "paypal", + links: { self: "/api/icons/paypal" }, + type: "icon", + }, + { + attributes: { + id: "peace", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f67c", + voted: false, + }, + id: "peace", + links: { self: "/api/icons/peace" }, + type: "icon", + }, + { + attributes: { + id: "pegasus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f703", + voted: false, + }, + id: "pegasus", + links: { self: "/api/icons/pegasus" }, + type: "icon", + }, + { + attributes: { + id: "pen", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f304", + voted: false, + }, + id: "pen", + links: { self: "/api/icons/pen" }, + type: "icon", + }, + { + attributes: { + id: "pen-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f305", + voted: false, + }, + id: "pen-alt", + links: { self: "/api/icons/pen-alt" }, + type: "icon", + }, + { + attributes: { + id: "pen-fancy", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5ac", + voted: false, + }, + id: "pen-fancy", + links: { self: "/api/icons/pen-fancy" }, + type: "icon", + }, + { + attributes: { + id: "pen-nib", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5ad", + voted: true, + }, + id: "pen-nib", + links: { self: "/api/icons/pen-nib" }, + type: "icon", + }, + { + attributes: { + id: "pen-square", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f14b", + voted: false, + }, + id: "pen-square", + links: { self: "/api/icons/pen-square" }, + type: "icon", + }, + { + attributes: { + id: "pencil", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f040", + voted: false, + }, + id: "pencil", + links: { self: "/api/icons/pencil" }, + type: "icon", + }, + { + attributes: { + id: "pencil-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f303", + voted: false, + }, + id: "pencil-alt", + links: { self: "/api/icons/pencil-alt" }, + type: "icon", + }, + { + attributes: { + id: "pencil-paintbrush", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f618", + voted: false, + }, + id: "pencil-paintbrush", + links: { self: "/api/icons/pencil-paintbrush" }, + type: "icon", + }, + { + attributes: { + id: "pencil-ruler", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5ae", + voted: false, + }, + id: "pencil-ruler", + links: { self: "/api/icons/pencil-ruler" }, + type: "icon", + }, + { + attributes: { + id: "pennant", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f456", + voted: false, + }, + id: "pennant", + links: { self: "/api/icons/pennant" }, + type: "icon", + }, + { + attributes: { + id: "penny-arcade", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f704", + voted: false, + }, + id: "penny-arcade", + links: { self: "/api/icons/penny-arcade" }, + type: "icon", + }, + { + attributes: { + id: "people-arrows", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f968", + voted: false, + }, + id: "people-arrows", + links: { self: "/api/icons/people-arrows" }, + type: "icon", + }, + { + attributes: { + id: "people-carry", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4ce", + voted: false, + }, + id: "people-carry", + links: { self: "/api/icons/people-carry" }, + type: "icon", + }, + { + attributes: { + id: "pepper-hot", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f816", + voted: true, + }, + id: "pepper-hot", + links: { self: "/api/icons/pepper-hot" }, + type: "icon", + }, + { + attributes: { + id: "percent", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f295", + voted: false, + }, + id: "percent", + links: { self: "/api/icons/percent" }, + type: "icon", + }, + { + attributes: { + id: "percentage", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f541", + voted: true, + }, + id: "percentage", + links: { self: "/api/icons/percentage" }, + type: "icon", + }, + { + attributes: { id: "periscope", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3da", voted: false }, + id: "periscope", + links: { self: "/api/icons/periscope" }, + type: "icon", + }, + { + attributes: { + id: "person-booth", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f756", + voted: false, + }, + id: "person-booth", + links: { self: "/api/icons/person-booth" }, + type: "icon", + }, + { + attributes: { + id: "person-carry", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4cf", + voted: false, + }, + id: "person-carry", + links: { self: "/api/icons/person-carry" }, + type: "icon", + }, + { + attributes: { + id: "person-dolly", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4d0", + voted: false, + }, + id: "person-dolly", + links: { self: "/api/icons/person-dolly" }, + type: "icon", + }, + { + attributes: { + id: "person-dolly-empty", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4d1", + voted: false, + }, + id: "person-dolly-empty", + links: { self: "/api/icons/person-dolly-empty" }, + type: "icon", + }, + { + attributes: { + id: "person-sign", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f757", + voted: false, + }, + id: "person-sign", + links: { self: "/api/icons/person-sign" }, + type: "icon", + }, + { + attributes: { id: "phabricator", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3db", voted: false }, + id: "phabricator", + links: { self: "/api/icons/phabricator" }, + type: "icon", + }, + { + attributes: { + id: "phoenix-framework", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f3dc", + voted: false, + }, + id: "phoenix-framework", + links: { self: "/api/icons/phoenix-framework" }, + type: "icon", + }, + { + attributes: { + id: "phoenix-squadron", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f511", + voted: false, + }, + id: "phoenix-squadron", + links: { self: "/api/icons/phoenix-squadron" }, + type: "icon", + }, + { + attributes: { + id: "phone", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f095", + voted: false, + }, + id: "phone", + links: { self: "/api/icons/phone" }, + type: "icon", + }, + { + attributes: { + id: "phone-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f879", + voted: false, + }, + id: "phone-alt", + links: { self: "/api/icons/phone-alt" }, + type: "icon", + }, + { + attributes: { + id: "phone-laptop", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f87a", + voted: false, + }, + id: "phone-laptop", + links: { self: "/api/icons/phone-laptop" }, + type: "icon", + }, + { + attributes: { + id: "phone-office", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f67d", + voted: false, + }, + id: "phone-office", + links: { self: "/api/icons/phone-office" }, + type: "icon", + }, + { + attributes: { + id: "phone-plus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4d2", + voted: false, + }, + id: "phone-plus", + links: { self: "/api/icons/phone-plus" }, + type: "icon", + }, + { + attributes: { + id: "phone-rotary", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8d3", + voted: false, + }, + id: "phone-rotary", + links: { self: "/api/icons/phone-rotary" }, + type: "icon", + }, + { + attributes: { + id: "phone-slash", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3dd", + voted: false, + }, + id: "phone-slash", + links: { self: "/api/icons/phone-slash" }, + type: "icon", + }, + { + attributes: { + id: "phone-square", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f098", + voted: false, + }, + id: "phone-square", + links: { self: "/api/icons/phone-square" }, + type: "icon", + }, + { + attributes: { + id: "phone-square-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f87b", + voted: false, + }, + id: "phone-square-alt", + links: { self: "/api/icons/phone-square-alt" }, + type: "icon", + }, + { + attributes: { + id: "phone-volume", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2a0", + voted: false, + }, + id: "phone-volume", + links: { self: "/api/icons/phone-volume" }, + type: "icon", + }, + { + attributes: { + id: "photo-video", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f87c", + voted: false, + }, + id: "photo-video", + links: { self: "/api/icons/photo-video" }, + type: "icon", + }, + { + attributes: { id: "php", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f457", voted: true }, + id: "php", + links: { self: "/api/icons/php" }, + type: "icon", + }, + { + attributes: { + id: "pi", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f67e", + voted: false, + }, + id: "pi", + links: { self: "/api/icons/pi" }, + type: "icon", + }, + { + attributes: { + id: "piano", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8d4", + voted: false, + }, + id: "piano", + links: { self: "/api/icons/piano" }, + type: "icon", + }, + { + attributes: { + id: "piano-keyboard", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8d5", + voted: false, + }, + id: "piano-keyboard", + links: { self: "/api/icons/piano-keyboard" }, + type: "icon", + }, + { + attributes: { + id: "pie", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f705", + voted: false, + }, + id: "pie", + links: { self: "/api/icons/pie" }, + type: "icon", + }, + { + attributes: { id: "pied-piper", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2ae", voted: false }, + id: "pied-piper", + links: { self: "/api/icons/pied-piper" }, + type: "icon", + }, + { + attributes: { + id: "pied-piper-alt", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f1a8", + voted: false, + }, + id: "pied-piper-alt", + links: { self: "/api/icons/pied-piper-alt" }, + type: "icon", + }, + { + attributes: { + id: "pied-piper-hat", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f4e5", + voted: false, + }, + id: "pied-piper-hat", + links: { self: "/api/icons/pied-piper-hat" }, + type: "icon", + }, + { + attributes: { + id: "pied-piper-pp", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f1a7", + voted: false, + }, + id: "pied-piper-pp", + links: { self: "/api/icons/pied-piper-pp" }, + type: "icon", + }, + { + attributes: { + id: "pied-piper-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f91e", + voted: false, + }, + id: "pied-piper-square", + links: { self: "/api/icons/pied-piper-square" }, + type: "icon", + }, + { + attributes: { + id: "pig", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f706", + voted: false, + }, + id: "pig", + links: { self: "/api/icons/pig" }, + type: "icon", + }, + { + attributes: { + id: "piggy-bank", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4d3", + voted: false, + }, + id: "piggy-bank", + links: { self: "/api/icons/piggy-bank" }, + type: "icon", + }, + { + attributes: { + id: "pills", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f484", + voted: false, + }, + id: "pills", + links: { self: "/api/icons/pills" }, + type: "icon", + }, + { + attributes: { id: "pinterest", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f0d2", voted: false }, + id: "pinterest", + links: { self: "/api/icons/pinterest" }, + type: "icon", + }, + { + attributes: { id: "pinterest-p", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f231", voted: false }, + id: "pinterest-p", + links: { self: "/api/icons/pinterest-p" }, + type: "icon", + }, + { + attributes: { + id: "pinterest-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f0d3", + voted: false, + }, + id: "pinterest-square", + links: { self: "/api/icons/pinterest-square" }, + type: "icon", + }, + { + attributes: { + id: "pizza", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f817", + voted: false, + }, + id: "pizza", + links: { self: "/api/icons/pizza" }, + type: "icon", + }, + { + attributes: { + id: "pizza-slice", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f818", + voted: true, + }, + id: "pizza-slice", + links: { self: "/api/icons/pizza-slice" }, + type: "icon", + }, + { + attributes: { + id: "place-of-worship", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f67f", + voted: false, + }, + id: "place-of-worship", + links: { self: "/api/icons/place-of-worship" }, + type: "icon", + }, + { + attributes: { + id: "plane", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f072", + voted: false, + }, + id: "plane", + links: { self: "/api/icons/plane" }, + type: "icon", + }, + { + attributes: { + id: "plane-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3de", + voted: false, + }, + id: "plane-alt", + links: { self: "/api/icons/plane-alt" }, + type: "icon", + }, + { + attributes: { + id: "plane-arrival", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5af", + voted: false, + }, + id: "plane-arrival", + links: { self: "/api/icons/plane-arrival" }, + type: "icon", + }, + { + attributes: { + id: "plane-departure", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5b0", + voted: false, + }, + id: "plane-departure", + links: { self: "/api/icons/plane-departure" }, + type: "icon", + }, + { + attributes: { + id: "plane-slash", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f969", + voted: false, + }, + id: "plane-slash", + links: { self: "/api/icons/plane-slash" }, + type: "icon", + }, + { + attributes: { + id: "planet-moon", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f91f", + voted: false, + }, + id: "planet-moon", + links: { self: "/api/icons/planet-moon" }, + type: "icon", + }, + { + attributes: { + id: "planet-ringed", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f920", + voted: false, + }, + id: "planet-ringed", + links: { self: "/api/icons/planet-ringed" }, + type: "icon", + }, + { + attributes: { + id: "play", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f04b", + voted: false, + }, + id: "play", + links: { self: "/api/icons/play" }, + type: "icon", + }, + { + attributes: { + id: "play-circle", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f144", + voted: false, + }, + id: "play-circle", + links: { self: "/api/icons/play-circle" }, + type: "icon", + }, + { + attributes: { id: "playstation", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3df", voted: false }, + id: "playstation", + links: { self: "/api/icons/playstation" }, + type: "icon", + }, + { + attributes: { + id: "plug", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1e6", + voted: false, + }, + id: "plug", + links: { self: "/api/icons/plug" }, + type: "icon", + }, + { + attributes: { + id: "plus", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f067", + voted: false, + }, + id: "plus", + links: { self: "/api/icons/plus" }, + type: "icon", + }, + { + attributes: { + id: "plus-circle", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f055", + voted: false, + }, + id: "plus-circle", + links: { self: "/api/icons/plus-circle" }, + type: "icon", + }, + { + attributes: { + id: "plus-hexagon", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f300", + voted: false, + }, + id: "plus-hexagon", + links: { self: "/api/icons/plus-hexagon" }, + type: "icon", + }, + { + attributes: { + id: "plus-octagon", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f301", + voted: false, + }, + id: "plus-octagon", + links: { self: "/api/icons/plus-octagon" }, + type: "icon", + }, + { + attributes: { + id: "plus-square", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0fe", + voted: false, + }, + id: "plus-square", + links: { self: "/api/icons/plus-square" }, + type: "icon", + }, + { + attributes: { + id: "podcast", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2ce", + voted: false, + }, + id: "podcast", + links: { self: "/api/icons/podcast" }, + type: "icon", + }, + { + attributes: { + id: "podium", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f680", + voted: false, + }, + id: "podium", + links: { self: "/api/icons/podium" }, + type: "icon", + }, + { + attributes: { + id: "podium-star", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f758", + voted: false, + }, + id: "podium-star", + links: { self: "/api/icons/podium-star" }, + type: "icon", + }, + { + attributes: { + id: "police-box", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f921", + voted: false, + }, + id: "police-box", + links: { self: "/api/icons/police-box" }, + type: "icon", + }, + { + attributes: { + id: "poll", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f681", + voted: false, + }, + id: "poll", + links: { self: "/api/icons/poll" }, + type: "icon", + }, + { + attributes: { + id: "poll-h", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f682", + voted: false, + }, + id: "poll-h", + links: { self: "/api/icons/poll-h" }, + type: "icon", + }, + { + attributes: { + id: "poll-people", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f759", + voted: false, + }, + id: "poll-people", + links: { self: "/api/icons/poll-people" }, + type: "icon", + }, + { + attributes: { + id: "poo", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2fe", + voted: false, + }, + id: "poo", + links: { self: "/api/icons/poo" }, + type: "icon", + }, + { + attributes: { + id: "poo-storm", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f75a", + voted: false, + }, + id: "poo-storm", + links: { self: "/api/icons/poo-storm" }, + type: "icon", + }, + { + attributes: { + id: "poop", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f619", + voted: false, + }, + id: "poop", + links: { self: "/api/icons/poop" }, + type: "icon", + }, + { + attributes: { + id: "popcorn", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f819", + voted: false, + }, + id: "popcorn", + links: { self: "/api/icons/popcorn" }, + type: "icon", + }, + { + attributes: { + id: "portal-enter", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f922", + voted: false, + }, + id: "portal-enter", + links: { self: "/api/icons/portal-enter" }, + type: "icon", + }, + { + attributes: { + id: "portal-exit", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f923", + voted: false, + }, + id: "portal-exit", + links: { self: "/api/icons/portal-exit" }, + type: "icon", + }, + { + attributes: { + id: "portrait", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3e0", + voted: false, + }, + id: "portrait", + links: { self: "/api/icons/portrait" }, + type: "icon", + }, + { + attributes: { + id: "pound-sign", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f154", + voted: false, + }, + id: "pound-sign", + links: { self: "/api/icons/pound-sign" }, + type: "icon", + }, + { + attributes: { + id: "power-off", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f011", + voted: false, + }, + id: "power-off", + links: { self: "/api/icons/power-off" }, + type: "icon", + }, + { + attributes: { + id: "pray", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f683", + voted: false, + }, + id: "pray", + links: { self: "/api/icons/pray" }, + type: "icon", + }, + { + attributes: { + id: "praying-hands", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f684", + voted: false, + }, + id: "praying-hands", + links: { self: "/api/icons/praying-hands" }, + type: "icon", + }, + { + attributes: { + id: "prescription", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5b1", + voted: false, + }, + id: "prescription", + links: { self: "/api/icons/prescription" }, + type: "icon", + }, + { + attributes: { + id: "prescription-bottle", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f485", + voted: false, + }, + id: "prescription-bottle", + links: { self: "/api/icons/prescription-bottle" }, + type: "icon", + }, + { + attributes: { + id: "prescription-bottle-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f486", + voted: false, + }, + id: "prescription-bottle-alt", + links: { self: "/api/icons/prescription-bottle-alt" }, + type: "icon", + }, + { + attributes: { + id: "presentation", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f685", + voted: false, + }, + id: "presentation", + links: { self: "/api/icons/presentation" }, + type: "icon", + }, + { + attributes: { + id: "print", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f02f", + voted: false, + }, + id: "print", + links: { self: "/api/icons/print" }, + type: "icon", + }, + { + attributes: { + id: "print-search", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f81a", + voted: true, + }, + id: "print-search", + links: { self: "/api/icons/print-search" }, + type: "icon", + }, + { + attributes: { + id: "print-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f686", + voted: false, + }, + id: "print-slash", + links: { self: "/api/icons/print-slash" }, + type: "icon", + }, + { + attributes: { + id: "procedures", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f487", + voted: false, + }, + id: "procedures", + links: { self: "/api/icons/procedures" }, + type: "icon", + }, + { + attributes: { + id: "product-hunt", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f288", + voted: false, + }, + id: "product-hunt", + links: { self: "/api/icons/product-hunt" }, + type: "icon", + }, + { + attributes: { + id: "project-diagram", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f542", + voted: false, + }, + id: "project-diagram", + links: { self: "/api/icons/project-diagram" }, + type: "icon", + }, + { + attributes: { + id: "projector", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8d6", + voted: false, + }, + id: "projector", + links: { self: "/api/icons/projector" }, + type: "icon", + }, + { + attributes: { + id: "pump-medical", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f96a", + voted: false, + }, + id: "pump-medical", + links: { self: "/api/icons/pump-medical" }, + type: "icon", + }, + { + attributes: { + id: "pump-soap", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f96b", + voted: false, + }, + id: "pump-soap", + links: { self: "/api/icons/pump-soap" }, + type: "icon", + }, + { + attributes: { + id: "pumpkin", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f707", + voted: false, + }, + id: "pumpkin", + links: { self: "/api/icons/pumpkin" }, + type: "icon", + }, + { + attributes: { id: "pushed", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3e1", voted: false }, + id: "pushed", + links: { self: "/api/icons/pushed" }, + type: "icon", + }, + { + attributes: { + id: "puzzle-piece", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f12e", + voted: false, + }, + id: "puzzle-piece", + links: { self: "/api/icons/puzzle-piece" }, + type: "icon", + }, + { + attributes: { id: "python", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3e2", voted: false }, + id: "python", + links: { self: "/api/icons/python" }, + type: "icon", + }, + { + attributes: { id: "qq", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1d6", voted: false }, + id: "qq", + links: { self: "/api/icons/qq" }, + type: "icon", + }, + { + attributes: { + id: "qrcode", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f029", + voted: false, + }, + id: "qrcode", + links: { self: "/api/icons/qrcode" }, + type: "icon", + }, + { + attributes: { + id: "question", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f128", + voted: false, + }, + id: "question", + links: { self: "/api/icons/question" }, + type: "icon", + }, + { + attributes: { + id: "question-circle", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f059", + voted: false, + }, + id: "question-circle", + links: { self: "/api/icons/question-circle" }, + type: "icon", + }, + { + attributes: { + id: "question-square", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2fd", + voted: false, + }, + id: "question-square", + links: { self: "/api/icons/question-square" }, + type: "icon", + }, + { + attributes: { + id: "quidditch", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f458", + voted: false, + }, + id: "quidditch", + links: { self: "/api/icons/quidditch" }, + type: "icon", + }, + { + attributes: { id: "quinscape", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f459", voted: false }, + id: "quinscape", + links: { self: "/api/icons/quinscape" }, + type: "icon", + }, + { + attributes: { id: "quora", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2c4", voted: false }, + id: "quora", + links: { self: "/api/icons/quora" }, + type: "icon", + }, + { + attributes: { + id: "quote-left", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f10d", + voted: false, + }, + id: "quote-left", + links: { self: "/api/icons/quote-left" }, + type: "icon", + }, + { + attributes: { + id: "quote-right", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f10e", + voted: false, + }, + id: "quote-right", + links: { self: "/api/icons/quote-right" }, + type: "icon", + }, + { + attributes: { + id: "quran", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f687", + voted: false, + }, + id: "quran", + links: { self: "/api/icons/quran" }, + type: "icon", + }, + { + attributes: { + id: "r-project", + membership: { + free: ["brands"], + pro: ["brands"], + }, + styles: ["brands"], + unicode: "f4f7", + voted: true, + }, + id: "r-project", + links: { self: "/api/icons/r-project" }, + type: "icon", + }, + { + attributes: { + id: "rabbit", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f708", + voted: true, + }, + id: "rabbit", + links: { self: "/api/icons/rabbit" }, + type: "icon", + }, + { + attributes: { + id: "rabbit-fast", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f709", + voted: true, + }, + id: "rabbit-fast", + links: { self: "/api/icons/rabbit-fast" }, + type: "icon", + }, + { + attributes: { + id: "racquet", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f45a", + voted: false, + }, + id: "racquet", + links: { self: "/api/icons/racquet" }, + type: "icon", + }, + { + attributes: { + id: "radar", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f924", + voted: false, + }, + id: "radar", + links: { self: "/api/icons/radar" }, + type: "icon", + }, + { + attributes: { + id: "radiation", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7b9", + voted: true, + }, + id: "radiation", + links: { self: "/api/icons/radiation" }, + type: "icon", + }, + { + attributes: { + id: "radiation-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7ba", + voted: true, + }, + id: "radiation-alt", + links: { self: "/api/icons/radiation-alt" }, + type: "icon", + }, + { + attributes: { + id: "radio", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8d7", + voted: false, + }, + id: "radio", + links: { self: "/api/icons/radio" }, + type: "icon", + }, + { + attributes: { + id: "radio-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8d8", + voted: false, + }, + id: "radio-alt", + links: { self: "/api/icons/radio-alt" }, + type: "icon", + }, + { + attributes: { + id: "rainbow", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f75b", + voted: false, + }, + id: "rainbow", + links: { self: "/api/icons/rainbow" }, + type: "icon", + }, + { + attributes: { + id: "raindrops", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f75c", + voted: false, + }, + id: "raindrops", + links: { self: "/api/icons/raindrops" }, + type: "icon", + }, + { + attributes: { + id: "ram", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f70a", + voted: false, + }, + id: "ram", + links: { self: "/api/icons/ram" }, + type: "icon", + }, + { + attributes: { + id: "ramp-loading", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4d4", + voted: false, + }, + id: "ramp-loading", + links: { self: "/api/icons/ramp-loading" }, + type: "icon", + }, + { + attributes: { + id: "random", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f074", + voted: false, + }, + id: "random", + links: { self: "/api/icons/random" }, + type: "icon", + }, + { + attributes: { id: "raspberry-pi", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f7bb", voted: true }, + id: "raspberry-pi", + links: { self: "/api/icons/raspberry-pi" }, + type: "icon", + }, + { + attributes: { id: "ravelry", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2d9", voted: false }, + id: "ravelry", + links: { self: "/api/icons/ravelry" }, + type: "icon", + }, + { + attributes: { + id: "raygun", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f925", + voted: false, + }, + id: "raygun", + links: { self: "/api/icons/raygun" }, + type: "icon", + }, + { + attributes: { id: "react", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f41b", voted: false }, + id: "react", + links: { self: "/api/icons/react" }, + type: "icon", + }, + { + attributes: { id: "reacteurope", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f75d", voted: false }, + id: "reacteurope", + links: { self: "/api/icons/reacteurope" }, + type: "icon", + }, + { + attributes: { id: "readme", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f4d5", voted: false }, + id: "readme", + links: { self: "/api/icons/readme" }, + type: "icon", + }, + { + attributes: { id: "rebel", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1d0", voted: false }, + id: "rebel", + links: { self: "/api/icons/rebel" }, + type: "icon", + }, + { + attributes: { + id: "receipt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f543", + voted: true, + }, + id: "receipt", + links: { self: "/api/icons/receipt" }, + type: "icon", + }, + { + attributes: { + id: "record-vinyl", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8d9", + voted: false, + }, + id: "record-vinyl", + links: { self: "/api/icons/record-vinyl" }, + type: "icon", + }, + { + attributes: { + id: "rectangle-landscape", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2fa", + voted: false, + }, + id: "rectangle-landscape", + links: { self: "/api/icons/rectangle-landscape" }, + type: "icon", + }, + { + attributes: { + id: "rectangle-portrait", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2fb", + voted: false, + }, + id: "rectangle-portrait", + links: { self: "/api/icons/rectangle-portrait" }, + type: "icon", + }, + { + attributes: { + id: "rectangle-wide", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2fc", + voted: false, + }, + id: "rectangle-wide", + links: { self: "/api/icons/rectangle-wide" }, + type: "icon", + }, + { + attributes: { + id: "recycle", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1b8", + voted: false, + }, + id: "recycle", + links: { self: "/api/icons/recycle" }, + type: "icon", + }, + { + attributes: { id: "red-river", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3e3", voted: false }, + id: "red-river", + links: { self: "/api/icons/red-river" }, + type: "icon", + }, + { + attributes: { id: "reddit", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1a1", voted: false }, + id: "reddit", + links: { self: "/api/icons/reddit" }, + type: "icon", + }, + { + attributes: { + id: "reddit-alien", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f281", + voted: false, + }, + id: "reddit-alien", + links: { self: "/api/icons/reddit-alien" }, + type: "icon", + }, + { + attributes: { + id: "reddit-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f1a2", + voted: false, + }, + id: "reddit-square", + links: { self: "/api/icons/reddit-square" }, + type: "icon", + }, + { + attributes: { id: "redhat", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f7bc", voted: true }, + id: "redhat", + links: { self: "/api/icons/redhat" }, + type: "icon", + }, + { + attributes: { + id: "redo", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f01e", + voted: false, + }, + id: "redo", + links: { self: "/api/icons/redo" }, + type: "icon", + }, + { + attributes: { + id: "redo-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2f9", + voted: false, + }, + id: "redo-alt", + links: { self: "/api/icons/redo-alt" }, + type: "icon", + }, + { + attributes: { + id: "refrigerator", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f926", + voted: false, + }, + id: "refrigerator", + links: { self: "/api/icons/refrigerator" }, + type: "icon", + }, + { + attributes: { + id: "registered", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f25d", + voted: false, + }, + id: "registered", + links: { self: "/api/icons/registered" }, + type: "icon", + }, + { + attributes: { + id: "remove-format", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f87d", + voted: false, + }, + id: "remove-format", + links: { self: "/api/icons/remove-format" }, + type: "icon", + }, + { + attributes: { id: "renren", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f18b", voted: false }, + id: "renren", + links: { self: "/api/icons/renren" }, + type: "icon", + }, + { + attributes: { + id: "repeat", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f363", + voted: false, + }, + id: "repeat", + links: { self: "/api/icons/repeat" }, + type: "icon", + }, + { + attributes: { + id: "repeat-1", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f365", + voted: false, + }, + id: "repeat-1", + links: { self: "/api/icons/repeat-1" }, + type: "icon", + }, + { + attributes: { + id: "repeat-1-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f366", + voted: false, + }, + id: "repeat-1-alt", + links: { self: "/api/icons/repeat-1-alt" }, + type: "icon", + }, + { + attributes: { + id: "repeat-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f364", + voted: false, + }, + id: "repeat-alt", + links: { self: "/api/icons/repeat-alt" }, + type: "icon", + }, + { + attributes: { + id: "reply", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3e5", + voted: false, + }, + id: "reply", + links: { self: "/api/icons/reply" }, + type: "icon", + }, + { + attributes: { + id: "reply-all", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f122", + voted: false, + }, + id: "reply-all", + links: { self: "/api/icons/reply-all" }, + type: "icon", + }, + { + attributes: { id: "replyd", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3e6", voted: false }, + id: "replyd", + links: { self: "/api/icons/replyd" }, + type: "icon", + }, + { + attributes: { + id: "republican", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f75e", + voted: false, + }, + id: "republican", + links: { self: "/api/icons/republican" }, + type: "icon", + }, + { + attributes: { id: "researchgate", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f4f8", voted: true }, + id: "researchgate", + links: { self: "/api/icons/researchgate" }, + type: "icon", + }, + { + attributes: { id: "resolving", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3e7", voted: false }, + id: "resolving", + links: { self: "/api/icons/resolving" }, + type: "icon", + }, + { + attributes: { + id: "restroom", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7bd", + voted: true, + }, + id: "restroom", + links: { self: "/api/icons/restroom" }, + type: "icon", + }, + { + attributes: { + id: "retweet", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f079", + voted: false, + }, + id: "retweet", + links: { self: "/api/icons/retweet" }, + type: "icon", + }, + { + attributes: { + id: "retweet-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f361", + voted: false, + }, + id: "retweet-alt", + links: { self: "/api/icons/retweet-alt" }, + type: "icon", + }, + { + attributes: { id: "rev", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f5b2", voted: false }, + id: "rev", + links: { self: "/api/icons/rev" }, + type: "icon", + }, + { + attributes: { + id: "ribbon", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4d6", + voted: false, + }, + id: "ribbon", + links: { self: "/api/icons/ribbon" }, + type: "icon", + }, + { + attributes: { + id: "ring", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f70b", + voted: false, + }, + id: "ring", + links: { self: "/api/icons/ring" }, + type: "icon", + }, + { + attributes: { + id: "rings-wedding", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f81b", + voted: true, + }, + id: "rings-wedding", + links: { self: "/api/icons/rings-wedding" }, + type: "icon", + }, + { + attributes: { + id: "road", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f018", + voted: false, + }, + id: "road", + links: { self: "/api/icons/road" }, + type: "icon", + }, + { + attributes: { + id: "robot", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f544", + voted: true, + }, + id: "robot", + links: { self: "/api/icons/robot" }, + type: "icon", + }, + { + attributes: { + id: "rocket", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f135", + voted: false, + }, + id: "rocket", + links: { self: "/api/icons/rocket" }, + type: "icon", + }, + { + attributes: { + id: "rocket-launch", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f927", + voted: false, + }, + id: "rocket-launch", + links: { self: "/api/icons/rocket-launch" }, + type: "icon", + }, + { + attributes: { id: "rocketchat", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3e8", voted: false }, + id: "rocketchat", + links: { self: "/api/icons/rocketchat" }, + type: "icon", + }, + { + attributes: { id: "rockrms", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3e9", voted: false }, + id: "rockrms", + links: { self: "/api/icons/rockrms" }, + type: "icon", + }, + { + attributes: { + id: "route", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4d7", + voted: false, + }, + id: "route", + links: { self: "/api/icons/route" }, + type: "icon", + }, + { + attributes: { + id: "route-highway", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f61a", + voted: false, + }, + id: "route-highway", + links: { self: "/api/icons/route-highway" }, + type: "icon", + }, + { + attributes: { + id: "route-interstate", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f61b", + voted: false, + }, + id: "route-interstate", + links: { self: "/api/icons/route-interstate" }, + type: "icon", + }, + { + attributes: { + id: "router", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8da", + voted: false, + }, + id: "router", + links: { self: "/api/icons/router" }, + type: "icon", + }, + { + attributes: { + id: "rss", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f09e", + voted: false, + }, + id: "rss", + links: { self: "/api/icons/rss" }, + type: "icon", + }, + { + attributes: { + id: "rss-square", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f143", + voted: false, + }, + id: "rss-square", + links: { self: "/api/icons/rss-square" }, + type: "icon", + }, + { + attributes: { + id: "ruble-sign", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f158", + voted: false, + }, + id: "ruble-sign", + links: { self: "/api/icons/ruble-sign" }, + type: "icon", + }, + { + attributes: { + id: "ruler", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f545", + voted: true, + }, + id: "ruler", + links: { self: "/api/icons/ruler" }, + type: "icon", + }, + { + attributes: { + id: "ruler-combined", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f546", + voted: true, + }, + id: "ruler-combined", + links: { self: "/api/icons/ruler-combined" }, + type: "icon", + }, + { + attributes: { + id: "ruler-horizontal", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f547", + voted: true, + }, + id: "ruler-horizontal", + links: { self: "/api/icons/ruler-horizontal" }, + type: "icon", + }, + { + attributes: { + id: "ruler-triangle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f61c", + voted: false, + }, + id: "ruler-triangle", + links: { self: "/api/icons/ruler-triangle" }, + type: "icon", + }, + { + attributes: { + id: "ruler-vertical", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f548", + voted: true, + }, + id: "ruler-vertical", + links: { self: "/api/icons/ruler-vertical" }, + type: "icon", + }, + { + attributes: { + id: "running", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f70c", + voted: true, + }, + id: "running", + links: { self: "/api/icons/running" }, + type: "icon", + }, + { + attributes: { + id: "rupee-sign", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f156", + voted: false, + }, + id: "rupee-sign", + links: { self: "/api/icons/rupee-sign" }, + type: "icon", + }, + { + attributes: { + id: "rv", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7be", + voted: false, + }, + id: "rv", + links: { self: "/api/icons/rv" }, + type: "icon", + }, + { + attributes: { + id: "sack", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f81c", + voted: false, + }, + id: "sack", + links: { self: "/api/icons/sack" }, + type: "icon", + }, + { + attributes: { + id: "sack-dollar", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f81d", + voted: true, + }, + id: "sack-dollar", + links: { self: "/api/icons/sack-dollar" }, + type: "icon", + }, + { + attributes: { + id: "sad-cry", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5b3", + voted: false, + }, + id: "sad-cry", + links: { self: "/api/icons/sad-cry" }, + type: "icon", + }, + { + attributes: { + id: "sad-tear", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5b4", + voted: false, + }, + id: "sad-tear", + links: { self: "/api/icons/sad-tear" }, + type: "icon", + }, + { + attributes: { id: "safari", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f267", voted: false }, + id: "safari", + links: { self: "/api/icons/safari" }, + type: "icon", + }, + { + attributes: { + id: "salad", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f81e", + voted: false, + }, + id: "salad", + links: { self: "/api/icons/salad" }, + type: "icon", + }, + { + attributes: { id: "salesforce", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f83b", voted: false }, + id: "salesforce", + links: { self: "/api/icons/salesforce" }, + type: "icon", + }, + { + attributes: { + id: "sandwich", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f81f", + voted: false, + }, + id: "sandwich", + links: { self: "/api/icons/sandwich" }, + type: "icon", + }, + { + attributes: { id: "sass", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f41e", voted: false }, + id: "sass", + links: { self: "/api/icons/sass" }, + type: "icon", + }, + { + attributes: { + id: "satellite", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7bf", + voted: true, + }, + id: "satellite", + links: { self: "/api/icons/satellite" }, + type: "icon", + }, + { + attributes: { + id: "satellite-dish", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7c0", + voted: true, + }, + id: "satellite-dish", + links: { self: "/api/icons/satellite-dish" }, + type: "icon", + }, + { + attributes: { + id: "sausage", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f820", + voted: false, + }, + id: "sausage", + links: { self: "/api/icons/sausage" }, + type: "icon", + }, + { + attributes: { + id: "save", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0c7", + voted: false, + }, + id: "save", + links: { self: "/api/icons/save" }, + type: "icon", + }, + { + attributes: { + id: "sax-hot", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8db", + voted: false, + }, + id: "sax-hot", + links: { self: "/api/icons/sax-hot" }, + type: "icon", + }, + { + attributes: { + id: "saxophone", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8dc", + voted: false, + }, + id: "saxophone", + links: { self: "/api/icons/saxophone" }, + type: "icon", + }, + { + attributes: { + id: "scalpel", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f61d", + voted: false, + }, + id: "scalpel", + links: { self: "/api/icons/scalpel" }, + type: "icon", + }, + { + attributes: { + id: "scalpel-path", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f61e", + voted: false, + }, + id: "scalpel-path", + links: { self: "/api/icons/scalpel-path" }, + type: "icon", + }, + { + attributes: { + id: "scanner", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f488", + voted: false, + }, + id: "scanner", + links: { self: "/api/icons/scanner" }, + type: "icon", + }, + { + attributes: { + id: "scanner-image", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8f3", + voted: false, + }, + id: "scanner-image", + links: { self: "/api/icons/scanner-image" }, + type: "icon", + }, + { + attributes: { + id: "scanner-keyboard", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f489", + voted: false, + }, + id: "scanner-keyboard", + links: { self: "/api/icons/scanner-keyboard" }, + type: "icon", + }, + { + attributes: { + id: "scanner-touchscreen", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f48a", + voted: false, + }, + id: "scanner-touchscreen", + links: { self: "/api/icons/scanner-touchscreen" }, + type: "icon", + }, + { + attributes: { + id: "scarecrow", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f70d", + voted: false, + }, + id: "scarecrow", + links: { self: "/api/icons/scarecrow" }, + type: "icon", + }, + { + attributes: { + id: "scarf", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7c1", + voted: false, + }, + id: "scarf", + links: { self: "/api/icons/scarf" }, + type: "icon", + }, + { + attributes: { id: "schlix", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3ea", voted: false }, + id: "schlix", + links: { self: "/api/icons/schlix" }, + type: "icon", + }, + { + attributes: { + id: "school", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f549", + voted: true, + }, + id: "school", + links: { self: "/api/icons/school" }, + type: "icon", + }, + { + attributes: { + id: "screwdriver", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f54a", + voted: true, + }, + id: "screwdriver", + links: { self: "/api/icons/screwdriver" }, + type: "icon", + }, + { + attributes: { id: "scribd", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f28a", voted: false }, + id: "scribd", + links: { self: "/api/icons/scribd" }, + type: "icon", + }, + { + attributes: { + id: "scroll", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f70e", + voted: false, + }, + id: "scroll", + links: { self: "/api/icons/scroll" }, + type: "icon", + }, + { + attributes: { + id: "scroll-old", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f70f", + voted: false, + }, + id: "scroll-old", + links: { self: "/api/icons/scroll-old" }, + type: "icon", + }, + { + attributes: { + id: "scrubber", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2f8", + voted: false, + }, + id: "scrubber", + links: { self: "/api/icons/scrubber" }, + type: "icon", + }, + { + attributes: { + id: "scythe", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f710", + voted: false, + }, + id: "scythe", + links: { self: "/api/icons/scythe" }, + type: "icon", + }, + { + attributes: { + id: "sd-card", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7c2", + voted: true, + }, + id: "sd-card", + links: { self: "/api/icons/sd-card" }, + type: "icon", + }, + { + attributes: { + id: "search", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f002", + voted: false, + }, + id: "search", + links: { self: "/api/icons/search" }, + type: "icon", + }, + { + attributes: { + id: "search-dollar", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f688", + voted: false, + }, + id: "search-dollar", + links: { self: "/api/icons/search-dollar" }, + type: "icon", + }, + { + attributes: { + id: "search-location", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f689", + voted: false, + }, + id: "search-location", + links: { self: "/api/icons/search-location" }, + type: "icon", + }, + { + attributes: { + id: "search-minus", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f010", + voted: false, + }, + id: "search-minus", + links: { self: "/api/icons/search-minus" }, + type: "icon", + }, + { + attributes: { + id: "search-plus", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f00e", + voted: false, + }, + id: "search-plus", + links: { self: "/api/icons/search-plus" }, + type: "icon", + }, + { + attributes: { id: "searchengin", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3eb", voted: false }, + id: "searchengin", + links: { self: "/api/icons/searchengin" }, + type: "icon", + }, + { + attributes: { + id: "seedling", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4d8", + voted: false, + }, + id: "seedling", + links: { self: "/api/icons/seedling" }, + type: "icon", + }, + { + attributes: { id: "sellcast", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2da", voted: false }, + id: "sellcast", + links: { self: "/api/icons/sellcast" }, + type: "icon", + }, + { + attributes: { id: "sellsy", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f213", voted: false }, + id: "sellsy", + links: { self: "/api/icons/sellsy" }, + type: "icon", + }, + { + attributes: { + id: "send-back", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f87e", + voted: true, + }, + id: "send-back", + links: { self: "/api/icons/send-back" }, + type: "icon", + }, + { + attributes: { + id: "send-backward", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f87f", + voted: true, + }, + id: "send-backward", + links: { self: "/api/icons/send-backward" }, + type: "icon", + }, + { + attributes: { + id: "sensor", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f928", + voted: false, + }, + id: "sensor", + links: { self: "/api/icons/sensor" }, + type: "icon", + }, + { + attributes: { + id: "sensor-alert", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f929", + voted: false, + }, + id: "sensor-alert", + links: { self: "/api/icons/sensor-alert" }, + type: "icon", + }, + { + attributes: { + id: "sensor-fire", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f92a", + voted: false, + }, + id: "sensor-fire", + links: { self: "/api/icons/sensor-fire" }, + type: "icon", + }, + { + attributes: { + id: "sensor-on", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f92b", + voted: false, + }, + id: "sensor-on", + links: { self: "/api/icons/sensor-on" }, + type: "icon", + }, + { + attributes: { + id: "sensor-smoke", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f92c", + voted: false, + }, + id: "sensor-smoke", + links: { self: "/api/icons/sensor-smoke" }, + type: "icon", + }, + { + attributes: { + id: "server", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f233", + voted: false, + }, + id: "server", + links: { self: "/api/icons/server" }, + type: "icon", + }, + { + attributes: { + id: "servicestack", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f3ec", + voted: false, + }, + id: "servicestack", + links: { self: "/api/icons/servicestack" }, + type: "icon", + }, + { + attributes: { + id: "shapes", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f61f", + voted: false, + }, + id: "shapes", + links: { self: "/api/icons/shapes" }, + type: "icon", + }, + { + attributes: { + id: "share", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f064", + voted: false, + }, + id: "share", + links: { self: "/api/icons/share" }, + type: "icon", + }, + { + attributes: { + id: "share-all", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f367", + voted: false, + }, + id: "share-all", + links: { self: "/api/icons/share-all" }, + type: "icon", + }, + { + attributes: { + id: "share-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1e0", + voted: false, + }, + id: "share-alt", + links: { self: "/api/icons/share-alt" }, + type: "icon", + }, + { + attributes: { + id: "share-alt-square", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1e1", + voted: false, + }, + id: "share-alt-square", + links: { self: "/api/icons/share-alt-square" }, + type: "icon", + }, + { + attributes: { + id: "share-square", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f14d", + voted: false, + }, + id: "share-square", + links: { self: "/api/icons/share-square" }, + type: "icon", + }, + { + attributes: { + id: "sheep", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f711", + voted: false, + }, + id: "sheep", + links: { self: "/api/icons/sheep" }, + type: "icon", + }, + { + attributes: { + id: "shekel-sign", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f20b", + voted: true, + }, + id: "shekel-sign", + links: { self: "/api/icons/shekel-sign" }, + type: "icon", + }, + { + attributes: { + id: "shield", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f132", + voted: false, + }, + id: "shield", + links: { self: "/api/icons/shield" }, + type: "icon", + }, + { + attributes: { + id: "shield-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3ed", + voted: false, + }, + id: "shield-alt", + links: { self: "/api/icons/shield-alt" }, + type: "icon", + }, + { + attributes: { + id: "shield-check", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2f7", + voted: false, + }, + id: "shield-check", + links: { self: "/api/icons/shield-check" }, + type: "icon", + }, + { + attributes: { + id: "shield-cross", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f712", + voted: false, + }, + id: "shield-cross", + links: { self: "/api/icons/shield-cross" }, + type: "icon", + }, + { + attributes: { + id: "shield-virus", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f96c", + voted: false, + }, + id: "shield-virus", + links: { self: "/api/icons/shield-virus" }, + type: "icon", + }, + { + attributes: { + id: "ship", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f21a", + voted: false, + }, + id: "ship", + links: { self: "/api/icons/ship" }, + type: "icon", + }, + { + attributes: { + id: "shipping-fast", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f48b", + voted: false, + }, + id: "shipping-fast", + links: { self: "/api/icons/shipping-fast" }, + type: "icon", + }, + { + attributes: { + id: "shipping-timed", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f48c", + voted: false, + }, + id: "shipping-timed", + links: { self: "/api/icons/shipping-timed" }, + type: "icon", + }, + { + attributes: { + id: "shirtsinbulk", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f214", + voted: false, + }, + id: "shirtsinbulk", + links: { self: "/api/icons/shirtsinbulk" }, + type: "icon", + }, + { + attributes: { + id: "shish-kebab", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f821", + voted: false, + }, + id: "shish-kebab", + links: { self: "/api/icons/shish-kebab" }, + type: "icon", + }, + { + attributes: { + id: "shoe-prints", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f54b", + voted: true, + }, + id: "shoe-prints", + links: { self: "/api/icons/shoe-prints" }, + type: "icon", + }, + { + attributes: { id: "shopify", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f957", voted: false }, + id: "shopify", + links: { self: "/api/icons/shopify" }, + type: "icon", + }, + { + attributes: { + id: "shopping-bag", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f290", + voted: false, + }, + id: "shopping-bag", + links: { self: "/api/icons/shopping-bag" }, + type: "icon", + }, + { + attributes: { + id: "shopping-basket", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f291", + voted: false, + }, + id: "shopping-basket", + links: { self: "/api/icons/shopping-basket" }, + type: "icon", + }, + { + attributes: { + id: "shopping-cart", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f07a", + voted: false, + }, + id: "shopping-cart", + links: { self: "/api/icons/shopping-cart" }, + type: "icon", + }, + { + attributes: { id: "shopware", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f5b5", voted: false }, + id: "shopware", + links: { self: "/api/icons/shopware" }, + type: "icon", + }, + { + attributes: { + id: "shovel", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f713", + voted: false, + }, + id: "shovel", + links: { self: "/api/icons/shovel" }, + type: "icon", + }, + { + attributes: { + id: "shovel-snow", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7c3", + voted: false, + }, + id: "shovel-snow", + links: { self: "/api/icons/shovel-snow" }, + type: "icon", + }, + { + attributes: { + id: "shower", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2cc", + voted: false, + }, + id: "shower", + links: { self: "/api/icons/shower" }, + type: "icon", + }, + { + attributes: { + id: "shredder", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f68a", + voted: false, + }, + id: "shredder", + links: { self: "/api/icons/shredder" }, + type: "icon", + }, + { + attributes: { + id: "shuttle-van", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5b6", + voted: false, + }, + id: "shuttle-van", + links: { self: "/api/icons/shuttle-van" }, + type: "icon", + }, + { + attributes: { + id: "shuttlecock", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f45b", + voted: false, + }, + id: "shuttlecock", + links: { self: "/api/icons/shuttlecock" }, + type: "icon", + }, + { + attributes: { + id: "sickle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f822", + voted: false, + }, + id: "sickle", + links: { self: "/api/icons/sickle" }, + type: "icon", + }, + { + attributes: { + id: "sigma", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f68b", + voted: false, + }, + id: "sigma", + links: { self: "/api/icons/sigma" }, + type: "icon", + }, + { + attributes: { + id: "sign", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4d9", + voted: false, + }, + id: "sign", + links: { self: "/api/icons/sign" }, + type: "icon", + }, + { + attributes: { + id: "sign-in", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f090", + voted: false, + }, + id: "sign-in", + links: { self: "/api/icons/sign-in" }, + type: "icon", + }, + { + attributes: { + id: "sign-in-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2f6", + voted: false, + }, + id: "sign-in-alt", + links: { self: "/api/icons/sign-in-alt" }, + type: "icon", + }, + { + attributes: { + id: "sign-language", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2a7", + voted: false, + }, + id: "sign-language", + links: { self: "/api/icons/sign-language" }, + type: "icon", + }, + { + attributes: { + id: "sign-out", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f08b", + voted: false, + }, + id: "sign-out", + links: { self: "/api/icons/sign-out" }, + type: "icon", + }, + { + attributes: { + id: "sign-out-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2f5", + voted: false, + }, + id: "sign-out-alt", + links: { self: "/api/icons/sign-out-alt" }, + type: "icon", + }, + { + attributes: { + id: "signal", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f012", + voted: false, + }, + id: "signal", + links: { self: "/api/icons/signal" }, + type: "icon", + }, + { + attributes: { + id: "signal-1", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f68c", + voted: true, + }, + id: "signal-1", + links: { self: "/api/icons/signal-1" }, + type: "icon", + }, + { + attributes: { + id: "signal-2", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f68d", + voted: true, + }, + id: "signal-2", + links: { self: "/api/icons/signal-2" }, + type: "icon", + }, + { + attributes: { + id: "signal-3", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f68e", + voted: true, + }, + id: "signal-3", + links: { self: "/api/icons/signal-3" }, + type: "icon", + }, + { + attributes: { + id: "signal-4", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f68f", + voted: true, + }, + id: "signal-4", + links: { self: "/api/icons/signal-4" }, + type: "icon", + }, + { + attributes: { + id: "signal-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f690", + voted: true, + }, + id: "signal-alt", + links: { self: "/api/icons/signal-alt" }, + type: "icon", + }, + { + attributes: { + id: "signal-alt-1", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f691", + voted: true, + }, + id: "signal-alt-1", + links: { self: "/api/icons/signal-alt-1" }, + type: "icon", + }, + { + attributes: { + id: "signal-alt-2", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f692", + voted: true, + }, + id: "signal-alt-2", + links: { self: "/api/icons/signal-alt-2" }, + type: "icon", + }, + { + attributes: { + id: "signal-alt-3", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f693", + voted: true, + }, + id: "signal-alt-3", + links: { self: "/api/icons/signal-alt-3" }, + type: "icon", + }, + { + attributes: { + id: "signal-alt-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f694", + voted: true, + }, + id: "signal-alt-slash", + links: { self: "/api/icons/signal-alt-slash" }, + type: "icon", + }, + { + attributes: { + id: "signal-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f695", + voted: true, + }, + id: "signal-slash", + links: { self: "/api/icons/signal-slash" }, + type: "icon", + }, + { + attributes: { + id: "signal-stream", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8dd", + voted: false, + }, + id: "signal-stream", + links: { self: "/api/icons/signal-stream" }, + type: "icon", + }, + { + attributes: { + id: "signature", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5b7", + voted: true, + }, + id: "signature", + links: { self: "/api/icons/signature" }, + type: "icon", + }, + { + attributes: { + id: "sim-card", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7c4", + voted: true, + }, + id: "sim-card", + links: { self: "/api/icons/sim-card" }, + type: "icon", + }, + { + attributes: { id: "simplybuilt", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f215", voted: false }, + id: "simplybuilt", + links: { self: "/api/icons/simplybuilt" }, + type: "icon", + }, + { + attributes: { + id: "sink", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f96d", + voted: false, + }, + id: "sink", + links: { self: "/api/icons/sink" }, + type: "icon", + }, + { + attributes: { + id: "siren", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f92d", + voted: false, + }, + id: "siren", + links: { self: "/api/icons/siren" }, + type: "icon", + }, + { + attributes: { + id: "siren-on", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f92e", + voted: false, + }, + id: "siren-on", + links: { self: "/api/icons/siren-on" }, + type: "icon", + }, + { + attributes: { id: "sistrix", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3ee", voted: false }, + id: "sistrix", + links: { self: "/api/icons/sistrix" }, + type: "icon", + }, + { + attributes: { + id: "sitemap", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0e8", + voted: false, + }, + id: "sitemap", + links: { self: "/api/icons/sitemap" }, + type: "icon", + }, + { + attributes: { id: "sith", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f512", voted: false }, + id: "sith", + links: { self: "/api/icons/sith" }, + type: "icon", + }, + { + attributes: { + id: "skating", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7c5", + voted: false, + }, + id: "skating", + links: { self: "/api/icons/skating" }, + type: "icon", + }, + { + attributes: { + id: "skeleton", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f620", + voted: false, + }, + id: "skeleton", + links: { self: "/api/icons/skeleton" }, + type: "icon", + }, + { + attributes: { id: "sketch", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f7c6", voted: false }, + id: "sketch", + links: { self: "/api/icons/sketch" }, + type: "icon", + }, + { + attributes: { + id: "ski-jump", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7c7", + voted: false, + }, + id: "ski-jump", + links: { self: "/api/icons/ski-jump" }, + type: "icon", + }, + { + attributes: { + id: "ski-lift", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7c8", + voted: false, + }, + id: "ski-lift", + links: { self: "/api/icons/ski-lift" }, + type: "icon", + }, + { + attributes: { + id: "skiing", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7c9", + voted: false, + }, + id: "skiing", + links: { self: "/api/icons/skiing" }, + type: "icon", + }, + { + attributes: { + id: "skiing-nordic", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7ca", + voted: false, + }, + id: "skiing-nordic", + links: { self: "/api/icons/skiing-nordic" }, + type: "icon", + }, + { + attributes: { + id: "skull", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f54c", + voted: true, + }, + id: "skull", + links: { self: "/api/icons/skull" }, + type: "icon", + }, + { + attributes: { + id: "skull-cow", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f8de", + voted: false, + }, + id: "skull-cow", + links: { self: "/api/icons/skull-cow" }, + type: "icon", + }, + { + attributes: { + id: "skull-crossbones", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f714", + voted: false, + }, + id: "skull-crossbones", + links: { self: "/api/icons/skull-crossbones" }, + type: "icon", + }, + { + attributes: { id: "skyatlas", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f216", voted: false }, + id: "skyatlas", + links: { self: "/api/icons/skyatlas" }, + type: "icon", + }, + { + attributes: { id: "skype", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f17e", voted: false }, + id: "skype", + links: { self: "/api/icons/skype" }, + type: "icon", + }, + { + attributes: { id: "slack", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f198", voted: false }, + id: "slack", + links: { self: "/api/icons/slack" }, + type: "icon", + }, + { + attributes: { id: "slack-hash", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3ef", voted: false }, + id: "slack-hash", + links: { self: "/api/icons/slack-hash" }, + type: "icon", + }, + { + attributes: { + id: "slash", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f715", + voted: true, + }, + id: "slash", + links: { self: "/api/icons/slash" }, + type: "icon", + }, + { + attributes: { + id: "sledding", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7cb", + voted: false, + }, + id: "sledding", + links: { self: "/api/icons/sledding" }, + type: "icon", + }, + { + attributes: { + id: "sleigh", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7cc", + voted: false, + }, + id: "sleigh", + links: { self: "/api/icons/sleigh" }, + type: "icon", + }, + { + attributes: { + id: "sliders-h", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1de", + voted: false, + }, + id: "sliders-h", + links: { self: "/api/icons/sliders-h" }, + type: "icon", + }, + { + attributes: { + id: "sliders-h-square", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3f0", + voted: false, + }, + id: "sliders-h-square", + links: { self: "/api/icons/sliders-h-square" }, + type: "icon", + }, + { + attributes: { + id: "sliders-v", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3f1", + voted: false, + }, + id: "sliders-v", + links: { self: "/api/icons/sliders-v" }, + type: "icon", + }, + { + attributes: { + id: "sliders-v-square", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3f2", + voted: false, + }, + id: "sliders-v-square", + links: { self: "/api/icons/sliders-v-square" }, + type: "icon", + }, + { + attributes: { id: "slideshare", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1e7", voted: false }, + id: "slideshare", + links: { self: "/api/icons/slideshare" }, + type: "icon", + }, + { + attributes: { + id: "smile", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f118", + voted: false, + }, + id: "smile", + links: { self: "/api/icons/smile" }, + type: "icon", + }, + { + attributes: { + id: "smile-beam", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5b8", + voted: false, + }, + id: "smile-beam", + links: { self: "/api/icons/smile-beam" }, + type: "icon", + }, + { + attributes: { + id: "smile-plus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5b9", + voted: false, + }, + id: "smile-plus", + links: { self: "/api/icons/smile-plus" }, + type: "icon", + }, + { + attributes: { + id: "smile-wink", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4da", + voted: false, + }, + id: "smile-wink", + links: { self: "/api/icons/smile-wink" }, + type: "icon", + }, + { + attributes: { + id: "smog", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f75f", + voted: false, + }, + id: "smog", + links: { self: "/api/icons/smog" }, + type: "icon", + }, + { + attributes: { + id: "smoke", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f760", + voted: false, + }, + id: "smoke", + links: { self: "/api/icons/smoke" }, + type: "icon", + }, + { + attributes: { + id: "smoking", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f48d", + voted: true, + }, + id: "smoking", + links: { self: "/api/icons/smoking" }, + type: "icon", + }, + { + attributes: { + id: "smoking-ban", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f54d", + voted: true, + }, + id: "smoking-ban", + links: { self: "/api/icons/smoking-ban" }, + type: "icon", + }, + { + attributes: { + id: "sms", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7cd", + voted: true, + }, + id: "sms", + links: { self: "/api/icons/sms" }, + type: "icon", + }, + { + attributes: { + id: "snake", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f716", + voted: false, + }, + id: "snake", + links: { self: "/api/icons/snake" }, + type: "icon", + }, + { + attributes: { id: "snapchat", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2ab", voted: false }, + id: "snapchat", + links: { self: "/api/icons/snapchat" }, + type: "icon", + }, + { + attributes: { + id: "snapchat-ghost", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f2ac", + voted: false, + }, + id: "snapchat-ghost", + links: { self: "/api/icons/snapchat-ghost" }, + type: "icon", + }, + { + attributes: { + id: "snapchat-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f2ad", + voted: false, + }, + id: "snapchat-square", + links: { self: "/api/icons/snapchat-square" }, + type: "icon", + }, + { + attributes: { + id: "snooze", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f880", + voted: true, + }, + id: "snooze", + links: { self: "/api/icons/snooze" }, + type: "icon", + }, + { + attributes: { + id: "snow-blowing", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f761", + voted: false, + }, + id: "snow-blowing", + links: { self: "/api/icons/snow-blowing" }, + type: "icon", + }, + { + attributes: { + id: "snowboarding", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7ce", + voted: false, + }, + id: "snowboarding", + links: { self: "/api/icons/snowboarding" }, + type: "icon", + }, + { + attributes: { + id: "snowflake", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2dc", + voted: false, + }, + id: "snowflake", + links: { self: "/api/icons/snowflake" }, + type: "icon", + }, + { + attributes: { + id: "snowflakes", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7cf", + voted: false, + }, + id: "snowflakes", + links: { self: "/api/icons/snowflakes" }, + type: "icon", + }, + { + attributes: { + id: "snowman", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7d0", + voted: false, + }, + id: "snowman", + links: { self: "/api/icons/snowman" }, + type: "icon", + }, + { + attributes: { + id: "snowmobile", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7d1", + voted: false, + }, + id: "snowmobile", + links: { self: "/api/icons/snowmobile" }, + type: "icon", + }, + { + attributes: { + id: "snowplow", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7d2", + voted: false, + }, + id: "snowplow", + links: { self: "/api/icons/snowplow" }, + type: "icon", + }, + { + attributes: { + id: "soap", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f96e", + voted: false, + }, + id: "soap", + links: { self: "/api/icons/soap" }, + type: "icon", + }, + { + attributes: { + id: "socks", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f696", + voted: false, + }, + id: "socks", + links: { self: "/api/icons/socks" }, + type: "icon", + }, + { + attributes: { + id: "solar-panel", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5ba", + voted: false, + }, + id: "solar-panel", + links: { self: "/api/icons/solar-panel" }, + type: "icon", + }, + { + attributes: { + id: "solar-system", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f92f", + voted: false, + }, + id: "solar-system", + links: { self: "/api/icons/solar-system" }, + type: "icon", + }, + { + attributes: { + id: "sort", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0dc", + voted: false, + }, + id: "sort", + links: { self: "/api/icons/sort" }, + type: "icon", + }, + { + attributes: { + id: "sort-alpha-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f15d", + voted: false, + }, + id: "sort-alpha-down", + links: { self: "/api/icons/sort-alpha-down" }, + type: "icon", + }, + { + attributes: { + id: "sort-alpha-down-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f881", + voted: false, + }, + id: "sort-alpha-down-alt", + links: { self: "/api/icons/sort-alpha-down-alt" }, + type: "icon", + }, + { + attributes: { + id: "sort-alpha-up", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f15e", + voted: false, + }, + id: "sort-alpha-up", + links: { self: "/api/icons/sort-alpha-up" }, + type: "icon", + }, + { + attributes: { + id: "sort-alpha-up-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f882", + voted: false, + }, + id: "sort-alpha-up-alt", + links: { self: "/api/icons/sort-alpha-up-alt" }, + type: "icon", + }, + { + attributes: { + id: "sort-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f883", + voted: false, + }, + id: "sort-alt", + links: { self: "/api/icons/sort-alt" }, + type: "icon", + }, + { + attributes: { + id: "sort-amount-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f160", + voted: false, + }, + id: "sort-amount-down", + links: { self: "/api/icons/sort-amount-down" }, + type: "icon", + }, + { + attributes: { + id: "sort-amount-down-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f884", + voted: false, + }, + id: "sort-amount-down-alt", + links: { self: "/api/icons/sort-amount-down-alt" }, + type: "icon", + }, + { + attributes: { + id: "sort-amount-up", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f161", + voted: false, + }, + id: "sort-amount-up", + links: { self: "/api/icons/sort-amount-up" }, + type: "icon", + }, + { + attributes: { + id: "sort-amount-up-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f885", + voted: false, + }, + id: "sort-amount-up-alt", + links: { self: "/api/icons/sort-amount-up-alt" }, + type: "icon", + }, + { + attributes: { + id: "sort-circle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f930", + voted: false, + }, + id: "sort-circle", + links: { self: "/api/icons/sort-circle" }, + type: "icon", + }, + { + attributes: { + id: "sort-circle-down", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f931", + voted: false, + }, + id: "sort-circle-down", + links: { self: "/api/icons/sort-circle-down" }, + type: "icon", + }, + { + attributes: { + id: "sort-circle-up", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f932", + voted: false, + }, + id: "sort-circle-up", + links: { self: "/api/icons/sort-circle-up" }, + type: "icon", + }, + { + attributes: { + id: "sort-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0dd", + voted: false, + }, + id: "sort-down", + links: { self: "/api/icons/sort-down" }, + type: "icon", + }, + { + attributes: { + id: "sort-numeric-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f162", + voted: false, + }, + id: "sort-numeric-down", + links: { self: "/api/icons/sort-numeric-down" }, + type: "icon", + }, + { + attributes: { + id: "sort-numeric-down-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f886", + voted: false, + }, + id: "sort-numeric-down-alt", + links: { self: "/api/icons/sort-numeric-down-alt" }, + type: "icon", + }, + { + attributes: { + id: "sort-numeric-up", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f163", + voted: false, + }, + id: "sort-numeric-up", + links: { self: "/api/icons/sort-numeric-up" }, + type: "icon", + }, + { + attributes: { + id: "sort-numeric-up-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f887", + voted: false, + }, + id: "sort-numeric-up-alt", + links: { self: "/api/icons/sort-numeric-up-alt" }, + type: "icon", + }, + { + attributes: { + id: "sort-shapes-down", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f888", + voted: false, + }, + id: "sort-shapes-down", + links: { self: "/api/icons/sort-shapes-down" }, + type: "icon", + }, + { + attributes: { + id: "sort-shapes-down-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f889", + voted: false, + }, + id: "sort-shapes-down-alt", + links: { self: "/api/icons/sort-shapes-down-alt" }, + type: "icon", + }, + { + attributes: { + id: "sort-shapes-up", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f88a", + voted: false, + }, + id: "sort-shapes-up", + links: { self: "/api/icons/sort-shapes-up" }, + type: "icon", + }, + { + attributes: { + id: "sort-shapes-up-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f88b", + voted: false, + }, + id: "sort-shapes-up-alt", + links: { self: "/api/icons/sort-shapes-up-alt" }, + type: "icon", + }, + { + attributes: { + id: "sort-size-down", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f88c", + voted: false, + }, + id: "sort-size-down", + links: { self: "/api/icons/sort-size-down" }, + type: "icon", + }, + { + attributes: { + id: "sort-size-down-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f88d", + voted: false, + }, + id: "sort-size-down-alt", + links: { self: "/api/icons/sort-size-down-alt" }, + type: "icon", + }, + { + attributes: { + id: "sort-size-up", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f88e", + voted: false, + }, + id: "sort-size-up", + links: { self: "/api/icons/sort-size-up" }, + type: "icon", + }, + { + attributes: { + id: "sort-size-up-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f88f", + voted: false, + }, + id: "sort-size-up-alt", + links: { self: "/api/icons/sort-size-up-alt" }, + type: "icon", + }, + { + attributes: { + id: "sort-up", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0de", + voted: false, + }, + id: "sort-up", + links: { self: "/api/icons/sort-up" }, + type: "icon", + }, + { + attributes: { id: "soundcloud", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1be", voted: false }, + id: "soundcloud", + links: { self: "/api/icons/soundcloud" }, + type: "icon", + }, + { + attributes: { + id: "soup", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f823", + voted: false, + }, + id: "soup", + links: { self: "/api/icons/soup" }, + type: "icon", + }, + { + attributes: { id: "sourcetree", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f7d3", voted: true }, + id: "sourcetree", + links: { self: "/api/icons/sourcetree" }, + type: "icon", + }, + { + attributes: { + id: "spa", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5bb", + voted: false, + }, + id: "spa", + links: { self: "/api/icons/spa" }, + type: "icon", + }, + { + attributes: { + id: "space-shuttle", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f197", + voted: false, + }, + id: "space-shuttle", + links: { self: "/api/icons/space-shuttle" }, + type: "icon", + }, + { + attributes: { + id: "space-station-moon", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f933", + voted: false, + }, + id: "space-station-moon", + links: { self: "/api/icons/space-station-moon" }, + type: "icon", + }, + { + attributes: { + id: "space-station-moon-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f934", + voted: false, + }, + id: "space-station-moon-alt", + links: { self: "/api/icons/space-station-moon-alt" }, + type: "icon", + }, + { + attributes: { + id: "spade", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2f4", + voted: false, + }, + id: "spade", + links: { self: "/api/icons/spade" }, + type: "icon", + }, + { + attributes: { + id: "sparkles", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f890", + voted: false, + }, + id: "sparkles", + links: { self: "/api/icons/sparkles" }, + type: "icon", + }, + { + attributes: { id: "speakap", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3f3", voted: false }, + id: "speakap", + links: { self: "/api/icons/speakap" }, + type: "icon", + }, + { + attributes: { + id: "speaker", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8df", + voted: false, + }, + id: "speaker", + links: { self: "/api/icons/speaker" }, + type: "icon", + }, + { + attributes: { + id: "speaker-deck", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f83c", + voted: false, + }, + id: "speaker-deck", + links: { self: "/api/icons/speaker-deck" }, + type: "icon", + }, + { + attributes: { + id: "speakers", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8e0", + voted: false, + }, + id: "speakers", + links: { self: "/api/icons/speakers" }, + type: "icon", + }, + { + attributes: { + id: "spell-check", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f891", + voted: false, + }, + id: "spell-check", + links: { self: "/api/icons/spell-check" }, + type: "icon", + }, + { + attributes: { + id: "spider", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f717", + voted: true, + }, + id: "spider", + links: { self: "/api/icons/spider" }, + type: "icon", + }, + { + attributes: { + id: "spider-black-widow", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f718", + voted: false, + }, + id: "spider-black-widow", + links: { self: "/api/icons/spider-black-widow" }, + type: "icon", + }, + { + attributes: { + id: "spider-web", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f719", + voted: false, + }, + id: "spider-web", + links: { self: "/api/icons/spider-web" }, + type: "icon", + }, + { + attributes: { + id: "spinner", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f110", + voted: false, + }, + id: "spinner", + links: { self: "/api/icons/spinner" }, + type: "icon", + }, + { + attributes: { + id: "spinner-third", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3f4", + voted: false, + }, + id: "spinner-third", + links: { self: "/api/icons/spinner-third" }, + type: "icon", + }, + { + attributes: { + id: "splotch", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5bc", + voted: false, + }, + id: "splotch", + links: { self: "/api/icons/splotch" }, + type: "icon", + }, + { + attributes: { id: "spotify", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1bc", voted: false }, + id: "spotify", + links: { self: "/api/icons/spotify" }, + type: "icon", + }, + { + attributes: { + id: "spray-can", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5bd", + voted: false, + }, + id: "spray-can", + links: { self: "/api/icons/spray-can" }, + type: "icon", + }, + { + attributes: { + id: "sprinkler", + membership: { + free: [], + pro: ["solid", "regular", "light", "duotone"], + }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f935", + voted: false, + }, + id: "sprinkler", + links: { self: "/api/icons/sprinkler" }, + type: "icon", + }, + { + attributes: { + id: "square", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0c8", + voted: false, + }, + id: "square", + links: { self: "/api/icons/square" }, + type: "icon", + }, + { + attributes: { + id: "square-full", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f45c", + voted: false, + }, + id: "square-full", + links: { self: "/api/icons/square-full" }, + type: "icon", + }, + { + attributes: { + id: "square-root", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f697", + voted: false, + }, + id: "square-root", + links: { self: "/api/icons/square-root" }, + type: "icon", + }, + { + attributes: { + id: "square-root-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f698", + voted: false, + }, + id: "square-root-alt", + links: { self: "/api/icons/square-root-alt" }, + type: "icon", + }, + { + attributes: { id: "squarespace", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f5be", voted: true }, + id: "squarespace", + links: { self: "/api/icons/squarespace" }, + type: "icon", + }, + { + attributes: { + id: "squirrel", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f71a", + voted: false, + }, + id: "squirrel", + links: { self: "/api/icons/squirrel" }, + type: "icon", + }, + { + attributes: { + id: "stack-exchange", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f18d", + voted: false, + }, + id: "stack-exchange", + links: { self: "/api/icons/stack-exchange" }, + type: "icon", + }, + { + attributes: { + id: "stack-overflow", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f16c", + voted: false, + }, + id: "stack-overflow", + links: { self: "/api/icons/stack-overflow" }, + type: "icon", + }, + { + attributes: { id: "stackpath", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f842", voted: false }, + id: "stackpath", + links: { self: "/api/icons/stackpath" }, + type: "icon", + }, + { + attributes: { + id: "staff", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f71b", + voted: false, + }, + id: "staff", + links: { self: "/api/icons/staff" }, + type: "icon", + }, + { + attributes: { + id: "stamp", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5bf", + voted: false, + }, + id: "stamp", + links: { self: "/api/icons/stamp" }, + type: "icon", + }, + { + attributes: { + id: "star", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f005", + voted: false, + }, + id: "star", + links: { self: "/api/icons/star" }, + type: "icon", + }, + { + attributes: { + id: "star-and-crescent", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f699", + voted: false, + }, + id: "star-and-crescent", + links: { self: "/api/icons/star-and-crescent" }, + type: "icon", + }, + { + attributes: { + id: "star-christmas", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7d4", + voted: false, + }, + id: "star-christmas", + links: { self: "/api/icons/star-christmas" }, + type: "icon", + }, + { + attributes: { + id: "star-exclamation", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2f3", + voted: false, + }, + id: "star-exclamation", + links: { self: "/api/icons/star-exclamation" }, + type: "icon", + }, + { + attributes: { + id: "star-half", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f089", + voted: false, + }, + id: "star-half", + links: { self: "/api/icons/star-half" }, + type: "icon", + }, + { + attributes: { + id: "star-half-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5c0", + voted: true, + }, + id: "star-half-alt", + links: { self: "/api/icons/star-half-alt" }, + type: "icon", + }, + { + attributes: { + id: "star-of-david", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f69a", + voted: false, + }, + id: "star-of-david", + links: { self: "/api/icons/star-of-david" }, + type: "icon", + }, + { + attributes: { + id: "star-of-life", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f621", + voted: false, + }, + id: "star-of-life", + links: { self: "/api/icons/star-of-life" }, + type: "icon", + }, + { + attributes: { + id: "star-shooting", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f936", + voted: false, + }, + id: "star-shooting", + links: { self: "/api/icons/star-shooting" }, + type: "icon", + }, + { + attributes: { + id: "starfighter", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f937", + voted: false, + }, + id: "starfighter", + links: { self: "/api/icons/starfighter" }, + type: "icon", + }, + { + attributes: { + id: "starfighter-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f938", + voted: false, + }, + id: "starfighter-alt", + links: { self: "/api/icons/starfighter-alt" }, + type: "icon", + }, + { + attributes: { + id: "stars", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f762", + voted: false, + }, + id: "stars", + links: { self: "/api/icons/stars" }, + type: "icon", + }, + { + attributes: { + id: "starship", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f939", + voted: false, + }, + id: "starship", + links: { self: "/api/icons/starship" }, + type: "icon", + }, + { + attributes: { + id: "starship-freighter", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f93a", + voted: false, + }, + id: "starship-freighter", + links: { self: "/api/icons/starship-freighter" }, + type: "icon", + }, + { + attributes: { id: "staylinked", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3f5", voted: false }, + id: "staylinked", + links: { self: "/api/icons/staylinked" }, + type: "icon", + }, + { + attributes: { + id: "steak", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f824", + voted: false, + }, + id: "steak", + links: { self: "/api/icons/steak" }, + type: "icon", + }, + { + attributes: { id: "steam", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1b6", voted: false }, + id: "steam", + links: { self: "/api/icons/steam" }, + type: "icon", + }, + { + attributes: { + id: "steam-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f1b7", + voted: false, + }, + id: "steam-square", + links: { self: "/api/icons/steam-square" }, + type: "icon", + }, + { + attributes: { + id: "steam-symbol", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f3f6", + voted: false, + }, + id: "steam-symbol", + links: { self: "/api/icons/steam-symbol" }, + type: "icon", + }, + { + attributes: { + id: "steering-wheel", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f622", + voted: false, + }, + id: "steering-wheel", + links: { self: "/api/icons/steering-wheel" }, + type: "icon", + }, + { + attributes: { + id: "step-backward", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f048", + voted: false, + }, + id: "step-backward", + links: { self: "/api/icons/step-backward" }, + type: "icon", + }, + { + attributes: { + id: "step-forward", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f051", + voted: false, + }, + id: "step-forward", + links: { self: "/api/icons/step-forward" }, + type: "icon", + }, + { + attributes: { + id: "stethoscope", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0f1", + voted: false, + }, + id: "stethoscope", + links: { self: "/api/icons/stethoscope" }, + type: "icon", + }, + { + attributes: { + id: "sticker-mule", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f3f7", + voted: false, + }, + id: "sticker-mule", + links: { self: "/api/icons/sticker-mule" }, + type: "icon", + }, + { + attributes: { + id: "sticky-note", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f249", + voted: false, + }, + id: "sticky-note", + links: { self: "/api/icons/sticky-note" }, + type: "icon", + }, + { + attributes: { + id: "stocking", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7d5", + voted: false, + }, + id: "stocking", + links: { self: "/api/icons/stocking" }, + type: "icon", + }, + { + attributes: { + id: "stomach", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f623", + voted: false, + }, + id: "stomach", + links: { self: "/api/icons/stomach" }, + type: "icon", + }, + { + attributes: { + id: "stop", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f04d", + voted: false, + }, + id: "stop", + links: { self: "/api/icons/stop" }, + type: "icon", + }, + { + attributes: { + id: "stop-circle", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f28d", + voted: false, + }, + id: "stop-circle", + links: { self: "/api/icons/stop-circle" }, + type: "icon", + }, + { + attributes: { + id: "stopwatch", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2f2", + voted: false, + }, + id: "stopwatch", + links: { self: "/api/icons/stopwatch" }, + type: "icon", + }, + { + attributes: { + id: "stopwatch-20", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f96f", + voted: false, + }, + id: "stopwatch-20", + links: { self: "/api/icons/stopwatch-20" }, + type: "icon", + }, + { + attributes: { + id: "store", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f54e", + voted: true, + }, + id: "store", + links: { self: "/api/icons/store" }, + type: "icon", + }, + { + attributes: { + id: "store-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f54f", + voted: true, + }, + id: "store-alt", + links: { self: "/api/icons/store-alt" }, + type: "icon", + }, + { + attributes: { + id: "store-alt-slash", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f970", + voted: false, + }, + id: "store-alt-slash", + links: { self: "/api/icons/store-alt-slash" }, + type: "icon", + }, + { + attributes: { + id: "store-slash", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f971", + voted: false, + }, + id: "store-slash", + links: { self: "/api/icons/store-slash" }, + type: "icon", + }, + { + attributes: { id: "strava", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f428", voted: false }, + id: "strava", + links: { self: "/api/icons/strava" }, + type: "icon", + }, + { + attributes: { + id: "stream", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f550", + voted: false, + }, + id: "stream", + links: { self: "/api/icons/stream" }, + type: "icon", + }, + { + attributes: { + id: "street-view", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f21d", + voted: false, + }, + id: "street-view", + links: { self: "/api/icons/street-view" }, + type: "icon", + }, + { + attributes: { + id: "stretcher", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f825", + voted: false, + }, + id: "stretcher", + links: { self: "/api/icons/stretcher" }, + type: "icon", + }, + { + attributes: { + id: "strikethrough", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0cc", + voted: false, + }, + id: "strikethrough", + links: { self: "/api/icons/strikethrough" }, + type: "icon", + }, + { + attributes: { id: "stripe", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f429", voted: false }, + id: "stripe", + links: { self: "/api/icons/stripe" }, + type: "icon", + }, + { + attributes: { id: "stripe-s", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f42a", voted: false }, + id: "stripe-s", + links: { self: "/api/icons/stripe-s" }, + type: "icon", + }, + { + attributes: { + id: "stroopwafel", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f551", + voted: false, + }, + id: "stroopwafel", + links: { self: "/api/icons/stroopwafel" }, + type: "icon", + }, + { + attributes: { + id: "studiovinari", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f3f8", + voted: false, + }, + id: "studiovinari", + links: { self: "/api/icons/studiovinari" }, + type: "icon", + }, + { + attributes: { id: "stumbleupon", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1a4", voted: false }, + id: "stumbleupon", + links: { self: "/api/icons/stumbleupon" }, + type: "icon", + }, + { + attributes: { + id: "stumbleupon-circle", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f1a3", + voted: false, + }, + id: "stumbleupon-circle", + links: { self: "/api/icons/stumbleupon-circle" }, + type: "icon", + }, + { + attributes: { + id: "subscript", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f12c", + voted: false, + }, + id: "subscript", + links: { self: "/api/icons/subscript" }, + type: "icon", + }, + { + attributes: { + id: "subway", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f239", + voted: false, + }, + id: "subway", + links: { self: "/api/icons/subway" }, + type: "icon", + }, + { + attributes: { + id: "suitcase", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0f2", + voted: false, + }, + id: "suitcase", + links: { self: "/api/icons/suitcase" }, + type: "icon", + }, + { + attributes: { + id: "suitcase-rolling", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5c1", + voted: false, + }, + id: "suitcase-rolling", + links: { self: "/api/icons/suitcase-rolling" }, + type: "icon", + }, + { + attributes: { + id: "sun", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f185", + voted: false, + }, + id: "sun", + links: { self: "/api/icons/sun" }, + type: "icon", + }, + { + attributes: { + id: "sun-cloud", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f763", + voted: false, + }, + id: "sun-cloud", + links: { self: "/api/icons/sun-cloud" }, + type: "icon", + }, + { + attributes: { + id: "sun-dust", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f764", + voted: false, + }, + id: "sun-dust", + links: { self: "/api/icons/sun-dust" }, + type: "icon", + }, + { + attributes: { + id: "sun-haze", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f765", + voted: false, + }, + id: "sun-haze", + links: { self: "/api/icons/sun-haze" }, + type: "icon", + }, + { + attributes: { + id: "sunglasses", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f892", + voted: true, + }, + id: "sunglasses", + links: { self: "/api/icons/sunglasses" }, + type: "icon", + }, + { + attributes: { + id: "sunrise", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f766", + voted: false, + }, + id: "sunrise", + links: { self: "/api/icons/sunrise" }, + type: "icon", + }, + { + attributes: { + id: "sunset", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f767", + voted: false, + }, + id: "sunset", + links: { self: "/api/icons/sunset" }, + type: "icon", + }, + { + attributes: { id: "superpowers", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2dd", voted: false }, + id: "superpowers", + links: { self: "/api/icons/superpowers" }, + type: "icon", + }, + { + attributes: { + id: "superscript", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f12b", + voted: false, + }, + id: "superscript", + links: { self: "/api/icons/superscript" }, + type: "icon", + }, + { + attributes: { id: "supple", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3f9", voted: false }, + id: "supple", + links: { self: "/api/icons/supple" }, + type: "icon", + }, + { + attributes: { + id: "surprise", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5c2", + voted: false, + }, + id: "surprise", + links: { self: "/api/icons/surprise" }, + type: "icon", + }, + { + attributes: { id: "suse", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f7d6", voted: true }, + id: "suse", + links: { self: "/api/icons/suse" }, + type: "icon", + }, + { + attributes: { + id: "swatchbook", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5c3", + voted: false, + }, + id: "swatchbook", + links: { self: "/api/icons/swatchbook" }, + type: "icon", + }, + { + attributes: { id: "swift", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f8e1", voted: false }, + id: "swift", + links: { self: "/api/icons/swift" }, + type: "icon", + }, + { + attributes: { + id: "swimmer", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5c4", + voted: false, + }, + id: "swimmer", + links: { self: "/api/icons/swimmer" }, + type: "icon", + }, + { + attributes: { + id: "swimming-pool", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5c5", + voted: false, + }, + id: "swimming-pool", + links: { self: "/api/icons/swimming-pool" }, + type: "icon", + }, + { + attributes: { + id: "sword", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f71c", + voted: false, + }, + id: "sword", + links: { self: "/api/icons/sword" }, + type: "icon", + }, + { + attributes: { + id: "sword-laser", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f93b", + voted: false, + }, + id: "sword-laser", + links: { self: "/api/icons/sword-laser" }, + type: "icon", + }, + { + attributes: { + id: "sword-laser-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f93c", + voted: false, + }, + id: "sword-laser-alt", + links: { self: "/api/icons/sword-laser-alt" }, + type: "icon", + }, + { + attributes: { + id: "swords", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f71d", + voted: false, + }, + id: "swords", + links: { self: "/api/icons/swords" }, + type: "icon", + }, + { + attributes: { + id: "swords-laser", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f93d", + voted: false, + }, + id: "swords-laser", + links: { self: "/api/icons/swords-laser" }, + type: "icon", + }, + { + attributes: { id: "symfony", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f83d", voted: false }, + id: "symfony", + links: { self: "/api/icons/symfony" }, + type: "icon", + }, + { + attributes: { + id: "synagogue", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f69b", + voted: false, + }, + id: "synagogue", + links: { self: "/api/icons/synagogue" }, + type: "icon", + }, + { + attributes: { + id: "sync", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f021", + voted: false, + }, + id: "sync", + links: { self: "/api/icons/sync" }, + type: "icon", + }, + { + attributes: { + id: "sync-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2f1", + voted: false, + }, + id: "sync-alt", + links: { self: "/api/icons/sync-alt" }, + type: "icon", + }, + { + attributes: { + id: "syringe", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f48e", + voted: false, + }, + id: "syringe", + links: { self: "/api/icons/syringe" }, + type: "icon", + }, + { + attributes: { + id: "table", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0ce", + voted: false, + }, + id: "table", + links: { self: "/api/icons/table" }, + type: "icon", + }, + { + attributes: { + id: "table-tennis", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f45d", + voted: false, + }, + id: "table-tennis", + links: { self: "/api/icons/table-tennis" }, + type: "icon", + }, + { + attributes: { + id: "tablet", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f10a", + voted: false, + }, + id: "tablet", + links: { self: "/api/icons/tablet" }, + type: "icon", + }, + { + attributes: { + id: "tablet-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3fa", + voted: false, + }, + id: "tablet-alt", + links: { self: "/api/icons/tablet-alt" }, + type: "icon", + }, + { + attributes: { + id: "tablet-android", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3fb", + voted: false, + }, + id: "tablet-android", + links: { self: "/api/icons/tablet-android" }, + type: "icon", + }, + { + attributes: { + id: "tablet-android-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3fc", + voted: false, + }, + id: "tablet-android-alt", + links: { self: "/api/icons/tablet-android-alt" }, + type: "icon", + }, + { + attributes: { + id: "tablet-rugged", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f48f", + voted: false, + }, + id: "tablet-rugged", + links: { self: "/api/icons/tablet-rugged" }, + type: "icon", + }, + { + attributes: { + id: "tablets", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f490", + voted: false, + }, + id: "tablets", + links: { self: "/api/icons/tablets" }, + type: "icon", + }, + { + attributes: { + id: "tachometer", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0e4", + voted: false, + }, + id: "tachometer", + links: { self: "/api/icons/tachometer" }, + type: "icon", + }, + { + attributes: { + id: "tachometer-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3fd", + voted: false, + }, + id: "tachometer-alt", + links: { self: "/api/icons/tachometer-alt" }, + type: "icon", + }, + { + attributes: { + id: "tachometer-alt-average", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f624", + voted: false, + }, + id: "tachometer-alt-average", + links: { self: "/api/icons/tachometer-alt-average" }, + type: "icon", + }, + { + attributes: { + id: "tachometer-alt-fast", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f625", + voted: false, + }, + id: "tachometer-alt-fast", + links: { self: "/api/icons/tachometer-alt-fast" }, + type: "icon", + }, + { + attributes: { + id: "tachometer-alt-fastest", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f626", + voted: false, + }, + id: "tachometer-alt-fastest", + links: { self: "/api/icons/tachometer-alt-fastest" }, + type: "icon", + }, + { + attributes: { + id: "tachometer-alt-slow", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f627", + voted: false, + }, + id: "tachometer-alt-slow", + links: { self: "/api/icons/tachometer-alt-slow" }, + type: "icon", + }, + { + attributes: { + id: "tachometer-alt-slowest", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f628", + voted: false, + }, + id: "tachometer-alt-slowest", + links: { self: "/api/icons/tachometer-alt-slowest" }, + type: "icon", + }, + { + attributes: { + id: "tachometer-average", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f629", + voted: false, + }, + id: "tachometer-average", + links: { self: "/api/icons/tachometer-average" }, + type: "icon", + }, + { + attributes: { + id: "tachometer-fast", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f62a", + voted: false, + }, + id: "tachometer-fast", + links: { self: "/api/icons/tachometer-fast" }, + type: "icon", + }, + { + attributes: { + id: "tachometer-fastest", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f62b", + voted: false, + }, + id: "tachometer-fastest", + links: { self: "/api/icons/tachometer-fastest" }, + type: "icon", + }, + { + attributes: { + id: "tachometer-slow", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f62c", + voted: false, + }, + id: "tachometer-slow", + links: { self: "/api/icons/tachometer-slow" }, + type: "icon", + }, + { + attributes: { + id: "tachometer-slowest", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f62d", + voted: false, + }, + id: "tachometer-slowest", + links: { self: "/api/icons/tachometer-slowest" }, + type: "icon", + }, + { + attributes: { + id: "taco", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f826", + voted: false, + }, + id: "taco", + links: { self: "/api/icons/taco" }, + type: "icon", + }, + { + attributes: { + id: "tag", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f02b", + voted: false, + }, + id: "tag", + links: { self: "/api/icons/tag" }, + type: "icon", + }, + { + attributes: { + id: "tags", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f02c", + voted: false, + }, + id: "tags", + links: { self: "/api/icons/tags" }, + type: "icon", + }, + { + attributes: { + id: "tally", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f69c", + voted: false, + }, + id: "tally", + links: { self: "/api/icons/tally" }, + type: "icon", + }, + { + attributes: { + id: "tanakh", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f827", + voted: false, + }, + id: "tanakh", + links: { self: "/api/icons/tanakh" }, + type: "icon", + }, + { + attributes: { + id: "tape", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4db", + voted: false, + }, + id: "tape", + links: { self: "/api/icons/tape" }, + type: "icon", + }, + { + attributes: { + id: "tasks", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0ae", + voted: false, + }, + id: "tasks", + links: { self: "/api/icons/tasks" }, + type: "icon", + }, + { + attributes: { + id: "tasks-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f828", + voted: false, + }, + id: "tasks-alt", + links: { self: "/api/icons/tasks-alt" }, + type: "icon", + }, + { + attributes: { + id: "taxi", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1ba", + voted: false, + }, + id: "taxi", + links: { self: "/api/icons/taxi" }, + type: "icon", + }, + { + attributes: { id: "teamspeak", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f4f9", voted: true }, + id: "teamspeak", + links: { self: "/api/icons/teamspeak" }, + type: "icon", + }, + { + attributes: { + id: "teeth", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f62e", + voted: false, + }, + id: "teeth", + links: { self: "/api/icons/teeth" }, + type: "icon", + }, + { + attributes: { + id: "teeth-open", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f62f", + voted: false, + }, + id: "teeth-open", + links: { self: "/api/icons/teeth-open" }, + type: "icon", + }, + { + attributes: { id: "telegram", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2c6", voted: false }, + id: "telegram", + links: { self: "/api/icons/telegram" }, + type: "icon", + }, + { + attributes: { + id: "telegram-plane", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f3fe", + voted: false, + }, + id: "telegram-plane", + links: { self: "/api/icons/telegram-plane" }, + type: "icon", + }, + { + attributes: { + id: "telescope", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f93e", + voted: false, + }, + id: "telescope", + links: { self: "/api/icons/telescope" }, + type: "icon", + }, + { + attributes: { + id: "temperature-down", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f93f", + voted: false, + }, + id: "temperature-down", + links: { self: "/api/icons/temperature-down" }, + type: "icon", + }, + { + attributes: { + id: "temperature-frigid", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f768", + voted: false, + }, + id: "temperature-frigid", + links: { self: "/api/icons/temperature-frigid" }, + type: "icon", + }, + { + attributes: { + id: "temperature-high", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f769", + voted: false, + }, + id: "temperature-high", + links: { self: "/api/icons/temperature-high" }, + type: "icon", + }, + { + attributes: { + id: "temperature-hot", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f76a", + voted: false, + }, + id: "temperature-hot", + links: { self: "/api/icons/temperature-hot" }, + type: "icon", + }, + { + attributes: { + id: "temperature-low", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f76b", + voted: false, + }, + id: "temperature-low", + links: { self: "/api/icons/temperature-low" }, + type: "icon", + }, + { + attributes: { + id: "temperature-up", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f940", + voted: false, + }, + id: "temperature-up", + links: { self: "/api/icons/temperature-up" }, + type: "icon", + }, + { + attributes: { + id: "tencent-weibo", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f1d5", + voted: false, + }, + id: "tencent-weibo", + links: { self: "/api/icons/tencent-weibo" }, + type: "icon", + }, + { + attributes: { + id: "tenge", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7d7", + voted: true, + }, + id: "tenge", + links: { self: "/api/icons/tenge" }, + type: "icon", + }, + { + attributes: { + id: "tennis-ball", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f45e", + voted: false, + }, + id: "tennis-ball", + links: { self: "/api/icons/tennis-ball" }, + type: "icon", + }, + { + attributes: { + id: "terminal", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f120", + voted: false, + }, + id: "terminal", + links: { self: "/api/icons/terminal" }, + type: "icon", + }, + { + attributes: { + id: "text", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f893", + voted: false, + }, + id: "text", + links: { self: "/api/icons/text" }, + type: "icon", + }, + { + attributes: { + id: "text-height", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f034", + voted: false, + }, + id: "text-height", + links: { self: "/api/icons/text-height" }, + type: "icon", + }, + { + attributes: { + id: "text-size", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f894", + voted: false, + }, + id: "text-size", + links: { self: "/api/icons/text-size" }, + type: "icon", + }, + { + attributes: { + id: "text-width", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f035", + voted: false, + }, + id: "text-width", + links: { self: "/api/icons/text-width" }, + type: "icon", + }, + { + attributes: { + id: "th", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f00a", + voted: false, + }, + id: "th", + links: { self: "/api/icons/th" }, + type: "icon", + }, + { + attributes: { + id: "th-large", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f009", + voted: false, + }, + id: "th-large", + links: { self: "/api/icons/th-large" }, + type: "icon", + }, + { + attributes: { + id: "th-list", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f00b", + voted: false, + }, + id: "th-list", + links: { self: "/api/icons/th-list" }, + type: "icon", + }, + { + attributes: { + id: "the-red-yeti", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f69d", + voted: false, + }, + id: "the-red-yeti", + links: { self: "/api/icons/the-red-yeti" }, + type: "icon", + }, + { + attributes: { + id: "theater-masks", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f630", + voted: false, + }, + id: "theater-masks", + links: { self: "/api/icons/theater-masks" }, + type: "icon", + }, + { + attributes: { id: "themeco", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f5c6", voted: false }, + id: "themeco", + links: { self: "/api/icons/themeco" }, + type: "icon", + }, + { + attributes: { id: "themeisle", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2b2", voted: false }, + id: "themeisle", + links: { self: "/api/icons/themeisle" }, + type: "icon", + }, + { + attributes: { + id: "thermometer", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f491", + voted: false, + }, + id: "thermometer", + links: { self: "/api/icons/thermometer" }, + type: "icon", + }, + { + attributes: { + id: "thermometer-empty", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2cb", + voted: false, + }, + id: "thermometer-empty", + links: { self: "/api/icons/thermometer-empty" }, + type: "icon", + }, + { + attributes: { + id: "thermometer-full", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2c7", + voted: false, + }, + id: "thermometer-full", + links: { self: "/api/icons/thermometer-full" }, + type: "icon", + }, + { + attributes: { + id: "thermometer-half", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2c9", + voted: false, + }, + id: "thermometer-half", + links: { self: "/api/icons/thermometer-half" }, + type: "icon", + }, + { + attributes: { + id: "thermometer-quarter", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2ca", + voted: false, + }, + id: "thermometer-quarter", + links: { self: "/api/icons/thermometer-quarter" }, + type: "icon", + }, + { + attributes: { + id: "thermometer-three-quarters", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2c8", + voted: false, + }, + id: "thermometer-three-quarters", + links: { self: "/api/icons/thermometer-three-quarters" }, + type: "icon", + }, + { + attributes: { + id: "theta", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f69e", + voted: false, + }, + id: "theta", + links: { self: "/api/icons/theta" }, + type: "icon", + }, + { + attributes: { id: "think-peaks", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f731", voted: false }, + id: "think-peaks", + links: { self: "/api/icons/think-peaks" }, + type: "icon", + }, + { + attributes: { + id: "thumbs-down", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f165", + voted: false, + }, + id: "thumbs-down", + links: { self: "/api/icons/thumbs-down" }, + type: "icon", + }, + { + attributes: { + id: "thumbs-up", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f164", + voted: false, + }, + id: "thumbs-up", + links: { self: "/api/icons/thumbs-up" }, + type: "icon", + }, + { + attributes: { + id: "thumbtack", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f08d", + voted: false, + }, + id: "thumbtack", + links: { self: "/api/icons/thumbtack" }, + type: "icon", + }, + { + attributes: { + id: "thunderstorm", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f76c", + voted: false, + }, + id: "thunderstorm", + links: { self: "/api/icons/thunderstorm" }, + type: "icon", + }, + { + attributes: { + id: "thunderstorm-moon", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f76d", + voted: false, + }, + id: "thunderstorm-moon", + links: { self: "/api/icons/thunderstorm-moon" }, + type: "icon", + }, + { + attributes: { + id: "thunderstorm-sun", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f76e", + voted: false, + }, + id: "thunderstorm-sun", + links: { self: "/api/icons/thunderstorm-sun" }, + type: "icon", + }, + { + attributes: { + id: "ticket", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f145", + voted: false, + }, + id: "ticket", + links: { self: "/api/icons/ticket" }, + type: "icon", + }, + { + attributes: { + id: "ticket-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f3ff", + voted: false, + }, + id: "ticket-alt", + links: { self: "/api/icons/ticket-alt" }, + type: "icon", + }, + { + attributes: { + id: "tilde", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f69f", + voted: false, + }, + id: "tilde", + links: { self: "/api/icons/tilde" }, + type: "icon", + }, + { + attributes: { + id: "times", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f00d", + voted: false, + }, + id: "times", + links: { self: "/api/icons/times" }, + type: "icon", + }, + { + attributes: { + id: "times-circle", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f057", + voted: false, + }, + id: "times-circle", + links: { self: "/api/icons/times-circle" }, + type: "icon", + }, + { + attributes: { + id: "times-hexagon", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2ee", + voted: false, + }, + id: "times-hexagon", + links: { self: "/api/icons/times-hexagon" }, + type: "icon", + }, + { + attributes: { + id: "times-octagon", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2f0", + voted: false, + }, + id: "times-octagon", + links: { self: "/api/icons/times-octagon" }, + type: "icon", + }, + { + attributes: { + id: "times-square", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2d3", + voted: false, + }, + id: "times-square", + links: { self: "/api/icons/times-square" }, + type: "icon", + }, + { + attributes: { + id: "tint", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f043", + voted: false, + }, + id: "tint", + links: { self: "/api/icons/tint" }, + type: "icon", + }, + { + attributes: { + id: "tint-slash", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5c7", + voted: false, + }, + id: "tint-slash", + links: { self: "/api/icons/tint-slash" }, + type: "icon", + }, + { + attributes: { + id: "tire", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f631", + voted: false, + }, + id: "tire", + links: { self: "/api/icons/tire" }, + type: "icon", + }, + { + attributes: { + id: "tire-flat", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f632", + voted: false, + }, + id: "tire-flat", + links: { self: "/api/icons/tire-flat" }, + type: "icon", + }, + { + attributes: { + id: "tire-pressure-warning", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f633", + voted: false, + }, + id: "tire-pressure-warning", + links: { self: "/api/icons/tire-pressure-warning" }, + type: "icon", + }, + { + attributes: { + id: "tire-rugged", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f634", + voted: false, + }, + id: "tire-rugged", + links: { self: "/api/icons/tire-rugged" }, + type: "icon", + }, + { + attributes: { + id: "tired", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5c8", + voted: false, + }, + id: "tired", + links: { self: "/api/icons/tired" }, + type: "icon", + }, + { + attributes: { + id: "toggle-off", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f204", + voted: false, + }, + id: "toggle-off", + links: { self: "/api/icons/toggle-off" }, + type: "icon", + }, + { + attributes: { + id: "toggle-on", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f205", + voted: false, + }, + id: "toggle-on", + links: { self: "/api/icons/toggle-on" }, + type: "icon", + }, + { + attributes: { + id: "toilet", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7d8", + voted: true, + }, + id: "toilet", + links: { self: "/api/icons/toilet" }, + type: "icon", + }, + { + attributes: { + id: "toilet-paper", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f71e", + voted: false, + }, + id: "toilet-paper", + links: { self: "/api/icons/toilet-paper" }, + type: "icon", + }, + { + attributes: { + id: "toilet-paper-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f71f", + voted: false, + }, + id: "toilet-paper-alt", + links: { self: "/api/icons/toilet-paper-alt" }, + type: "icon", + }, + { + attributes: { + id: "toilet-paper-slash", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f972", + voted: false, + }, + id: "toilet-paper-slash", + links: { self: "/api/icons/toilet-paper-slash" }, + type: "icon", + }, + { + attributes: { + id: "tombstone", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f720", + voted: false, + }, + id: "tombstone", + links: { self: "/api/icons/tombstone" }, + type: "icon", + }, + { + attributes: { + id: "tombstone-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f721", + voted: false, + }, + id: "tombstone-alt", + links: { self: "/api/icons/tombstone-alt" }, + type: "icon", + }, + { + attributes: { + id: "toolbox", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f552", + voted: true, + }, + id: "toolbox", + links: { self: "/api/icons/toolbox" }, + type: "icon", + }, + { + attributes: { + id: "tools", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7d9", + voted: true, + }, + id: "tools", + links: { self: "/api/icons/tools" }, + type: "icon", + }, + { + attributes: { + id: "tooth", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5c9", + voted: true, + }, + id: "tooth", + links: { self: "/api/icons/tooth" }, + type: "icon", + }, + { + attributes: { + id: "toothbrush", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f635", + voted: false, + }, + id: "toothbrush", + links: { self: "/api/icons/toothbrush" }, + type: "icon", + }, + { + attributes: { + id: "torah", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6a0", + voted: false, + }, + id: "torah", + links: { self: "/api/icons/torah" }, + type: "icon", + }, + { + attributes: { + id: "torii-gate", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6a1", + voted: false, + }, + id: "torii-gate", + links: { self: "/api/icons/torii-gate" }, + type: "icon", + }, + { + attributes: { + id: "tornado", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f76f", + voted: false, + }, + id: "tornado", + links: { self: "/api/icons/tornado" }, + type: "icon", + }, + { + attributes: { + id: "tractor", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f722", + voted: false, + }, + id: "tractor", + links: { self: "/api/icons/tractor" }, + type: "icon", + }, + { + attributes: { + id: "trade-federation", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f513", + voted: false, + }, + id: "trade-federation", + links: { self: "/api/icons/trade-federation" }, + type: "icon", + }, + { + attributes: { + id: "trademark", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f25c", + voted: false, + }, + id: "trademark", + links: { self: "/api/icons/trademark" }, + type: "icon", + }, + { + attributes: { + id: "traffic-cone", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f636", + voted: false, + }, + id: "traffic-cone", + links: { self: "/api/icons/traffic-cone" }, + type: "icon", + }, + { + attributes: { + id: "traffic-light", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f637", + voted: false, + }, + id: "traffic-light", + links: { self: "/api/icons/traffic-light" }, + type: "icon", + }, + { + attributes: { + id: "traffic-light-go", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f638", + voted: false, + }, + id: "traffic-light-go", + links: { self: "/api/icons/traffic-light-go" }, + type: "icon", + }, + { + attributes: { + id: "traffic-light-slow", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f639", + voted: false, + }, + id: "traffic-light-slow", + links: { self: "/api/icons/traffic-light-slow" }, + type: "icon", + }, + { + attributes: { + id: "traffic-light-stop", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f63a", + voted: false, + }, + id: "traffic-light-stop", + links: { self: "/api/icons/traffic-light-stop" }, + type: "icon", + }, + { + attributes: { + id: "trailer", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f941", + voted: true, + }, + id: "trailer", + links: { self: "/api/icons/trailer" }, + type: "icon", + }, + { + attributes: { + id: "train", + membership: { + free: ["solid"], + pro: ["solid", "regular", "light", "duotone"], + }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f238", + voted: false, + }, + id: "train", + links: { self: "/api/icons/train" }, + type: "icon", + }, + { + attributes: { + id: "tram", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7da", + voted: false, + }, + id: "tram", + links: { self: "/api/icons/tram" }, + type: "icon", + }, + { + attributes: { + id: "transgender", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f224", + voted: false, + }, + id: "transgender", + links: { self: "/api/icons/transgender" }, + type: "icon", + }, + { + attributes: { + id: "transgender-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f225", + voted: false, + }, + id: "transgender-alt", + links: { self: "/api/icons/transgender-alt" }, + type: "icon", + }, + { + attributes: { + id: "transporter", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f942", + voted: false, + }, + id: "transporter", + links: { self: "/api/icons/transporter" }, + type: "icon", + }, + { + attributes: { + id: "transporter-1", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f943", + voted: false, + }, + id: "transporter-1", + links: { self: "/api/icons/transporter-1" }, + type: "icon", + }, + { + attributes: { + id: "transporter-2", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f944", + voted: false, + }, + id: "transporter-2", + links: { self: "/api/icons/transporter-2" }, + type: "icon", + }, + { + attributes: { + id: "transporter-3", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f945", + voted: false, + }, + id: "transporter-3", + links: { self: "/api/icons/transporter-3" }, + type: "icon", + }, + { + attributes: { + id: "transporter-empty", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f946", + voted: false, + }, + id: "transporter-empty", + links: { self: "/api/icons/transporter-empty" }, + type: "icon", + }, + { + attributes: { + id: "trash", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1f8", + voted: false, + }, + id: "trash", + links: { self: "/api/icons/trash" }, + type: "icon", + }, + { + attributes: { + id: "trash-alt", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2ed", + voted: false, + }, + id: "trash-alt", + links: { self: "/api/icons/trash-alt" }, + type: "icon", + }, + { + attributes: { + id: "trash-restore", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f829", + voted: true, + }, + id: "trash-restore", + links: { self: "/api/icons/trash-restore" }, + type: "icon", + }, + { + attributes: { + id: "trash-restore-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f82a", + voted: true, + }, + id: "trash-restore-alt", + links: { self: "/api/icons/trash-restore-alt" }, + type: "icon", + }, + { + attributes: { + id: "trash-undo", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f895", + voted: true, + }, + id: "trash-undo", + links: { self: "/api/icons/trash-undo" }, + type: "icon", + }, + { + attributes: { + id: "trash-undo-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f896", + voted: false, + }, + id: "trash-undo-alt", + links: { self: "/api/icons/trash-undo-alt" }, + type: "icon", + }, + { + attributes: { + id: "treasure-chest", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f723", + voted: false, + }, + id: "treasure-chest", + links: { self: "/api/icons/treasure-chest" }, + type: "icon", + }, + { + attributes: { + id: "tree", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1bb", + voted: false, + }, + id: "tree", + links: { self: "/api/icons/tree" }, + type: "icon", + }, + { + attributes: { + id: "tree-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f400", + voted: false, + }, + id: "tree-alt", + links: { self: "/api/icons/tree-alt" }, + type: "icon", + }, + { + attributes: { + id: "tree-christmas", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7db", + voted: false, + }, + id: "tree-christmas", + links: { self: "/api/icons/tree-christmas" }, + type: "icon", + }, + { + attributes: { + id: "tree-decorated", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7dc", + voted: false, + }, + id: "tree-decorated", + links: { self: "/api/icons/tree-decorated" }, + type: "icon", + }, + { + attributes: { + id: "tree-large", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7dd", + voted: false, + }, + id: "tree-large", + links: { self: "/api/icons/tree-large" }, + type: "icon", + }, + { + attributes: { + id: "tree-palm", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f82b", + voted: false, + }, + id: "tree-palm", + links: { self: "/api/icons/tree-palm" }, + type: "icon", + }, + { + attributes: { + id: "trees", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f724", + voted: false, + }, + id: "trees", + links: { self: "/api/icons/trees" }, + type: "icon", + }, + { + attributes: { id: "trello", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f181", voted: false }, + id: "trello", + links: { self: "/api/icons/trello" }, + type: "icon", + }, + { + attributes: { + id: "triangle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2ec", + voted: false, + }, + id: "triangle", + links: { self: "/api/icons/triangle" }, + type: "icon", + }, + { + attributes: { + id: "triangle-music", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8e2", + voted: false, + }, + id: "triangle-music", + links: { self: "/api/icons/triangle-music" }, + type: "icon", + }, + { + attributes: { id: "tripadvisor", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f262", voted: false }, + id: "tripadvisor", + links: { self: "/api/icons/tripadvisor" }, + type: "icon", + }, + { + attributes: { + id: "trophy", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f091", + voted: false, + }, + id: "trophy", + links: { self: "/api/icons/trophy" }, + type: "icon", + }, + { + attributes: { + id: "trophy-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2eb", + voted: false, + }, + id: "trophy-alt", + links: { self: "/api/icons/trophy-alt" }, + type: "icon", + }, + { + attributes: { + id: "truck", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0d1", + voted: false, + }, + id: "truck", + links: { self: "/api/icons/truck" }, + type: "icon", + }, + { + attributes: { + id: "truck-container", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4dc", + voted: false, + }, + id: "truck-container", + links: { self: "/api/icons/truck-container" }, + type: "icon", + }, + { + attributes: { + id: "truck-couch", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4dd", + voted: false, + }, + id: "truck-couch", + links: { self: "/api/icons/truck-couch" }, + type: "icon", + }, + { + attributes: { + id: "truck-loading", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4de", + voted: false, + }, + id: "truck-loading", + links: { self: "/api/icons/truck-loading" }, + type: "icon", + }, + { + attributes: { + id: "truck-monster", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f63b", + voted: false, + }, + id: "truck-monster", + links: { self: "/api/icons/truck-monster" }, + type: "icon", + }, + { + attributes: { + id: "truck-moving", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4df", + voted: false, + }, + id: "truck-moving", + links: { self: "/api/icons/truck-moving" }, + type: "icon", + }, + { + attributes: { + id: "truck-pickup", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f63c", + voted: false, + }, + id: "truck-pickup", + links: { self: "/api/icons/truck-pickup" }, + type: "icon", + }, + { + attributes: { + id: "truck-plow", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7de", + voted: false, + }, + id: "truck-plow", + links: { self: "/api/icons/truck-plow" }, + type: "icon", + }, + { + attributes: { + id: "truck-ramp", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4e0", + voted: false, + }, + id: "truck-ramp", + links: { self: "/api/icons/truck-ramp" }, + type: "icon", + }, + { + attributes: { + id: "trumpet", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8e3", + voted: false, + }, + id: "trumpet", + links: { self: "/api/icons/trumpet" }, + type: "icon", + }, + { + attributes: { + id: "tshirt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f553", + voted: true, + }, + id: "tshirt", + links: { self: "/api/icons/tshirt" }, + type: "icon", + }, + { + attributes: { + id: "tty", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1e4", + voted: false, + }, + id: "tty", + links: { self: "/api/icons/tty" }, + type: "icon", + }, + { + attributes: { id: "tumblr", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f173", voted: false }, + id: "tumblr", + links: { self: "/api/icons/tumblr" }, + type: "icon", + }, + { + attributes: { + id: "tumblr-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f174", + voted: false, + }, + id: "tumblr-square", + links: { self: "/api/icons/tumblr-square" }, + type: "icon", + }, + { + attributes: { + id: "turkey", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f725", + voted: false, + }, + id: "turkey", + links: { self: "/api/icons/turkey" }, + type: "icon", + }, + { + attributes: { + id: "turntable", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8e4", + voted: false, + }, + id: "turntable", + links: { self: "/api/icons/turntable" }, + type: "icon", + }, + { + attributes: { + id: "turtle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f726", + voted: true, + }, + id: "turtle", + links: { self: "/api/icons/turtle" }, + type: "icon", + }, + { + attributes: { + id: "tv", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f26c", + voted: false, + }, + id: "tv", + links: { self: "/api/icons/tv" }, + type: "icon", + }, + { + attributes: { + id: "tv-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8e5", + voted: false, + }, + id: "tv-alt", + links: { self: "/api/icons/tv-alt" }, + type: "icon", + }, + { + attributes: { + id: "tv-music", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8e6", + voted: false, + }, + id: "tv-music", + links: { self: "/api/icons/tv-music" }, + type: "icon", + }, + { + attributes: { + id: "tv-retro", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f401", + voted: true, + }, + id: "tv-retro", + links: { self: "/api/icons/tv-retro" }, + type: "icon", + }, + { + attributes: { id: "twitch", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1e8", voted: false }, + id: "twitch", + links: { self: "/api/icons/twitch" }, + type: "icon", + }, + { + attributes: { id: "twitter", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f099", voted: false }, + id: "twitter", + links: { self: "/api/icons/twitter" }, + type: "icon", + }, + { + attributes: { + id: "twitter-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f081", + voted: false, + }, + id: "twitter-square", + links: { self: "/api/icons/twitter-square" }, + type: "icon", + }, + { + attributes: { + id: "typewriter", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8e7", + voted: false, + }, + id: "typewriter", + links: { self: "/api/icons/typewriter" }, + type: "icon", + }, + { + attributes: { id: "typo3", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f42b", voted: false }, + id: "typo3", + links: { self: "/api/icons/typo3" }, + type: "icon", + }, + { + attributes: { id: "uber", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f402", voted: false }, + id: "uber", + links: { self: "/api/icons/uber" }, + type: "icon", + }, + { + attributes: { id: "ubuntu", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f7df", voted: true }, + id: "ubuntu", + links: { self: "/api/icons/ubuntu" }, + type: "icon", + }, + { + attributes: { + id: "ufo", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f947", + voted: false, + }, + id: "ufo", + links: { self: "/api/icons/ufo" }, + type: "icon", + }, + { + attributes: { + id: "ufo-beam", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f948", + voted: false, + }, + id: "ufo-beam", + links: { self: "/api/icons/ufo-beam" }, + type: "icon", + }, + { + attributes: { id: "uikit", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f403", voted: false }, + id: "uikit", + links: { self: "/api/icons/uikit" }, + type: "icon", + }, + { + attributes: { id: "umbraco", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f8e8", voted: false }, + id: "umbraco", + links: { self: "/api/icons/umbraco" }, + type: "icon", + }, + { + attributes: { + id: "umbrella", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0e9", + voted: false, + }, + id: "umbrella", + links: { self: "/api/icons/umbrella" }, + type: "icon", + }, + { + attributes: { + id: "umbrella-beach", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5ca", + voted: false, + }, + id: "umbrella-beach", + links: { self: "/api/icons/umbrella-beach" }, + type: "icon", + }, + { + attributes: { + id: "underline", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0cd", + voted: false, + }, + id: "underline", + links: { self: "/api/icons/underline" }, + type: "icon", + }, + { + attributes: { + id: "undo", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0e2", + voted: false, + }, + id: "undo", + links: { self: "/api/icons/undo" }, + type: "icon", + }, + { + attributes: { + id: "undo-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2ea", + voted: false, + }, + id: "undo-alt", + links: { self: "/api/icons/undo-alt" }, + type: "icon", + }, + { + attributes: { + id: "unicorn", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f727", + voted: true, + }, + id: "unicorn", + links: { self: "/api/icons/unicorn" }, + type: "icon", + }, + { + attributes: { + id: "union", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6a2", + voted: false, + }, + id: "union", + links: { self: "/api/icons/union" }, + type: "icon", + }, + { + attributes: { id: "uniregistry", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f404", voted: false }, + id: "uniregistry", + links: { self: "/api/icons/uniregistry" }, + type: "icon", + }, + { + attributes: { id: "unity", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f949", voted: true }, + id: "unity", + links: { self: "/api/icons/unity" }, + type: "icon", + }, + { + attributes: { + id: "universal-access", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f29a", + voted: false, + }, + id: "universal-access", + links: { self: "/api/icons/universal-access" }, + type: "icon", + }, + { + attributes: { + id: "university", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f19c", + voted: false, + }, + id: "university", + links: { self: "/api/icons/university" }, + type: "icon", + }, + { + attributes: { + id: "unlink", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f127", + voted: false, + }, + id: "unlink", + links: { self: "/api/icons/unlink" }, + type: "icon", + }, + { + attributes: { + id: "unlock", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f09c", + voted: false, + }, + id: "unlock", + links: { self: "/api/icons/unlock" }, + type: "icon", + }, + { + attributes: { + id: "unlock-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f13e", + voted: false, + }, + id: "unlock-alt", + links: { self: "/api/icons/unlock-alt" }, + type: "icon", + }, + { + attributes: { id: "untappd", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f405", voted: false }, + id: "untappd", + links: { self: "/api/icons/untappd" }, + type: "icon", + }, + { + attributes: { + id: "upload", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f093", + voted: false, + }, + id: "upload", + links: { self: "/api/icons/upload" }, + type: "icon", + }, + { + attributes: { id: "ups", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f7e0", voted: false }, + id: "ups", + links: { self: "/api/icons/ups" }, + type: "icon", + }, + { + attributes: { id: "usb", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f287", voted: false }, + id: "usb", + links: { self: "/api/icons/usb" }, + type: "icon", + }, + { + attributes: { + id: "usb-drive", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8e9", + voted: false, + }, + id: "usb-drive", + links: { self: "/api/icons/usb-drive" }, + type: "icon", + }, + { + attributes: { + id: "usd-circle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2e8", + voted: false, + }, + id: "usd-circle", + links: { self: "/api/icons/usd-circle" }, + type: "icon", + }, + { + attributes: { + id: "usd-square", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2e9", + voted: false, + }, + id: "usd-square", + links: { self: "/api/icons/usd-square" }, + type: "icon", + }, + { + attributes: { + id: "user", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f007", + voted: false, + }, + id: "user", + links: { self: "/api/icons/user" }, + type: "icon", + }, + { + attributes: { + id: "user-alien", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f94a", + voted: false, + }, + id: "user-alien", + links: { self: "/api/icons/user-alien" }, + type: "icon", + }, + { + attributes: { + id: "user-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f406", + voted: false, + }, + id: "user-alt", + links: { self: "/api/icons/user-alt" }, + type: "icon", + }, + { + attributes: { + id: "user-alt-slash", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4fa", + voted: false, + }, + id: "user-alt-slash", + links: { self: "/api/icons/user-alt-slash" }, + type: "icon", + }, + { + attributes: { + id: "user-astronaut", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4fb", + voted: false, + }, + id: "user-astronaut", + links: { self: "/api/icons/user-astronaut" }, + type: "icon", + }, + { + attributes: { + id: "user-chart", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6a3", + voted: false, + }, + id: "user-chart", + links: { self: "/api/icons/user-chart" }, + type: "icon", + }, + { + attributes: { + id: "user-check", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4fc", + voted: false, + }, + id: "user-check", + links: { self: "/api/icons/user-check" }, + type: "icon", + }, + { + attributes: { + id: "user-circle", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2bd", + voted: false, + }, + id: "user-circle", + links: { self: "/api/icons/user-circle" }, + type: "icon", + }, + { + attributes: { + id: "user-clock", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4fd", + voted: false, + }, + id: "user-clock", + links: { self: "/api/icons/user-clock" }, + type: "icon", + }, + { + attributes: { + id: "user-cog", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4fe", + voted: false, + }, + id: "user-cog", + links: { self: "/api/icons/user-cog" }, + type: "icon", + }, + { + attributes: { + id: "user-cowboy", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f8ea", + voted: false, + }, + id: "user-cowboy", + links: { self: "/api/icons/user-cowboy" }, + type: "icon", + }, + { + attributes: { + id: "user-crown", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6a4", + voted: false, + }, + id: "user-crown", + links: { self: "/api/icons/user-crown" }, + type: "icon", + }, + { + attributes: { + id: "user-edit", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4ff", + voted: false, + }, + id: "user-edit", + links: { self: "/api/icons/user-edit" }, + type: "icon", + }, + { + attributes: { + id: "user-friends", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f500", + voted: false, + }, + id: "user-friends", + links: { self: "/api/icons/user-friends" }, + type: "icon", + }, + { + attributes: { + id: "user-graduate", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f501", + voted: false, + }, + id: "user-graduate", + links: { self: "/api/icons/user-graduate" }, + type: "icon", + }, + { + attributes: { + id: "user-hard-hat", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f82c", + voted: false, + }, + id: "user-hard-hat", + links: { self: "/api/icons/user-hard-hat" }, + type: "icon", + }, + { + attributes: { + id: "user-headset", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f82d", + voted: true, + }, + id: "user-headset", + links: { self: "/api/icons/user-headset" }, + type: "icon", + }, + { + attributes: { + id: "user-injured", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f728", + voted: false, + }, + id: "user-injured", + links: { self: "/api/icons/user-injured" }, + type: "icon", + }, + { + attributes: { + id: "user-lock", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f502", + voted: false, + }, + id: "user-lock", + links: { self: "/api/icons/user-lock" }, + type: "icon", + }, + { + attributes: { + id: "user-md", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0f0", + voted: false, + }, + id: "user-md", + links: { self: "/api/icons/user-md" }, + type: "icon", + }, + { + attributes: { + id: "user-md-chat", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f82e", + voted: false, + }, + id: "user-md-chat", + links: { self: "/api/icons/user-md-chat" }, + type: "icon", + }, + { + attributes: { + id: "user-minus", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f503", + voted: false, + }, + id: "user-minus", + links: { self: "/api/icons/user-minus" }, + type: "icon", + }, + { + attributes: { + id: "user-music", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8eb", + voted: false, + }, + id: "user-music", + links: { self: "/api/icons/user-music" }, + type: "icon", + }, + { + attributes: { + id: "user-ninja", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f504", + voted: false, + }, + id: "user-ninja", + links: { self: "/api/icons/user-ninja" }, + type: "icon", + }, + { + attributes: { + id: "user-nurse", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f82f", + voted: false, + }, + id: "user-nurse", + links: { self: "/api/icons/user-nurse" }, + type: "icon", + }, + { + attributes: { + id: "user-plus", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f234", + voted: false, + }, + id: "user-plus", + links: { self: "/api/icons/user-plus" }, + type: "icon", + }, + { + attributes: { + id: "user-robot", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f94b", + voted: false, + }, + id: "user-robot", + links: { self: "/api/icons/user-robot" }, + type: "icon", + }, + { + attributes: { + id: "user-secret", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f21b", + voted: false, + }, + id: "user-secret", + links: { self: "/api/icons/user-secret" }, + type: "icon", + }, + { + attributes: { + id: "user-shield", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f505", + voted: false, + }, + id: "user-shield", + links: { self: "/api/icons/user-shield" }, + type: "icon", + }, + { + attributes: { + id: "user-slash", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f506", + voted: false, + }, + id: "user-slash", + links: { self: "/api/icons/user-slash" }, + type: "icon", + }, + { + attributes: { + id: "user-tag", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f507", + voted: false, + }, + id: "user-tag", + links: { self: "/api/icons/user-tag" }, + type: "icon", + }, + { + attributes: { + id: "user-tie", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f508", + voted: false, + }, + id: "user-tie", + links: { self: "/api/icons/user-tie" }, + type: "icon", + }, + { + attributes: { + id: "user-times", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f235", + voted: false, + }, + id: "user-times", + links: { self: "/api/icons/user-times" }, + type: "icon", + }, + { + attributes: { + id: "user-unlock", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f958", + voted: false, + }, + id: "user-unlock", + links: { self: "/api/icons/user-unlock" }, + type: "icon", + }, + { + attributes: { + id: "user-visor", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f94c", + voted: false, + }, + id: "user-visor", + links: { self: "/api/icons/user-visor" }, + type: "icon", + }, + { + attributes: { + id: "users", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0c0", + voted: false, + }, + id: "users", + links: { self: "/api/icons/users" }, + type: "icon", + }, + { + attributes: { + id: "users-class", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f63d", + voted: false, + }, + id: "users-class", + links: { self: "/api/icons/users-class" }, + type: "icon", + }, + { + attributes: { + id: "users-cog", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f509", + voted: false, + }, + id: "users-cog", + links: { self: "/api/icons/users-cog" }, + type: "icon", + }, + { + attributes: { + id: "users-crown", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6a5", + voted: false, + }, + id: "users-crown", + links: { self: "/api/icons/users-crown" }, + type: "icon", + }, + { + attributes: { + id: "users-medical", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f830", + voted: false, + }, + id: "users-medical", + links: { self: "/api/icons/users-medical" }, + type: "icon", + }, + { + attributes: { + id: "users-slash", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f973", + voted: false, + }, + id: "users-slash", + links: { self: "/api/icons/users-slash" }, + type: "icon", + }, + { + attributes: { id: "usps", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f7e1", voted: false }, + id: "usps", + links: { self: "/api/icons/usps" }, + type: "icon", + }, + { + attributes: { id: "ussunnah", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f407", voted: false }, + id: "ussunnah", + links: { self: "/api/icons/ussunnah" }, + type: "icon", + }, + { + attributes: { + id: "utensil-fork", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2e3", + voted: false, + }, + id: "utensil-fork", + links: { self: "/api/icons/utensil-fork" }, + type: "icon", + }, + { + attributes: { + id: "utensil-knife", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2e4", + voted: false, + }, + id: "utensil-knife", + links: { self: "/api/icons/utensil-knife" }, + type: "icon", + }, + { + attributes: { + id: "utensil-spoon", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2e5", + voted: false, + }, + id: "utensil-spoon", + links: { self: "/api/icons/utensil-spoon" }, + type: "icon", + }, + { + attributes: { + id: "utensils", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2e7", + voted: false, + }, + id: "utensils", + links: { self: "/api/icons/utensils" }, + type: "icon", + }, + { + attributes: { + id: "utensils-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2e6", + voted: false, + }, + id: "utensils-alt", + links: { self: "/api/icons/utensils-alt" }, + type: "icon", + }, + { + attributes: { id: "vaadin", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f408", voted: false }, + id: "vaadin", + links: { self: "/api/icons/vaadin" }, + type: "icon", + }, + { + attributes: { + id: "vacuum", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f94d", + voted: false, + }, + id: "vacuum", + links: { self: "/api/icons/vacuum" }, + type: "icon", + }, + { + attributes: { + id: "vacuum-robot", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f94e", + voted: false, + }, + id: "vacuum-robot", + links: { self: "/api/icons/vacuum-robot" }, + type: "icon", + }, + { + attributes: { + id: "value-absolute", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6a6", + voted: false, + }, + id: "value-absolute", + links: { self: "/api/icons/value-absolute" }, + type: "icon", + }, + { + attributes: { + id: "vector-square", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5cb", + voted: false, + }, + id: "vector-square", + links: { self: "/api/icons/vector-square" }, + type: "icon", + }, + { + attributes: { + id: "venus", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f221", + voted: false, + }, + id: "venus", + links: { self: "/api/icons/venus" }, + type: "icon", + }, + { + attributes: { + id: "venus-double", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f226", + voted: false, + }, + id: "venus-double", + links: { self: "/api/icons/venus-double" }, + type: "icon", + }, + { + attributes: { + id: "venus-mars", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f228", + voted: false, + }, + id: "venus-mars", + links: { self: "/api/icons/venus-mars" }, + type: "icon", + }, + { + attributes: { + id: "vhs", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8ec", + voted: false, + }, + id: "vhs", + links: { self: "/api/icons/vhs" }, + type: "icon", + }, + { + attributes: { id: "viacoin", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f237", voted: false }, + id: "viacoin", + links: { self: "/api/icons/viacoin" }, + type: "icon", + }, + { + attributes: { id: "viadeo", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2a9", voted: false }, + id: "viadeo", + links: { self: "/api/icons/viadeo" }, + type: "icon", + }, + { + attributes: { + id: "viadeo-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f2aa", + voted: false, + }, + id: "viadeo-square", + links: { self: "/api/icons/viadeo-square" }, + type: "icon", + }, + { + attributes: { + id: "vial", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f492", + voted: false, + }, + id: "vial", + links: { self: "/api/icons/vial" }, + type: "icon", + }, + { + attributes: { + id: "vials", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f493", + voted: false, + }, + id: "vials", + links: { self: "/api/icons/vials" }, + type: "icon", + }, + { + attributes: { id: "viber", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f409", voted: false }, + id: "viber", + links: { self: "/api/icons/viber" }, + type: "icon", + }, + { + attributes: { + id: "video", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f03d", + voted: false, + }, + id: "video", + links: { self: "/api/icons/video" }, + type: "icon", + }, + { + attributes: { + id: "video-plus", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4e1", + voted: false, + }, + id: "video-plus", + links: { self: "/api/icons/video-plus" }, + type: "icon", + }, + { + attributes: { + id: "video-slash", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4e2", + voted: false, + }, + id: "video-slash", + links: { self: "/api/icons/video-slash" }, + type: "icon", + }, + { + attributes: { + id: "vihara", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6a7", + voted: false, + }, + id: "vihara", + links: { self: "/api/icons/vihara" }, + type: "icon", + }, + { + attributes: { id: "vimeo", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f40a", voted: false }, + id: "vimeo", + links: { self: "/api/icons/vimeo" }, + type: "icon", + }, + { + attributes: { + id: "vimeo-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f194", + voted: false, + }, + id: "vimeo-square", + links: { self: "/api/icons/vimeo-square" }, + type: "icon", + }, + { + attributes: { id: "vimeo-v", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f27d", voted: false }, + id: "vimeo-v", + links: { self: "/api/icons/vimeo-v" }, + type: "icon", + }, + { + attributes: { id: "vine", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1ca", voted: false }, + id: "vine", + links: { self: "/api/icons/vine" }, + type: "icon", + }, + { + attributes: { + id: "violin", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8ed", + voted: false, + }, + id: "violin", + links: { self: "/api/icons/violin" }, + type: "icon", + }, + { + attributes: { + id: "virus", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f974", + voted: false, + }, + id: "virus", + links: { self: "/api/icons/virus" }, + type: "icon", + }, + { + attributes: { + id: "virus-slash", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f975", + voted: false, + }, + id: "virus-slash", + links: { self: "/api/icons/virus-slash" }, + type: "icon", + }, + { + attributes: { + id: "viruses", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f976", + voted: false, + }, + id: "viruses", + links: { self: "/api/icons/viruses" }, + type: "icon", + }, + { + attributes: { id: "vk", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f189", voted: false }, + id: "vk", + links: { self: "/api/icons/vk" }, + type: "icon", + }, + { + attributes: { id: "vnv", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f40b", voted: false }, + id: "vnv", + links: { self: "/api/icons/vnv" }, + type: "icon", + }, + { + attributes: { + id: "voicemail", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f897", + voted: true, + }, + id: "voicemail", + links: { self: "/api/icons/voicemail" }, + type: "icon", + }, + { + attributes: { + id: "volcano", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f770", + voted: false, + }, + id: "volcano", + links: { self: "/api/icons/volcano" }, + type: "icon", + }, + { + attributes: { + id: "volleyball-ball", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f45f", + voted: false, + }, + id: "volleyball-ball", + links: { self: "/api/icons/volleyball-ball" }, + type: "icon", + }, + { + attributes: { + id: "volume", + membership: { + free: [], + pro: ["solid", "regular", "light", "duotone"], + }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6a8", + voted: false, + }, + id: "volume", + links: { self: "/api/icons/volume" }, + type: "icon", + }, + { + attributes: { + id: "volume-down", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f027", + voted: false, + }, + id: "volume-down", + links: { self: "/api/icons/volume-down" }, + type: "icon", + }, + { + attributes: { + id: "volume-mute", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6a9", + voted: true, + }, + id: "volume-mute", + links: { self: "/api/icons/volume-mute" }, + type: "icon", + }, + { + attributes: { + id: "volume-off", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f026", + voted: false, + }, + id: "volume-off", + links: { self: "/api/icons/volume-off" }, + type: "icon", + }, + { + attributes: { + id: "volume-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2e2", + voted: false, + }, + id: "volume-slash", + links: { self: "/api/icons/volume-slash" }, + type: "icon", + }, + { + attributes: { + id: "volume-up", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f028", + voted: false, + }, + id: "volume-up", + links: { self: "/api/icons/volume-up" }, + type: "icon", + }, + { + attributes: { + id: "vote-nay", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f771", + voted: false, + }, + id: "vote-nay", + links: { self: "/api/icons/vote-nay" }, + type: "icon", + }, + { + attributes: { + id: "vote-yea", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f772", + voted: false, + }, + id: "vote-yea", + links: { self: "/api/icons/vote-yea" }, + type: "icon", + }, + { + attributes: { + id: "vr-cardboard", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f729", + voted: true, + }, + id: "vr-cardboard", + links: { self: "/api/icons/vr-cardboard" }, + type: "icon", + }, + { + attributes: { id: "vuejs", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f41f", voted: false }, + id: "vuejs", + links: { self: "/api/icons/vuejs" }, + type: "icon", + }, + { + attributes: { + id: "wagon-covered", + membership: { free: [], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f8ee", + voted: false, + }, + id: "wagon-covered", + links: { self: "/api/icons/wagon-covered" }, + type: "icon", + }, + { + attributes: { + id: "walker", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f831", + voted: false, + }, + id: "walker", + links: { self: "/api/icons/walker" }, + type: "icon", + }, + { + attributes: { + id: "walkie-talkie", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8ef", + voted: false, + }, + id: "walkie-talkie", + links: { self: "/api/icons/walkie-talkie" }, + type: "icon", + }, + { + attributes: { + id: "walking", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f554", + voted: true, + }, + id: "walking", + links: { self: "/api/icons/walking" }, + type: "icon", + }, + { + attributes: { + id: "wallet", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f555", + voted: true, + }, + id: "wallet", + links: { self: "/api/icons/wallet" }, + type: "icon", + }, + { + attributes: { + id: "wand", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f72a", + voted: false, + }, + id: "wand", + links: { self: "/api/icons/wand" }, + type: "icon", + }, + { + attributes: { + id: "wand-magic", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f72b", + voted: false, + }, + id: "wand-magic", + links: { self: "/api/icons/wand-magic" }, + type: "icon", + }, + { + attributes: { + id: "warehouse", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f494", + voted: false, + }, + id: "warehouse", + links: { self: "/api/icons/warehouse" }, + type: "icon", + }, + { + attributes: { + id: "warehouse-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f495", + voted: false, + }, + id: "warehouse-alt", + links: { self: "/api/icons/warehouse-alt" }, + type: "icon", + }, + { + attributes: { + id: "washer", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f898", + voted: true, + }, + id: "washer", + links: { self: "/api/icons/washer" }, + type: "icon", + }, + { + attributes: { + id: "watch", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2e1", + voted: false, + }, + id: "watch", + links: { self: "/api/icons/watch" }, + type: "icon", + }, + { + attributes: { + id: "watch-calculator", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8f0", + voted: false, + }, + id: "watch-calculator", + links: { self: "/api/icons/watch-calculator" }, + type: "icon", + }, + { + attributes: { + id: "watch-fitness", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f63e", + voted: false, + }, + id: "watch-fitness", + links: { self: "/api/icons/watch-fitness" }, + type: "icon", + }, + { + attributes: { + id: "water", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f773", + voted: false, + }, + id: "water", + links: { self: "/api/icons/water" }, + type: "icon", + }, + { + attributes: { + id: "water-lower", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f774", + voted: false, + }, + id: "water-lower", + links: { self: "/api/icons/water-lower" }, + type: "icon", + }, + { + attributes: { + id: "water-rise", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f775", + voted: false, + }, + id: "water-rise", + links: { self: "/api/icons/water-rise" }, + type: "icon", + }, + { + attributes: { + id: "wave-sine", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f899", + voted: false, + }, + id: "wave-sine", + links: { self: "/api/icons/wave-sine" }, + type: "icon", + }, + { + attributes: { + id: "wave-square", + membership: { free: ["solid"], pro: ["light", "regular", "solid", "duotone"] }, + styles: ["light", "regular", "solid", "duotone"], + unicode: "f83e", + voted: false, + }, + id: "wave-square", + links: { self: "/api/icons/wave-square" }, + type: "icon", + }, + { + attributes: { + id: "wave-triangle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f89a", + voted: false, + }, + id: "wave-triangle", + links: { self: "/api/icons/wave-triangle" }, + type: "icon", + }, + { + attributes: { + id: "waveform", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8f1", + voted: false, + }, + id: "waveform", + links: { self: "/api/icons/waveform" }, + type: "icon", + }, + { + attributes: { + id: "waveform-path", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f8f2", + voted: false, + }, + id: "waveform-path", + links: { self: "/api/icons/waveform-path" }, + type: "icon", + }, + { + attributes: { id: "waze", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f83f", voted: false }, + id: "waze", + links: { self: "/api/icons/waze" }, + type: "icon", + }, + { + attributes: { + id: "webcam", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f832", + voted: true, + }, + id: "webcam", + links: { self: "/api/icons/webcam" }, + type: "icon", + }, + { + attributes: { + id: "webcam-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f833", + voted: true, + }, + id: "webcam-slash", + links: { self: "/api/icons/webcam-slash" }, + type: "icon", + }, + { + attributes: { id: "weebly", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f5cc", voted: true }, + id: "weebly", + links: { self: "/api/icons/weebly" }, + type: "icon", + }, + { + attributes: { id: "weibo", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f18a", voted: false }, + id: "weibo", + links: { self: "/api/icons/weibo" }, + type: "icon", + }, + { + attributes: { + id: "weight", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f496", + voted: false, + }, + id: "weight", + links: { self: "/api/icons/weight" }, + type: "icon", + }, + { + attributes: { + id: "weight-hanging", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5cd", + voted: false, + }, + id: "weight-hanging", + links: { self: "/api/icons/weight-hanging" }, + type: "icon", + }, + { + attributes: { id: "weixin", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1d7", voted: false }, + id: "weixin", + links: { self: "/api/icons/weixin" }, + type: "icon", + }, + { + attributes: { + id: "whale", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f72c", + voted: false, + }, + id: "whale", + links: { self: "/api/icons/whale" }, + type: "icon", + }, + { + attributes: { id: "whatsapp", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f232", voted: false }, + id: "whatsapp", + links: { self: "/api/icons/whatsapp" }, + type: "icon", + }, + { + attributes: { + id: "whatsapp-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f40c", + voted: false, + }, + id: "whatsapp-square", + links: { self: "/api/icons/whatsapp-square" }, + type: "icon", + }, + { + attributes: { + id: "wheat", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f72d", + voted: false, + }, + id: "wheat", + links: { self: "/api/icons/wheat" }, + type: "icon", + }, + { + attributes: { + id: "wheelchair", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f193", + voted: false, + }, + id: "wheelchair", + links: { self: "/api/icons/wheelchair" }, + type: "icon", + }, + { + attributes: { + id: "whistle", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f460", + voted: false, + }, + id: "whistle", + links: { self: "/api/icons/whistle" }, + type: "icon", + }, + { + attributes: { id: "whmcs", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f40d", voted: false }, + id: "whmcs", + links: { self: "/api/icons/whmcs" }, + type: "icon", + }, + { + attributes: { + id: "wifi", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f1eb", + voted: false, + }, + id: "wifi", + links: { self: "/api/icons/wifi" }, + type: "icon", + }, + { + attributes: { + id: "wifi-1", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6aa", + voted: true, + }, + id: "wifi-1", + links: { self: "/api/icons/wifi-1" }, + type: "icon", + }, + { + attributes: { + id: "wifi-2", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6ab", + voted: true, + }, + id: "wifi-2", + links: { self: "/api/icons/wifi-2" }, + type: "icon", + }, + { + attributes: { + id: "wifi-slash", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6ac", + voted: true, + }, + id: "wifi-slash", + links: { self: "/api/icons/wifi-slash" }, + type: "icon", + }, + { + attributes: { id: "wikipedia-w", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f266", voted: false }, + id: "wikipedia-w", + links: { self: "/api/icons/wikipedia-w" }, + type: "icon", + }, + { + attributes: { + id: "wind", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f72e", + voted: false, + }, + id: "wind", + links: { self: "/api/icons/wind" }, + type: "icon", + }, + { + attributes: { + id: "wind-turbine", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f89b", + voted: true, + }, + id: "wind-turbine", + links: { self: "/api/icons/wind-turbine" }, + type: "icon", + }, + { + attributes: { + id: "wind-warning", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f776", + voted: false, + }, + id: "wind-warning", + links: { self: "/api/icons/wind-warning" }, + type: "icon", + }, + { + attributes: { + id: "window", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f40e", + voted: false, + }, + id: "window", + links: { self: "/api/icons/window" }, + type: "icon", + }, + { + attributes: { + id: "window-alt", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f40f", + voted: false, + }, + id: "window-alt", + links: { self: "/api/icons/window-alt" }, + type: "icon", + }, + { + attributes: { + id: "window-close", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f410", + voted: false, + }, + id: "window-close", + links: { self: "/api/icons/window-close" }, + type: "icon", + }, + { + attributes: { + id: "window-frame", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f94f", + voted: false, + }, + id: "window-frame", + links: { self: "/api/icons/window-frame" }, + type: "icon", + }, + { + attributes: { + id: "window-frame-open", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f950", + voted: false, + }, + id: "window-frame-open", + links: { self: "/api/icons/window-frame-open" }, + type: "icon", + }, + { + attributes: { + id: "window-maximize", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2d0", + voted: false, + }, + id: "window-maximize", + links: { self: "/api/icons/window-maximize" }, + type: "icon", + }, + { + attributes: { + id: "window-minimize", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2d1", + voted: false, + }, + id: "window-minimize", + links: { self: "/api/icons/window-minimize" }, + type: "icon", + }, + { + attributes: { + id: "window-restore", + membership: { free: ["solid", "regular"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f2d2", + voted: false, + }, + id: "window-restore", + links: { self: "/api/icons/window-restore" }, + type: "icon", + }, + { + attributes: { id: "windows", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f17a", voted: false }, + id: "windows", + links: { self: "/api/icons/windows" }, + type: "icon", + }, + { + attributes: { + id: "windsock", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f777", + voted: false, + }, + id: "windsock", + links: { self: "/api/icons/windsock" }, + type: "icon", + }, + { + attributes: { + id: "wine-bottle", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f72f", + voted: false, + }, + id: "wine-bottle", + links: { self: "/api/icons/wine-bottle" }, + type: "icon", + }, + { + attributes: { + id: "wine-glass", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f4e3", + voted: false, + }, + id: "wine-glass", + links: { self: "/api/icons/wine-glass" }, + type: "icon", + }, + { + attributes: { + id: "wine-glass-alt", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f5ce", + voted: false, + }, + id: "wine-glass-alt", + links: { self: "/api/icons/wine-glass-alt" }, + type: "icon", + }, + { + attributes: { id: "wix", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f5cf", voted: true }, + id: "wix", + links: { self: "/api/icons/wix" }, + type: "icon", + }, + { + attributes: { + id: "wizards-of-the-coast", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f730", + voted: false, + }, + id: "wizards-of-the-coast", + links: { self: "/api/icons/wizards-of-the-coast" }, + type: "icon", + }, + { + attributes: { + id: "wolf-pack-battalion", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f514", + voted: false, + }, + id: "wolf-pack-battalion", + links: { self: "/api/icons/wolf-pack-battalion" }, + type: "icon", + }, + { + attributes: { + id: "won-sign", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f159", + voted: false, + }, + id: "won-sign", + links: { self: "/api/icons/won-sign" }, + type: "icon", + }, + { + attributes: { id: "wordpress", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f19a", voted: false }, + id: "wordpress", + links: { self: "/api/icons/wordpress" }, + type: "icon", + }, + { + attributes: { + id: "wordpress-simple", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f411", + voted: false, + }, + id: "wordpress-simple", + links: { self: "/api/icons/wordpress-simple" }, + type: "icon", + }, + { + attributes: { id: "wpbeginner", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f297", voted: false }, + id: "wpbeginner", + links: { self: "/api/icons/wpbeginner" }, + type: "icon", + }, + { + attributes: { id: "wpexplorer", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2de", voted: false }, + id: "wpexplorer", + links: { self: "/api/icons/wpexplorer" }, + type: "icon", + }, + { + attributes: { id: "wpforms", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f298", voted: false }, + id: "wpforms", + links: { self: "/api/icons/wpforms" }, + type: "icon", + }, + { + attributes: { id: "wpressr", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f3e4", voted: false }, + id: "wpressr", + links: { self: "/api/icons/wpressr" }, + type: "icon", + }, + { + attributes: { + id: "wreath", + membership: { free: [], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f7e2", + voted: false, + }, + id: "wreath", + links: { self: "/api/icons/wreath" }, + type: "icon", + }, + { + attributes: { + id: "wrench", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f0ad", + voted: false, + }, + id: "wrench", + links: { self: "/api/icons/wrench" }, + type: "icon", + }, + { + attributes: { + id: "x-ray", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f497", + voted: false, + }, + id: "x-ray", + links: { self: "/api/icons/x-ray" }, + type: "icon", + }, + { + attributes: { id: "xbox", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f412", voted: false }, + id: "xbox", + links: { self: "/api/icons/xbox" }, + type: "icon", + }, + { + attributes: { id: "xing", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f168", voted: false }, + id: "xing", + links: { self: "/api/icons/xing" }, + type: "icon", + }, + { + attributes: { + id: "xing-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f169", + voted: false, + }, + id: "xing-square", + links: { self: "/api/icons/xing-square" }, + type: "icon", + }, + { + attributes: { + id: "y-combinator", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f23b", + voted: false, + }, + id: "y-combinator", + links: { self: "/api/icons/y-combinator" }, + type: "icon", + }, + { + attributes: { id: "yahoo", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f19e", voted: false }, + id: "yahoo", + links: { self: "/api/icons/yahoo" }, + type: "icon", + }, + { + attributes: { id: "yammer", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f840", voted: false }, + id: "yammer", + links: { self: "/api/icons/yammer" }, + type: "icon", + }, + { + attributes: { id: "yandex", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f413", voted: false }, + id: "yandex", + links: { self: "/api/icons/yandex" }, + type: "icon", + }, + { + attributes: { + id: "yandex-international", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f414", + voted: false, + }, + id: "yandex-international", + links: { self: "/api/icons/yandex-international" }, + type: "icon", + }, + { + attributes: { id: "yarn", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f7e3", voted: true }, + id: "yarn", + links: { self: "/api/icons/yarn" }, + type: "icon", + }, + { + attributes: { id: "yelp", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f1e9", voted: false }, + id: "yelp", + links: { self: "/api/icons/yelp" }, + type: "icon", + }, + { + attributes: { + id: "yen-sign", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f157", + voted: false, + }, + id: "yen-sign", + links: { self: "/api/icons/yen-sign" }, + type: "icon", + }, + { + attributes: { + id: "yin-yang", + membership: { free: ["solid"], pro: ["solid", "regular", "light", "duotone"] }, + styles: ["solid", "regular", "light", "duotone"], + unicode: "f6ad", + voted: false, + }, + id: "yin-yang", + links: { self: "/api/icons/yin-yang" }, + type: "icon", + }, + { + attributes: { id: "yoast", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f2b1", voted: false }, + id: "yoast", + links: { self: "/api/icons/yoast" }, + type: "icon", + }, + { + attributes: { id: "youtube", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f167", voted: false }, + id: "youtube", + links: { self: "/api/icons/youtube" }, + type: "icon", + }, + { + attributes: { + id: "youtube-square", + membership: { free: ["brands"], pro: ["brands"] }, + styles: ["brands"], + unicode: "f431", + voted: false, + }, + id: "youtube-square", + links: { self: "/api/icons/youtube-square" }, + type: "icon", + }, + { + attributes: { id: "zhihu", membership: { free: ["brands"], pro: ["brands"] }, styles: ["brands"], unicode: "f63f", voted: true }, + id: "zhihu", + links: { self: "/api/icons/zhihu" }, + type: "icon", + }, +]; -export { icons }; \ No newline at end of file +export { icons }; diff --git a/src/app/core/icons/fontawesome/fontawesome.component.html b/src/app/core/icons/fontawesome/fontawesome.component.html index 0889efa..1b08dd4 100644 --- a/src/app/core/icons/fontawesome/fontawesome.component.html +++ b/src/app/core/icons/fontawesome/fontawesome.component.html @@ -6,31 +6,38 @@

Solid

-

Use <i class="fas fa-ad"></i> v 5.13.0.

-
-
-
-
+

+ Use <i class="fas fa-ad"></i> v 5.13.0. +

+
+ + + +

Regular

-

Use <i class="far fa-address-book"></i> v 5.13.0.

-
-
-
-
+

+ Use <i class="far fa-address-book"></i> v 5.13.0. +

+
+ + + +

Brands

-

Use <i class="fab fa-500px"></i> v 5.13.0.

-
-
-
-
- - - - \ No newline at end of file +

+ Use <i class="fab fa-500px"></i> v 5.13.0. +

+
+ + + + + + + + + diff --git a/src/app/core/icons/fontawesome/fontawesome.component.spec.ts b/src/app/core/icons/fontawesome/fontawesome.component.spec.ts index 9d15032..5cd7ed1 100644 --- a/src/app/core/icons/fontawesome/fontawesome.component.spec.ts +++ b/src/app/core/icons/fontawesome/fontawesome.component.spec.ts @@ -1,16 +1,15 @@ -import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; +import { ComponentFixture, TestBed, waitForAsync } from "@angular/core/testing"; -import { FontawesomeComponent } from './fontawesome.component'; +import { FontawesomeComponent } from "./fontawesome.component"; -describe('FontawesomeComponent', () => { +describe("FontawesomeComponent", () => { let component: FontawesomeComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ - declarations: [ FontawesomeComponent ] - }) - .compileComponents(); + declarations: [FontawesomeComponent], + }).compileComponents(); })); beforeEach(() => { @@ -19,7 +18,7 @@ describe('FontawesomeComponent', () => { fixture.detectChanges(); }); - it('should create', () => { + it("should create", () => { expect(component).toBeTruthy(); }); }); diff --git a/src/app/core/icons/fontawesome/fontawesome.component.ts b/src/app/core/icons/fontawesome/fontawesome.component.ts index d90e733..aaccfdc 100644 --- a/src/app/core/icons/fontawesome/fontawesome.component.ts +++ b/src/app/core/icons/fontawesome/fontawesome.component.ts @@ -1,11 +1,11 @@ -import { Component, OnInit } from '@angular/core'; +import { Component, OnInit } from "@angular/core"; -import { icons } from './data'; +import { icons } from "./data"; @Component({ - selector: 'app-fontawesome', - templateUrl: './fontawesome.component.html', - styleUrls: ['./fontawesome.component.scss'] + selector: "app-fontawesome", + templateUrl: "./fontawesome.component.html", + styleUrls: ["./fontawesome.component.scss"], }) /** @@ -17,14 +17,14 @@ export class FontawesomeComponent implements OnInit { icons; - solid = ''; - regular = ''; - brand = ''; + solid = ""; + regular = ""; + brand = ""; - constructor() { } + constructor() {} ngOnInit() { - this.breadCrumbItems = [{ label: 'Icons' }, { label: 'Font awesome 5', active: true }]; + this.breadCrumbItems = [{ label: "Icons" }, { label: "Font awesome 5", active: true }]; this.icons = icons; @@ -32,27 +32,42 @@ export class FontawesomeComponent implements OnInit { if (entry.attributes.membership.free.length) { for (const value of entry.attributes.membership.free) { switch (value) { - case 'brands': - this.brand += '
\ - fab fa-' + entry.id + '\ -
'; + case "brands": + this.brand += + '
\ + fab fa-' + + entry.id + + "\ +
"; break; - case 'solid': - this.solid += '
\ - fas fa-' + entry.id + '\ -
'; + case "solid": + this.solid += + '
\ + fas fa-' + + entry.id + + "\ +
"; break; default: - this.regular += '
\ - far fa-' + entry.id + '\ -
'; + this.regular += + '
\ + far fa-' + + entry.id + + "\ +
"; } } } } - document.getElementById('solid').innerHTML = this.solid; - document.getElementById('brand').innerHTML = this.brand; - document.getElementById('regular').innerHTML = this.regular; + document.getElementById("solid").innerHTML = this.solid; + document.getElementById("brand").innerHTML = this.brand; + document.getElementById("regular").innerHTML = this.regular; } } diff --git a/src/app/core/icons/icons-routing.module.ts b/src/app/core/icons/icons-routing.module.ts index 8214c53..1c655a0 100644 --- a/src/app/core/icons/icons-routing.module.ts +++ b/src/app/core/icons/icons-routing.module.ts @@ -1,32 +1,32 @@ -import { NgModule } from '@angular/core'; -import { Routes, RouterModule } from '@angular/router'; +import { NgModule } from "@angular/core"; +import { Routes, RouterModule } from "@angular/router"; -import { RemixComponent } from './remix/remix.component'; -import { MaterialdesignComponent } from './materialdesign/materialdesign.component'; -import { DripiconsComponent } from './dripicons/dripicons.component'; -import { FontawesomeComponent } from './fontawesome/fontawesome.component'; +import { RemixComponent } from "./remix/remix.component"; +import { MaterialdesignComponent } from "./materialdesign/materialdesign.component"; +import { DripiconsComponent } from "./dripicons/dripicons.component"; +import { FontawesomeComponent } from "./fontawesome/fontawesome.component"; const routes: Routes = [ - { - path: 'remix', - component: RemixComponent - }, - { - path: 'materialdesign', - component: MaterialdesignComponent - }, - { - path: 'dripicons', - component: DripiconsComponent - }, - { - path: 'fontawesome', - component: FontawesomeComponent - } + { + path: "remix", + component: RemixComponent, + }, + { + path: "materialdesign", + component: MaterialdesignComponent, + }, + { + path: "dripicons", + component: DripiconsComponent, + }, + { + path: "fontawesome", + component: FontawesomeComponent, + }, ]; @NgModule({ - imports: [RouterModule.forChild(routes)], - exports: [RouterModule] + imports: [RouterModule.forChild(routes)], + exports: [RouterModule], }) -export class IconsRoutingModule { } +export class IconsRoutingModule {} diff --git a/src/app/core/icons/icons.module.ts b/src/app/core/icons/icons.module.ts index 90bda97..6d9aacc 100644 --- a/src/app/core/icons/icons.module.ts +++ b/src/app/core/icons/icons.module.ts @@ -1,20 +1,16 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; +import { NgModule } from "@angular/core"; +import { CommonModule } from "@angular/common"; -import { IconsRoutingModule } from './icons-routing.module'; -import { UiModule } from '../../shared/ui/ui.module'; +import { IconsRoutingModule } from "./icons-routing.module"; +import { UiModule } from "../../shared/ui/ui.module"; -import { MaterialdesignComponent } from './materialdesign/materialdesign.component'; -import { DripiconsComponent } from './dripicons/dripicons.component'; -import { FontawesomeComponent } from './fontawesome/fontawesome.component'; -import { RemixComponent } from './remix/remix.component'; +import { MaterialdesignComponent } from "./materialdesign/materialdesign.component"; +import { DripiconsComponent } from "./dripicons/dripicons.component"; +import { FontawesomeComponent } from "./fontawesome/fontawesome.component"; +import { RemixComponent } from "./remix/remix.component"; @NgModule({ declarations: [MaterialdesignComponent, DripiconsComponent, FontawesomeComponent, RemixComponent], - imports: [ - CommonModule, - IconsRoutingModule, - UiModule - ] + imports: [CommonModule, IconsRoutingModule, UiModule], }) -export class IconsModule { } +export class IconsModule {} diff --git a/src/app/core/icons/materialdesign/data.ts b/src/app/core/icons/materialdesign/data.ts index c585936..7a3cff8 100644 --- a/src/app/core/icons/materialdesign/data.ts +++ b/src/app/core/icons/materialdesign/data.ts @@ -1,5 +1,5050 @@ // tslint:disable-next-line: max-line-length -const icons = [{ name: "ab-testing", hex: "F01C9", version: "4.0.96" }, { name: "abjad-arabic", hex: "F1328", version: "4.9.95" }, { name: "abjad-hebrew", hex: "F1329", version: "4.9.95" }, { name: "abugida-devanagari", hex: "F132A", version: "4.9.95" }, { name: "abugida-thai", hex: "F132B", version: "4.9.95" }, { name: "access-point", hex: "F0003", version: "1.5.54" }, { name: "access-point-network", hex: "F0002", version: "1.5.54" }, { name: "access-point-network-off", hex: "F0BE1", version: "3.2.89" }, { name: "account", hex: "F0004", version: "1.5.54" }, { name: "account-alert", hex: "F0005", version: "1.5.54" }, { name: "account-alert-outline", hex: "F0B50", version: "3.0.39" }, { name: "account-arrow-left", hex: "F0B51", version: "3.0.39" }, { name: "account-arrow-left-outline", hex: "F0B52", version: "3.0.39" }, { name: "account-arrow-right", hex: "F0B53", version: "3.0.39" }, { name: "account-arrow-right-outline", hex: "F0B54", version: "3.0.39" }, { name: "account-box", hex: "F0006", version: "1.5.54" }, { name: "account-box-multiple", hex: "F0934", version: "2.4.85" }, { name: "account-box-multiple-outline", hex: "F100A", version: "4.1.95" }, { name: "account-box-outline", hex: "F0007", version: "1.5.54" }, { name: "account-cancel", hex: "F12DF", version: "4.8.95" }, { name: "account-cancel-outline", hex: "F12E0", version: "4.8.95" }, { name: "account-cash", hex: "F1097", version: "4.2.95" }, { name: "account-cash-outline", hex: "F1098", version: "4.2.95" }, { name: "account-check", hex: "F0008", version: "1.5.54" }, { name: "account-check-outline", hex: "F0BE2", version: "3.2.89" }, { name: "account-child", hex: "F0A89", version: "2.7.94" }, { name: "account-child-circle", hex: "F0A8A", version: "2.7.94" }, { name: "account-child-outline", hex: "F10C8", version: "4.3.95" }, { name: "account-circle", hex: "F0009", version: "1.5.54" }, { name: "account-circle-outline", hex: "F0B55", version: "3.0.39" }, { name: "account-clock", hex: "F0B56", version: "3.0.39" }, { name: "account-clock-outline", hex: "F0B57", version: "3.0.39" }, { name: "account-cog", hex: "F1370", version: "4.9.95" }, { name: "account-cog-outline", hex: "F1371", version: "4.9.95" }, { name: "account-convert", hex: "F000A", version: "1.5.54" }, { name: "account-convert-outline", hex: "F1301", version: "4.8.95" }, { name: "account-cowboy-hat", hex: "F0E9B", version: "3.7.94" }, { name: "account-details", hex: "F0631", version: "1.6.50" }, { name: "account-details-outline", hex: "F1372", version: "4.9.95" }, { name: "account-edit", hex: "F06BC", version: "1.8.36" }, { name: "account-edit-outline", hex: "F0FFB", version: "4.0.96" }, { name: "account-group", hex: "F0849", version: "2.1.99" }, { name: "account-group-outline", hex: "F0B58", version: "3.0.39" }, { name: "account-hard-hat", hex: "F05B5", version: "1.5.54" }, { name: "account-heart", hex: "F0899", version: "2.2.43" }, { name: "account-heart-outline", hex: "F0BE3", version: "3.2.89" }, { name: "account-key", hex: "F000B", version: "1.5.54" }, { name: "account-key-outline", hex: "F0BE4", version: "3.2.89" }, { name: "account-lock", hex: "F115E", version: "4.4.95" }, { name: "account-lock-outline", hex: "F115F", version: "4.4.95" }, { name: "account-minus", hex: "F000D", version: "1.5.54" }, { name: "account-minus-outline", hex: "F0AEC", version: "2.8.94" }, { name: "account-multiple", hex: "F000E", version: "1.5.54" }, { name: "account-multiple-check", hex: "F08C5", version: "2.3.50" }, { name: "account-multiple-check-outline", hex: "F11FE", version: "4.6.95" }, { name: "account-multiple-minus", hex: "F05D3", version: "1.5.54" }, { name: "account-multiple-minus-outline", hex: "F0BE5", version: "3.2.89" }, { name: "account-multiple-outline", hex: "F000F", version: "1.5.54" }, { name: "account-multiple-plus", hex: "F0010", version: "1.5.54" }, { name: "account-multiple-plus-outline", hex: "F0800", version: "2.1.19" }, { name: "account-multiple-remove", hex: "F120A", version: "4.6.95" }, { name: "account-multiple-remove-outline", hex: "F120B", version: "4.6.95" }, { name: "account-music", hex: "F0803", version: "2.1.19" }, { name: "account-music-outline", hex: "F0CE9", version: "3.3.92" }, { name: "account-network", hex: "F0011", version: "1.5.54" }, { name: "account-network-outline", hex: "F0BE6", version: "3.2.89" }, { name: "account-off", hex: "F0012", version: "1.5.54" }, { name: "account-off-outline", hex: "F0BE7", version: "3.2.89" }, { name: "account-outline", hex: "F0013", version: "1.5.54" }, { name: "account-plus", hex: "F0014", version: "1.5.54" }, { name: "account-plus-outline", hex: "F0801", version: "2.1.19" }, { name: "account-question", hex: "F0B59", version: "3.0.39" }, { name: "account-question-outline", hex: "F0B5A", version: "3.0.39" }, { name: "account-remove", hex: "F0015", version: "1.5.54" }, { name: "account-remove-outline", hex: "F0AED", version: "2.8.94" }, { name: "account-search", hex: "F0016", version: "1.5.54" }, { name: "account-search-outline", hex: "F0935", version: "2.4.85" }, { name: "account-settings", hex: "F0630", version: "1.6.50" }, { name: "account-settings-outline", hex: "F10C9", version: "4.3.95" }, { name: "account-star", hex: "F0017", version: "1.5.54" }, { name: "account-star-outline", hex: "F0BE8", version: "3.2.89" }, { name: "account-supervisor", hex: "F0A8B", version: "2.7.94" }, { name: "account-supervisor-circle", hex: "F0A8C", version: "2.7.94" }, { name: "account-supervisor-outline", hex: "F112D", version: "4.4.95" }, { name: "account-switch", hex: "F0019", version: "1.5.54" }, { name: "account-switch-outline", hex: "F04CB", version: "1.5.54" }, { name: "account-tie", hex: "F0CE3", version: "3.3.92" }, { name: "account-tie-outline", hex: "F10CA", version: "4.3.95" }, { name: "account-tie-voice", hex: "F1308", version: "4.8.95" }, { name: "account-tie-voice-off", hex: "F130A", version: "4.8.95" }, { name: "account-tie-voice-off-outline", hex: "F130B", version: "4.8.95" }, { name: "account-tie-voice-outline", hex: "F1309", version: "4.8.95" }, { name: "account-voice", hex: "F05CB", version: "1.5.54" }, { name: "adjust", hex: "F001A", version: "1.5.54" }, { name: "adobe", hex: "F0936", version: "2.4.85" }, { name: "adobe-acrobat", hex: "F0F9D", version: "4.0.96" }, { name: "air-conditioner", hex: "F001B", version: "1.5.54" }, { name: "air-filter", hex: "F0D43", version: "3.4.93" }, { name: "air-horn", hex: "F0DAC", version: "3.5.94" }, { name: "air-humidifier", hex: "F1099", version: "4.2.95" }, { name: "air-purifier", hex: "F0D44", version: "3.4.93" }, { name: "airbag", hex: "F0BE9", version: "3.2.89" }, { name: "airballoon", hex: "F001C", version: "1.5.54" }, { name: "airballoon-outline", hex: "F100B", version: "4.1.95" }, { name: "airplane", hex: "F001D", version: "1.5.54" }, { name: "airplane-landing", hex: "F05D4", version: "1.5.54" }, { name: "airplane-off", hex: "F001E", version: "1.5.54" }, { name: "airplane-takeoff", hex: "F05D5", version: "1.5.54" }, { name: "airport", hex: "F084B", version: "2.1.99" }, { name: "alarm", hex: "F0020", version: "1.5.54" }, { name: "alarm-bell", hex: "F078E", version: "2.0.46" }, { name: "alarm-check", hex: "F0021", version: "1.5.54" }, { name: "alarm-light", hex: "F078F", version: "2.0.46" }, { name: "alarm-light-outline", hex: "F0BEA", version: "3.2.89" }, { name: "alarm-multiple", hex: "F0022", version: "1.5.54" }, { name: "alarm-note", hex: "F0E71", version: "3.7.94" }, { name: "alarm-note-off", hex: "F0E72", version: "3.7.94" }, { name: "alarm-off", hex: "F0023", version: "1.5.54" }, { name: "alarm-plus", hex: "F0024", version: "1.5.54" }, { name: "alarm-snooze", hex: "F068E", version: "1.7.12" }, { name: "album", hex: "F0025", version: "1.5.54" }, { name: "alert", hex: "F0026", version: "1.5.54" }, { name: "alert-box", hex: "F0027", version: "1.5.54" }, { name: "alert-box-outline", hex: "F0CE4", version: "3.3.92" }, { name: "alert-circle", hex: "F0028", version: "1.5.54" }, { name: "alert-circle-check", hex: "F11ED", version: "4.5.95" }, { name: "alert-circle-check-outline", hex: "F11EE", version: "4.5.95" }, { name: "alert-circle-outline", hex: "F05D6", version: "1.5.54" }, { name: "alert-decagram", hex: "F06BD", version: "1.8.36" }, { name: "alert-decagram-outline", hex: "F0CE5", version: "3.3.92" }, { name: "alert-octagon", hex: "F0029", version: "1.5.54" }, { name: "alert-octagon-outline", hex: "F0CE6", version: "3.3.92" }, { name: "alert-octagram", hex: "F0767", version: "1.9.32" }, { name: "alert-octagram-outline", hex: "F0CE7", version: "3.3.92" }, { name: "alert-outline", hex: "F002A", version: "1.5.54" }, { name: "alert-rhombus", hex: "F11CE", version: "4.5.95" }, { name: "alert-rhombus-outline", hex: "F11CF", version: "4.5.95" }, { name: "alien", hex: "F089A", version: "2.2.43" }, { name: "alien-outline", hex: "F10CB", version: "4.3.95" }, { name: "align-horizontal-center", hex: "F11C3", version: "4.5.95" }, { name: "align-horizontal-left", hex: "F11C2", version: "4.5.95" }, { name: "align-horizontal-right", hex: "F11C4", version: "4.5.95" }, { name: "align-vertical-bottom", hex: "F11C5", version: "4.5.95" }, { name: "align-vertical-center", hex: "F11C6", version: "4.5.95" }, { name: "align-vertical-top", hex: "F11C7", version: "4.5.95" }, { name: "all-inclusive", hex: "F06BE", version: "1.8.36" }, { name: "allergy", hex: "F1258", version: "4.7.95" }, { name: "alpha", hex: "F002B", version: "1.5.54" }, { name: "alpha-a", hex: "F0AEE", version: "2.8.94" }, { name: "alpha-a-box", hex: "F0B08", version: "2.8.94" }, { name: "alpha-a-box-outline", hex: "F0BEB", version: "3.2.89" }, { name: "alpha-a-circle", hex: "F0BEC", version: "3.2.89" }, { name: "alpha-a-circle-outline", hex: "F0BED", version: "3.2.89" }, { name: "alpha-b", hex: "F0AEF", version: "2.8.94" }, { name: "alpha-b-box", hex: "F0B09", version: "2.8.94" }, { name: "alpha-b-box-outline", hex: "F0BEE", version: "3.2.89" }, { name: "alpha-b-circle", hex: "F0BEF", version: "3.2.89" }, { name: "alpha-b-circle-outline", hex: "F0BF0", version: "3.2.89" }, { name: "alpha-c", hex: "F0AF0", version: "2.8.94" }, { name: "alpha-c-box", hex: "F0B0A", version: "2.8.94" }, { name: "alpha-c-box-outline", hex: "F0BF1", version: "3.2.89" }, { name: "alpha-c-circle", hex: "F0BF2", version: "3.2.89" }, { name: "alpha-c-circle-outline", hex: "F0BF3", version: "3.2.89" }, { name: "alpha-d", hex: "F0AF1", version: "2.8.94" }, { name: "alpha-d-box", hex: "F0B0B", version: "2.8.94" }, { name: "alpha-d-box-outline", hex: "F0BF4", version: "3.2.89" }, { name: "alpha-d-circle", hex: "F0BF5", version: "3.2.89" }, { name: "alpha-d-circle-outline", hex: "F0BF6", version: "3.2.89" }, { name: "alpha-e", hex: "F0AF2", version: "2.8.94" }, { name: "alpha-e-box", hex: "F0B0C", version: "2.8.94" }, { name: "alpha-e-box-outline", hex: "F0BF7", version: "3.2.89" }, { name: "alpha-e-circle", hex: "F0BF8", version: "3.2.89" }, { name: "alpha-e-circle-outline", hex: "F0BF9", version: "3.2.89" }, { name: "alpha-f", hex: "F0AF3", version: "2.8.94" }, { name: "alpha-f-box", hex: "F0B0D", version: "2.8.94" }, { name: "alpha-f-box-outline", hex: "F0BFA", version: "3.2.89" }, { name: "alpha-f-circle", hex: "F0BFB", version: "3.2.89" }, { name: "alpha-f-circle-outline", hex: "F0BFC", version: "3.2.89" }, { name: "alpha-g", hex: "F0AF4", version: "2.8.94" }, { name: "alpha-g-box", hex: "F0B0E", version: "2.8.94" }, { name: "alpha-g-box-outline", hex: "F0BFD", version: "3.2.89" }, { name: "alpha-g-circle", hex: "F0BFE", version: "3.2.89" }, { name: "alpha-g-circle-outline", hex: "F0BFF", version: "3.2.89" }, { name: "alpha-h", hex: "F0AF5", version: "2.8.94" }, { name: "alpha-h-box", hex: "F0B0F", version: "2.8.94" }, { name: "alpha-h-box-outline", hex: "F0C00", version: "3.2.89" }, { name: "alpha-h-circle", hex: "F0C01", version: "3.2.89" }, { name: "alpha-h-circle-outline", hex: "F0C02", version: "3.2.89" }, { name: "alpha-i", hex: "F0AF6", version: "2.8.94" }, { name: "alpha-i-box", hex: "F0B10", version: "2.8.94" }, { name: "alpha-i-box-outline", hex: "F0C03", version: "3.2.89" }, { name: "alpha-i-circle", hex: "F0C04", version: "3.2.89" }, { name: "alpha-i-circle-outline", hex: "F0C05", version: "3.2.89" }, { name: "alpha-j", hex: "F0AF7", version: "2.8.94" }, { name: "alpha-j-box", hex: "F0B11", version: "2.8.94" }, { name: "alpha-j-box-outline", hex: "F0C06", version: "3.2.89" }, { name: "alpha-j-circle", hex: "F0C07", version: "3.2.89" }, { name: "alpha-j-circle-outline", hex: "F0C08", version: "3.2.89" }, { name: "alpha-k", hex: "F0AF8", version: "2.8.94" }, { name: "alpha-k-box", hex: "F0B12", version: "2.8.94" }, { name: "alpha-k-box-outline", hex: "F0C09", version: "3.2.89" }, { name: "alpha-k-circle", hex: "F0C0A", version: "3.2.89" }, { name: "alpha-k-circle-outline", hex: "F0C0B", version: "3.2.89" }, { name: "alpha-l", hex: "F0AF9", version: "2.8.94" }, { name: "alpha-l-box", hex: "F0B13", version: "2.8.94" }, { name: "alpha-l-box-outline", hex: "F0C0C", version: "3.2.89" }, { name: "alpha-l-circle", hex: "F0C0D", version: "3.2.89" }, { name: "alpha-l-circle-outline", hex: "F0C0E", version: "3.2.89" }, { name: "alpha-m", hex: "F0AFA", version: "2.8.94" }, { name: "alpha-m-box", hex: "F0B14", version: "2.8.94" }, { name: "alpha-m-box-outline", hex: "F0C0F", version: "3.2.89" }, { name: "alpha-m-circle", hex: "F0C10", version: "3.2.89" }, { name: "alpha-m-circle-outline", hex: "F0C11", version: "3.2.89" }, { name: "alpha-n", hex: "F0AFB", version: "2.8.94" }, { name: "alpha-n-box", hex: "F0B15", version: "2.8.94" }, { name: "alpha-n-box-outline", hex: "F0C12", version: "3.2.89" }, { name: "alpha-n-circle", hex: "F0C13", version: "3.2.89" }, { name: "alpha-n-circle-outline", hex: "F0C14", version: "3.2.89" }, { name: "alpha-o", hex: "F0AFC", version: "2.8.94" }, { name: "alpha-o-box", hex: "F0B16", version: "2.8.94" }, { name: "alpha-o-box-outline", hex: "F0C15", version: "3.2.89" }, { name: "alpha-o-circle", hex: "F0C16", version: "3.2.89" }, { name: "alpha-o-circle-outline", hex: "F0C17", version: "3.2.89" }, { name: "alpha-p", hex: "F0AFD", version: "2.8.94" }, { name: "alpha-p-box", hex: "F0B17", version: "2.8.94" }, { name: "alpha-p-box-outline", hex: "F0C18", version: "3.2.89" }, { name: "alpha-p-circle", hex: "F0C19", version: "3.2.89" }, { name: "alpha-p-circle-outline", hex: "F0C1A", version: "3.2.89" }, { name: "alpha-q", hex: "F0AFE", version: "2.8.94" }, { name: "alpha-q-box", hex: "F0B18", version: "2.8.94" }, { name: "alpha-q-box-outline", hex: "F0C1B", version: "3.2.89" }, { name: "alpha-q-circle", hex: "F0C1C", version: "3.2.89" }, { name: "alpha-q-circle-outline", hex: "F0C1D", version: "3.2.89" }, { name: "alpha-r", hex: "F0AFF", version: "2.8.94" }, { name: "alpha-r-box", hex: "F0B19", version: "2.8.94" }, { name: "alpha-r-box-outline", hex: "F0C1E", version: "3.2.89" }, { name: "alpha-r-circle", hex: "F0C1F", version: "3.2.89" }, { name: "alpha-r-circle-outline", hex: "F0C20", version: "3.2.89" }, { name: "alpha-s", hex: "F0B00", version: "2.8.94" }, { name: "alpha-s-box", hex: "F0B1A", version: "2.8.94" }, { name: "alpha-s-box-outline", hex: "F0C21", version: "3.2.89" }, { name: "alpha-s-circle", hex: "F0C22", version: "3.2.89" }, { name: "alpha-s-circle-outline", hex: "F0C23", version: "3.2.89" }, { name: "alpha-t", hex: "F0B01", version: "2.8.94" }, { name: "alpha-t-box", hex: "F0B1B", version: "2.8.94" }, { name: "alpha-t-box-outline", hex: "F0C24", version: "3.2.89" }, { name: "alpha-t-circle", hex: "F0C25", version: "3.2.89" }, { name: "alpha-t-circle-outline", hex: "F0C26", version: "3.2.89" }, { name: "alpha-u", hex: "F0B02", version: "2.8.94" }, { name: "alpha-u-box", hex: "F0B1C", version: "2.8.94" }, { name: "alpha-u-box-outline", hex: "F0C27", version: "3.2.89" }, { name: "alpha-u-circle", hex: "F0C28", version: "3.2.89" }, { name: "alpha-u-circle-outline", hex: "F0C29", version: "3.2.89" }, { name: "alpha-v", hex: "F0B03", version: "2.8.94" }, { name: "alpha-v-box", hex: "F0B1D", version: "2.8.94" }, { name: "alpha-v-box-outline", hex: "F0C2A", version: "3.2.89" }, { name: "alpha-v-circle", hex: "F0C2B", version: "3.2.89" }, { name: "alpha-v-circle-outline", hex: "F0C2C", version: "3.2.89" }, { name: "alpha-w", hex: "F0B04", version: "2.8.94" }, { name: "alpha-w-box", hex: "F0B1E", version: "2.8.94" }, { name: "alpha-w-box-outline", hex: "F0C2D", version: "3.2.89" }, { name: "alpha-w-circle", hex: "F0C2E", version: "3.2.89" }, { name: "alpha-w-circle-outline", hex: "F0C2F", version: "3.2.89" }, { name: "alpha-x", hex: "F0B05", version: "2.8.94" }, { name: "alpha-x-box", hex: "F0B1F", version: "2.8.94" }, { name: "alpha-x-box-outline", hex: "F0C30", version: "3.2.89" }, { name: "alpha-x-circle", hex: "F0C31", version: "3.2.89" }, { name: "alpha-x-circle-outline", hex: "F0C32", version: "3.2.89" }, { name: "alpha-y", hex: "F0B06", version: "2.8.94" }, { name: "alpha-y-box", hex: "F0B20", version: "2.8.94" }, { name: "alpha-y-box-outline", hex: "F0C33", version: "3.2.89" }, { name: "alpha-y-circle", hex: "F0C34", version: "3.2.89" }, { name: "alpha-y-circle-outline", hex: "F0C35", version: "3.2.89" }, { name: "alpha-z", hex: "F0B07", version: "2.8.94" }, { name: "alpha-z-box", hex: "F0B21", version: "2.8.94" }, { name: "alpha-z-box-outline", hex: "F0C36", version: "3.2.89" }, { name: "alpha-z-circle", hex: "F0C37", version: "3.2.89" }, { name: "alpha-z-circle-outline", hex: "F0C38", version: "3.2.89" }, { name: "alphabet-aurebesh", hex: "F132C", version: "4.9.95" }, { name: "alphabet-cyrillic", hex: "F132D", version: "4.9.95" }, { name: "alphabet-greek", hex: "F132E", version: "4.9.95" }, { name: "alphabet-latin", hex: "F132F", version: "4.9.95" }, { name: "alphabet-piqad", hex: "F1330", version: "4.9.95" }, { name: "alphabet-tengwar", hex: "F1337", version: "4.9.95" }, { name: "alphabetical", hex: "F002C", version: "1.5.54" }, { name: "alphabetical-off", hex: "F100C", version: "4.1.95" }, { name: "alphabetical-variant", hex: "F100D", version: "4.1.95" }, { name: "alphabetical-variant-off", hex: "F100E", version: "4.1.95" }, { name: "altimeter", hex: "F05D7", version: "1.5.54" }, { name: "amazon", hex: "F002D", version: "1.5.54" }, { name: "amazon-alexa", hex: "F08C6", version: "2.3.50" }, { name: "ambulance", hex: "F002F", version: "1.5.54" }, { name: "ammunition", hex: "F0CE8", version: "3.3.92" }, { name: "ampersand", hex: "F0A8D", version: "2.7.94" }, { name: "amplifier", hex: "F0030", version: "1.5.54" }, { name: "amplifier-off", hex: "F11B5", version: "4.5.95" }, { name: "anchor", hex: "F0031", version: "1.5.54" }, { name: "android", hex: "F0032", version: "1.5.54" }, { name: "android-auto", hex: "F0A8E", version: "2.7.94" }, { name: "android-debug-bridge", hex: "F0033", version: "1.5.54" }, { name: "android-messages", hex: "F0D45", version: "3.4.93" }, { name: "android-studio", hex: "F0034", version: "1.5.54" }, { name: "angle-acute", hex: "F0937", version: "2.4.85" }, { name: "angle-obtuse", hex: "F0938", version: "2.4.85" }, { name: "angle-right", hex: "F0939", version: "2.4.85" }, { name: "angular", hex: "F06B2", version: "1.7.22" }, { name: "angularjs", hex: "F06BF", version: "1.8.36" }, { name: "animation", hex: "F05D8", version: "1.5.54" }, { name: "animation-outline", hex: "F0A8F", version: "2.7.94" }, { name: "animation-play", hex: "F093A", version: "2.4.85" }, { name: "animation-play-outline", hex: "F0A90", version: "2.7.94" }, { name: "ansible", hex: "F109A", version: "4.2.95" }, { name: "antenna", hex: "F1119", version: "4.3.95" }, { name: "anvil", hex: "F089B", version: "2.2.43" }, { name: "apache-kafka", hex: "F100F", version: "4.1.95" }, { name: "api", hex: "F109B", version: "4.2.95" }, { name: "api-off", hex: "F1257", version: "4.6.95" }, { name: "apple", hex: "F0035", version: "1.5.54" }, { name: "apple-airplay", hex: "F001F", version: "1.5.54" }, { name: "apple-finder", hex: "F0036", version: "1.5.54" }, { name: "apple-icloud", hex: "F0038", version: "1.5.54" }, { name: "apple-ios", hex: "F0037", version: "1.5.54" }, { name: "apple-keyboard-caps", hex: "F0632", version: "1.6.50" }, { name: "apple-keyboard-command", hex: "F0633", version: "1.6.50" }, { name: "apple-keyboard-control", hex: "F0634", version: "1.6.50" }, { name: "apple-keyboard-option", hex: "F0635", version: "1.6.50" }, { name: "apple-keyboard-shift", hex: "F0636", version: "1.6.50" }, { name: "apple-safari", hex: "F0039", version: "1.5.54" }, { name: "application", hex: "F0614", version: "1.6.50" }, { name: "application-export", hex: "F0DAD", version: "3.5.94" }, { name: "application-import", hex: "F0DAE", version: "3.5.94" }, { name: "approximately-equal", hex: "F0F9E", version: "4.0.96" }, { name: "approximately-equal-box", hex: "F0F9F", version: "4.0.96" }, { name: "apps", hex: "F003B", version: "1.5.54" }, { name: "apps-box", hex: "F0D46", version: "3.4.93" }, { name: "arch", hex: "F08C7", version: "2.3.50" }, { name: "archive", hex: "F003C", version: "1.5.54" }, { name: "archive-arrow-down", hex: "F1259", version: "4.7.95" }, { name: "archive-arrow-down-outline", hex: "F125A", version: "4.7.95" }, { name: "archive-arrow-up", hex: "F125B", version: "4.7.95" }, { name: "archive-arrow-up-outline", hex: "F125C", version: "4.7.95" }, { name: "archive-outline", hex: "F120E", version: "4.6.95" }, { name: "arm-flex", hex: "F0FD7", version: "4.2.95" }, { name: "arm-flex-outline", hex: "F0FD6", version: "4.2.95" }, { name: "arrange-bring-forward", hex: "F003D", version: "1.5.54" }, { name: "arrange-bring-to-front", hex: "F003E", version: "1.5.54" }, { name: "arrange-send-backward", hex: "F003F", version: "1.5.54" }, { name: "arrange-send-to-back", hex: "F0040", version: "1.5.54" }, { name: "arrow-all", hex: "F0041", version: "1.5.54" }, { name: "arrow-bottom-left", hex: "F0042", version: "1.5.54" }, { name: "arrow-bottom-left-bold-outline", hex: "F09B7", version: "2.5.94" }, { name: "arrow-bottom-left-thick", hex: "F09B8", version: "2.5.94" }, { name: "arrow-bottom-right", hex: "F0043", version: "1.5.54" }, { name: "arrow-bottom-right-bold-outline", hex: "F09B9", version: "2.5.94" }, { name: "arrow-bottom-right-thick", hex: "F09BA", version: "2.5.94" }, { name: "arrow-collapse", hex: "F0615", version: "1.6.50" }, { name: "arrow-collapse-all", hex: "F0044", version: "1.5.54" }, { name: "arrow-collapse-down", hex: "F0792", version: "2.0.46" }, { name: "arrow-collapse-horizontal", hex: "F084C", version: "2.1.99" }, { name: "arrow-collapse-left", hex: "F0793", version: "2.0.46" }, { name: "arrow-collapse-right", hex: "F0794", version: "2.0.46" }, { name: "arrow-collapse-up", hex: "F0795", version: "2.0.46" }, { name: "arrow-collapse-vertical", hex: "F084D", version: "2.1.99" }, { name: "arrow-decision", hex: "F09BB", version: "2.5.94" }, { name: "arrow-decision-auto", hex: "F09BC", version: "2.5.94" }, { name: "arrow-decision-auto-outline", hex: "F09BD", version: "2.5.94" }, { name: "arrow-decision-outline", hex: "F09BE", version: "2.5.94" }, { name: "arrow-down", hex: "F0045", version: "1.5.54" }, { name: "arrow-down-bold", hex: "F072E", version: "1.9.32" }, { name: "arrow-down-bold-box", hex: "F072F", version: "1.9.32" }, { name: "arrow-down-bold-box-outline", hex: "F0730", version: "1.9.32" }, { name: "arrow-down-bold-circle", hex: "F0047", version: "1.5.54" }, { name: "arrow-down-bold-circle-outline", hex: "F0048", version: "1.5.54" }, { name: "arrow-down-bold-hexagon-outline", hex: "F0049", version: "1.5.54" }, { name: "arrow-down-bold-outline", hex: "F09BF", version: "2.5.94" }, { name: "arrow-down-box", hex: "F06C0", version: "1.8.36" }, { name: "arrow-down-circle", hex: "F0CDB", version: "3.3.92" }, { name: "arrow-down-circle-outline", hex: "F0CDC", version: "3.3.92" }, { name: "arrow-down-drop-circle", hex: "F004A", version: "1.5.54" }, { name: "arrow-down-drop-circle-outline", hex: "F004B", version: "1.5.54" }, { name: "arrow-down-thick", hex: "F0046", version: "1.5.54" }, { name: "arrow-expand", hex: "F0616", version: "1.6.50" }, { name: "arrow-expand-all", hex: "F004C", version: "1.5.54" }, { name: "arrow-expand-down", hex: "F0796", version: "2.0.46" }, { name: "arrow-expand-horizontal", hex: "F084E", version: "2.1.99" }, { name: "arrow-expand-left", hex: "F0797", version: "2.0.46" }, { name: "arrow-expand-right", hex: "F0798", version: "2.0.46" }, { name: "arrow-expand-up", hex: "F0799", version: "2.0.46" }, { name: "arrow-expand-vertical", hex: "F084F", version: "2.1.99" }, { name: "arrow-horizontal-lock", hex: "F115B", version: "4.4.95" }, { name: "arrow-left", hex: "F004D", version: "1.5.54" }, { name: "arrow-left-bold", hex: "F0731", version: "1.9.32" }, { name: "arrow-left-bold-box", hex: "F0732", version: "1.9.32" }, { name: "arrow-left-bold-box-outline", hex: "F0733", version: "1.9.32" }, { name: "arrow-left-bold-circle", hex: "F004F", version: "1.5.54" }, { name: "arrow-left-bold-circle-outline", hex: "F0050", version: "1.5.54" }, { name: "arrow-left-bold-hexagon-outline", hex: "F0051", version: "1.5.54" }, { name: "arrow-left-bold-outline", hex: "F09C0", version: "2.5.94" }, { name: "arrow-left-box", hex: "F06C1", version: "1.8.36" }, { name: "arrow-left-circle", hex: "F0CDD", version: "3.3.92" }, { name: "arrow-left-circle-outline", hex: "F0CDE", version: "3.3.92" }, { name: "arrow-left-drop-circle", hex: "F0052", version: "1.5.54" }, { name: "arrow-left-drop-circle-outline", hex: "F0053", version: "1.5.54" }, { name: "arrow-left-right", hex: "F0E73", version: "3.7.94" }, { name: "arrow-left-right-bold", hex: "F0E74", version: "3.7.94" }, { name: "arrow-left-right-bold-outline", hex: "F09C1", version: "2.5.94" }, { name: "arrow-left-thick", hex: "F004E", version: "1.5.54" }, { name: "arrow-right", hex: "F0054", version: "1.5.54" }, { name: "arrow-right-bold", hex: "F0734", version: "1.9.32" }, { name: "arrow-right-bold-box", hex: "F0735", version: "1.9.32" }, { name: "arrow-right-bold-box-outline", hex: "F0736", version: "1.9.32" }, { name: "arrow-right-bold-circle", hex: "F0056", version: "1.5.54" }, { name: "arrow-right-bold-circle-outline", hex: "F0057", version: "1.5.54" }, { name: "arrow-right-bold-hexagon-outline", hex: "F0058", version: "1.5.54" }, { name: "arrow-right-bold-outline", hex: "F09C2", version: "2.5.94" }, { name: "arrow-right-box", hex: "F06C2", version: "1.8.36" }, { name: "arrow-right-circle", hex: "F0CDF", version: "3.3.92" }, { name: "arrow-right-circle-outline", hex: "F0CE0", version: "3.3.92" }, { name: "arrow-right-drop-circle", hex: "F0059", version: "1.5.54" }, { name: "arrow-right-drop-circle-outline", hex: "F005A", version: "1.5.54" }, { name: "arrow-right-thick", hex: "F0055", version: "1.5.54" }, { name: "arrow-split-horizontal", hex: "F093B", version: "2.4.85" }, { name: "arrow-split-vertical", hex: "F093C", version: "2.4.85" }, { name: "arrow-top-left", hex: "F005B", version: "1.5.54" }, { name: "arrow-top-left-bold-outline", hex: "F09C3", version: "2.5.94" }, { name: "arrow-top-left-bottom-right", hex: "F0E75", version: "3.7.94" }, { name: "arrow-top-left-bottom-right-bold", hex: "F0E76", version: "3.7.94" }, { name: "arrow-top-left-thick", hex: "F09C4", version: "2.5.94" }, { name: "arrow-top-right", hex: "F005C", version: "1.5.54" }, { name: "arrow-top-right-bold-outline", hex: "F09C5", version: "2.5.94" }, { name: "arrow-top-right-bottom-left", hex: "F0E77", version: "3.7.94" }, { name: "arrow-top-right-bottom-left-bold", hex: "F0E78", version: "3.7.94" }, { name: "arrow-top-right-thick", hex: "F09C6", version: "2.5.94" }, { name: "arrow-up", hex: "F005D", version: "1.5.54" }, { name: "arrow-up-bold", hex: "F0737", version: "1.9.32" }, { name: "arrow-up-bold-box", hex: "F0738", version: "1.9.32" }, { name: "arrow-up-bold-box-outline", hex: "F0739", version: "1.9.32" }, { name: "arrow-up-bold-circle", hex: "F005F", version: "1.5.54" }, { name: "arrow-up-bold-circle-outline", hex: "F0060", version: "1.5.54" }, { name: "arrow-up-bold-hexagon-outline", hex: "F0061", version: "1.5.54" }, { name: "arrow-up-bold-outline", hex: "F09C7", version: "2.5.94" }, { name: "arrow-up-box", hex: "F06C3", version: "1.8.36" }, { name: "arrow-up-circle", hex: "F0CE1", version: "3.3.92" }, { name: "arrow-up-circle-outline", hex: "F0CE2", version: "3.3.92" }, { name: "arrow-up-down", hex: "F0E79", version: "3.7.94" }, { name: "arrow-up-down-bold", hex: "F0E7A", version: "3.7.94" }, { name: "arrow-up-down-bold-outline", hex: "F09C8", version: "2.5.94" }, { name: "arrow-up-drop-circle", hex: "F0062", version: "1.5.54" }, { name: "arrow-up-drop-circle-outline", hex: "F0063", version: "1.5.54" }, { name: "arrow-up-thick", hex: "F005E", version: "1.5.54" }, { name: "arrow-vertical-lock", hex: "F115C", version: "4.4.95" }, { name: "artstation", hex: "F0B5B", version: "3.0.39" }, { name: "aspect-ratio", hex: "F0A24", version: "2.6.95" }, { name: "assistant", hex: "F0064", version: "1.5.54" }, { name: "asterisk", hex: "F06C4", version: "1.8.36" }, { name: "at", hex: "F0065", version: "1.5.54" }, { name: "atlassian", hex: "F0804", version: "2.1.19" }, { name: "atm", hex: "F0D47", version: "3.4.93" }, { name: "atom", hex: "F0768", version: "1.9.32" }, { name: "atom-variant", hex: "F0E7B", version: "3.7.94" }, { name: "attachment", hex: "F0066", version: "1.5.54" }, { name: "audio-video", hex: "F093D", version: "2.4.85" }, { name: "audio-video-off", hex: "F11B6", version: "4.5.95" }, { name: "augmented-reality", hex: "F0850", version: "2.1.99" }, { name: "auto-download", hex: "F137E", version: "4.9.95" }, { name: "auto-fix", hex: "F0068", version: "1.5.54" }, { name: "auto-upload", hex: "F0069", version: "1.5.54" }, { name: "autorenew", hex: "F006A", version: "1.5.54" }, { name: "av-timer", hex: "F006B", version: "1.5.54" }, { name: "aws", hex: "F0E0F", version: "3.6.95" }, { name: "axe", hex: "F08C8", version: "2.3.50" }, { name: "axis", hex: "F0D48", version: "3.4.93" }, { name: "axis-arrow", hex: "F0D49", version: "3.4.93" }, { name: "axis-arrow-lock", hex: "F0D4A", version: "3.4.93" }, { name: "axis-lock", hex: "F0D4B", version: "3.4.93" }, { name: "axis-x-arrow", hex: "F0D4C", version: "3.4.93" }, { name: "axis-x-arrow-lock", hex: "F0D4D", version: "3.4.93" }, { name: "axis-x-rotate-clockwise", hex: "F0D4E", version: "3.4.93" }, { name: "axis-x-rotate-counterclockwise", hex: "F0D4F", version: "3.4.93" }, { name: "axis-x-y-arrow-lock", hex: "F0D50", version: "3.4.93" }, { name: "axis-y-arrow", hex: "F0D51", version: "3.4.93" }, { name: "axis-y-arrow-lock", hex: "F0D52", version: "3.4.93" }, { name: "axis-y-rotate-clockwise", hex: "F0D53", version: "3.4.93" }, { name: "axis-y-rotate-counterclockwise", hex: "F0D54", version: "3.4.93" }, { name: "axis-z-arrow", hex: "F0D55", version: "3.4.93" }, { name: "axis-z-arrow-lock", hex: "F0D56", version: "3.4.93" }, { name: "axis-z-rotate-clockwise", hex: "F0D57", version: "3.4.93" }, { name: "axis-z-rotate-counterclockwise", hex: "F0D58", version: "3.4.93" }, { name: "babel", hex: "F0A25", version: "2.6.95" }, { name: "baby", hex: "F006C", version: "1.5.54" }, { name: "baby-bottle", hex: "F0F39", version: "3.9.97" }, { name: "baby-bottle-outline", hex: "F0F3A", version: "3.9.97" }, { name: "baby-carriage", hex: "F068F", version: "1.7.12" }, { name: "baby-carriage-off", hex: "F0FA0", version: "4.0.96" }, { name: "baby-face", hex: "F0E7C", version: "3.7.94" }, { name: "baby-face-outline", hex: "F0E7D", version: "3.7.94" }, { name: "backburger", hex: "F006D", version: "1.5.54" }, { name: "backspace", hex: "F006E", version: "1.5.54" }, { name: "backspace-outline", hex: "F0B5C", version: "3.0.39" }, { name: "backspace-reverse", hex: "F0E7E", version: "3.7.94" }, { name: "backspace-reverse-outline", hex: "F0E7F", version: "3.7.94" }, { name: "backup-restore", hex: "F006F", version: "1.5.54" }, { name: "bacteria", hex: "F0ED5", version: "3.8.95" }, { name: "bacteria-outline", hex: "F0ED6", version: "3.8.95" }, { name: "badge-account", hex: "F0DA7", version: "3.5.94" }, { name: "badge-account-alert", hex: "F0DA8", version: "3.5.94" }, { name: "badge-account-alert-outline", hex: "F0DA9", version: "3.5.94" }, { name: "badge-account-horizontal", hex: "F0E0D", version: "3.6.95" }, { name: "badge-account-horizontal-outline", hex: "F0E0E", version: "3.6.95" }, { name: "badge-account-outline", hex: "F0DAA", version: "3.5.94" }, { name: "badminton", hex: "F0851", version: "2.1.99" }, { name: "bag-carry-on", hex: "F0F3B", version: "3.9.97" }, { name: "bag-carry-on-check", hex: "F0D65", version: "3.4.93" }, { name: "bag-carry-on-off", hex: "F0F3C", version: "3.9.97" }, { name: "bag-checked", hex: "F0F3D", version: "3.9.97" }, { name: "bag-personal", hex: "F0E10", version: "3.6.95" }, { name: "bag-personal-off", hex: "F0E11", version: "3.6.95" }, { name: "bag-personal-off-outline", hex: "F0E12", version: "3.6.95" }, { name: "bag-personal-outline", hex: "F0E13", version: "3.6.95" }, { name: "baguette", hex: "F0F3E", version: "3.9.97" }, { name: "balloon", hex: "F0A26", version: "2.6.95" }, { name: "ballot", hex: "F09C9", version: "2.5.94" }, { name: "ballot-outline", hex: "F09CA", version: "2.5.94" }, { name: "ballot-recount", hex: "F0C39", version: "3.2.89" }, { name: "ballot-recount-outline", hex: "F0C3A", version: "3.2.89" }, { name: "bandage", hex: "F0DAF", version: "3.5.94" }, { name: "bandcamp", hex: "F0675", version: "1.7.12" }, { name: "bank", hex: "F0070", version: "1.5.54" }, { name: "bank-minus", hex: "F0DB0", version: "3.5.94" }, { name: "bank-outline", hex: "F0E80", version: "3.7.94" }, { name: "bank-plus", hex: "F0DB1", version: "3.5.94" }, { name: "bank-remove", hex: "F0DB2", version: "3.5.94" }, { name: "bank-transfer", hex: "F0A27", version: "2.6.95" }, { name: "bank-transfer-in", hex: "F0A28", version: "2.6.95" }, { name: "bank-transfer-out", hex: "F0A29", version: "2.6.95" }, { name: "barcode", hex: "F0071", version: "1.5.54" }, { name: "barcode-off", hex: "F1236", version: "4.6.95" }, { name: "barcode-scan", hex: "F0072", version: "1.5.54" }, { name: "barley", hex: "F0073", version: "1.5.54" }, { name: "barley-off", hex: "F0B5D", version: "3.0.39" }, { name: "barn", hex: "F0B5E", version: "3.0.39" }, { name: "barrel", hex: "F0074", version: "1.5.54" }, { name: "baseball", hex: "F0852", version: "2.1.99" }, { name: "baseball-bat", hex: "F0853", version: "2.1.99" }, { name: "bash", hex: "F1183", version: "4.4.95" }, { name: "basket", hex: "F0076", version: "1.5.54" }, { name: "basket-fill", hex: "F0077", version: "1.5.54" }, { name: "basket-outline", hex: "F1181", version: "4.4.95" }, { name: "basket-unfill", hex: "F0078", version: "1.5.54" }, { name: "basketball", hex: "F0806", version: "2.1.19" }, { name: "basketball-hoop", hex: "F0C3B", version: "3.2.89" }, { name: "basketball-hoop-outline", hex: "F0C3C", version: "3.2.89" }, { name: "bat", hex: "F0B5F", version: "3.0.39" }, { name: "battery", hex: "F0079", version: "1.5.54" }, { name: "battery-10", hex: "F007A", version: "1.5.54" }, { name: "battery-10-bluetooth", hex: "F093E", version: "2.4.85" }, { name: "battery-20", hex: "F007B", version: "1.5.54" }, { name: "battery-20-bluetooth", hex: "F093F", version: "2.4.85" }, { name: "battery-30", hex: "F007C", version: "1.5.54" }, { name: "battery-30-bluetooth", hex: "F0940", version: "2.4.85" }, { name: "battery-40", hex: "F007D", version: "1.5.54" }, { name: "battery-40-bluetooth", hex: "F0941", version: "2.4.85" }, { name: "battery-50", hex: "F007E", version: "1.5.54" }, { name: "battery-50-bluetooth", hex: "F0942", version: "2.4.85" }, { name: "battery-60", hex: "F007F", version: "1.5.54" }, { name: "battery-60-bluetooth", hex: "F0943", version: "2.4.85" }, { name: "battery-70", hex: "F0080", version: "1.5.54" }, { name: "battery-70-bluetooth", hex: "F0944", version: "2.4.85" }, { name: "battery-80", hex: "F0081", version: "1.5.54" }, { name: "battery-80-bluetooth", hex: "F0945", version: "2.4.85" }, { name: "battery-90", hex: "F0082", version: "1.5.54" }, { name: "battery-90-bluetooth", hex: "F0946", version: "2.4.85" }, { name: "battery-alert", hex: "F0083", version: "1.5.54" }, { name: "battery-alert-bluetooth", hex: "F0947", version: "2.4.85" }, { name: "battery-alert-variant", hex: "F10CC", version: "4.3.95" }, { name: "battery-alert-variant-outline", hex: "F10CD", version: "4.3.95" }, { name: "battery-bluetooth", hex: "F0948", version: "2.4.85" }, { name: "battery-bluetooth-variant", hex: "F0949", version: "2.4.85" }, { name: "battery-charging", hex: "F0084", version: "1.5.54" }, { name: "battery-charging-10", hex: "F089C", version: "2.2.43" }, { name: "battery-charging-100", hex: "F0085", version: "1.5.54" }, { name: "battery-charging-20", hex: "F0086", version: "1.5.54" }, { name: "battery-charging-30", hex: "F0087", version: "1.5.54" }, { name: "battery-charging-40", hex: "F0088", version: "1.5.54" }, { name: "battery-charging-50", hex: "F089D", version: "2.2.43" }, { name: "battery-charging-60", hex: "F0089", version: "1.5.54" }, { name: "battery-charging-70", hex: "F089E", version: "2.2.43" }, { name: "battery-charging-80", hex: "F008A", version: "1.5.54" }, { name: "battery-charging-90", hex: "F008B", version: "1.5.54" }, { name: "battery-charging-high", hex: "F12A6", version: "4.7.95" }, { name: "battery-charging-low", hex: "F12A4", version: "4.7.95" }, { name: "battery-charging-medium", hex: "F12A5", version: "4.7.95" }, { name: "battery-charging-outline", hex: "F089F", version: "2.2.43" }, { name: "battery-charging-wireless", hex: "F0807", version: "2.1.19" }, { name: "battery-charging-wireless-10", hex: "F0808", version: "2.1.19" }, { name: "battery-charging-wireless-20", hex: "F0809", version: "2.1.19" }, { name: "battery-charging-wireless-30", hex: "F080A", version: "2.1.19" }, { name: "battery-charging-wireless-40", hex: "F080B", version: "2.1.19" }, { name: "battery-charging-wireless-50", hex: "F080C", version: "2.1.19" }, { name: "battery-charging-wireless-60", hex: "F080D", version: "2.1.19" }, { name: "battery-charging-wireless-70", hex: "F080E", version: "2.1.19" }, { name: "battery-charging-wireless-80", hex: "F080F", version: "2.1.19" }, { name: "battery-charging-wireless-90", hex: "F0810", version: "2.1.19" }, { name: "battery-charging-wireless-alert", hex: "F0811", version: "2.1.19" }, { name: "battery-charging-wireless-outline", hex: "F0812", version: "2.1.19" }, { name: "battery-heart", hex: "F120F", version: "4.6.95" }, { name: "battery-heart-outline", hex: "F1210", version: "4.6.95" }, { name: "battery-heart-variant", hex: "F1211", version: "4.6.95" }, { name: "battery-high", hex: "F12A3", version: "4.7.95" }, { name: "battery-low", hex: "F12A1", version: "4.7.95" }, { name: "battery-medium", hex: "F12A2", version: "4.7.95" }, { name: "battery-minus", hex: "F008C", version: "1.5.54" }, { name: "battery-negative", hex: "F008D", version: "1.5.54" }, { name: "battery-off", hex: "F125D", version: "4.7.95" }, { name: "battery-off-outline", hex: "F125E", version: "4.7.95" }, { name: "battery-outline", hex: "F008E", version: "1.5.54" }, { name: "battery-plus", hex: "F008F", version: "1.5.54" }, { name: "battery-positive", hex: "F0090", version: "1.5.54" }, { name: "battery-unknown", hex: "F0091", version: "1.5.54" }, { name: "battery-unknown-bluetooth", hex: "F094A", version: "2.4.85" }, { name: "battlenet", hex: "F0B60", version: "3.0.39" }, { name: "beach", hex: "F0092", version: "1.5.54" }, { name: "beaker", hex: "F0CEA", version: "3.3.92" }, { name: "beaker-alert", hex: "F1229", version: "4.6.95" }, { name: "beaker-alert-outline", hex: "F122A", version: "4.6.95" }, { name: "beaker-check", hex: "F122B", version: "4.6.95" }, { name: "beaker-check-outline", hex: "F122C", version: "4.6.95" }, { name: "beaker-minus", hex: "F122D", version: "4.6.95" }, { name: "beaker-minus-outline", hex: "F122E", version: "4.6.95" }, { name: "beaker-outline", hex: "F0690", version: "1.7.12" }, { name: "beaker-plus", hex: "F122F", version: "4.6.95" }, { name: "beaker-plus-outline", hex: "F1230", version: "4.6.95" }, { name: "beaker-question", hex: "F1231", version: "4.6.95" }, { name: "beaker-question-outline", hex: "F1232", version: "4.6.95" }, { name: "beaker-remove", hex: "F1233", version: "4.6.95" }, { name: "beaker-remove-outline", hex: "F1234", version: "4.6.95" }, { name: "bed", hex: "F02E3", version: "1.5.54" }, { name: "bed-double", hex: "F0FD4", version: "4.2.95" }, { name: "bed-double-outline", hex: "F0FD3", version: "4.2.95" }, { name: "bed-empty", hex: "F08A0", version: "2.2.43" }, { name: "bed-king", hex: "F0FD2", version: "4.2.95" }, { name: "bed-king-outline", hex: "F0FD1", version: "4.2.95" }, { name: "bed-outline", hex: "F0099", version: "1.5.54" }, { name: "bed-queen", hex: "F0FD0", version: "4.2.95" }, { name: "bed-queen-outline", hex: "F0FDB", version: "4.2.95" }, { name: "bed-single", hex: "F106D", version: "4.2.95" }, { name: "bed-single-outline", hex: "F106E", version: "4.2.95" }, { name: "bee", hex: "F0FA1", version: "4.0.96" }, { name: "bee-flower", hex: "F0FA2", version: "4.0.96" }, { name: "beehive-outline", hex: "F10CE", version: "4.3.95" }, { name: "beer", hex: "F0098", version: "1.5.54" }, { name: "beer-outline", hex: "F130C", version: "4.8.95" }, { name: "bell", hex: "F009A", version: "1.5.54" }, { name: "bell-alert", hex: "F0D59", version: "3.4.93" }, { name: "bell-alert-outline", hex: "F0E81", version: "3.7.94" }, { name: "bell-check", hex: "F11E5", version: "4.5.95" }, { name: "bell-check-outline", hex: "F11E6", version: "4.5.95" }, { name: "bell-circle", hex: "F0D5A", version: "3.4.93" }, { name: "bell-circle-outline", hex: "F0D5B", version: "3.4.93" }, { name: "bell-off", hex: "F009B", version: "1.5.54" }, { name: "bell-off-outline", hex: "F0A91", version: "2.7.94" }, { name: "bell-outline", hex: "F009C", version: "1.5.54" }, { name: "bell-plus", hex: "F009D", version: "1.5.54" }, { name: "bell-plus-outline", hex: "F0A92", version: "2.7.94" }, { name: "bell-ring", hex: "F009E", version: "1.5.54" }, { name: "bell-ring-outline", hex: "F009F", version: "1.5.54" }, { name: "bell-sleep", hex: "F00A0", version: "1.5.54" }, { name: "bell-sleep-outline", hex: "F0A93", version: "2.7.94" }, { name: "beta", hex: "F00A1", version: "1.5.54" }, { name: "betamax", hex: "F09CB", version: "2.5.94" }, { name: "biathlon", hex: "F0E14", version: "3.6.95" }, { name: "bicycle", hex: "F109C", version: "4.2.95" }, { name: "bicycle-basket", hex: "F1235", version: "4.6.95" }, { name: "bike", hex: "F00A3", version: "1.5.54" }, { name: "bike-fast", hex: "F111F", version: "4.3.95" }, { name: "billboard", hex: "F1010", version: "4.1.95" }, { name: "billiards", hex: "F0B61", version: "3.0.39" }, { name: "billiards-rack", hex: "F0B62", version: "3.0.39" }, { name: "binoculars", hex: "F00A5", version: "1.5.54" }, { name: "bio", hex: "F00A6", version: "1.5.54" }, { name: "biohazard", hex: "F00A7", version: "1.5.54" }, { name: "bitbucket", hex: "F00A8", version: "1.5.54" }, { name: "bitcoin", hex: "F0813", version: "2.1.19" }, { name: "black-mesa", hex: "F00A9", version: "1.5.54" }, { name: "blender", hex: "F0CEB", version: "3.3.92" }, { name: "blender-software", hex: "F00AB", version: "1.5.54" }, { name: "blinds", hex: "F00AC", version: "1.5.54" }, { name: "blinds-open", hex: "F1011", version: "4.1.95" }, { name: "block-helper", hex: "F00AD", version: "1.5.54" }, { name: "blogger", hex: "F00AE", version: "1.5.54" }, { name: "blood-bag", hex: "F0CEC", version: "3.3.92" }, { name: "bluetooth", hex: "F00AF", version: "1.5.54" }, { name: "bluetooth-audio", hex: "F00B0", version: "1.5.54" }, { name: "bluetooth-connect", hex: "F00B1", version: "1.5.54" }, { name: "bluetooth-off", hex: "F00B2", version: "1.5.54" }, { name: "bluetooth-settings", hex: "F00B3", version: "1.5.54" }, { name: "bluetooth-transfer", hex: "F00B4", version: "1.5.54" }, { name: "blur", hex: "F00B5", version: "1.5.54" }, { name: "blur-linear", hex: "F00B6", version: "1.5.54" }, { name: "blur-off", hex: "F00B7", version: "1.5.54" }, { name: "blur-radial", hex: "F00B8", version: "1.5.54" }, { name: "bolnisi-cross", hex: "F0CED", version: "3.3.92" }, { name: "bolt", hex: "F0DB3", version: "3.5.94" }, { name: "bomb", hex: "F0691", version: "1.7.12" }, { name: "bomb-off", hex: "F06C5", version: "1.8.36" }, { name: "bone", hex: "F00B9", version: "1.5.54" }, { name: "book", hex: "F00BA", version: "1.5.54" }, { name: "book-account", hex: "F13AD", version: "5.0.45" }, { name: "book-account-outline", hex: "F13AE", version: "5.0.45" }, { name: "book-alphabet", hex: "F061D", version: "1.6.50" }, { name: "book-cross", hex: "F00A2", version: "1.5.54" }, { name: "book-information-variant", hex: "F106F", version: "4.2.95" }, { name: "book-lock", hex: "F079A", version: "2.0.46" }, { name: "book-lock-open", hex: "F079B", version: "2.0.46" }, { name: "book-minus", hex: "F05D9", version: "1.5.54" }, { name: "book-minus-multiple", hex: "F0A94", version: "2.7.94" }, { name: "book-minus-multiple-outline", hex: "F090B", version: "2.3.50" }, { name: "book-multiple", hex: "F00BB", version: "1.5.54" }, { name: "book-multiple-outline", hex: "F0436", version: "1.5.54" }, { name: "book-music", hex: "F0067", version: "1.5.54" }, { name: "book-open", hex: "F00BD", version: "1.5.54" }, { name: "book-open-outline", hex: "F0B63", version: "3.0.39" }, { name: "book-open-page-variant", hex: "F05DA", version: "1.5.54" }, { name: "book-open-variant", hex: "F00BE", version: "1.5.54" }, { name: "book-outline", hex: "F0B64", version: "3.0.39" }, { name: "book-play", hex: "F0E82", version: "3.7.94" }, { name: "book-play-outline", hex: "F0E83", version: "3.7.94" }, { name: "book-plus", hex: "F05DB", version: "1.5.54" }, { name: "book-plus-multiple", hex: "F0A95", version: "2.7.94" }, { name: "book-plus-multiple-outline", hex: "F0ADE", version: "2.7.94" }, { name: "book-remove", hex: "F0A97", version: "2.7.94" }, { name: "book-remove-multiple", hex: "F0A96", version: "2.7.94" }, { name: "book-remove-multiple-outline", hex: "F04CA", version: "1.5.54" }, { name: "book-search", hex: "F0E84", version: "3.7.94" }, { name: "book-search-outline", hex: "F0E85", version: "3.7.94" }, { name: "book-variant", hex: "F00BF", version: "1.5.54" }, { name: "book-variant-multiple", hex: "F00BC", version: "1.5.54" }, { name: "bookmark", hex: "F00C0", version: "1.5.54" }, { name: "bookmark-check", hex: "F00C1", version: "1.5.54" }, { name: "bookmark-check-outline", hex: "F137B", version: "4.9.95" }, { name: "bookmark-minus", hex: "F09CC", version: "2.5.94" }, { name: "bookmark-minus-outline", hex: "F09CD", version: "2.5.94" }, { name: "bookmark-multiple", hex: "F0E15", version: "3.6.95" }, { name: "bookmark-multiple-outline", hex: "F0E16", version: "3.6.95" }, { name: "bookmark-music", hex: "F00C2", version: "1.5.54" }, { name: "bookmark-music-outline", hex: "F1379", version: "4.9.95" }, { name: "bookmark-off", hex: "F09CE", version: "2.5.94" }, { name: "bookmark-off-outline", hex: "F09CF", version: "2.5.94" }, { name: "bookmark-outline", hex: "F00C3", version: "1.5.54" }, { name: "bookmark-plus", hex: "F00C5", version: "1.5.54" }, { name: "bookmark-plus-outline", hex: "F00C4", version: "1.5.54" }, { name: "bookmark-remove", hex: "F00C6", version: "1.5.54" }, { name: "bookmark-remove-outline", hex: "F137A", version: "4.9.95" }, { name: "bookshelf", hex: "F125F", version: "4.7.95" }, { name: "boom-gate", hex: "F0E86", version: "3.7.94" }, { name: "boom-gate-alert", hex: "F0E87", version: "3.7.94" }, { name: "boom-gate-alert-outline", hex: "F0E88", version: "3.7.94" }, { name: "boom-gate-down", hex: "F0E89", version: "3.7.94" }, { name: "boom-gate-down-outline", hex: "F0E8A", version: "3.7.94" }, { name: "boom-gate-outline", hex: "F0E8B", version: "3.7.94" }, { name: "boom-gate-up", hex: "F0E8C", version: "3.7.94" }, { name: "boom-gate-up-outline", hex: "F0E8D", version: "3.7.94" }, { name: "boombox", hex: "F05DC", version: "1.5.54" }, { name: "boomerang", hex: "F10CF", version: "4.3.95" }, { name: "bootstrap", hex: "F06C6", version: "1.8.36" }, { name: "border-all", hex: "F00C7", version: "1.5.54" }, { name: "border-all-variant", hex: "F08A1", version: "2.2.43" }, { name: "border-bottom", hex: "F00C8", version: "1.5.54" }, { name: "border-bottom-variant", hex: "F08A2", version: "2.2.43" }, { name: "border-color", hex: "F00C9", version: "1.5.54" }, { name: "border-horizontal", hex: "F00CA", version: "1.5.54" }, { name: "border-inside", hex: "F00CB", version: "1.5.54" }, { name: "border-left", hex: "F00CC", version: "1.5.54" }, { name: "border-left-variant", hex: "F08A3", version: "2.2.43" }, { name: "border-none", hex: "F00CD", version: "1.5.54" }, { name: "border-none-variant", hex: "F08A4", version: "2.2.43" }, { name: "border-outside", hex: "F00CE", version: "1.5.54" }, { name: "border-right", hex: "F00CF", version: "1.5.54" }, { name: "border-right-variant", hex: "F08A5", version: "2.2.43" }, { name: "border-style", hex: "F00D0", version: "1.5.54" }, { name: "border-top", hex: "F00D1", version: "1.5.54" }, { name: "border-top-variant", hex: "F08A6", version: "2.2.43" }, { name: "border-vertical", hex: "F00D2", version: "1.5.54" }, { name: "bottle-soda", hex: "F1070", version: "4.2.95" }, { name: "bottle-soda-classic", hex: "F1071", version: "4.2.95" }, { name: "bottle-soda-classic-outline", hex: "F1363", version: "4.9.95" }, { name: "bottle-soda-outline", hex: "F1072", version: "4.2.95" }, { name: "bottle-tonic", hex: "F112E", version: "4.4.95" }, { name: "bottle-tonic-outline", hex: "F112F", version: "4.4.95" }, { name: "bottle-tonic-plus", hex: "F1130", version: "4.4.95" }, { name: "bottle-tonic-plus-outline", hex: "F1131", version: "4.4.95" }, { name: "bottle-tonic-skull", hex: "F1132", version: "4.4.95" }, { name: "bottle-tonic-skull-outline", hex: "F1133", version: "4.4.95" }, { name: "bottle-wine", hex: "F0854", version: "2.1.99" }, { name: "bottle-wine-outline", hex: "F1310", version: "4.8.95" }, { name: "bow-tie", hex: "F0678", version: "1.7.12" }, { name: "bowl", hex: "F028E", version: "1.5.54" }, { name: "bowl-mix", hex: "F0617", version: "1.6.50" }, { name: "bowl-mix-outline", hex: "F02E4", version: "1.5.54" }, { name: "bowl-outline", hex: "F02A9", version: "1.5.54" }, { name: "bowling", hex: "F00D3", version: "1.5.54" }, { name: "box", hex: "F00D4", version: "1.5.54" }, { name: "box-cutter", hex: "F00D5", version: "1.5.54" }, { name: "box-cutter-off", hex: "F0B4A", version: "2.8.94" }, { name: "box-shadow", hex: "F0637", version: "1.6.50" }, { name: "boxing-glove", hex: "F0B65", version: "3.0.39" }, { name: "braille", hex: "F09D0", version: "2.5.94" }, { name: "brain", hex: "F09D1", version: "2.5.94" }, { name: "bread-slice", hex: "F0CEE", version: "3.3.92" }, { name: "bread-slice-outline", hex: "F0CEF", version: "3.3.92" }, { name: "bridge", hex: "F0618", version: "1.6.50" }, { name: "briefcase", hex: "F00D6", version: "1.5.54" }, { name: "briefcase-account", hex: "F0CF0", version: "3.3.92" }, { name: "briefcase-account-outline", hex: "F0CF1", version: "3.3.92" }, { name: "briefcase-check", hex: "F00D7", version: "1.5.54" }, { name: "briefcase-check-outline", hex: "F131E", version: "4.8.95" }, { name: "briefcase-clock", hex: "F10D0", version: "4.3.95" }, { name: "briefcase-clock-outline", hex: "F10D1", version: "4.3.95" }, { name: "briefcase-download", hex: "F00D8", version: "1.5.54" }, { name: "briefcase-download-outline", hex: "F0C3D", version: "3.2.89" }, { name: "briefcase-edit", hex: "F0A98", version: "2.7.94" }, { name: "briefcase-edit-outline", hex: "F0C3E", version: "3.2.89" }, { name: "briefcase-minus", hex: "F0A2A", version: "2.6.95" }, { name: "briefcase-minus-outline", hex: "F0C3F", version: "3.2.89" }, { name: "briefcase-outline", hex: "F0814", version: "2.1.19" }, { name: "briefcase-plus", hex: "F0A2B", version: "2.6.95" }, { name: "briefcase-plus-outline", hex: "F0C40", version: "3.2.89" }, { name: "briefcase-remove", hex: "F0A2C", version: "2.6.95" }, { name: "briefcase-remove-outline", hex: "F0C41", version: "3.2.89" }, { name: "briefcase-search", hex: "F0A2D", version: "2.6.95" }, { name: "briefcase-search-outline", hex: "F0C42", version: "3.2.89" }, { name: "briefcase-upload", hex: "F00D9", version: "1.5.54" }, { name: "briefcase-upload-outline", hex: "F0C43", version: "3.2.89" }, { name: "brightness-1", hex: "F00DA", version: "1.5.54" }, { name: "brightness-2", hex: "F00DB", version: "1.5.54" }, { name: "brightness-3", hex: "F00DC", version: "1.5.54" }, { name: "brightness-4", hex: "F00DD", version: "1.5.54" }, { name: "brightness-5", hex: "F00DE", version: "1.5.54" }, { name: "brightness-6", hex: "F00DF", version: "1.5.54" }, { name: "brightness-7", hex: "F00E0", version: "1.5.54" }, { name: "brightness-auto", hex: "F00E1", version: "1.5.54" }, { name: "brightness-percent", hex: "F0CF2", version: "3.3.92" }, { name: "broom", hex: "F00E2", version: "1.5.54" }, { name: "brush", hex: "F00E3", version: "1.5.54" }, { name: "buddhism", hex: "F094B", version: "2.4.85" }, { name: "buffer", hex: "F0619", version: "1.6.50" }, { name: "buffet", hex: "F0578", version: "1.5.54" }, { name: "bug", hex: "F00E4", version: "1.5.54" }, { name: "bug-check", hex: "F0A2E", version: "2.6.95" }, { name: "bug-check-outline", hex: "F0A2F", version: "2.6.95" }, { name: "bug-outline", hex: "F0A30", version: "2.6.95" }, { name: "bugle", hex: "F0DB4", version: "3.5.94" }, { name: "bulldozer", hex: "F0B22", version: "2.8.94" }, { name: "bullet", hex: "F0CF3", version: "3.3.92" }, { name: "bulletin-board", hex: "F00E5", version: "1.5.54" }, { name: "bullhorn", hex: "F00E6", version: "1.5.54" }, { name: "bullhorn-outline", hex: "F0B23", version: "2.8.94" }, { name: "bullseye", hex: "F05DD", version: "1.5.54" }, { name: "bullseye-arrow", hex: "F08C9", version: "2.3.50" }, { name: "bulma", hex: "F12E7", version: "4.8.95" }, { name: "bunk-bed", hex: "F1302", version: "4.8.95" }, { name: "bunk-bed-outline", hex: "F0097", version: "1.5.54" }, { name: "bus", hex: "F00E7", version: "1.5.54" }, { name: "bus-alert", hex: "F0A99", version: "2.7.94" }, { name: "bus-articulated-end", hex: "F079C", version: "2.0.46" }, { name: "bus-articulated-front", hex: "F079D", version: "2.0.46" }, { name: "bus-clock", hex: "F08CA", version: "2.3.50" }, { name: "bus-double-decker", hex: "F079E", version: "2.0.46" }, { name: "bus-marker", hex: "F1212", version: "4.6.95" }, { name: "bus-multiple", hex: "F0F3F", version: "3.9.97" }, { name: "bus-school", hex: "F079F", version: "2.0.46" }, { name: "bus-side", hex: "F07A0", version: "2.0.46" }, { name: "bus-stop", hex: "F1012", version: "4.1.95" }, { name: "bus-stop-covered", hex: "F1013", version: "4.1.95" }, { name: "bus-stop-uncovered", hex: "F1014", version: "4.1.95" }, { name: "cable-data", hex: "F1394", version: "5.0.45" }, { name: "cached", hex: "F00E8", version: "1.5.54" }, { name: "cactus", hex: "F0DB5", version: "3.5.94" }, { name: "cake", hex: "F00E9", version: "1.5.54" }, { name: "cake-layered", hex: "F00EA", version: "1.5.54" }, { name: "cake-variant", hex: "F00EB", version: "1.5.54" }, { name: "calculator", hex: "F00EC", version: "1.5.54" }, { name: "calculator-variant", hex: "F0A9A", version: "2.7.94" }, { name: "calendar", hex: "F00ED", version: "1.5.54" }, { name: "calendar-account", hex: "F0ED7", version: "3.8.95" }, { name: "calendar-account-outline", hex: "F0ED8", version: "3.8.95" }, { name: "calendar-alert", hex: "F0A31", version: "2.6.95" }, { name: "calendar-arrow-left", hex: "F1134", version: "4.4.95" }, { name: "calendar-arrow-right", hex: "F1135", version: "4.4.95" }, { name: "calendar-blank", hex: "F00EE", version: "1.5.54" }, { name: "calendar-blank-multiple", hex: "F1073", version: "4.2.95" }, { name: "calendar-blank-outline", hex: "F0B66", version: "3.0.39" }, { name: "calendar-check", hex: "F00EF", version: "1.5.54" }, { name: "calendar-check-outline", hex: "F0C44", version: "3.2.89" }, { name: "calendar-clock", hex: "F00F0", version: "1.5.54" }, { name: "calendar-edit", hex: "F08A7", version: "2.2.43" }, { name: "calendar-export", hex: "F0B24", version: "2.8.94" }, { name: "calendar-heart", hex: "F09D2", version: "2.5.94" }, { name: "calendar-import", hex: "F0B25", version: "2.8.94" }, { name: "calendar-minus", hex: "F0D5C", version: "3.4.93" }, { name: "calendar-month", hex: "F0E17", version: "3.6.95" }, { name: "calendar-month-outline", hex: "F0E18", version: "3.6.95" }, { name: "calendar-multiple", hex: "F00F1", version: "1.5.54" }, { name: "calendar-multiple-check", hex: "F00F2", version: "1.5.54" }, { name: "calendar-multiselect", hex: "F0A32", version: "2.6.95" }, { name: "calendar-outline", hex: "F0B67", version: "3.0.39" }, { name: "calendar-plus", hex: "F00F3", version: "1.5.54" }, { name: "calendar-question", hex: "F0692", version: "1.7.12" }, { name: "calendar-range", hex: "F0679", version: "1.7.12" }, { name: "calendar-range-outline", hex: "F0B68", version: "3.0.39" }, { name: "calendar-refresh", hex: "F01E1", version: "1.5.54" }, { name: "calendar-refresh-outline", hex: "F0203", version: "1.5.54" }, { name: "calendar-remove", hex: "F00F4", version: "1.5.54" }, { name: "calendar-remove-outline", hex: "F0C45", version: "3.2.89" }, { name: "calendar-search", hex: "F094C", version: "2.4.85" }, { name: "calendar-star", hex: "F09D3", version: "2.5.94" }, { name: "calendar-sync", hex: "F0E8E", version: "3.7.94" }, { name: "calendar-sync-outline", hex: "F0E8F", version: "3.7.94" }, { name: "calendar-text", hex: "F00F5", version: "1.5.54" }, { name: "calendar-text-outline", hex: "F0C46", version: "3.2.89" }, { name: "calendar-today", hex: "F00F6", version: "1.5.54" }, { name: "calendar-week", hex: "F0A33", version: "2.6.95" }, { name: "calendar-week-begin", hex: "F0A34", version: "2.6.95" }, { name: "calendar-weekend", hex: "F0ED9", version: "3.8.95" }, { name: "calendar-weekend-outline", hex: "F0EDA", version: "3.8.95" }, { name: "call-made", hex: "F00F7", version: "1.5.54" }, { name: "call-merge", hex: "F00F8", version: "1.5.54" }, { name: "call-missed", hex: "F00F9", version: "1.5.54" }, { name: "call-received", hex: "F00FA", version: "1.5.54" }, { name: "call-split", hex: "F00FB", version: "1.5.54" }, { name: "camcorder", hex: "F00FC", version: "1.5.54" }, { name: "camcorder-off", hex: "F00FF", version: "1.5.54" }, { name: "camera", hex: "F0100", version: "1.5.54" }, { name: "camera-account", hex: "F08CB", version: "2.3.50" }, { name: "camera-burst", hex: "F0693", version: "1.7.12" }, { name: "camera-control", hex: "F0B69", version: "3.0.39" }, { name: "camera-enhance", hex: "F0101", version: "1.5.54" }, { name: "camera-enhance-outline", hex: "F0B6A", version: "3.0.39" }, { name: "camera-front", hex: "F0102", version: "1.5.54" }, { name: "camera-front-variant", hex: "F0103", version: "1.5.54" }, { name: "camera-gopro", hex: "F07A1", version: "2.0.46" }, { name: "camera-image", hex: "F08CC", version: "2.3.50" }, { name: "camera-iris", hex: "F0104", version: "1.5.54" }, { name: "camera-metering-center", hex: "F07A2", version: "2.0.46" }, { name: "camera-metering-matrix", hex: "F07A3", version: "2.0.46" }, { name: "camera-metering-partial", hex: "F07A4", version: "2.0.46" }, { name: "camera-metering-spot", hex: "F07A5", version: "2.0.46" }, { name: "camera-off", hex: "F05DF", version: "1.5.54" }, { name: "camera-outline", hex: "F0D5D", version: "3.4.93" }, { name: "camera-party-mode", hex: "F0105", version: "1.5.54" }, { name: "camera-plus", hex: "F0EDB", version: "3.8.95" }, { name: "camera-plus-outline", hex: "F0EDC", version: "3.8.95" }, { name: "camera-rear", hex: "F0106", version: "1.5.54" }, { name: "camera-rear-variant", hex: "F0107", version: "1.5.54" }, { name: "camera-retake", hex: "F0E19", version: "3.6.95" }, { name: "camera-retake-outline", hex: "F0E1A", version: "3.6.95" }, { name: "camera-switch", hex: "F0108", version: "1.5.54" }, { name: "camera-switch-outline", hex: "F084A", version: "2.1.99" }, { name: "camera-timer", hex: "F0109", version: "1.5.54" }, { name: "camera-wireless", hex: "F0DB6", version: "3.5.94" }, { name: "camera-wireless-outline", hex: "F0DB7", version: "3.5.94" }, { name: "campfire", hex: "F0EDD", version: "3.8.95" }, { name: "cancel", hex: "F073A", version: "1.9.32" }, { name: "candle", hex: "F05E2", version: "1.5.54" }, { name: "candycane", hex: "F010A", version: "1.5.54" }, { name: "cannabis", hex: "F07A6", version: "2.0.46" }, { name: "caps-lock", hex: "F0A9B", version: "2.7.94" }, { name: "car", hex: "F010B", version: "1.5.54" }, { name: "car-2-plus", hex: "F1015", version: "4.1.95" }, { name: "car-3-plus", hex: "F1016", version: "4.1.95" }, { name: "car-arrow-left", hex: "F13B2", version: "5.0.45" }, { name: "car-arrow-right", hex: "F13B3", version: "5.0.45" }, { name: "car-back", hex: "F0E1B", version: "3.6.95" }, { name: "car-battery", hex: "F010C", version: "1.5.54" }, { name: "car-brake-abs", hex: "F0C47", version: "3.2.89" }, { name: "car-brake-alert", hex: "F0C48", version: "3.2.89" }, { name: "car-brake-hold", hex: "F0D5E", version: "3.4.93" }, { name: "car-brake-parking", hex: "F0D5F", version: "3.4.93" }, { name: "car-brake-retarder", hex: "F1017", version: "4.1.95" }, { name: "car-child-seat", hex: "F0FA3", version: "4.0.96" }, { name: "car-clutch", hex: "F1018", version: "4.1.95" }, { name: "car-connected", hex: "F010D", version: "1.5.54" }, { name: "car-convertible", hex: "F07A7", version: "2.0.46" }, { name: "car-coolant-level", hex: "F1019", version: "4.1.95" }, { name: "car-cruise-control", hex: "F0D60", version: "3.4.93" }, { name: "car-defrost-front", hex: "F0D61", version: "3.4.93" }, { name: "car-defrost-rear", hex: "F0D62", version: "3.4.93" }, { name: "car-door", hex: "F0B6B", version: "3.0.39" }, { name: "car-door-lock", hex: "F109D", version: "4.2.95" }, { name: "car-electric", hex: "F0B6C", version: "3.0.39" }, { name: "car-esp", hex: "F0C49", version: "3.2.89" }, { name: "car-estate", hex: "F07A8", version: "2.0.46" }, { name: "car-hatchback", hex: "F07A9", version: "2.0.46" }, { name: "car-info", hex: "F11BE", version: "4.5.95" }, { name: "car-key", hex: "F0B6D", version: "3.0.39" }, { name: "car-light-dimmed", hex: "F0C4A", version: "3.2.89" }, { name: "car-light-fog", hex: "F0C4B", version: "3.2.89" }, { name: "car-light-high", hex: "F0C4C", version: "3.2.89" }, { name: "car-limousine", hex: "F08CD", version: "2.3.50" }, { name: "car-multiple", hex: "F0B6E", version: "3.0.39" }, { name: "car-off", hex: "F0E1C", version: "3.6.95" }, { name: "car-parking-lights", hex: "F0D63", version: "3.4.93" }, { name: "car-pickup", hex: "F07AA", version: "2.0.46" }, { name: "car-seat", hex: "F0FA4", version: "4.0.96" }, { name: "car-seat-cooler", hex: "F0FA5", version: "4.0.96" }, { name: "car-seat-heater", hex: "F0FA6", version: "4.0.96" }, { name: "car-shift-pattern", hex: "F0F40", version: "3.9.97" }, { name: "car-side", hex: "F07AB", version: "2.0.46" }, { name: "car-sports", hex: "F07AC", version: "2.0.46" }, { name: "car-tire-alert", hex: "F0C4D", version: "3.2.89" }, { name: "car-traction-control", hex: "F0D64", version: "3.4.93" }, { name: "car-turbocharger", hex: "F101A", version: "4.1.95" }, { name: "car-wash", hex: "F010E", version: "1.5.54" }, { name: "car-windshield", hex: "F101B", version: "4.1.95" }, { name: "car-windshield-outline", hex: "F101C", version: "4.1.95" }, { name: "caravan", hex: "F07AD", version: "2.0.46" }, { name: "card", hex: "F0B6F", version: "3.0.39" }, { name: "card-account-details", hex: "F05D2", version: "1.5.54" }, { name: "card-account-details-outline", hex: "F0DAB", version: "3.5.94" }, { name: "card-account-details-star", hex: "F02A3", version: "1.5.54" }, { name: "card-account-details-star-outline", hex: "F06DB", version: "1.8.36" }, { name: "card-account-mail", hex: "F018E", version: "1.5.54" }, { name: "card-account-mail-outline", hex: "F0E98", version: "3.7.94" }, { name: "card-account-phone", hex: "F0E99", version: "3.7.94" }, { name: "card-account-phone-outline", hex: "F0E9A", version: "3.7.94" }, { name: "card-bulleted", hex: "F0B70", version: "3.0.39" }, { name: "card-bulleted-off", hex: "F0B71", version: "3.0.39" }, { name: "card-bulleted-off-outline", hex: "F0B72", version: "3.0.39" }, { name: "card-bulleted-outline", hex: "F0B73", version: "3.0.39" }, { name: "card-bulleted-settings", hex: "F0B74", version: "3.0.39" }, { name: "card-bulleted-settings-outline", hex: "F0B75", version: "3.0.39" }, { name: "card-outline", hex: "F0B76", version: "3.0.39" }, { name: "card-plus", hex: "F11FF", version: "4.6.95" }, { name: "card-plus-outline", hex: "F1200", version: "4.6.95" }, { name: "card-search", hex: "F1074", version: "4.2.95" }, { name: "card-search-outline", hex: "F1075", version: "4.2.95" }, { name: "card-text", hex: "F0B77", version: "3.0.39" }, { name: "card-text-outline", hex: "F0B78", version: "3.0.39" }, { name: "cards", hex: "F0638", version: "1.6.50" }, { name: "cards-club", hex: "F08CE", version: "2.3.50" }, { name: "cards-diamond", hex: "F08CF", version: "2.3.50" }, { name: "cards-diamond-outline", hex: "F101D", version: "4.1.95" }, { name: "cards-heart", hex: "F08D0", version: "2.3.50" }, { name: "cards-outline", hex: "F0639", version: "1.6.50" }, { name: "cards-playing-outline", hex: "F063A", version: "1.6.50" }, { name: "cards-spade", hex: "F08D1", version: "2.3.50" }, { name: "cards-variant", hex: "F06C7", version: "1.8.36" }, { name: "carrot", hex: "F010F", version: "1.5.54" }, { name: "cart", hex: "F0110", version: "1.5.54" }, { name: "cart-arrow-down", hex: "F0D66", version: "3.4.93" }, { name: "cart-arrow-right", hex: "F0C4E", version: "3.2.89" }, { name: "cart-arrow-up", hex: "F0D67", version: "3.4.93" }, { name: "cart-minus", hex: "F0D68", version: "3.4.93" }, { name: "cart-off", hex: "F066B", version: "1.6.50" }, { name: "cart-outline", hex: "F0111", version: "1.5.54" }, { name: "cart-plus", hex: "F0112", version: "1.5.54" }, { name: "cart-remove", hex: "F0D69", version: "3.4.93" }, { name: "case-sensitive-alt", hex: "F0113", version: "1.5.54" }, { name: "cash", hex: "F0114", version: "1.5.54" }, { name: "cash-100", hex: "F0115", version: "1.5.54" }, { name: "cash-marker", hex: "F0DB8", version: "3.5.94" }, { name: "cash-minus", hex: "F1260", version: "4.7.95" }, { name: "cash-multiple", hex: "F0116", version: "1.5.54" }, { name: "cash-plus", hex: "F1261", version: "4.7.95" }, { name: "cash-refund", hex: "F0A9C", version: "2.7.94" }, { name: "cash-register", hex: "F0CF4", version: "3.3.92" }, { name: "cash-remove", hex: "F1262", version: "4.7.95" }, { name: "cash-usd", hex: "F1176", version: "4.4.95" }, { name: "cash-usd-outline", hex: "F0117", version: "1.5.54" }, { name: "cassette", hex: "F09D4", version: "2.5.94" }, { name: "cast", hex: "F0118", version: "1.5.54" }, { name: "cast-audio", hex: "F101E", version: "4.1.95" }, { name: "cast-connected", hex: "F0119", version: "1.5.54" }, { name: "cast-education", hex: "F0E1D", version: "3.6.95" }, { name: "cast-off", hex: "F078A", version: "1.9.32" }, { name: "castle", hex: "F011A", version: "1.5.54" }, { name: "cat", hex: "F011B", version: "1.5.54" }, { name: "cctv", hex: "F07AE", version: "2.0.46" }, { name: "ceiling-light", hex: "F0769", version: "1.9.32" }, { name: "cellphone", hex: "F011C", version: "1.5.54" }, { name: "cellphone-android", hex: "F011D", version: "1.5.54" }, { name: "cellphone-arrow-down", hex: "F09D5", version: "2.5.94" }, { name: "cellphone-basic", hex: "F011E", version: "1.5.54" }, { name: "cellphone-charging", hex: "F1397", version: "5.0.45" }, { name: "cellphone-cog", hex: "F0951", version: "2.4.85" }, { name: "cellphone-dock", hex: "F011F", version: "1.5.54" }, { name: "cellphone-erase", hex: "F094D", version: "2.4.85" }, { name: "cellphone-information", hex: "F0F41", version: "3.9.97" }, { name: "cellphone-iphone", hex: "F0120", version: "1.5.54" }, { name: "cellphone-key", hex: "F094E", version: "2.4.85" }, { name: "cellphone-link", hex: "F0121", version: "1.5.54" }, { name: "cellphone-link-off", hex: "F0122", version: "1.5.54" }, { name: "cellphone-lock", hex: "F094F", version: "2.4.85" }, { name: "cellphone-message", hex: "F08D3", version: "2.3.50" }, { name: "cellphone-message-off", hex: "F10D2", version: "4.3.95" }, { name: "cellphone-nfc", hex: "F0E90", version: "3.7.94" }, { name: "cellphone-nfc-off", hex: "F12D8", version: "4.8.95" }, { name: "cellphone-off", hex: "F0950", version: "2.4.85" }, { name: "cellphone-play", hex: "F101F", version: "4.1.95" }, { name: "cellphone-screenshot", hex: "F0A35", version: "2.6.95" }, { name: "cellphone-settings", hex: "F0123", version: "1.5.54" }, { name: "cellphone-sound", hex: "F0952", version: "2.4.85" }, { name: "cellphone-text", hex: "F08D2", version: "2.3.50" }, { name: "cellphone-wireless", hex: "F0815", version: "2.1.19" }, { name: "celtic-cross", hex: "F0CF5", version: "3.3.92" }, { name: "centos", hex: "F111A", version: "4.3.95" }, { name: "certificate", hex: "F0124", version: "1.5.54" }, { name: "certificate-outline", hex: "F1188", version: "4.4.95" }, { name: "chair-rolling", hex: "F0F48", version: "3.9.97" }, { name: "chair-school", hex: "F0125", version: "1.5.54" }, { name: "charity", hex: "F0C4F", version: "3.2.89" }, { name: "chart-arc", hex: "F0126", version: "1.5.54" }, { name: "chart-areaspline", hex: "F0127", version: "1.5.54" }, { name: "chart-areaspline-variant", hex: "F0E91", version: "3.7.94" }, { name: "chart-bar", hex: "F0128", version: "1.5.54" }, { name: "chart-bar-stacked", hex: "F076A", version: "1.9.32" }, { name: "chart-bell-curve", hex: "F0C50", version: "3.2.89" }, { name: "chart-bell-curve-cumulative", hex: "F0FA7", version: "4.0.96" }, { name: "chart-bubble", hex: "F05E3", version: "1.5.54" }, { name: "chart-donut", hex: "F07AF", version: "2.0.46" }, { name: "chart-donut-variant", hex: "F07B0", version: "2.0.46" }, { name: "chart-gantt", hex: "F066C", version: "1.6.50" }, { name: "chart-histogram", hex: "F0129", version: "1.5.54" }, { name: "chart-line", hex: "F012A", version: "1.5.54" }, { name: "chart-line-stacked", hex: "F076B", version: "1.9.32" }, { name: "chart-line-variant", hex: "F07B1", version: "2.0.46" }, { name: "chart-multiline", hex: "F08D4", version: "2.3.50" }, { name: "chart-multiple", hex: "F1213", version: "4.6.95" }, { name: "chart-pie", hex: "F012B", version: "1.5.54" }, { name: "chart-ppf", hex: "F1380", version: "4.9.95" }, { name: "chart-sankey", hex: "F11DF", version: "4.5.95" }, { name: "chart-sankey-variant", hex: "F11E0", version: "4.5.95" }, { name: "chart-scatter-plot", hex: "F0E92", version: "3.7.94" }, { name: "chart-scatter-plot-hexbin", hex: "F066D", version: "1.6.50" }, { name: "chart-timeline", hex: "F066E", version: "1.6.50" }, { name: "chart-timeline-variant", hex: "F0E93", version: "3.7.94" }, { name: "chart-tree", hex: "F0E94", version: "3.7.94" }, { name: "chat", hex: "F0B79", version: "3.0.39" }, { name: "chat-alert", hex: "F0B7A", version: "3.0.39" }, { name: "chat-alert-outline", hex: "F12C9", version: "4.8.95" }, { name: "chat-outline", hex: "F0EDE", version: "3.8.95" }, { name: "chat-processing", hex: "F0B7B", version: "3.0.39" }, { name: "chat-processing-outline", hex: "F12CA", version: "4.8.95" }, { name: "chat-sleep", hex: "F12D1", version: "4.8.95" }, { name: "chat-sleep-outline", hex: "F12D2", version: "4.8.95" }, { name: "check", hex: "F012C", version: "1.5.54" }, { name: "check-all", hex: "F012D", version: "1.5.54" }, { name: "check-bold", hex: "F0E1E", version: "3.6.95" }, { name: "check-box-multiple-outline", hex: "F0C51", version: "3.2.89" }, { name: "check-box-outline", hex: "F0C52", version: "3.2.89" }, { name: "check-circle", hex: "F05E0", version: "1.5.54" }, { name: "check-circle-outline", hex: "F05E1", version: "1.5.54" }, { name: "check-decagram", hex: "F0791", version: "2.0.46" }, { name: "check-network", hex: "F0C53", version: "3.2.89" }, { name: "check-network-outline", hex: "F0C54", version: "3.2.89" }, { name: "check-outline", hex: "F0855", version: "2.1.99" }, { name: "check-underline", hex: "F0E1F", version: "3.6.95" }, { name: "check-underline-circle", hex: "F0E20", version: "3.6.95" }, { name: "check-underline-circle-outline", hex: "F0E21", version: "3.6.95" }, { name: "checkbook", hex: "F0A9D", version: "2.7.94" }, { name: "checkbox-blank", hex: "F012E", version: "1.5.54" }, { name: "checkbox-blank-circle", hex: "F012F", version: "1.5.54" }, { name: "checkbox-blank-circle-outline", hex: "F0130", version: "1.5.54" }, { name: "checkbox-blank-off", hex: "F12EC", version: "4.8.95" }, { name: "checkbox-blank-off-outline", hex: "F12ED", version: "4.8.95" }, { name: "checkbox-blank-outline", hex: "F0131", version: "1.5.54" }, { name: "checkbox-intermediate", hex: "F0856", version: "2.1.99" }, { name: "checkbox-marked", hex: "F0132", version: "1.5.54" }, { name: "checkbox-marked-circle", hex: "F0133", version: "1.5.54" }, { name: "checkbox-marked-circle-outline", hex: "F0134", version: "1.5.54" }, { name: "checkbox-marked-outline", hex: "F0135", version: "1.5.54" }, { name: "checkbox-multiple-blank", hex: "F0136", version: "1.5.54" }, { name: "checkbox-multiple-blank-circle", hex: "F063B", version: "1.6.50" }, { name: "checkbox-multiple-blank-circle-outline", hex: "F063C", version: "1.6.50" }, { name: "checkbox-multiple-blank-outline", hex: "F0137", version: "1.5.54" }, { name: "checkbox-multiple-marked", hex: "F0138", version: "1.5.54" }, { name: "checkbox-multiple-marked-circle", hex: "F063D", version: "1.6.50" }, { name: "checkbox-multiple-marked-circle-outline", hex: "F063E", version: "1.6.50" }, { name: "checkbox-multiple-marked-outline", hex: "F0139", version: "1.5.54" }, { name: "checkerboard", hex: "F013A", version: "1.5.54" }, { name: "checkerboard-minus", hex: "F1202", version: "4.6.95" }, { name: "checkerboard-plus", hex: "F1201", version: "4.6.95" }, { name: "checkerboard-remove", hex: "F1203", version: "4.6.95" }, { name: "cheese", hex: "F12B9", version: "4.7.95" }, { name: "chef-hat", hex: "F0B7C", version: "3.0.39" }, { name: "chemical-weapon", hex: "F013B", version: "1.5.54" }, { name: "chess-bishop", hex: "F085C", version: "2.1.99" }, { name: "chess-king", hex: "F0857", version: "2.1.99" }, { name: "chess-knight", hex: "F0858", version: "2.1.99" }, { name: "chess-pawn", hex: "F0859", version: "2.1.99" }, { name: "chess-queen", hex: "F085A", version: "2.1.99" }, { name: "chess-rook", hex: "F085B", version: "2.1.99" }, { name: "chevron-double-down", hex: "F013C", version: "1.5.54" }, { name: "chevron-double-left", hex: "F013D", version: "1.5.54" }, { name: "chevron-double-right", hex: "F013E", version: "1.5.54" }, { name: "chevron-double-up", hex: "F013F", version: "1.5.54" }, { name: "chevron-down", hex: "F0140", version: "1.5.54" }, { name: "chevron-down-box", hex: "F09D6", version: "2.5.94" }, { name: "chevron-down-box-outline", hex: "F09D7", version: "2.5.94" }, { name: "chevron-down-circle", hex: "F0B26", version: "2.8.94" }, { name: "chevron-down-circle-outline", hex: "F0B27", version: "2.8.94" }, { name: "chevron-left", hex: "F0141", version: "1.5.54" }, { name: "chevron-left-box", hex: "F09D8", version: "2.5.94" }, { name: "chevron-left-box-outline", hex: "F09D9", version: "2.5.94" }, { name: "chevron-left-circle", hex: "F0B28", version: "2.8.94" }, { name: "chevron-left-circle-outline", hex: "F0B29", version: "2.8.94" }, { name: "chevron-right", hex: "F0142", version: "1.5.54" }, { name: "chevron-right-box", hex: "F09DA", version: "2.5.94" }, { name: "chevron-right-box-outline", hex: "F09DB", version: "2.5.94" }, { name: "chevron-right-circle", hex: "F0B2A", version: "2.8.94" }, { name: "chevron-right-circle-outline", hex: "F0B2B", version: "2.8.94" }, { name: "chevron-triple-down", hex: "F0DB9", version: "3.5.94" }, { name: "chevron-triple-left", hex: "F0DBA", version: "3.5.94" }, { name: "chevron-triple-right", hex: "F0DBB", version: "3.5.94" }, { name: "chevron-triple-up", hex: "F0DBC", version: "3.5.94" }, { name: "chevron-up", hex: "F0143", version: "1.5.54" }, { name: "chevron-up-box", hex: "F09DC", version: "2.5.94" }, { name: "chevron-up-box-outline", hex: "F09DD", version: "2.5.94" }, { name: "chevron-up-circle", hex: "F0B2C", version: "2.8.94" }, { name: "chevron-up-circle-outline", hex: "F0B2D", version: "2.8.94" }, { name: "chili-hot", hex: "F07B2", version: "2.0.46" }, { name: "chili-medium", hex: "F07B3", version: "2.0.46" }, { name: "chili-mild", hex: "F07B4", version: "2.0.46" }, { name: "chip", hex: "F061A", version: "1.6.50" }, { name: "christianity", hex: "F0953", version: "2.4.85" }, { name: "christianity-outline", hex: "F0CF6", version: "3.3.92" }, { name: "church", hex: "F0144", version: "1.5.54" }, { name: "cigar", hex: "F1189", version: "4.4.95" }, { name: "circle", hex: "F0765", version: "1.9.32" }, { name: "circle-double", hex: "F0E95", version: "3.7.94" }, { name: "circle-edit-outline", hex: "F08D5", version: "2.3.50" }, { name: "circle-expand", hex: "F0E96", version: "3.7.94" }, { name: "circle-half", hex: "F1395", version: "5.0.45" }, { name: "circle-half-full", hex: "F1396", version: "5.0.45" }, { name: "circle-medium", hex: "F09DE", version: "2.5.94" }, { name: "circle-multiple", hex: "F0B38", version: "2.8.94" }, { name: "circle-multiple-outline", hex: "F0695", version: "1.7.12" }, { name: "circle-off-outline", hex: "F10D3", version: "4.3.95" }, { name: "circle-outline", hex: "F0766", version: "1.9.32" }, { name: "circle-slice-1", hex: "F0A9E", version: "2.7.94" }, { name: "circle-slice-2", hex: "F0A9F", version: "2.7.94" }, { name: "circle-slice-3", hex: "F0AA0", version: "2.7.94" }, { name: "circle-slice-4", hex: "F0AA1", version: "2.7.94" }, { name: "circle-slice-5", hex: "F0AA2", version: "2.7.94" }, { name: "circle-slice-6", hex: "F0AA3", version: "2.7.94" }, { name: "circle-slice-7", hex: "F0AA4", version: "2.7.94" }, { name: "circle-slice-8", hex: "F0AA5", version: "2.7.94" }, { name: "circle-small", hex: "F09DF", version: "2.5.94" }, { name: "circular-saw", hex: "F0E22", version: "3.6.95" }, { name: "city", hex: "F0146", version: "1.5.54" }, { name: "city-variant", hex: "F0A36", version: "2.6.95" }, { name: "city-variant-outline", hex: "F0A37", version: "2.6.95" }, { name: "clipboard", hex: "F0147", version: "1.5.54" }, { name: "clipboard-account", hex: "F0148", version: "1.5.54" }, { name: "clipboard-account-outline", hex: "F0C55", version: "3.2.89" }, { name: "clipboard-alert", hex: "F0149", version: "1.5.54" }, { name: "clipboard-alert-outline", hex: "F0CF7", version: "3.3.92" }, { name: "clipboard-arrow-down", hex: "F014A", version: "1.5.54" }, { name: "clipboard-arrow-down-outline", hex: "F0C56", version: "3.2.89" }, { name: "clipboard-arrow-left", hex: "F014B", version: "1.5.54" }, { name: "clipboard-arrow-left-outline", hex: "F0CF8", version: "3.3.92" }, { name: "clipboard-arrow-right", hex: "F0CF9", version: "3.3.92" }, { name: "clipboard-arrow-right-outline", hex: "F0CFA", version: "3.3.92" }, { name: "clipboard-arrow-up", hex: "F0C57", version: "3.2.89" }, { name: "clipboard-arrow-up-outline", hex: "F0C58", version: "3.2.89" }, { name: "clipboard-check", hex: "F014E", version: "1.5.54" }, { name: "clipboard-check-multiple", hex: "F1263", version: "4.7.95" }, { name: "clipboard-check-multiple-outline", hex: "F1264", version: "4.7.95" }, { name: "clipboard-check-outline", hex: "F08A8", version: "2.2.43" }, { name: "clipboard-file", hex: "F1265", version: "4.7.95" }, { name: "clipboard-file-outline", hex: "F1266", version: "4.7.95" }, { name: "clipboard-flow", hex: "F06C8", version: "1.8.36" }, { name: "clipboard-flow-outline", hex: "F1117", version: "4.3.95" }, { name: "clipboard-list", hex: "F10D4", version: "4.3.95" }, { name: "clipboard-list-outline", hex: "F10D5", version: "4.3.95" }, { name: "clipboard-multiple", hex: "F1267", version: "4.7.95" }, { name: "clipboard-multiple-outline", hex: "F1268", version: "4.7.95" }, { name: "clipboard-outline", hex: "F014C", version: "1.5.54" }, { name: "clipboard-play", hex: "F0C59", version: "3.2.89" }, { name: "clipboard-play-multiple", hex: "F1269", version: "4.7.95" }, { name: "clipboard-play-multiple-outline", hex: "F126A", version: "4.7.95" }, { name: "clipboard-play-outline", hex: "F0C5A", version: "3.2.89" }, { name: "clipboard-plus", hex: "F0751", version: "1.9.32" }, { name: "clipboard-plus-outline", hex: "F131F", version: "4.8.95" }, { name: "clipboard-pulse", hex: "F085D", version: "2.1.99" }, { name: "clipboard-pulse-outline", hex: "F085E", version: "2.1.99" }, { name: "clipboard-text", hex: "F014D", version: "1.5.54" }, { name: "clipboard-text-multiple", hex: "F126B", version: "4.7.95" }, { name: "clipboard-text-multiple-outline", hex: "F126C", version: "4.7.95" }, { name: "clipboard-text-outline", hex: "F0A38", version: "2.6.95" }, { name: "clipboard-text-play", hex: "F0C5B", version: "3.2.89" }, { name: "clipboard-text-play-outline", hex: "F0C5C", version: "3.2.89" }, { name: "clippy", hex: "F014F", version: "1.5.54" }, { name: "clock", hex: "F0954", version: "2.4.85" }, { name: "clock-alert", hex: "F0955", version: "2.4.85" }, { name: "clock-alert-outline", hex: "F05CE", version: "1.5.54" }, { name: "clock-check", hex: "F0FA8", version: "4.0.96" }, { name: "clock-check-outline", hex: "F0FA9", version: "4.0.96" }, { name: "clock-digital", hex: "F0E97", version: "3.7.94" }, { name: "clock-end", hex: "F0151", version: "1.5.54" }, { name: "clock-fast", hex: "F0152", version: "1.5.54" }, { name: "clock-in", hex: "F0153", version: "1.5.54" }, { name: "clock-out", hex: "F0154", version: "1.5.54" }, { name: "clock-outline", hex: "F0150", version: "1.5.54" }, { name: "clock-start", hex: "F0155", version: "1.5.54" }, { name: "close", hex: "F0156", version: "1.5.54" }, { name: "close-box", hex: "F0157", version: "1.5.54" }, { name: "close-box-multiple", hex: "F0C5D", version: "3.2.89" }, { name: "close-box-multiple-outline", hex: "F0C5E", version: "3.2.89" }, { name: "close-box-outline", hex: "F0158", version: "1.5.54" }, { name: "close-circle", hex: "F0159", version: "1.5.54" }, { name: "close-circle-multiple", hex: "F062A", version: "1.6.50" }, { name: "close-circle-multiple-outline", hex: "F0883", version: "2.1.99" }, { name: "close-circle-outline", hex: "F015A", version: "1.5.54" }, { name: "close-network", hex: "F015B", version: "1.5.54" }, { name: "close-network-outline", hex: "F0C5F", version: "3.2.89" }, { name: "close-octagon", hex: "F015C", version: "1.5.54" }, { name: "close-octagon-outline", hex: "F015D", version: "1.5.54" }, { name: "close-outline", hex: "F06C9", version: "1.8.36" }, { name: "close-thick", hex: "F1398", version: "5.0.45" }, { name: "closed-caption", hex: "F015E", version: "1.5.54" }, { name: "closed-caption-outline", hex: "F0DBD", version: "3.5.94" }, { name: "cloud", hex: "F015F", version: "1.5.54" }, { name: "cloud-alert", hex: "F09E0", version: "2.5.94" }, { name: "cloud-braces", hex: "F07B5", version: "2.0.46" }, { name: "cloud-check", hex: "F0160", version: "1.5.54" }, { name: "cloud-check-outline", hex: "F12CC", version: "4.8.95" }, { name: "cloud-circle", hex: "F0161", version: "1.5.54" }, { name: "cloud-download", hex: "F0162", version: "1.5.54" }, { name: "cloud-download-outline", hex: "F0B7D", version: "3.0.39" }, { name: "cloud-lock", hex: "F11F1", version: "4.5.95" }, { name: "cloud-lock-outline", hex: "F11F2", version: "4.5.95" }, { name: "cloud-off-outline", hex: "F0164", version: "1.5.54" }, { name: "cloud-outline", hex: "F0163", version: "1.5.54" }, { name: "cloud-print", hex: "F0165", version: "1.5.54" }, { name: "cloud-print-outline", hex: "F0166", version: "1.5.54" }, { name: "cloud-question", hex: "F0A39", version: "2.6.95" }, { name: "cloud-refresh", hex: "F052A", version: "1.5.54" }, { name: "cloud-search", hex: "F0956", version: "2.4.85" }, { name: "cloud-search-outline", hex: "F0957", version: "2.4.85" }, { name: "cloud-sync", hex: "F063F", version: "1.6.50" }, { name: "cloud-sync-outline", hex: "F12D6", version: "4.8.95" }, { name: "cloud-tags", hex: "F07B6", version: "2.0.46" }, { name: "cloud-upload", hex: "F0167", version: "1.5.54" }, { name: "cloud-upload-outline", hex: "F0B7E", version: "3.0.39" }, { name: "clover", hex: "F0816", version: "2.1.19" }, { name: "coach-lamp", hex: "F1020", version: "4.1.95" }, { name: "coat-rack", hex: "F109E", version: "4.2.95" }, { name: "code-array", hex: "F0168", version: "1.5.54" }, { name: "code-braces", hex: "F0169", version: "1.5.54" }, { name: "code-braces-box", hex: "F10D6", version: "4.3.95" }, { name: "code-brackets", hex: "F016A", version: "1.5.54" }, { name: "code-equal", hex: "F016B", version: "1.5.54" }, { name: "code-greater-than", hex: "F016C", version: "1.5.54" }, { name: "code-greater-than-or-equal", hex: "F016D", version: "1.5.54" }, { name: "code-json", hex: "F0626", version: "1.6.50" }, { name: "code-less-than", hex: "F016E", version: "1.5.54" }, { name: "code-less-than-or-equal", hex: "F016F", version: "1.5.54" }, { name: "code-not-equal", hex: "F0170", version: "1.5.54" }, { name: "code-not-equal-variant", hex: "F0171", version: "1.5.54" }, { name: "code-parentheses", hex: "F0172", version: "1.5.54" }, { name: "code-parentheses-box", hex: "F10D7", version: "4.3.95" }, { name: "code-string", hex: "F0173", version: "1.5.54" }, { name: "code-tags", hex: "F0174", version: "1.5.54" }, { name: "code-tags-check", hex: "F0694", version: "1.7.12" }, { name: "codepen", hex: "F0175", version: "1.5.54" }, { name: "coffee", hex: "F0176", version: "1.5.54" }, { name: "coffee-maker", hex: "F109F", version: "4.2.95" }, { name: "coffee-off", hex: "F0FAA", version: "3.9.97" }, { name: "coffee-off-outline", hex: "F0FAB", version: "3.9.97" }, { name: "coffee-outline", hex: "F06CA", version: "1.8.36" }, { name: "coffee-to-go", hex: "F0177", version: "1.5.54" }, { name: "coffee-to-go-outline", hex: "F130E", version: "4.8.95" }, { name: "coffin", hex: "F0B7F", version: "3.0.39" }, { name: "cog", hex: "F0493", version: "1.5.54" }, { name: "cog-box", hex: "F0494", version: "1.5.54" }, { name: "cog-clockwise", hex: "F11DD", version: "4.5.95" }, { name: "cog-counterclockwise", hex: "F11DE", version: "4.5.95" }, { name: "cog-outline", hex: "F08BB", version: "2.2.43" }, { name: "cog-transfer", hex: "F105B", version: "4.1.95" }, { name: "cog-transfer-outline", hex: "F105C", version: "4.1.95" }, { name: "cogs", hex: "F08D6", version: "2.3.50" }, { name: "collage", hex: "F0640", version: "1.6.50" }, { name: "collapse-all", hex: "F0AA6", version: "2.7.94" }, { name: "collapse-all-outline", hex: "F0AA7", version: "2.7.94" }, { name: "color-helper", hex: "F0179", version: "1.5.54" }, { name: "comma", hex: "F0E23", version: "3.6.95" }, { name: "comma-box", hex: "F0E2B", version: "3.6.95" }, { name: "comma-box-outline", hex: "F0E24", version: "3.6.95" }, { name: "comma-circle", hex: "F0E25", version: "3.6.95" }, { name: "comma-circle-outline", hex: "F0E26", version: "3.6.95" }, { name: "comment", hex: "F017A", version: "1.5.54" }, { name: "comment-account", hex: "F017B", version: "1.5.54" }, { name: "comment-account-outline", hex: "F017C", version: "1.5.54" }, { name: "comment-alert", hex: "F017D", version: "1.5.54" }, { name: "comment-alert-outline", hex: "F017E", version: "1.5.54" }, { name: "comment-arrow-left", hex: "F09E1", version: "2.5.94" }, { name: "comment-arrow-left-outline", hex: "F09E2", version: "2.5.94" }, { name: "comment-arrow-right", hex: "F09E3", version: "2.5.94" }, { name: "comment-arrow-right-outline", hex: "F09E4", version: "2.5.94" }, { name: "comment-check", hex: "F017F", version: "1.5.54" }, { name: "comment-check-outline", hex: "F0180", version: "1.5.54" }, { name: "comment-edit", hex: "F11BF", version: "4.5.95" }, { name: "comment-edit-outline", hex: "F12C4", version: "4.8.95" }, { name: "comment-eye", hex: "F0A3A", version: "2.6.95" }, { name: "comment-eye-outline", hex: "F0A3B", version: "2.6.95" }, { name: "comment-multiple", hex: "F085F", version: "2.1.99" }, { name: "comment-multiple-outline", hex: "F0181", version: "1.5.54" }, { name: "comment-outline", hex: "F0182", version: "1.5.54" }, { name: "comment-plus", hex: "F09E5", version: "2.5.94" }, { name: "comment-plus-outline", hex: "F0183", version: "1.5.54" }, { name: "comment-processing", hex: "F0184", version: "1.5.54" }, { name: "comment-processing-outline", hex: "F0185", version: "1.5.54" }, { name: "comment-question", hex: "F0817", version: "2.1.19" }, { name: "comment-question-outline", hex: "F0186", version: "1.5.54" }, { name: "comment-quote", hex: "F1021", version: "4.1.95" }, { name: "comment-quote-outline", hex: "F1022", version: "4.1.95" }, { name: "comment-remove", hex: "F05DE", version: "1.5.54" }, { name: "comment-remove-outline", hex: "F0187", version: "1.5.54" }, { name: "comment-search", hex: "F0A3C", version: "2.6.95" }, { name: "comment-search-outline", hex: "F0A3D", version: "2.6.95" }, { name: "comment-text", hex: "F0188", version: "1.5.54" }, { name: "comment-text-multiple", hex: "F0860", version: "2.1.99" }, { name: "comment-text-multiple-outline", hex: "F0861", version: "2.1.99" }, { name: "comment-text-outline", hex: "F0189", version: "1.5.54" }, { name: "compare", hex: "F018A", version: "1.5.54" }, { name: "compass", hex: "F018B", version: "1.5.54" }, { name: "compass-off", hex: "F0B80", version: "3.0.39" }, { name: "compass-off-outline", hex: "F0B81", version: "3.0.39" }, { name: "compass-outline", hex: "F018C", version: "1.5.54" }, { name: "compass-rose", hex: "F1382", version: "4.9.95" }, { name: "concourse-ci", hex: "F10A0", version: "4.2.95" }, { name: "console", hex: "F018D", version: "1.5.54" }, { name: "console-line", hex: "F07B7", version: "2.0.46" }, { name: "console-network", hex: "F08A9", version: "2.2.43" }, { name: "console-network-outline", hex: "F0C60", version: "3.2.89" }, { name: "consolidate", hex: "F10D8", version: "4.3.95" }, { name: "contactless-payment", hex: "F0D6A", version: "3.4.93" }, { name: "contactless-payment-circle", hex: "F0321", version: "1.5.54" }, { name: "contactless-payment-circle-outline", hex: "F0408", version: "1.5.54" }, { name: "contacts", hex: "F06CB", version: "1.8.36" }, { name: "contacts-outline", hex: "F05B8", version: "1.5.54" }, { name: "contain", hex: "F0A3E", version: "2.6.95" }, { name: "contain-end", hex: "F0A3F", version: "2.6.95" }, { name: "contain-start", hex: "F0A40", version: "2.6.95" }, { name: "content-copy", hex: "F018F", version: "1.5.54" }, { name: "content-cut", hex: "F0190", version: "1.5.54" }, { name: "content-duplicate", hex: "F0191", version: "1.5.54" }, { name: "content-paste", hex: "F0192", version: "1.5.54" }, { name: "content-save", hex: "F0193", version: "1.5.54" }, { name: "content-save-alert", hex: "F0F42", version: "3.9.97" }, { name: "content-save-alert-outline", hex: "F0F43", version: "3.9.97" }, { name: "content-save-all", hex: "F0194", version: "1.5.54" }, { name: "content-save-all-outline", hex: "F0F44", version: "3.9.97" }, { name: "content-save-edit", hex: "F0CFB", version: "3.3.92" }, { name: "content-save-edit-outline", hex: "F0CFC", version: "3.3.92" }, { name: "content-save-move", hex: "F0E27", version: "3.6.95" }, { name: "content-save-move-outline", hex: "F0E28", version: "3.6.95" }, { name: "content-save-outline", hex: "F0818", version: "2.1.19" }, { name: "content-save-settings", hex: "F061B", version: "1.6.50" }, { name: "content-save-settings-outline", hex: "F0B2E", version: "2.8.94" }, { name: "contrast", hex: "F0195", version: "1.5.54" }, { name: "contrast-box", hex: "F0196", version: "1.5.54" }, { name: "contrast-circle", hex: "F0197", version: "1.5.54" }, { name: "controller-classic", hex: "F0B82", version: "3.0.39" }, { name: "controller-classic-outline", hex: "F0B83", version: "3.0.39" }, { name: "cookie", hex: "F0198", version: "1.5.54" }, { name: "coolant-temperature", hex: "F03C8", version: "1.5.54" }, { name: "copyright", hex: "F05E6", version: "1.5.54" }, { name: "cordova", hex: "F0958", version: "2.4.85" }, { name: "corn", hex: "F07B8", version: "2.0.46" }, { name: "counter", hex: "F0199", version: "1.5.54" }, { name: "cow", hex: "F019A", version: "1.5.54" }, { name: "cpu-32-bit", hex: "F0EDF", version: "3.8.95" }, { name: "cpu-64-bit", hex: "F0EE0", version: "3.8.95" }, { name: "crane", hex: "F0862", version: "2.1.99" }, { name: "creation", hex: "F0674", version: "1.7.12" }, { name: "creative-commons", hex: "F0D6B", version: "3.4.93" }, { name: "credit-card", hex: "F0FEF", version: "4.0.96" }, { name: "credit-card-clock", hex: "F0EE1", version: "3.8.95" }, { name: "credit-card-clock-outline", hex: "F0EE2", version: "3.8.95" }, { name: "credit-card-marker", hex: "F06A8", version: "1.7.12" }, { name: "credit-card-marker-outline", hex: "F0DBE", version: "3.5.94" }, { name: "credit-card-minus", hex: "F0FAC", version: "4.0.96" }, { name: "credit-card-minus-outline", hex: "F0FAD", version: "4.0.96" }, { name: "credit-card-multiple", hex: "F0FF0", version: "4.0.96" }, { name: "credit-card-multiple-outline", hex: "F019C", version: "1.5.54" }, { name: "credit-card-off", hex: "F0FF1", version: "4.0.96" }, { name: "credit-card-off-outline", hex: "F05E4", version: "1.5.54" }, { name: "credit-card-outline", hex: "F019B", version: "1.5.54" }, { name: "credit-card-plus", hex: "F0FF2", version: "4.0.96" }, { name: "credit-card-plus-outline", hex: "F0676", version: "1.7.12" }, { name: "credit-card-refund", hex: "F0FF3", version: "4.0.96" }, { name: "credit-card-refund-outline", hex: "F0AA8", version: "2.7.94" }, { name: "credit-card-remove", hex: "F0FAE", version: "4.0.96" }, { name: "credit-card-remove-outline", hex: "F0FAF", version: "4.0.96" }, { name: "credit-card-scan", hex: "F0FF4", version: "4.0.96" }, { name: "credit-card-scan-outline", hex: "F019D", version: "1.5.54" }, { name: "credit-card-settings", hex: "F0FF5", version: "4.0.96" }, { name: "credit-card-settings-outline", hex: "F08D7", version: "2.3.50" }, { name: "credit-card-wireless", hex: "F0802", version: "2.1.19" }, { name: "credit-card-wireless-off", hex: "F057A", version: "1.5.54" }, { name: "credit-card-wireless-off-outline", hex: "F057B", version: "1.5.54" }, { name: "credit-card-wireless-outline", hex: "F0D6C", version: "3.4.93" }, { name: "cricket", hex: "F0D6D", version: "3.4.93" }, { name: "crop", hex: "F019E", version: "1.5.54" }, { name: "crop-free", hex: "F019F", version: "1.5.54" }, { name: "crop-landscape", hex: "F01A0", version: "1.5.54" }, { name: "crop-portrait", hex: "F01A1", version: "1.5.54" }, { name: "crop-rotate", hex: "F0696", version: "1.7.12" }, { name: "crop-square", hex: "F01A2", version: "1.5.54" }, { name: "crosshairs", hex: "F01A3", version: "1.5.54" }, { name: "crosshairs-gps", hex: "F01A4", version: "1.5.54" }, { name: "crosshairs-off", hex: "F0F45", version: "3.9.97" }, { name: "crosshairs-question", hex: "F1136", version: "4.4.95" }, { name: "crown", hex: "F01A5", version: "1.5.54" }, { name: "crown-outline", hex: "F11D0", version: "4.5.95" }, { name: "cryengine", hex: "F0959", version: "2.4.85" }, { name: "crystal-ball", hex: "F0B2F", version: "2.8.94" }, { name: "cube", hex: "F01A6", version: "1.5.54" }, { name: "cube-outline", hex: "F01A7", version: "1.5.54" }, { name: "cube-scan", hex: "F0B84", version: "3.0.39" }, { name: "cube-send", hex: "F01A8", version: "1.5.54" }, { name: "cube-unfolded", hex: "F01A9", version: "1.5.54" }, { name: "cup", hex: "F01AA", version: "1.5.54" }, { name: "cup-off", hex: "F05E5", version: "1.5.54" }, { name: "cup-off-outline", hex: "F137D", version: "4.9.95" }, { name: "cup-outline", hex: "F130F", version: "4.8.95" }, { name: "cup-water", hex: "F01AB", version: "1.5.54" }, { name: "cupboard", hex: "F0F46", version: "3.9.97" }, { name: "cupboard-outline", hex: "F0F47", version: "3.9.97" }, { name: "cupcake", hex: "F095A", version: "2.4.85" }, { name: "curling", hex: "F0863", version: "2.1.99" }, { name: "currency-bdt", hex: "F0864", version: "2.1.99" }, { name: "currency-brl", hex: "F0B85", version: "3.0.39" }, { name: "currency-btc", hex: "F01AC", version: "1.5.54" }, { name: "currency-cny", hex: "F07BA", version: "2.0.46" }, { name: "currency-eth", hex: "F07BB", version: "2.0.46" }, { name: "currency-eur", hex: "F01AD", version: "1.5.54" }, { name: "currency-eur-off", hex: "F1315", version: "4.8.95" }, { name: "currency-gbp", hex: "F01AE", version: "1.5.54" }, { name: "currency-ils", hex: "F0C61", version: "3.2.89" }, { name: "currency-inr", hex: "F01AF", version: "1.5.54" }, { name: "currency-jpy", hex: "F07BC", version: "2.0.46" }, { name: "currency-krw", hex: "F07BD", version: "2.0.46" }, { name: "currency-kzt", hex: "F0865", version: "2.1.99" }, { name: "currency-ngn", hex: "F01B0", version: "1.5.54" }, { name: "currency-php", hex: "F09E6", version: "2.5.94" }, { name: "currency-rial", hex: "F0E9C", version: "3.7.94" }, { name: "currency-rub", hex: "F01B1", version: "1.5.54" }, { name: "currency-sign", hex: "F07BE", version: "2.0.46" }, { name: "currency-try", hex: "F01B2", version: "1.5.54" }, { name: "currency-twd", hex: "F07BF", version: "2.0.46" }, { name: "currency-usd", hex: "F01C1", version: "1.5.54" }, { name: "currency-usd-circle", hex: "F116B", version: "4.4.95" }, { name: "currency-usd-circle-outline", hex: "F0178", version: "1.5.54" }, { name: "currency-usd-off", hex: "F067A", version: "1.7.12" }, { name: "current-ac", hex: "F095B", version: "2.4.85" }, { name: "current-dc", hex: "F095C", version: "2.4.85" }, { name: "cursor-default", hex: "F01C0", version: "1.5.54" }, { name: "cursor-default-click", hex: "F0CFD", version: "3.3.92" }, { name: "cursor-default-click-outline", hex: "F0CFE", version: "3.3.92" }, { name: "cursor-default-gesture", hex: "F1127", version: "4.3.95" }, { name: "cursor-default-gesture-outline", hex: "F1128", version: "4.3.95" }, { name: "cursor-default-outline", hex: "F01BF", version: "1.5.54" }, { name: "cursor-move", hex: "F01BE", version: "1.5.54" }, { name: "cursor-pointer", hex: "F01BD", version: "1.5.54" }, { name: "cursor-text", hex: "F05E7", version: "1.5.54" }, { name: "database", hex: "F01BC", version: "1.5.54" }, { name: "database-check", hex: "F0AA9", version: "2.7.94" }, { name: "database-edit", hex: "F0B86", version: "3.0.39" }, { name: "database-export", hex: "F095E", version: "2.4.85" }, { name: "database-import", hex: "F095D", version: "2.4.85" }, { name: "database-lock", hex: "F0AAA", version: "2.7.94" }, { name: "database-marker", hex: "F12F6", version: "4.8.95" }, { name: "database-minus", hex: "F01BB", version: "1.5.54" }, { name: "database-plus", hex: "F01BA", version: "1.5.54" }, { name: "database-refresh", hex: "F05C2", version: "1.5.54" }, { name: "database-remove", hex: "F0D00", version: "3.3.92" }, { name: "database-search", hex: "F0866", version: "2.1.99" }, { name: "database-settings", hex: "F0D01", version: "3.3.92" }, { name: "database-sync", hex: "F0CFF", version: "3.3.92" }, { name: "death-star", hex: "F08D8", version: "2.3.50" }, { name: "death-star-variant", hex: "F08D9", version: "2.3.50" }, { name: "deathly-hallows", hex: "F0B87", version: "3.0.39" }, { name: "debian", hex: "F08DA", version: "2.3.50" }, { name: "debug-step-into", hex: "F01B9", version: "1.5.54" }, { name: "debug-step-out", hex: "F01B8", version: "1.5.54" }, { name: "debug-step-over", hex: "F01B7", version: "1.5.54" }, { name: "decagram", hex: "F076C", version: "1.9.32" }, { name: "decagram-outline", hex: "F076D", version: "1.9.32" }, { name: "decimal", hex: "F10A1", version: "4.2.95" }, { name: "decimal-comma", hex: "F10A2", version: "4.2.95" }, { name: "decimal-comma-decrease", hex: "F10A3", version: "4.2.95" }, { name: "decimal-comma-increase", hex: "F10A4", version: "4.2.95" }, { name: "decimal-decrease", hex: "F01B6", version: "1.5.54" }, { name: "decimal-increase", hex: "F01B5", version: "1.5.54" }, { name: "delete", hex: "F01B4", version: "1.5.54" }, { name: "delete-alert", hex: "F10A5", version: "4.2.95" }, { name: "delete-alert-outline", hex: "F10A6", version: "4.2.95" }, { name: "delete-circle", hex: "F0683", version: "1.7.12" }, { name: "delete-circle-outline", hex: "F0B88", version: "3.0.39" }, { name: "delete-empty", hex: "F06CC", version: "1.8.36" }, { name: "delete-empty-outline", hex: "F0E9D", version: "3.7.94" }, { name: "delete-forever", hex: "F05E8", version: "1.5.54" }, { name: "delete-forever-outline", hex: "F0B89", version: "3.0.39" }, { name: "delete-off", hex: "F10A7", version: "4.2.95" }, { name: "delete-off-outline", hex: "F10A8", version: "4.2.95" }, { name: "delete-outline", hex: "F09E7", version: "2.5.94" }, { name: "delete-restore", hex: "F0819", version: "2.1.19" }, { name: "delete-sweep", hex: "F05E9", version: "1.5.54" }, { name: "delete-sweep-outline", hex: "F0C62", version: "3.2.89" }, { name: "delete-variant", hex: "F01B3", version: "1.5.54" }, { name: "delta", hex: "F01C2", version: "1.5.54" }, { name: "desk", hex: "F1239", version: "4.6.95" }, { name: "desk-lamp", hex: "F095F", version: "2.4.85" }, { name: "deskphone", hex: "F01C3", version: "1.5.54" }, { name: "desktop-classic", hex: "F07C0", version: "2.0.46" }, { name: "desktop-mac", hex: "F01C4", version: "1.5.54" }, { name: "desktop-mac-dashboard", hex: "F09E8", version: "2.5.94" }, { name: "desktop-tower", hex: "F01C5", version: "1.5.54" }, { name: "desktop-tower-monitor", hex: "F0AAB", version: "2.7.94" }, { name: "details", hex: "F01C6", version: "1.5.54" }, { name: "dev-to", hex: "F0D6E", version: "3.4.93" }, { name: "developer-board", hex: "F0697", version: "1.7.12" }, { name: "deviantart", hex: "F01C7", version: "1.5.54" }, { name: "devices", hex: "F0FB0", version: "4.0.96" }, { name: "diabetes", hex: "F1126", version: "4.3.95" }, { name: "dialpad", hex: "F061C", version: "1.6.50" }, { name: "diameter", hex: "F0C63", version: "3.2.89" }, { name: "diameter-outline", hex: "F0C64", version: "3.2.89" }, { name: "diameter-variant", hex: "F0C65", version: "3.2.89" }, { name: "diamond", hex: "F0B8A", version: "3.0.39" }, { name: "diamond-outline", hex: "F0B8B", version: "3.0.39" }, { name: "diamond-stone", hex: "F01C8", version: "1.5.54" }, { name: "dice-1", hex: "F01CA", version: "1.5.54" }, { name: "dice-1-outline", hex: "F114A", version: "4.4.95" }, { name: "dice-2", hex: "F01CB", version: "1.5.54" }, { name: "dice-2-outline", hex: "F114B", version: "4.4.95" }, { name: "dice-3", hex: "F01CC", version: "1.5.54" }, { name: "dice-3-outline", hex: "F114C", version: "4.4.95" }, { name: "dice-4", hex: "F01CD", version: "1.5.54" }, { name: "dice-4-outline", hex: "F114D", version: "4.4.95" }, { name: "dice-5", hex: "F01CE", version: "1.5.54" }, { name: "dice-5-outline", hex: "F114E", version: "4.4.95" }, { name: "dice-6", hex: "F01CF", version: "1.5.54" }, { name: "dice-6-outline", hex: "F114F", version: "4.4.95" }, { name: "dice-d10", hex: "F1153", version: "4.4.95" }, { name: "dice-d10-outline", hex: "F076F", version: "1.9.32" }, { name: "dice-d12", hex: "F1154", version: "4.4.95" }, { name: "dice-d12-outline", hex: "F0867", version: "2.1.99" }, { name: "dice-d20", hex: "F1155", version: "4.4.95" }, { name: "dice-d20-outline", hex: "F05EA", version: "1.5.54" }, { name: "dice-d4", hex: "F1150", version: "4.4.95" }, { name: "dice-d4-outline", hex: "F05EB", version: "1.5.54" }, { name: "dice-d6", hex: "F1151", version: "4.4.95" }, { name: "dice-d6-outline", hex: "F05ED", version: "1.5.54" }, { name: "dice-d8", hex: "F1152", version: "4.4.95" }, { name: "dice-d8-outline", hex: "F05EC", version: "1.5.54" }, { name: "dice-multiple", hex: "F076E", version: "1.9.32" }, { name: "dice-multiple-outline", hex: "F1156", version: "4.4.95" }, { name: "digital-ocean", hex: "F1237", version: "4.6.95" }, { name: "dip-switch", hex: "F07C1", version: "2.0.46" }, { name: "directions", hex: "F01D0", version: "1.5.54" }, { name: "directions-fork", hex: "F0641", version: "1.6.50" }, { name: "disc", hex: "F05EE", version: "1.5.54" }, { name: "disc-alert", hex: "F01D1", version: "1.5.54" }, { name: "disc-player", hex: "F0960", version: "2.4.85" }, { name: "discord", hex: "F066F", version: "1.6.50" }, { name: "dishwasher", hex: "F0AAC", version: "2.7.94" }, { name: "dishwasher-alert", hex: "F11B8", version: "4.5.95" }, { name: "dishwasher-off", hex: "F11B9", version: "4.5.95" }, { name: "disqus", hex: "F01D2", version: "1.5.54" }, { name: "distribute-horizontal-center", hex: "F11C9", version: "4.5.95" }, { name: "distribute-horizontal-left", hex: "F11C8", version: "4.5.95" }, { name: "distribute-horizontal-right", hex: "F11CA", version: "4.5.95" }, { name: "distribute-vertical-bottom", hex: "F11CB", version: "4.5.95" }, { name: "distribute-vertical-center", hex: "F11CC", version: "4.5.95" }, { name: "distribute-vertical-top", hex: "F11CD", version: "4.5.95" }, { name: "diving-flippers", hex: "F0DBF", version: "3.5.94" }, { name: "diving-helmet", hex: "F0DC0", version: "3.5.94" }, { name: "diving-scuba", hex: "F0DC1", version: "3.5.94" }, { name: "diving-scuba-flag", hex: "F0DC2", version: "3.5.94" }, { name: "diving-scuba-tank", hex: "F0DC3", version: "3.5.94" }, { name: "diving-scuba-tank-multiple", hex: "F0DC4", version: "3.5.94" }, { name: "diving-snorkel", hex: "F0DC5", version: "3.5.94" }, { name: "division", hex: "F01D4", version: "1.5.54" }, { name: "division-box", hex: "F01D5", version: "1.5.54" }, { name: "dlna", hex: "F0A41", version: "2.6.95" }, { name: "dna", hex: "F0684", version: "1.7.12" }, { name: "dns", hex: "F01D6", version: "1.5.54" }, { name: "dns-outline", hex: "F0B8C", version: "3.0.39" }, { name: "do-not-disturb", hex: "F0698", version: "1.7.12" }, { name: "do-not-disturb-off", hex: "F0699", version: "1.7.12" }, { name: "dock-bottom", hex: "F10A9", version: "4.2.95" }, { name: "dock-left", hex: "F10AA", version: "4.2.95" }, { name: "dock-right", hex: "F10AB", version: "4.2.95" }, { name: "dock-window", hex: "F10AC", version: "4.2.95" }, { name: "docker", hex: "F0868", version: "2.1.99" }, { name: "doctor", hex: "F0A42", version: "2.6.95" }, { name: "dog", hex: "F0A43", version: "2.6.95" }, { name: "dog-service", hex: "F0AAD", version: "2.7.94" }, { name: "dog-side", hex: "F0A44", version: "2.6.95" }, { name: "dolby", hex: "F06B3", version: "1.7.22" }, { name: "dolly", hex: "F0E9E", version: "3.7.94" }, { name: "domain", hex: "F01D7", version: "1.5.54" }, { name: "domain-off", hex: "F0D6F", version: "3.4.93" }, { name: "domain-plus", hex: "F10AD", version: "4.2.95" }, { name: "domain-remove", hex: "F10AE", version: "4.2.95" }, { name: "domino-mask", hex: "F1023", version: "4.1.95" }, { name: "donkey", hex: "F07C2", version: "2.0.46" }, { name: "door", hex: "F081A", version: "2.1.19" }, { name: "door-closed", hex: "F081B", version: "2.1.19" }, { name: "door-closed-lock", hex: "F10AF", version: "4.2.95" }, { name: "door-open", hex: "F081C", version: "2.1.19" }, { name: "doorbell", hex: "F12E6", version: "4.8.95" }, { name: "doorbell-video", hex: "F0869", version: "2.1.99" }, { name: "dot-net", hex: "F0AAE", version: "2.7.94" }, { name: "dots-horizontal", hex: "F01D8", version: "1.5.54" }, { name: "dots-horizontal-circle", hex: "F07C3", version: "2.0.46" }, { name: "dots-horizontal-circle-outline", hex: "F0B8D", version: "3.0.39" }, { name: "dots-vertical", hex: "F01D9", version: "1.5.54" }, { name: "dots-vertical-circle", hex: "F07C4", version: "2.0.46" }, { name: "dots-vertical-circle-outline", hex: "F0B8E", version: "3.0.39" }, { name: "douban", hex: "F069A", version: "1.7.12" }, { name: "download", hex: "F01DA", version: "1.5.54" }, { name: "download-lock", hex: "F1320", version: "4.9.95" }, { name: "download-lock-outline", hex: "F1321", version: "4.9.95" }, { name: "download-multiple", hex: "F09E9", version: "2.5.94" }, { name: "download-network", hex: "F06F4", version: "1.8.36" }, { name: "download-network-outline", hex: "F0C66", version: "3.2.89" }, { name: "download-off", hex: "F10B0", version: "4.2.95" }, { name: "download-off-outline", hex: "F10B1", version: "4.2.95" }, { name: "download-outline", hex: "F0B8F", version: "3.0.39" }, { name: "drag", hex: "F01DB", version: "1.5.54" }, { name: "drag-horizontal", hex: "F01DC", version: "1.5.54" }, { name: "drag-horizontal-variant", hex: "F12F0", version: "4.8.95" }, { name: "drag-variant", hex: "F0B90", version: "3.0.39" }, { name: "drag-vertical", hex: "F01DD", version: "1.5.54" }, { name: "drag-vertical-variant", hex: "F12F1", version: "4.8.95" }, { name: "drama-masks", hex: "F0D02", version: "3.3.92" }, { name: "draw", hex: "F0F49", version: "3.9.97" }, { name: "drawing", hex: "F01DE", version: "1.5.54" }, { name: "drawing-box", hex: "F01DF", version: "1.5.54" }, { name: "dresser", hex: "F0F4A", version: "3.9.97" }, { name: "dresser-outline", hex: "F0F4B", version: "3.9.97" }, { name: "drone", hex: "F01E2", version: "1.5.54" }, { name: "dropbox", hex: "F01E3", version: "1.5.54" }, { name: "drupal", hex: "F01E4", version: "1.5.54" }, { name: "duck", hex: "F01E5", version: "1.5.54" }, { name: "dumbbell", hex: "F01E6", version: "1.5.54" }, { name: "dump-truck", hex: "F0C67", version: "3.2.89" }, { name: "ear-hearing", hex: "F07C5", version: "2.0.46" }, { name: "ear-hearing-off", hex: "F0A45", version: "2.6.95" }, { name: "earth", hex: "F01E7", version: "1.5.54" }, { name: "earth-arrow-right", hex: "F1311", version: "4.8.95" }, { name: "earth-box", hex: "F06CD", version: "1.8.36" }, { name: "earth-box-off", hex: "F06CE", version: "1.8.36" }, { name: "earth-off", hex: "F01E8", version: "1.5.54" }, { name: "egg", hex: "F0AAF", version: "2.7.94" }, { name: "egg-easter", hex: "F0AB0", version: "2.7.94" }, { name: "eight-track", hex: "F09EA", version: "2.5.94" }, { name: "eject", hex: "F01EA", version: "1.5.54" }, { name: "eject-outline", hex: "F0B91", version: "3.0.39" }, { name: "electric-switch", hex: "F0E9F", version: "3.7.94" }, { name: "electric-switch-closed", hex: "F10D9", version: "4.3.95" }, { name: "electron-framework", hex: "F1024", version: "4.1.95" }, { name: "elephant", hex: "F07C6", version: "2.0.46" }, { name: "elevation-decline", hex: "F01EB", version: "1.5.54" }, { name: "elevation-rise", hex: "F01EC", version: "1.5.54" }, { name: "elevator", hex: "F01ED", version: "1.5.54" }, { name: "elevator-down", hex: "F12C2", version: "4.8.95" }, { name: "elevator-passenger", hex: "F1381", version: "4.9.95" }, { name: "elevator-up", hex: "F12C1", version: "4.8.95" }, { name: "ellipse", hex: "F0EA0", version: "3.7.94" }, { name: "ellipse-outline", hex: "F0EA1", version: "3.7.94" }, { name: "email", hex: "F01EE", version: "1.5.54" }, { name: "email-alert", hex: "F06CF", version: "1.8.36" }, { name: "email-alert-outline", hex: "F0D42", version: "3.4.93" }, { name: "email-box", hex: "F0D03", version: "3.3.92" }, { name: "email-check", hex: "F0AB1", version: "2.7.94" }, { name: "email-check-outline", hex: "F0AB2", version: "2.7.94" }, { name: "email-edit", hex: "F0EE3", version: "3.8.95" }, { name: "email-edit-outline", hex: "F0EE4", version: "3.8.95" }, { name: "email-lock", hex: "F01F1", version: "1.5.54" }, { name: "email-mark-as-unread", hex: "F0B92", version: "3.0.39" }, { name: "email-minus", hex: "F0EE5", version: "3.8.95" }, { name: "email-minus-outline", hex: "F0EE6", version: "3.8.95" }, { name: "email-multiple", hex: "F0EE7", version: "3.8.95" }, { name: "email-multiple-outline", hex: "F0EE8", version: "3.8.95" }, { name: "email-newsletter", hex: "F0FB1", version: "4.0.96" }, { name: "email-open", hex: "F01EF", version: "1.5.54" }, { name: "email-open-multiple", hex: "F0EE9", version: "3.8.95" }, { name: "email-open-multiple-outline", hex: "F0EEA", version: "3.8.95" }, { name: "email-open-outline", hex: "F05EF", version: "1.5.54" }, { name: "email-outline", hex: "F01F0", version: "1.5.54" }, { name: "email-plus", hex: "F09EB", version: "2.5.94" }, { name: "email-plus-outline", hex: "F09EC", version: "2.5.94" }, { name: "email-receive", hex: "F10DA", version: "4.3.95" }, { name: "email-receive-outline", hex: "F10DB", version: "4.3.95" }, { name: "email-search", hex: "F0961", version: "2.4.85" }, { name: "email-search-outline", hex: "F0962", version: "2.4.85" }, { name: "email-send", hex: "F10DC", version: "4.3.95" }, { name: "email-send-outline", hex: "F10DD", version: "4.3.95" }, { name: "email-sync", hex: "F12C7", version: "4.8.95" }, { name: "email-sync-outline", hex: "F12C8", version: "4.8.95" }, { name: "email-variant", hex: "F05F0", version: "1.5.54" }, { name: "ember", hex: "F0B30", version: "2.8.94" }, { name: "emby", hex: "F06B4", version: "1.7.22" }, { name: "emoticon", hex: "F0C68", version: "3.2.89" }, { name: "emoticon-angry", hex: "F0C69", version: "3.2.89" }, { name: "emoticon-angry-outline", hex: "F0C6A", version: "3.2.89" }, { name: "emoticon-confused", hex: "F10DE", version: "4.3.95" }, { name: "emoticon-confused-outline", hex: "F10DF", version: "4.3.95" }, { name: "emoticon-cool", hex: "F0C6B", version: "3.2.89" }, { name: "emoticon-cool-outline", hex: "F01F3", version: "1.5.54" }, { name: "emoticon-cry", hex: "F0C6C", version: "3.2.89" }, { name: "emoticon-cry-outline", hex: "F0C6D", version: "3.2.89" }, { name: "emoticon-dead", hex: "F0C6E", version: "3.2.89" }, { name: "emoticon-dead-outline", hex: "F069B", version: "1.7.12" }, { name: "emoticon-devil", hex: "F0C6F", version: "3.2.89" }, { name: "emoticon-devil-outline", hex: "F01F4", version: "1.5.54" }, { name: "emoticon-excited", hex: "F0C70", version: "3.2.89" }, { name: "emoticon-excited-outline", hex: "F069C", version: "1.7.12" }, { name: "emoticon-frown", hex: "F0F4C", version: "3.9.97" }, { name: "emoticon-frown-outline", hex: "F0F4D", version: "3.9.97" }, { name: "emoticon-happy", hex: "F0C71", version: "3.2.89" }, { name: "emoticon-happy-outline", hex: "F01F5", version: "1.5.54" }, { name: "emoticon-kiss", hex: "F0C72", version: "3.2.89" }, { name: "emoticon-kiss-outline", hex: "F0C73", version: "3.2.89" }, { name: "emoticon-lol", hex: "F1214", version: "4.6.95" }, { name: "emoticon-lol-outline", hex: "F1215", version: "4.6.95" }, { name: "emoticon-neutral", hex: "F0C74", version: "3.2.89" }, { name: "emoticon-neutral-outline", hex: "F01F6", version: "1.5.54" }, { name: "emoticon-outline", hex: "F01F2", version: "1.5.54" }, { name: "emoticon-poop", hex: "F01F7", version: "1.5.54" }, { name: "emoticon-poop-outline", hex: "F0C75", version: "3.2.89" }, { name: "emoticon-sad", hex: "F0C76", version: "3.2.89" }, { name: "emoticon-sad-outline", hex: "F01F8", version: "1.5.54" }, { name: "emoticon-tongue", hex: "F01F9", version: "1.5.54" }, { name: "emoticon-tongue-outline", hex: "F0C77", version: "3.2.89" }, { name: "emoticon-wink", hex: "F0C78", version: "3.2.89" }, { name: "emoticon-wink-outline", hex: "F0C79", version: "3.2.89" }, { name: "engine", hex: "F01FA", version: "1.5.54" }, { name: "engine-off", hex: "F0A46", version: "2.6.95" }, { name: "engine-off-outline", hex: "F0A47", version: "2.6.95" }, { name: "engine-outline", hex: "F01FB", version: "1.5.54" }, { name: "epsilon", hex: "F10E0", version: "4.3.95" }, { name: "equal", hex: "F01FC", version: "1.5.54" }, { name: "equal-box", hex: "F01FD", version: "1.5.54" }, { name: "equalizer", hex: "F0EA2", version: "3.7.94" }, { name: "equalizer-outline", hex: "F0EA3", version: "3.7.94" }, { name: "eraser", hex: "F01FE", version: "1.5.54" }, { name: "eraser-variant", hex: "F0642", version: "1.6.50" }, { name: "escalator", hex: "F01FF", version: "1.5.54" }, { name: "escalator-box", hex: "F1399", version: "5.0.45" }, { name: "escalator-down", hex: "F12C0", version: "4.8.95" }, { name: "escalator-up", hex: "F12BF", version: "4.8.95" }, { name: "eslint", hex: "F0C7A", version: "3.2.89" }, { name: "et", hex: "F0AB3", version: "2.7.94" }, { name: "ethereum", hex: "F086A", version: "2.1.99" }, { name: "ethernet", hex: "F0200", version: "1.5.54" }, { name: "ethernet-cable", hex: "F0201", version: "1.5.54" }, { name: "ethernet-cable-off", hex: "F0202", version: "1.5.54" }, { name: "ev-station", hex: "F05F1", version: "1.5.54" }, { name: "evernote", hex: "F0204", version: "1.5.54" }, { name: "excavator", hex: "F1025", version: "4.1.95" }, { name: "exclamation", hex: "F0205", version: "1.5.54" }, { name: "exclamation-thick", hex: "F1238", version: "4.6.95" }, { name: "exit-run", hex: "F0A48", version: "2.6.95" }, { name: "exit-to-app", hex: "F0206", version: "1.5.54" }, { name: "expand-all", hex: "F0AB4", version: "2.7.94" }, { name: "expand-all-outline", hex: "F0AB5", version: "2.7.94" }, { name: "expansion-card", hex: "F08AE", version: "2.2.43" }, { name: "expansion-card-variant", hex: "F0FB2", version: "4.0.96" }, { name: "exponent", hex: "F0963", version: "2.4.85" }, { name: "exponent-box", hex: "F0964", version: "2.4.85" }, { name: "export", hex: "F0207", version: "1.5.54" }, { name: "export-variant", hex: "F0B93", version: "3.0.39" }, { name: "eye", hex: "F0208", version: "1.5.54" }, { name: "eye-check", hex: "F0D04", version: "3.3.92" }, { name: "eye-check-outline", hex: "F0D05", version: "3.3.92" }, { name: "eye-circle", hex: "F0B94", version: "3.0.39" }, { name: "eye-circle-outline", hex: "F0B95", version: "3.0.39" }, { name: "eye-minus", hex: "F1026", version: "4.1.95" }, { name: "eye-minus-outline", hex: "F1027", version: "4.1.95" }, { name: "eye-off", hex: "F0209", version: "1.5.54" }, { name: "eye-off-outline", hex: "F06D1", version: "1.8.36" }, { name: "eye-outline", hex: "F06D0", version: "1.8.36" }, { name: "eye-plus", hex: "F086B", version: "2.1.99" }, { name: "eye-plus-outline", hex: "F086C", version: "2.1.99" }, { name: "eye-settings", hex: "F086D", version: "2.1.99" }, { name: "eye-settings-outline", hex: "F086E", version: "2.1.99" }, { name: "eyedropper", hex: "F020A", version: "1.5.54" }, { name: "eyedropper-variant", hex: "F020B", version: "1.5.54" }, { name: "face", hex: "F0643", version: "1.6.50" }, { name: "face-agent", hex: "F0D70", version: "3.4.93" }, { name: "face-outline", hex: "F0B96", version: "3.0.39" }, { name: "face-profile", hex: "F0644", version: "1.6.50" }, { name: "face-profile-woman", hex: "F1076", version: "4.2.95" }, { name: "face-recognition", hex: "F0C7B", version: "3.2.89" }, { name: "face-woman", hex: "F1077", version: "4.2.95" }, { name: "face-woman-outline", hex: "F1078", version: "4.2.95" }, { name: "facebook", hex: "F020C", version: "1.5.54" }, { name: "facebook-messenger", hex: "F020E", version: "1.5.54" }, { name: "facebook-workplace", hex: "F0B31", version: "2.8.94" }, { name: "factory", hex: "F020F", version: "1.5.54" }, { name: "fan", hex: "F0210", version: "1.5.54" }, { name: "fan-off", hex: "F081D", version: "2.1.19" }, { name: "fast-forward", hex: "F0211", version: "1.5.54" }, { name: "fast-forward-10", hex: "F0D71", version: "3.4.93" }, { name: "fast-forward-30", hex: "F0D06", version: "3.3.92" }, { name: "fast-forward-5", hex: "F11F8", version: "4.6.95" }, { name: "fast-forward-outline", hex: "F06D2", version: "1.8.36" }, { name: "fax", hex: "F0212", version: "1.5.54" }, { name: "feather", hex: "F06D3", version: "1.8.36" }, { name: "feature-search", hex: "F0A49", version: "2.6.95" }, { name: "feature-search-outline", hex: "F0A4A", version: "2.6.95" }, { name: "fedora", hex: "F08DB", version: "2.3.50" }, { name: "ferris-wheel", hex: "F0EA4", version: "3.7.94" }, { name: "ferry", hex: "F0213", version: "1.5.54" }, { name: "file", hex: "F0214", version: "1.5.54" }, { name: "file-account", hex: "F073B", version: "1.9.32" }, { name: "file-account-outline", hex: "F1028", version: "4.1.95" }, { name: "file-alert", hex: "F0A4B", version: "2.6.95" }, { name: "file-alert-outline", hex: "F0A4C", version: "2.6.95" }, { name: "file-cabinet", hex: "F0AB6", version: "2.7.94" }, { name: "file-cad", hex: "F0EEB", version: "3.8.95" }, { name: "file-cad-box", hex: "F0EEC", version: "3.8.95" }, { name: "file-cancel", hex: "F0DC6", version: "3.5.94" }, { name: "file-cancel-outline", hex: "F0DC7", version: "3.5.94" }, { name: "file-certificate", hex: "F1186", version: "4.4.95" }, { name: "file-certificate-outline", hex: "F1187", version: "4.4.95" }, { name: "file-chart", hex: "F0215", version: "1.5.54" }, { name: "file-chart-outline", hex: "F1029", version: "4.1.95" }, { name: "file-check", hex: "F0216", version: "1.5.54" }, { name: "file-check-outline", hex: "F0E29", version: "3.6.95" }, { name: "file-clock", hex: "F12E1", version: "4.8.95" }, { name: "file-clock-outline", hex: "F12E2", version: "4.8.95" }, { name: "file-cloud", hex: "F0217", version: "1.5.54" }, { name: "file-cloud-outline", hex: "F102A", version: "4.1.95" }, { name: "file-code", hex: "F022E", version: "1.5.54" }, { name: "file-code-outline", hex: "F102B", version: "4.1.95" }, { name: "file-cog", hex: "F107B", version: "4.2.95" }, { name: "file-cog-outline", hex: "F107C", version: "4.2.95" }, { name: "file-compare", hex: "F08AA", version: "2.2.43" }, { name: "file-delimited", hex: "F0218", version: "1.5.54" }, { name: "file-delimited-outline", hex: "F0EA5", version: "3.7.94" }, { name: "file-document", hex: "F0219", version: "1.5.54" }, { name: "file-document-edit", hex: "F0DC8", version: "3.5.94" }, { name: "file-document-edit-outline", hex: "F0DC9", version: "3.5.94" }, { name: "file-document-outline", hex: "F09EE", version: "2.5.94" }, { name: "file-download", hex: "F0965", version: "2.4.85" }, { name: "file-download-outline", hex: "F0966", version: "2.4.85" }, { name: "file-edit", hex: "F11E7", version: "4.5.95" }, { name: "file-edit-outline", hex: "F11E8", version: "4.5.95" }, { name: "file-excel", hex: "F021B", version: "1.5.54" }, { name: "file-excel-box", hex: "F021C", version: "1.5.54" }, { name: "file-excel-box-outline", hex: "F102C", version: "4.1.95" }, { name: "file-excel-outline", hex: "F102D", version: "4.1.95" }, { name: "file-export", hex: "F021D", version: "1.5.54" }, { name: "file-export-outline", hex: "F102E", version: "4.1.95" }, { name: "file-eye", hex: "F0DCA", version: "3.5.94" }, { name: "file-eye-outline", hex: "F0DCB", version: "3.5.94" }, { name: "file-find", hex: "F021E", version: "1.5.54" }, { name: "file-find-outline", hex: "F0B97", version: "3.0.39" }, { name: "file-hidden", hex: "F0613", version: "1.5.54" }, { name: "file-image", hex: "F021F", version: "1.5.54" }, { name: "file-image-outline", hex: "F0EB0", version: "3.7.94" }, { name: "file-import", hex: "F0220", version: "1.5.54" }, { name: "file-import-outline", hex: "F102F", version: "4.1.95" }, { name: "file-key", hex: "F1184", version: "4.4.95" }, { name: "file-key-outline", hex: "F1185", version: "4.4.95" }, { name: "file-link", hex: "F1177", version: "4.4.95" }, { name: "file-link-outline", hex: "F1178", version: "4.4.95" }, { name: "file-lock", hex: "F0221", version: "1.5.54" }, { name: "file-lock-outline", hex: "F1030", version: "4.1.95" }, { name: "file-move", hex: "F0AB9", version: "2.7.94" }, { name: "file-move-outline", hex: "F1031", version: "4.1.95" }, { name: "file-multiple", hex: "F0222", version: "1.5.54" }, { name: "file-multiple-outline", hex: "F1032", version: "4.1.95" }, { name: "file-music", hex: "F0223", version: "1.5.54" }, { name: "file-music-outline", hex: "F0E2A", version: "3.6.95" }, { name: "file-outline", hex: "F0224", version: "1.5.54" }, { name: "file-pdf", hex: "F0225", version: "1.5.54" }, { name: "file-pdf-box", hex: "F0226", version: "1.5.54" }, { name: "file-pdf-box-outline", hex: "F0FB3", version: "4.0.96" }, { name: "file-pdf-outline", hex: "F0E2D", version: "3.6.95" }, { name: "file-percent", hex: "F081E", version: "2.1.19" }, { name: "file-percent-outline", hex: "F1033", version: "4.1.95" }, { name: "file-phone", hex: "F1179", version: "4.4.95" }, { name: "file-phone-outline", hex: "F117A", version: "4.4.95" }, { name: "file-plus", hex: "F0752", version: "1.9.32" }, { name: "file-plus-outline", hex: "F0EED", version: "3.8.95" }, { name: "file-powerpoint", hex: "F0227", version: "1.5.54" }, { name: "file-powerpoint-box", hex: "F0228", version: "1.5.54" }, { name: "file-powerpoint-box-outline", hex: "F1034", version: "4.1.95" }, { name: "file-powerpoint-outline", hex: "F1035", version: "4.1.95" }, { name: "file-presentation-box", hex: "F0229", version: "1.5.54" }, { name: "file-question", hex: "F086F", version: "2.1.99" }, { name: "file-question-outline", hex: "F1036", version: "4.1.95" }, { name: "file-refresh", hex: "F0918", version: "2.3.50" }, { name: "file-refresh-outline", hex: "F0541", version: "1.5.54" }, { name: "file-remove", hex: "F0B98", version: "3.0.39" }, { name: "file-remove-outline", hex: "F1037", version: "4.1.95" }, { name: "file-replace", hex: "F0B32", version: "2.8.94" }, { name: "file-replace-outline", hex: "F0B33", version: "2.8.94" }, { name: "file-restore", hex: "F0670", version: "1.6.50" }, { name: "file-restore-outline", hex: "F1038", version: "4.1.95" }, { name: "file-search", hex: "F0C7C", version: "3.2.89" }, { name: "file-search-outline", hex: "F0C7D", version: "3.2.89" }, { name: "file-send", hex: "F022A", version: "1.5.54" }, { name: "file-send-outline", hex: "F1039", version: "4.1.95" }, { name: "file-settings", hex: "F1079", version: "4.2.95" }, { name: "file-settings-outline", hex: "F107A", version: "4.2.95" }, { name: "file-star", hex: "F103A", version: "4.1.95" }, { name: "file-star-outline", hex: "F103B", version: "4.1.95" }, { name: "file-swap", hex: "F0FB4", version: "4.0.96" }, { name: "file-swap-outline", hex: "F0FB5", version: "4.0.96" }, { name: "file-sync", hex: "F1216", version: "4.6.95" }, { name: "file-sync-outline", hex: "F1217", version: "4.6.95" }, { name: "file-table", hex: "F0C7E", version: "3.2.89" }, { name: "file-table-box", hex: "F10E1", version: "4.3.95" }, { name: "file-table-box-multiple", hex: "F10E2", version: "4.3.95" }, { name: "file-table-box-multiple-outline", hex: "F10E3", version: "4.3.95" }, { name: "file-table-box-outline", hex: "F10E4", version: "4.3.95" }, { name: "file-table-outline", hex: "F0C7F", version: "3.2.89" }, { name: "file-tree", hex: "F0645", version: "1.6.50" }, { name: "file-undo", hex: "F08DC", version: "2.3.50" }, { name: "file-undo-outline", hex: "F103C", version: "4.1.95" }, { name: "file-upload", hex: "F0A4D", version: "2.6.95" }, { name: "file-upload-outline", hex: "F0A4E", version: "2.6.95" }, { name: "file-video", hex: "F022B", version: "1.5.54" }, { name: "file-video-outline", hex: "F0E2C", version: "3.6.95" }, { name: "file-word", hex: "F022C", version: "1.5.54" }, { name: "file-word-box", hex: "F022D", version: "1.5.54" }, { name: "file-word-box-outline", hex: "F103D", version: "4.1.95" }, { name: "file-word-outline", hex: "F103E", version: "4.1.95" }, { name: "film", hex: "F022F", version: "1.5.54" }, { name: "filmstrip", hex: "F0230", version: "1.5.54" }, { name: "filmstrip-box", hex: "F0332", version: "1.5.54" }, { name: "filmstrip-box-multiple", hex: "F0D18", version: "3.3.92" }, { name: "filmstrip-off", hex: "F0231", version: "1.5.54" }, { name: "filter", hex: "F0232", version: "1.5.54" }, { name: "filter-menu", hex: "F10E5", version: "4.3.95" }, { name: "filter-menu-outline", hex: "F10E6", version: "4.3.95" }, { name: "filter-minus", hex: "F0EEE", version: "3.8.95" }, { name: "filter-minus-outline", hex: "F0EEF", version: "3.8.95" }, { name: "filter-outline", hex: "F0233", version: "1.5.54" }, { name: "filter-plus", hex: "F0EF0", version: "3.8.95" }, { name: "filter-plus-outline", hex: "F0EF1", version: "3.8.95" }, { name: "filter-remove", hex: "F0234", version: "1.5.54" }, { name: "filter-remove-outline", hex: "F0235", version: "1.5.54" }, { name: "filter-variant", hex: "F0236", version: "1.5.54" }, { name: "filter-variant-minus", hex: "F1112", version: "4.3.95" }, { name: "filter-variant-plus", hex: "F1113", version: "4.3.95" }, { name: "filter-variant-remove", hex: "F103F", version: "4.1.95" }, { name: "finance", hex: "F081F", version: "2.1.19" }, { name: "find-replace", hex: "F06D4", version: "1.8.36" }, { name: "fingerprint", hex: "F0237", version: "1.5.54" }, { name: "fingerprint-off", hex: "F0EB1", version: "3.7.94" }, { name: "fire", hex: "F0238", version: "1.5.54" }, { name: "fire-extinguisher", hex: "F0EF2", version: "3.8.95" }, { name: "fire-hydrant", hex: "F1137", version: "4.4.95" }, { name: "fire-hydrant-alert", hex: "F1138", version: "4.4.95" }, { name: "fire-hydrant-off", hex: "F1139", version: "4.4.95" }, { name: "fire-truck", hex: "F08AB", version: "2.2.43" }, { name: "firebase", hex: "F0967", version: "2.4.85" }, { name: "firefox", hex: "F0239", version: "1.5.54" }, { name: "fireplace", hex: "F0E2E", version: "3.6.95" }, { name: "fireplace-off", hex: "F0E2F", version: "3.6.95" }, { name: "firework", hex: "F0E30", version: "3.6.95" }, { name: "fish", hex: "F023A", version: "1.5.54" }, { name: "fishbowl", hex: "F0EF3", version: "3.8.95" }, { name: "fishbowl-outline", hex: "F0EF4", version: "3.8.95" }, { name: "fit-to-page", hex: "F0EF5", version: "3.8.95" }, { name: "fit-to-page-outline", hex: "F0EF6", version: "3.8.95" }, { name: "flag", hex: "F023B", version: "1.5.54" }, { name: "flag-checkered", hex: "F023C", version: "1.5.54" }, { name: "flag-minus", hex: "F0B99", version: "3.0.39" }, { name: "flag-minus-outline", hex: "F10B2", version: "4.2.95" }, { name: "flag-outline", hex: "F023D", version: "1.5.54" }, { name: "flag-plus", hex: "F0B9A", version: "3.0.39" }, { name: "flag-plus-outline", hex: "F10B3", version: "4.2.95" }, { name: "flag-remove", hex: "F0B9B", version: "3.0.39" }, { name: "flag-remove-outline", hex: "F10B4", version: "4.2.95" }, { name: "flag-triangle", hex: "F023F", version: "1.5.54" }, { name: "flag-variant", hex: "F0240", version: "1.5.54" }, { name: "flag-variant-outline", hex: "F023E", version: "1.5.54" }, { name: "flare", hex: "F0D72", version: "3.4.93" }, { name: "flash", hex: "F0241", version: "1.5.54" }, { name: "flash-alert", hex: "F0EF7", version: "3.8.95" }, { name: "flash-alert-outline", hex: "F0EF8", version: "3.8.95" }, { name: "flash-auto", hex: "F0242", version: "1.5.54" }, { name: "flash-circle", hex: "F0820", version: "2.1.19" }, { name: "flash-off", hex: "F0243", version: "1.5.54" }, { name: "flash-outline", hex: "F06D5", version: "1.8.36" }, { name: "flash-red-eye", hex: "F067B", version: "1.7.12" }, { name: "flashlight", hex: "F0244", version: "1.5.54" }, { name: "flashlight-off", hex: "F0245", version: "1.5.54" }, { name: "flask", hex: "F0093", version: "1.5.54" }, { name: "flask-empty", hex: "F0094", version: "1.5.54" }, { name: "flask-empty-minus", hex: "F123A", version: "4.6.95" }, { name: "flask-empty-minus-outline", hex: "F123B", version: "4.6.95" }, { name: "flask-empty-outline", hex: "F0095", version: "1.5.54" }, { name: "flask-empty-plus", hex: "F123C", version: "4.6.95" }, { name: "flask-empty-plus-outline", hex: "F123D", version: "4.6.95" }, { name: "flask-empty-remove", hex: "F123E", version: "4.6.95" }, { name: "flask-empty-remove-outline", hex: "F123F", version: "4.6.95" }, { name: "flask-minus", hex: "F1240", version: "4.6.95" }, { name: "flask-minus-outline", hex: "F1241", version: "4.6.95" }, { name: "flask-outline", hex: "F0096", version: "1.5.54" }, { name: "flask-plus", hex: "F1242", version: "4.6.95" }, { name: "flask-plus-outline", hex: "F1243", version: "4.6.95" }, { name: "flask-remove", hex: "F1244", version: "4.6.95" }, { name: "flask-remove-outline", hex: "F1245", version: "4.6.95" }, { name: "flask-round-bottom", hex: "F124B", version: "4.6.95" }, { name: "flask-round-bottom-empty", hex: "F124C", version: "4.6.95" }, { name: "flask-round-bottom-empty-outline", hex: "F124D", version: "4.6.95" }, { name: "flask-round-bottom-outline", hex: "F124E", version: "4.6.95" }, { name: "fleur-de-lis", hex: "F1303", version: "4.8.95" }, { name: "flip-horizontal", hex: "F10E7", version: "4.3.95" }, { name: "flip-to-back", hex: "F0247", version: "1.5.54" }, { name: "flip-to-front", hex: "F0248", version: "1.5.54" }, { name: "flip-vertical", hex: "F10E8", version: "4.3.95" }, { name: "floor-lamp", hex: "F08DD", version: "2.3.50" }, { name: "floor-lamp-dual", hex: "F1040", version: "4.1.95" }, { name: "floor-lamp-variant", hex: "F1041", version: "4.1.95" }, { name: "floor-plan", hex: "F0821", version: "2.1.19" }, { name: "floppy", hex: "F0249", version: "1.5.54" }, { name: "floppy-variant", hex: "F09EF", version: "2.5.94" }, { name: "flower", hex: "F024A", version: "1.5.54" }, { name: "flower-outline", hex: "F09F0", version: "2.5.94" }, { name: "flower-poppy", hex: "F0D08", version: "3.3.92" }, { name: "flower-tulip", hex: "F09F1", version: "2.5.94" }, { name: "flower-tulip-outline", hex: "F09F2", version: "2.5.94" }, { name: "focus-auto", hex: "F0F4E", version: "3.9.97" }, { name: "focus-field", hex: "F0F4F", version: "3.9.97" }, { name: "focus-field-horizontal", hex: "F0F50", version: "3.9.97" }, { name: "focus-field-vertical", hex: "F0F51", version: "3.9.97" }, { name: "folder", hex: "F024B", version: "1.5.54" }, { name: "folder-account", hex: "F024C", version: "1.5.54" }, { name: "folder-account-outline", hex: "F0B9C", version: "3.0.39" }, { name: "folder-alert", hex: "F0DCC", version: "3.5.94" }, { name: "folder-alert-outline", hex: "F0DCD", version: "3.5.94" }, { name: "folder-clock", hex: "F0ABA", version: "2.7.94" }, { name: "folder-clock-outline", hex: "F0ABB", version: "2.7.94" }, { name: "folder-cog", hex: "F107F", version: "4.2.95" }, { name: "folder-cog-outline", hex: "F1080", version: "4.2.95" }, { name: "folder-download", hex: "F024D", version: "1.5.54" }, { name: "folder-download-outline", hex: "F10E9", version: "4.3.95" }, { name: "folder-edit", hex: "F08DE", version: "2.3.50" }, { name: "folder-edit-outline", hex: "F0DCE", version: "3.5.94" }, { name: "folder-google-drive", hex: "F024E", version: "1.5.54" }, { name: "folder-heart", hex: "F10EA", version: "4.3.95" }, { name: "folder-heart-outline", hex: "F10EB", version: "4.3.95" }, { name: "folder-home", hex: "F10B5", version: "4.2.95" }, { name: "folder-home-outline", hex: "F10B6", version: "4.2.95" }, { name: "folder-image", hex: "F024F", version: "1.5.54" }, { name: "folder-information", hex: "F10B7", version: "4.2.95" }, { name: "folder-information-outline", hex: "F10B8", version: "4.2.95" }, { name: "folder-key", hex: "F08AC", version: "2.2.43" }, { name: "folder-key-network", hex: "F08AD", version: "2.2.43" }, { name: "folder-key-network-outline", hex: "F0C80", version: "3.2.89" }, { name: "folder-key-outline", hex: "F10EC", version: "4.3.95" }, { name: "folder-lock", hex: "F0250", version: "1.5.54" }, { name: "folder-lock-open", hex: "F0251", version: "1.5.54" }, { name: "folder-marker", hex: "F126D", version: "4.7.95" }, { name: "folder-marker-outline", hex: "F126E", version: "4.7.95" }, { name: "folder-move", hex: "F0252", version: "1.5.54" }, { name: "folder-move-outline", hex: "F1246", version: "4.6.95" }, { name: "folder-multiple", hex: "F0253", version: "1.5.54" }, { name: "folder-multiple-image", hex: "F0254", version: "1.5.54" }, { name: "folder-multiple-outline", hex: "F0255", version: "1.5.54" }, { name: "folder-music", hex: "F1359", version: "4.9.95" }, { name: "folder-music-outline", hex: "F135A", version: "4.9.95" }, { name: "folder-network", hex: "F0870", version: "2.1.99" }, { name: "folder-network-outline", hex: "F0C81", version: "3.2.89" }, { name: "folder-open", hex: "F0770", version: "1.9.32" }, { name: "folder-open-outline", hex: "F0DCF", version: "3.5.94" }, { name: "folder-outline", hex: "F0256", version: "1.5.54" }, { name: "folder-plus", hex: "F0257", version: "1.5.54" }, { name: "folder-plus-outline", hex: "F0B9D", version: "3.0.39" }, { name: "folder-pound", hex: "F0D09", version: "3.3.92" }, { name: "folder-pound-outline", hex: "F0D0A", version: "3.3.92" }, { name: "folder-refresh", hex: "F0749", version: "1.9.32" }, { name: "folder-refresh-outline", hex: "F0542", version: "1.5.54" }, { name: "folder-remove", hex: "F0258", version: "1.5.54" }, { name: "folder-remove-outline", hex: "F0B9E", version: "3.0.39" }, { name: "folder-search", hex: "F0968", version: "2.4.85" }, { name: "folder-search-outline", hex: "F0969", version: "2.4.85" }, { name: "folder-settings", hex: "F107D", version: "4.2.95" }, { name: "folder-settings-outline", hex: "F107E", version: "4.2.95" }, { name: "folder-star", hex: "F069D", version: "1.7.12" }, { name: "folder-star-outline", hex: "F0B9F", version: "3.0.39" }, { name: "folder-swap", hex: "F0FB6", version: "4.0.96" }, { name: "folder-swap-outline", hex: "F0FB7", version: "4.0.96" }, { name: "folder-sync", hex: "F0D0B", version: "3.3.92" }, { name: "folder-sync-outline", hex: "F0D0C", version: "3.3.92" }, { name: "folder-table", hex: "F12E3", version: "4.8.95" }, { name: "folder-table-outline", hex: "F12E4", version: "4.8.95" }, { name: "folder-text", hex: "F0C82", version: "3.2.89" }, { name: "folder-text-outline", hex: "F0C83", version: "3.2.89" }, { name: "folder-upload", hex: "F0259", version: "1.5.54" }, { name: "folder-upload-outline", hex: "F10ED", version: "4.3.95" }, { name: "folder-zip", hex: "F06EB", version: "1.8.36" }, { name: "folder-zip-outline", hex: "F07B9", version: "2.0.46" }, { name: "font-awesome", hex: "F003A", version: "1.5.54" }, { name: "food", hex: "F025A", version: "1.5.54" }, { name: "food-apple", hex: "F025B", version: "1.5.54" }, { name: "food-apple-outline", hex: "F0C84", version: "3.2.89" }, { name: "food-croissant", hex: "F07C8", version: "2.0.46" }, { name: "food-fork-drink", hex: "F05F2", version: "1.5.54" }, { name: "food-off", hex: "F05F3", version: "1.5.54" }, { name: "food-variant", hex: "F025C", version: "1.5.54" }, { name: "foot-print", hex: "F0F52", version: "3.9.97" }, { name: "football", hex: "F025D", version: "1.5.54" }, { name: "football-australian", hex: "F025E", version: "1.5.54" }, { name: "football-helmet", hex: "F025F", version: "1.5.54" }, { name: "forklift", hex: "F07C9", version: "2.0.46" }, { name: "format-align-bottom", hex: "F0753", version: "1.9.32" }, { name: "format-align-center", hex: "F0260", version: "1.5.54" }, { name: "format-align-justify", hex: "F0261", version: "1.5.54" }, { name: "format-align-left", hex: "F0262", version: "1.5.54" }, { name: "format-align-middle", hex: "F0754", version: "1.9.32" }, { name: "format-align-right", hex: "F0263", version: "1.5.54" }, { name: "format-align-top", hex: "F0755", version: "1.9.32" }, { name: "format-annotation-minus", hex: "F0ABC", version: "2.7.94" }, { name: "format-annotation-plus", hex: "F0646", version: "1.6.50" }, { name: "format-bold", hex: "F0264", version: "1.5.54" }, { name: "format-clear", hex: "F0265", version: "1.5.54" }, { name: "format-color-fill", hex: "F0266", version: "1.5.54" }, { name: "format-color-highlight", hex: "F0E31", version: "3.6.95" }, { name: "format-color-marker-cancel", hex: "F1313", version: "4.8.95" }, { name: "format-color-text", hex: "F069E", version: "1.7.12" }, { name: "format-columns", hex: "F08DF", version: "2.3.50" }, { name: "format-float-center", hex: "F0267", version: "1.5.54" }, { name: "format-float-left", hex: "F0268", version: "1.5.54" }, { name: "format-float-none", hex: "F0269", version: "1.5.54" }, { name: "format-float-right", hex: "F026A", version: "1.5.54" }, { name: "format-font", hex: "F06D6", version: "1.8.36" }, { name: "format-font-size-decrease", hex: "F09F3", version: "2.5.94" }, { name: "format-font-size-increase", hex: "F09F4", version: "2.5.94" }, { name: "format-header-1", hex: "F026B", version: "1.5.54" }, { name: "format-header-2", hex: "F026C", version: "1.5.54" }, { name: "format-header-3", hex: "F026D", version: "1.5.54" }, { name: "format-header-4", hex: "F026E", version: "1.5.54" }, { name: "format-header-5", hex: "F026F", version: "1.5.54" }, { name: "format-header-6", hex: "F0270", version: "1.5.54" }, { name: "format-header-decrease", hex: "F0271", version: "1.5.54" }, { name: "format-header-equal", hex: "F0272", version: "1.5.54" }, { name: "format-header-increase", hex: "F0273", version: "1.5.54" }, { name: "format-header-pound", hex: "F0274", version: "1.5.54" }, { name: "format-horizontal-align-center", hex: "F061E", version: "1.6.50" }, { name: "format-horizontal-align-left", hex: "F061F", version: "1.6.50" }, { name: "format-horizontal-align-right", hex: "F0620", version: "1.6.50" }, { name: "format-indent-decrease", hex: "F0275", version: "1.5.54" }, { name: "format-indent-increase", hex: "F0276", version: "1.5.54" }, { name: "format-italic", hex: "F0277", version: "1.5.54" }, { name: "format-letter-case", hex: "F0B34", version: "2.8.94" }, { name: "format-letter-case-lower", hex: "F0B35", version: "2.8.94" }, { name: "format-letter-case-upper", hex: "F0B36", version: "2.8.94" }, { name: "format-letter-ends-with", hex: "F0FB8", version: "4.0.96" }, { name: "format-letter-matches", hex: "F0FB9", version: "4.0.96" }, { name: "format-letter-starts-with", hex: "F0FBA", version: "4.0.96" }, { name: "format-line-spacing", hex: "F0278", version: "1.5.54" }, { name: "format-line-style", hex: "F05C8", version: "1.5.54" }, { name: "format-line-weight", hex: "F05C9", version: "1.5.54" }, { name: "format-list-bulleted", hex: "F0279", version: "1.5.54" }, { name: "format-list-bulleted-square", hex: "F0DD0", version: "3.5.94" }, { name: "format-list-bulleted-triangle", hex: "F0EB2", version: "3.7.94" }, { name: "format-list-bulleted-type", hex: "F027A", version: "1.5.54" }, { name: "format-list-checkbox", hex: "F096A", version: "2.4.85" }, { name: "format-list-checks", hex: "F0756", version: "1.9.32" }, { name: "format-list-numbered", hex: "F027B", version: "1.5.54" }, { name: "format-list-numbered-rtl", hex: "F0D0D", version: "3.3.92" }, { name: "format-list-text", hex: "F126F", version: "4.7.95" }, { name: "format-overline", hex: "F0EB3", version: "3.7.94" }, { name: "format-page-break", hex: "F06D7", version: "1.8.36" }, { name: "format-paint", hex: "F027C", version: "1.5.54" }, { name: "format-paragraph", hex: "F027D", version: "1.5.54" }, { name: "format-pilcrow", hex: "F06D8", version: "1.8.36" }, { name: "format-quote-close", hex: "F027E", version: "1.5.54" }, { name: "format-quote-close-outline", hex: "F11A8", version: "4.5.95" }, { name: "format-quote-open", hex: "F0757", version: "1.9.32" }, { name: "format-quote-open-outline", hex: "F11A7", version: "4.5.95" }, { name: "format-rotate-90", hex: "F06AA", version: "1.7.12" }, { name: "format-section", hex: "F069F", version: "1.7.12" }, { name: "format-size", hex: "F027F", version: "1.5.54" }, { name: "format-strikethrough", hex: "F0280", version: "1.5.54" }, { name: "format-strikethrough-variant", hex: "F0281", version: "1.5.54" }, { name: "format-subscript", hex: "F0282", version: "1.5.54" }, { name: "format-superscript", hex: "F0283", version: "1.5.54" }, { name: "format-text", hex: "F0284", version: "1.5.54" }, { name: "format-text-rotation-angle-down", hex: "F0FBB", version: "4.0.96" }, { name: "format-text-rotation-angle-up", hex: "F0FBC", version: "4.0.96" }, { name: "format-text-rotation-down", hex: "F0D73", version: "3.4.93" }, { name: "format-text-rotation-down-vertical", hex: "F0FBD", version: "4.0.96" }, { name: "format-text-rotation-none", hex: "F0D74", version: "3.4.93" }, { name: "format-text-rotation-up", hex: "F0FBE", version: "4.0.96" }, { name: "format-text-rotation-vertical", hex: "F0FBF", version: "4.0.96" }, { name: "format-text-variant", hex: "F0E32", version: "3.6.95" }, { name: "format-text-wrapping-clip", hex: "F0D0E", version: "3.3.92" }, { name: "format-text-wrapping-overflow", hex: "F0D0F", version: "3.3.92" }, { name: "format-text-wrapping-wrap", hex: "F0D10", version: "3.3.92" }, { name: "format-textbox", hex: "F0D11", version: "3.3.92" }, { name: "format-textdirection-l-to-r", hex: "F0285", version: "1.5.54" }, { name: "format-textdirection-r-to-l", hex: "F0286", version: "1.5.54" }, { name: "format-title", hex: "F05F4", version: "1.5.54" }, { name: "format-underline", hex: "F0287", version: "1.5.54" }, { name: "format-vertical-align-bottom", hex: "F0621", version: "1.6.50" }, { name: "format-vertical-align-center", hex: "F0622", version: "1.6.50" }, { name: "format-vertical-align-top", hex: "F0623", version: "1.6.50" }, { name: "format-wrap-inline", hex: "F0288", version: "1.5.54" }, { name: "format-wrap-square", hex: "F0289", version: "1.5.54" }, { name: "format-wrap-tight", hex: "F028A", version: "1.5.54" }, { name: "format-wrap-top-bottom", hex: "F028B", version: "1.5.54" }, { name: "forum", hex: "F028C", version: "1.5.54" }, { name: "forum-outline", hex: "F0822", version: "2.1.19" }, { name: "forward", hex: "F028D", version: "1.5.54" }, { name: "forwardburger", hex: "F0D75", version: "3.4.93" }, { name: "fountain", hex: "F096B", version: "2.4.85" }, { name: "fountain-pen", hex: "F0D12", version: "3.3.92" }, { name: "fountain-pen-tip", hex: "F0D13", version: "3.3.92" }, { name: "freebsd", hex: "F08E0", version: "2.3.50" }, { name: "frequently-asked-questions", hex: "F0EB4", version: "3.7.94" }, { name: "fridge", hex: "F0290", version: "1.5.54" }, { name: "fridge-alert", hex: "F11B1", version: "4.5.95" }, { name: "fridge-alert-outline", hex: "F11B2", version: "4.5.95" }, { name: "fridge-bottom", hex: "F0292", version: "1.5.54" }, { name: "fridge-off", hex: "F11AF", version: "4.5.95" }, { name: "fridge-off-outline", hex: "F11B0", version: "4.5.95" }, { name: "fridge-outline", hex: "F028F", version: "1.5.54" }, { name: "fridge-top", hex: "F0291", version: "1.5.54" }, { name: "fruit-cherries", hex: "F1042", version: "4.1.95" }, { name: "fruit-citrus", hex: "F1043", version: "4.1.95" }, { name: "fruit-grapes", hex: "F1044", version: "4.1.95" }, { name: "fruit-grapes-outline", hex: "F1045", version: "4.1.95" }, { name: "fruit-pineapple", hex: "F1046", version: "4.1.95" }, { name: "fruit-watermelon", hex: "F1047", version: "4.1.95" }, { name: "fuel", hex: "F07CA", version: "2.0.46" }, { name: "fullscreen", hex: "F0293", version: "1.5.54" }, { name: "fullscreen-exit", hex: "F0294", version: "1.5.54" }, { name: "function", hex: "F0295", version: "1.5.54" }, { name: "function-variant", hex: "F0871", version: "2.1.99" }, { name: "furigana-horizontal", hex: "F1081", version: "4.2.95" }, { name: "furigana-vertical", hex: "F1082", version: "4.2.95" }, { name: "fuse", hex: "F0C85", version: "3.2.89" }, { name: "fuse-blade", hex: "F0C86", version: "3.2.89" }, { name: "gamepad", hex: "F0296", version: "1.5.54" }, { name: "gamepad-circle", hex: "F0E33", version: "3.6.95" }, { name: "gamepad-circle-down", hex: "F0E34", version: "3.6.95" }, { name: "gamepad-circle-left", hex: "F0E35", version: "3.6.95" }, { name: "gamepad-circle-outline", hex: "F0E36", version: "3.6.95" }, { name: "gamepad-circle-right", hex: "F0E37", version: "3.6.95" }, { name: "gamepad-circle-up", hex: "F0E38", version: "3.6.95" }, { name: "gamepad-down", hex: "F0E39", version: "3.6.95" }, { name: "gamepad-left", hex: "F0E3A", version: "3.6.95" }, { name: "gamepad-right", hex: "F0E3B", version: "3.6.95" }, { name: "gamepad-round", hex: "F0E3C", version: "3.6.95" }, { name: "gamepad-round-down", hex: "F0E3D", version: "3.6.95" }, { name: "gamepad-round-left", hex: "F0E3E", version: "3.6.95" }, { name: "gamepad-round-outline", hex: "F0E3F", version: "3.6.95" }, { name: "gamepad-round-right", hex: "F0E40", version: "3.6.95" }, { name: "gamepad-round-up", hex: "F0E41", version: "3.6.95" }, { name: "gamepad-square", hex: "F0EB5", version: "3.7.94" }, { name: "gamepad-square-outline", hex: "F0EB6", version: "3.7.94" }, { name: "gamepad-up", hex: "F0E42", version: "3.6.95" }, { name: "gamepad-variant", hex: "F0297", version: "1.5.54" }, { name: "gamepad-variant-outline", hex: "F0EB7", version: "3.7.94" }, { name: "gamma", hex: "F10EE", version: "4.3.95" }, { name: "gantry-crane", hex: "F0DD1", version: "3.5.94" }, { name: "garage", hex: "F06D9", version: "1.8.36" }, { name: "garage-alert", hex: "F0872", version: "2.1.99" }, { name: "garage-alert-variant", hex: "F12D5", version: "4.8.95" }, { name: "garage-open", hex: "F06DA", version: "1.8.36" }, { name: "garage-open-variant", hex: "F12D4", version: "4.8.95" }, { name: "garage-variant", hex: "F12D3", version: "4.8.95" }, { name: "gas-cylinder", hex: "F0647", version: "1.6.50" }, { name: "gas-station", hex: "F0298", version: "1.5.54" }, { name: "gas-station-outline", hex: "F0EB8", version: "3.7.94" }, { name: "gate", hex: "F0299", version: "1.5.54" }, { name: "gate-and", hex: "F08E1", version: "2.3.50" }, { name: "gate-arrow-right", hex: "F1169", version: "4.4.95" }, { name: "gate-nand", hex: "F08E2", version: "2.3.50" }, { name: "gate-nor", hex: "F08E3", version: "2.3.50" }, { name: "gate-not", hex: "F08E4", version: "2.3.50" }, { name: "gate-open", hex: "F116A", version: "4.4.95" }, { name: "gate-or", hex: "F08E5", version: "2.3.50" }, { name: "gate-xnor", hex: "F08E6", version: "2.3.50" }, { name: "gate-xor", hex: "F08E7", version: "2.3.50" }, { name: "gatsby", hex: "F0E43", version: "3.6.95" }, { name: "gauge", hex: "F029A", version: "1.5.54" }, { name: "gauge-empty", hex: "F0873", version: "2.1.99" }, { name: "gauge-full", hex: "F0874", version: "2.1.99" }, { name: "gauge-low", hex: "F0875", version: "2.1.99" }, { name: "gavel", hex: "F029B", version: "1.5.54" }, { name: "gender-female", hex: "F029C", version: "1.5.54" }, { name: "gender-male", hex: "F029D", version: "1.5.54" }, { name: "gender-male-female", hex: "F029E", version: "1.5.54" }, { name: "gender-male-female-variant", hex: "F113F", version: "4.4.95" }, { name: "gender-non-binary", hex: "F1140", version: "4.4.95" }, { name: "gender-transgender", hex: "F029F", version: "1.5.54" }, { name: "gentoo", hex: "F08E8", version: "2.3.50" }, { name: "gesture", hex: "F07CB", version: "2.0.46" }, { name: "gesture-double-tap", hex: "F073C", version: "1.9.32" }, { name: "gesture-pinch", hex: "F0ABD", version: "2.7.94" }, { name: "gesture-spread", hex: "F0ABE", version: "2.7.94" }, { name: "gesture-swipe", hex: "F0D76", version: "3.4.93" }, { name: "gesture-swipe-down", hex: "F073D", version: "1.9.32" }, { name: "gesture-swipe-horizontal", hex: "F0ABF", version: "2.7.94" }, { name: "gesture-swipe-left", hex: "F073E", version: "1.9.32" }, { name: "gesture-swipe-right", hex: "F073F", version: "1.9.32" }, { name: "gesture-swipe-up", hex: "F0740", version: "1.9.32" }, { name: "gesture-swipe-vertical", hex: "F0AC0", version: "2.7.94" }, { name: "gesture-tap", hex: "F0741", version: "1.9.32" }, { name: "gesture-tap-box", hex: "F12A9", version: "4.7.95" }, { name: "gesture-tap-button", hex: "F12A8", version: "4.7.95" }, { name: "gesture-tap-hold", hex: "F0D77", version: "3.4.93" }, { name: "gesture-two-double-tap", hex: "F0742", version: "1.9.32" }, { name: "gesture-two-tap", hex: "F0743", version: "1.9.32" }, { name: "ghost", hex: "F02A0", version: "1.5.54" }, { name: "ghost-off", hex: "F09F5", version: "2.5.94" }, { name: "gif", hex: "F0D78", version: "3.4.93" }, { name: "gift", hex: "F0E44", version: "3.6.95" }, { name: "gift-outline", hex: "F02A1", version: "1.5.54" }, { name: "git", hex: "F02A2", version: "1.5.54" }, { name: "github", hex: "F02A4", version: "1.5.54" }, { name: "gitlab", hex: "F0BA0", version: "3.0.39" }, { name: "glass-cocktail", hex: "F0356", version: "1.5.54" }, { name: "glass-flute", hex: "F02A5", version: "1.5.54" }, { name: "glass-mug", hex: "F02A6", version: "1.5.54" }, { name: "glass-mug-variant", hex: "F1116", version: "4.3.95" }, { name: "glass-pint-outline", hex: "F130D", version: "4.8.95" }, { name: "glass-stange", hex: "F02A7", version: "1.5.54" }, { name: "glass-tulip", hex: "F02A8", version: "1.5.54" }, { name: "glass-wine", hex: "F0876", version: "2.1.99" }, { name: "glasses", hex: "F02AA", version: "1.5.54" }, { name: "globe-light", hex: "F12D7", version: "4.8.95" }, { name: "globe-model", hex: "F08E9", version: "2.3.50" }, { name: "gmail", hex: "F02AB", version: "1.5.54" }, { name: "gnome", hex: "F02AC", version: "1.5.54" }, { name: "go-kart", hex: "F0D79", version: "3.4.93" }, { name: "go-kart-track", hex: "F0D7A", version: "3.4.93" }, { name: "gog", hex: "F0BA1", version: "3.0.39" }, { name: "gold", hex: "F124F", version: "4.6.95" }, { name: "golf", hex: "F0823", version: "2.1.19" }, { name: "golf-cart", hex: "F11A4", version: "4.5.95" }, { name: "golf-tee", hex: "F1083", version: "4.2.95" }, { name: "gondola", hex: "F0686", version: "1.7.12" }, { name: "goodreads", hex: "F0D7B", version: "3.4.93" }, { name: "google", hex: "F02AD", version: "1.5.54" }, { name: "google-ads", hex: "F0C87", version: "3.2.89" }, { name: "google-analytics", hex: "F07CC", version: "2.0.46" }, { name: "google-assistant", hex: "F07CD", version: "2.0.46" }, { name: "google-cardboard", hex: "F02AE", version: "1.5.54" }, { name: "google-chrome", hex: "F02AF", version: "1.5.54" }, { name: "google-circles", hex: "F02B0", version: "1.5.54" }, { name: "google-circles-communities", hex: "F02B1", version: "1.5.54" }, { name: "google-circles-extended", hex: "F02B2", version: "1.5.54" }, { name: "google-circles-group", hex: "F02B3", version: "1.5.54" }, { name: "google-classroom", hex: "F02C0", version: "1.5.54" }, { name: "google-cloud", hex: "F11F6", version: "4.6.95" }, { name: "google-controller", hex: "F02B4", version: "1.5.54" }, { name: "google-controller-off", hex: "F02B5", version: "1.5.54" }, { name: "google-downasaur", hex: "F1362", version: "4.9.95" }, { name: "google-drive", hex: "F02B6", version: "1.5.54" }, { name: "google-earth", hex: "F02B7", version: "1.5.54" }, { name: "google-fit", hex: "F096C", version: "2.4.85" }, { name: "google-glass", hex: "F02B8", version: "1.5.54" }, { name: "google-hangouts", hex: "F02C9", version: "1.5.54" }, { name: "google-home", hex: "F0824", version: "2.1.19" }, { name: "google-keep", hex: "F06DC", version: "1.8.36" }, { name: "google-lens", hex: "F09F6", version: "2.5.94" }, { name: "google-maps", hex: "F05F5", version: "1.5.54" }, { name: "google-my-business", hex: "F1048", version: "4.1.95" }, { name: "google-nearby", hex: "F02B9", version: "1.5.54" }, { name: "google-photos", hex: "F06DD", version: "1.8.36" }, { name: "google-play", hex: "F02BC", version: "1.5.54" }, { name: "google-plus", hex: "F02BD", version: "1.5.54" }, { name: "google-podcast", hex: "F0EB9", version: "3.7.94" }, { name: "google-spreadsheet", hex: "F09F7", version: "2.5.94" }, { name: "google-street-view", hex: "F0C88", version: "3.2.89" }, { name: "google-translate", hex: "F02BF", version: "1.5.54" }, { name: "gradient", hex: "F06A0", version: "1.7.12" }, { name: "grain", hex: "F0D7C", version: "3.4.93" }, { name: "graph", hex: "F1049", version: "4.1.95" }, { name: "graph-outline", hex: "F104A", version: "4.1.95" }, { name: "graphql", hex: "F0877", version: "2.1.99" }, { name: "grave-stone", hex: "F0BA2", version: "3.0.39" }, { name: "grease-pencil", hex: "F0648", version: "1.6.50" }, { name: "greater-than", hex: "F096D", version: "2.4.85" }, { name: "greater-than-or-equal", hex: "F096E", version: "2.4.85" }, { name: "grid", hex: "F02C1", version: "1.5.54" }, { name: "grid-large", hex: "F0758", version: "1.9.32" }, { name: "grid-off", hex: "F02C2", version: "1.5.54" }, { name: "grill", hex: "F0E45", version: "3.6.95" }, { name: "grill-outline", hex: "F118A", version: "4.4.95" }, { name: "group", hex: "F02C3", version: "1.5.54" }, { name: "guitar-acoustic", hex: "F0771", version: "1.9.32" }, { name: "guitar-electric", hex: "F02C4", version: "1.5.54" }, { name: "guitar-pick", hex: "F02C5", version: "1.5.54" }, { name: "guitar-pick-outline", hex: "F02C6", version: "1.5.54" }, { name: "guy-fawkes-mask", hex: "F0825", version: "2.1.19" }, { name: "hail", hex: "F0AC1", version: "2.7.94" }, { name: "hair-dryer", hex: "F10EF", version: "4.3.95" }, { name: "hair-dryer-outline", hex: "F10F0", version: "4.3.95" }, { name: "halloween", hex: "F0BA3", version: "3.0.39" }, { name: "hamburger", hex: "F0685", version: "1.7.12" }, { name: "hammer", hex: "F08EA", version: "2.3.50" }, { name: "hammer-screwdriver", hex: "F1322", version: "4.9.95" }, { name: "hammer-wrench", hex: "F1323", version: "4.9.95" }, { name: "hand", hex: "F0A4F", version: "2.6.95" }, { name: "hand-heart", hex: "F10F1", version: "4.3.95" }, { name: "hand-left", hex: "F0E46", version: "3.6.95" }, { name: "hand-okay", hex: "F0A50", version: "2.6.95" }, { name: "hand-peace", hex: "F0A51", version: "2.6.95" }, { name: "hand-peace-variant", hex: "F0A52", version: "2.6.95" }, { name: "hand-pointing-down", hex: "F0A53", version: "2.6.95" }, { name: "hand-pointing-left", hex: "F0A54", version: "2.6.95" }, { name: "hand-pointing-right", hex: "F02C7", version: "1.5.54" }, { name: "hand-pointing-up", hex: "F0A55", version: "2.6.95" }, { name: "hand-right", hex: "F0E47", version: "3.6.95" }, { name: "hand-saw", hex: "F0E48", version: "3.6.95" }, { name: "hand-water", hex: "F139F", version: "5.0.45" }, { name: "handball", hex: "F0F53", version: "3.9.97" }, { name: "handcuffs", hex: "F113E", version: "4.4.95" }, { name: "handshake", hex: "F1218", version: "4.6.95" }, { name: "hanger", hex: "F02C8", version: "1.5.54" }, { name: "hard-hat", hex: "F096F", version: "2.4.85" }, { name: "harddisk", hex: "F02CA", version: "1.5.54" }, { name: "harddisk-plus", hex: "F104B", version: "4.1.95" }, { name: "harddisk-remove", hex: "F104C", version: "4.1.95" }, { name: "hat-fedora", hex: "F0BA4", version: "3.0.39" }, { name: "hazard-lights", hex: "F0C89", version: "3.2.89" }, { name: "hdr", hex: "F0D7D", version: "3.4.93" }, { name: "hdr-off", hex: "F0D7E", version: "3.4.93" }, { name: "head", hex: "F135E", version: "4.9.95" }, { name: "head-alert", hex: "F1338", version: "4.9.95" }, { name: "head-alert-outline", hex: "F1339", version: "4.9.95" }, { name: "head-check", hex: "F133A", version: "4.9.95" }, { name: "head-check-outline", hex: "F133B", version: "4.9.95" }, { name: "head-cog", hex: "F133C", version: "4.9.95" }, { name: "head-cog-outline", hex: "F133D", version: "4.9.95" }, { name: "head-dots-horizontal", hex: "F133E", version: "4.9.95" }, { name: "head-dots-horizontal-outline", hex: "F133F", version: "4.9.95" }, { name: "head-flash", hex: "F1340", version: "4.9.95" }, { name: "head-flash-outline", hex: "F1341", version: "4.9.95" }, { name: "head-heart", hex: "F1342", version: "4.9.95" }, { name: "head-heart-outline", hex: "F1343", version: "4.9.95" }, { name: "head-lightbulb", hex: "F1344", version: "4.9.95" }, { name: "head-lightbulb-outline", hex: "F1345", version: "4.9.95" }, { name: "head-minus", hex: "F1346", version: "4.9.95" }, { name: "head-minus-outline", hex: "F1347", version: "4.9.95" }, { name: "head-outline", hex: "F135F", version: "4.9.95" }, { name: "head-plus", hex: "F1348", version: "4.9.95" }, { name: "head-plus-outline", hex: "F1349", version: "4.9.95" }, { name: "head-question", hex: "F134A", version: "4.9.95" }, { name: "head-question-outline", hex: "F134B", version: "4.9.95" }, { name: "head-remove", hex: "F134C", version: "4.9.95" }, { name: "head-remove-outline", hex: "F134D", version: "4.9.95" }, { name: "head-snowflake", hex: "F134E", version: "4.9.95" }, { name: "head-snowflake-outline", hex: "F134F", version: "4.9.95" }, { name: "head-sync", hex: "F1350", version: "4.9.95" }, { name: "head-sync-outline", hex: "F1351", version: "4.9.95" }, { name: "headphones", hex: "F02CB", version: "1.5.54" }, { name: "headphones-bluetooth", hex: "F0970", version: "2.4.85" }, { name: "headphones-box", hex: "F02CC", version: "1.5.54" }, { name: "headphones-off", hex: "F07CE", version: "2.0.46" }, { name: "headphones-settings", hex: "F02CD", version: "1.5.54" }, { name: "headset", hex: "F02CE", version: "1.5.54" }, { name: "headset-dock", hex: "F02CF", version: "1.5.54" }, { name: "headset-off", hex: "F02D0", version: "1.5.54" }, { name: "heart", hex: "F02D1", version: "1.5.54" }, { name: "heart-box", hex: "F02D2", version: "1.5.54" }, { name: "heart-box-outline", hex: "F02D3", version: "1.5.54" }, { name: "heart-broken", hex: "F02D4", version: "1.5.54" }, { name: "heart-broken-outline", hex: "F0D14", version: "3.3.92" }, { name: "heart-circle", hex: "F0971", version: "2.4.85" }, { name: "heart-circle-outline", hex: "F0972", version: "2.4.85" }, { name: "heart-flash", hex: "F0EF9", version: "3.8.95" }, { name: "heart-half", hex: "F06DF", version: "1.8.36" }, { name: "heart-half-full", hex: "F06DE", version: "1.8.36" }, { name: "heart-half-outline", hex: "F06E0", version: "1.8.36" }, { name: "heart-multiple", hex: "F0A56", version: "2.6.95" }, { name: "heart-multiple-outline", hex: "F0A57", version: "2.6.95" }, { name: "heart-off", hex: "F0759", version: "1.9.32" }, { name: "heart-outline", hex: "F02D5", version: "1.5.54" }, { name: "heart-pulse", hex: "F05F6", version: "1.5.54" }, { name: "helicopter", hex: "F0AC2", version: "2.7.94" }, { name: "help", hex: "F02D6", version: "1.5.54" }, { name: "help-box", hex: "F078B", version: "1.9.32" }, { name: "help-circle", hex: "F02D7", version: "1.5.54" }, { name: "help-circle-outline", hex: "F0625", version: "1.6.50" }, { name: "help-network", hex: "F06F5", version: "1.8.36" }, { name: "help-network-outline", hex: "F0C8A", version: "3.2.89" }, { name: "help-rhombus", hex: "F0BA5", version: "3.0.39" }, { name: "help-rhombus-outline", hex: "F0BA6", version: "3.0.39" }, { name: "hexadecimal", hex: "F12A7", version: "4.7.95" }, { name: "hexagon", hex: "F02D8", version: "1.5.54" }, { name: "hexagon-multiple", hex: "F06E1", version: "1.8.36" }, { name: "hexagon-multiple-outline", hex: "F10F2", version: "4.3.95" }, { name: "hexagon-outline", hex: "F02D9", version: "1.5.54" }, { name: "hexagon-slice-1", hex: "F0AC3", version: "2.7.94" }, { name: "hexagon-slice-2", hex: "F0AC4", version: "2.7.94" }, { name: "hexagon-slice-3", hex: "F0AC5", version: "2.7.94" }, { name: "hexagon-slice-4", hex: "F0AC6", version: "2.7.94" }, { name: "hexagon-slice-5", hex: "F0AC7", version: "2.7.94" }, { name: "hexagon-slice-6", hex: "F0AC8", version: "2.7.94" }, { name: "hexagram", hex: "F0AC9", version: "2.7.94" }, { name: "hexagram-outline", hex: "F0ACA", version: "2.7.94" }, { name: "high-definition", hex: "F07CF", version: "2.0.46" }, { name: "high-definition-box", hex: "F0878", version: "2.1.99" }, { name: "highway", hex: "F05F7", version: "1.5.54" }, { name: "hiking", hex: "F0D7F", version: "3.4.93" }, { name: "hinduism", hex: "F0973", version: "2.4.85" }, { name: "history", hex: "F02DA", version: "1.5.54" }, { name: "hockey-puck", hex: "F0879", version: "2.1.99" }, { name: "hockey-sticks", hex: "F087A", version: "2.1.99" }, { name: "hololens", hex: "F02DB", version: "1.5.54" }, { name: "home", hex: "F02DC", version: "1.5.54" }, { name: "home-account", hex: "F0826", version: "2.1.19" }, { name: "home-alert", hex: "F087B", version: "2.1.99" }, { name: "home-analytics", hex: "F0EBA", version: "3.7.94" }, { name: "home-assistant", hex: "F07D0", version: "2.0.46" }, { name: "home-automation", hex: "F07D1", version: "2.0.46" }, { name: "home-circle", hex: "F07D2", version: "2.0.46" }, { name: "home-circle-outline", hex: "F104D", version: "4.1.95" }, { name: "home-city", hex: "F0D15", version: "3.3.92" }, { name: "home-city-outline", hex: "F0D16", version: "3.3.92" }, { name: "home-currency-usd", hex: "F08AF", version: "2.2.43" }, { name: "home-edit", hex: "F1159", version: "4.4.95" }, { name: "home-edit-outline", hex: "F115A", version: "4.4.95" }, { name: "home-export-outline", hex: "F0F9B", version: "3.9.97" }, { name: "home-flood", hex: "F0EFA", version: "3.8.95" }, { name: "home-floor-0", hex: "F0DD2", version: "3.5.94" }, { name: "home-floor-1", hex: "F0D80", version: "3.4.93" }, { name: "home-floor-2", hex: "F0D81", version: "3.4.93" }, { name: "home-floor-3", hex: "F0D82", version: "3.4.93" }, { name: "home-floor-a", hex: "F0D83", version: "3.4.93" }, { name: "home-floor-b", hex: "F0D84", version: "3.4.93" }, { name: "home-floor-g", hex: "F0D85", version: "3.4.93" }, { name: "home-floor-l", hex: "F0D86", version: "3.4.93" }, { name: "home-floor-negative-1", hex: "F0DD3", version: "3.5.94" }, { name: "home-group", hex: "F0DD4", version: "3.5.94" }, { name: "home-heart", hex: "F0827", version: "2.1.19" }, { name: "home-import-outline", hex: "F0F9C", version: "3.9.97" }, { name: "home-lightbulb", hex: "F1251", version: "4.6.95" }, { name: "home-lightbulb-outline", hex: "F1252", version: "4.6.95" }, { name: "home-lock", hex: "F08EB", version: "2.3.50" }, { name: "home-lock-open", hex: "F08EC", version: "2.3.50" }, { name: "home-map-marker", hex: "F05F8", version: "1.5.54" }, { name: "home-minus", hex: "F0974", version: "2.4.85" }, { name: "home-modern", hex: "F02DD", version: "1.5.54" }, { name: "home-outline", hex: "F06A1", version: "1.7.12" }, { name: "home-plus", hex: "F0975", version: "2.4.85" }, { name: "home-remove", hex: "F1247", version: "4.6.95" }, { name: "home-roof", hex: "F112B", version: "4.3.95" }, { name: "home-search", hex: "F13B0", version: "5.0.45" }, { name: "home-search-outline", hex: "F13B1", version: "5.0.45" }, { name: "home-thermometer", hex: "F0F54", version: "3.9.97" }, { name: "home-thermometer-outline", hex: "F0F55", version: "3.9.97" }, { name: "home-variant", hex: "F02DE", version: "1.5.54" }, { name: "home-variant-outline", hex: "F0BA7", version: "3.0.39" }, { name: "hook", hex: "F06E2", version: "1.8.36" }, { name: "hook-off", hex: "F06E3", version: "1.8.36" }, { name: "hops", hex: "F02DF", version: "1.5.54" }, { name: "horizontal-rotate-clockwise", hex: "F10F3", version: "4.3.95" }, { name: "horizontal-rotate-counterclockwise", hex: "F10F4", version: "4.3.95" }, { name: "horseshoe", hex: "F0A58", version: "2.6.95" }, { name: "hospital", hex: "F0FF6", version: "4.0.96" }, { name: "hospital-box", hex: "F02E0", version: "1.5.54" }, { name: "hospital-box-outline", hex: "F0FF7", version: "4.0.96" }, { name: "hospital-building", hex: "F02E1", version: "1.5.54" }, { name: "hospital-marker", hex: "F02E2", version: "1.5.54" }, { name: "hot-tub", hex: "F0828", version: "2.1.19" }, { name: "hubspot", hex: "F0D17", version: "3.3.92" }, { name: "hulu", hex: "F0829", version: "2.1.19" }, { name: "human", hex: "F02E6", version: "1.5.54" }, { name: "human-baby-changing-table", hex: "F138B", version: "5.0.45" }, { name: "human-child", hex: "F02E7", version: "1.5.54" }, { name: "human-female", hex: "F0649", version: "1.6.50" }, { name: "human-female-boy", hex: "F0A59", version: "2.6.95" }, { name: "human-female-female", hex: "F0A5A", version: "2.6.95" }, { name: "human-female-girl", hex: "F0A5B", version: "2.6.95" }, { name: "human-greeting", hex: "F064A", version: "1.6.50" }, { name: "human-handsdown", hex: "F064B", version: "1.6.50" }, { name: "human-handsup", hex: "F064C", version: "1.6.50" }, { name: "human-male", hex: "F064D", version: "1.6.50" }, { name: "human-male-boy", hex: "F0A5C", version: "2.6.95" }, { name: "human-male-child", hex: "F138C", version: "5.0.45" }, { name: "human-male-female", hex: "F02E8", version: "1.5.54" }, { name: "human-male-girl", hex: "F0A5D", version: "2.6.95" }, { name: "human-male-height", hex: "F0EFB", version: "3.8.95" }, { name: "human-male-height-variant", hex: "F0EFC", version: "3.8.95" }, { name: "human-male-male", hex: "F0A5E", version: "2.6.95" }, { name: "human-pregnant", hex: "F05CF", version: "1.5.54" }, { name: "human-wheelchair", hex: "F138D", version: "5.0.45" }, { name: "humble-bundle", hex: "F0744", version: "1.9.32" }, { name: "hvac", hex: "F1352", version: "4.9.95" }, { name: "hydraulic-oil-level", hex: "F1324", version: "4.9.95" }, { name: "hydraulic-oil-temperature", hex: "F1325", version: "4.9.95" }, { name: "hydro-power", hex: "F12E5", version: "4.8.95" }, { name: "ice-cream", hex: "F082A", version: "2.1.19" }, { name: "ice-cream-off", hex: "F0E52", version: "3.6.95" }, { name: "ice-pop", hex: "F0EFD", version: "3.8.95" }, { name: "id-card", hex: "F0FC0", version: "4.0.96" }, { name: "identifier", hex: "F0EFE", version: "3.8.95" }, { name: "ideogram-cjk", hex: "F1331", version: "4.9.95" }, { name: "ideogram-cjk-variant", hex: "F1332", version: "4.9.95" }, { name: "iframe", hex: "F0C8B", version: "3.2.89" }, { name: "iframe-array", hex: "F10F5", version: "4.3.95" }, { name: "iframe-array-outline", hex: "F10F6", version: "4.3.95" }, { name: "iframe-braces", hex: "F10F7", version: "4.3.95" }, { name: "iframe-braces-outline", hex: "F10F8", version: "4.3.95" }, { name: "iframe-outline", hex: "F0C8C", version: "3.2.89" }, { name: "iframe-parentheses", hex: "F10F9", version: "4.3.95" }, { name: "iframe-parentheses-outline", hex: "F10FA", version: "4.3.95" }, { name: "iframe-variable", hex: "F10FB", version: "4.3.95" }, { name: "iframe-variable-outline", hex: "F10FC", version: "4.3.95" }, { name: "image", hex: "F02E9", version: "1.5.54" }, { name: "image-album", hex: "F02EA", version: "1.5.54" }, { name: "image-area", hex: "F02EB", version: "1.5.54" }, { name: "image-area-close", hex: "F02EC", version: "1.5.54" }, { name: "image-auto-adjust", hex: "F0FC1", version: "4.0.96" }, { name: "image-broken", hex: "F02ED", version: "1.5.54" }, { name: "image-broken-variant", hex: "F02EE", version: "1.5.54" }, { name: "image-edit", hex: "F11E3", version: "4.5.95" }, { name: "image-edit-outline", hex: "F11E4", version: "4.5.95" }, { name: "image-filter-black-white", hex: "F02F0", version: "1.5.54" }, { name: "image-filter-center-focus", hex: "F02F1", version: "1.5.54" }, { name: "image-filter-center-focus-strong", hex: "F0EFF", version: "3.8.95" }, { name: "image-filter-center-focus-strong-outline", hex: "F0F00", version: "3.8.95" }, { name: "image-filter-center-focus-weak", hex: "F02F2", version: "1.5.54" }, { name: "image-filter-drama", hex: "F02F3", version: "1.5.54" }, { name: "image-filter-frames", hex: "F02F4", version: "1.5.54" }, { name: "image-filter-hdr", hex: "F02F5", version: "1.5.54" }, { name: "image-filter-none", hex: "F02F6", version: "1.5.54" }, { name: "image-filter-tilt-shift", hex: "F02F7", version: "1.5.54" }, { name: "image-filter-vintage", hex: "F02F8", version: "1.5.54" }, { name: "image-frame", hex: "F0E49", version: "3.6.95" }, { name: "image-move", hex: "F09F8", version: "2.5.94" }, { name: "image-multiple", hex: "F02F9", version: "1.5.54" }, { name: "image-multiple-outline", hex: "F02EF", version: "1.5.54" }, { name: "image-off", hex: "F082B", version: "2.1.19" }, { name: "image-off-outline", hex: "F11D1", version: "4.5.95" }, { name: "image-outline", hex: "F0976", version: "2.4.85" }, { name: "image-plus", hex: "F087C", version: "2.1.99" }, { name: "image-search", hex: "F0977", version: "2.4.85" }, { name: "image-search-outline", hex: "F0978", version: "2.4.85" }, { name: "image-size-select-actual", hex: "F0C8D", version: "3.2.89" }, { name: "image-size-select-large", hex: "F0C8E", version: "3.2.89" }, { name: "image-size-select-small", hex: "F0C8F", version: "3.2.89" }, { name: "import", hex: "F02FA", version: "1.5.54" }, { name: "inbox", hex: "F0687", version: "1.7.12" }, { name: "inbox-arrow-down", hex: "F02FB", version: "1.5.54" }, { name: "inbox-arrow-down-outline", hex: "F1270", version: "4.7.95" }, { name: "inbox-arrow-up", hex: "F03D1", version: "1.5.54" }, { name: "inbox-arrow-up-outline", hex: "F1271", version: "4.7.95" }, { name: "inbox-full", hex: "F1272", version: "4.7.95" }, { name: "inbox-full-outline", hex: "F1273", version: "4.7.95" }, { name: "inbox-multiple", hex: "F08B0", version: "2.2.43" }, { name: "inbox-multiple-outline", hex: "F0BA8", version: "3.0.39" }, { name: "inbox-outline", hex: "F1274", version: "4.7.95" }, { name: "incognito", hex: "F05F9", version: "1.5.54" }, { name: "incognito-off", hex: "F0075", version: "1.5.54" }, { name: "infinity", hex: "F06E4", version: "1.8.36" }, { name: "information", hex: "F02FC", version: "1.5.54" }, { name: "information-outline", hex: "F02FD", version: "1.5.54" }, { name: "information-variant", hex: "F064E", version: "1.6.50" }, { name: "instagram", hex: "F02FE", version: "1.5.54" }, { name: "instrument-triangle", hex: "F104E", version: "4.1.95" }, { name: "invert-colors", hex: "F0301", version: "1.5.54" }, { name: "invert-colors-off", hex: "F0E4A", version: "3.6.95" }, { name: "iobroker", hex: "F12E8", version: "4.8.95" }, { name: "ip", hex: "F0A5F", version: "2.6.95" }, { name: "ip-network", hex: "F0A60", version: "2.6.95" }, { name: "ip-network-outline", hex: "F0C90", version: "3.2.89" }, { name: "ipod", hex: "F0C91", version: "3.2.89" }, { name: "islam", hex: "F0979", version: "2.4.85" }, { name: "island", hex: "F104F", version: "4.1.95" }, { name: "iv-bag", hex: "F10B9", version: "4.2.95" }, { name: "jabber", hex: "F0DD5", version: "3.5.94" }, { name: "jeepney", hex: "F0302", version: "1.5.54" }, { name: "jellyfish", hex: "F0F01", version: "3.8.95" }, { name: "jellyfish-outline", hex: "F0F02", version: "3.8.95" }, { name: "jira", hex: "F0303", version: "1.5.54" }, { name: "jquery", hex: "F087D", version: "2.1.99" }, { name: "jsfiddle", hex: "F0304", version: "1.5.54" }, { name: "judaism", hex: "F097A", version: "2.4.85" }, { name: "jump-rope", hex: "F12FF", version: "4.8.95" }, { name: "kabaddi", hex: "F0D87", version: "3.4.93" }, { name: "karate", hex: "F082C", version: "2.1.19" }, { name: "keg", hex: "F0305", version: "1.5.54" }, { name: "kettle", hex: "F05FA", version: "1.5.54" }, { name: "kettle-alert", hex: "F1317", version: "4.8.95" }, { name: "kettle-alert-outline", hex: "F1318", version: "4.8.95" }, { name: "kettle-off", hex: "F131B", version: "4.8.95" }, { name: "kettle-off-outline", hex: "F131C", version: "4.8.95" }, { name: "kettle-outline", hex: "F0F56", version: "3.9.97" }, { name: "kettle-steam", hex: "F1319", version: "4.8.95" }, { name: "kettle-steam-outline", hex: "F131A", version: "4.8.95" }, { name: "kettlebell", hex: "F1300", version: "4.8.95" }, { name: "key", hex: "F0306", version: "1.5.54" }, { name: "key-arrow-right", hex: "F1312", version: "4.8.95" }, { name: "key-change", hex: "F0307", version: "1.5.54" }, { name: "key-link", hex: "F119F", version: "4.4.95" }, { name: "key-minus", hex: "F0308", version: "1.5.54" }, { name: "key-outline", hex: "F0DD6", version: "3.5.94" }, { name: "key-plus", hex: "F0309", version: "1.5.54" }, { name: "key-remove", hex: "F030A", version: "1.5.54" }, { name: "key-star", hex: "F119E", version: "4.4.95" }, { name: "key-variant", hex: "F030B", version: "1.5.54" }, { name: "key-wireless", hex: "F0FC2", version: "4.0.96" }, { name: "keyboard", hex: "F030C", version: "1.5.54" }, { name: "keyboard-backspace", hex: "F030D", version: "1.5.54" }, { name: "keyboard-caps", hex: "F030E", version: "1.5.54" }, { name: "keyboard-close", hex: "F030F", version: "1.5.54" }, { name: "keyboard-esc", hex: "F12B7", version: "4.7.95" }, { name: "keyboard-f1", hex: "F12AB", version: "4.7.95" }, { name: "keyboard-f10", hex: "F12B4", version: "4.7.95" }, { name: "keyboard-f11", hex: "F12B5", version: "4.7.95" }, { name: "keyboard-f12", hex: "F12B6", version: "4.7.95" }, { name: "keyboard-f2", hex: "F12AC", version: "4.7.95" }, { name: "keyboard-f3", hex: "F12AD", version: "4.7.95" }, { name: "keyboard-f4", hex: "F12AE", version: "4.7.95" }, { name: "keyboard-f5", hex: "F12AF", version: "4.7.95" }, { name: "keyboard-f6", hex: "F12B0", version: "4.7.95" }, { name: "keyboard-f7", hex: "F12B1", version: "4.7.95" }, { name: "keyboard-f8", hex: "F12B2", version: "4.7.95" }, { name: "keyboard-f9", hex: "F12B3", version: "4.7.95" }, { name: "keyboard-off", hex: "F0310", version: "1.5.54" }, { name: "keyboard-off-outline", hex: "F0E4B", version: "3.6.95" }, { name: "keyboard-outline", hex: "F097B", version: "2.4.85" }, { name: "keyboard-return", hex: "F0311", version: "1.5.54" }, { name: "keyboard-settings", hex: "F09F9", version: "2.5.94" }, { name: "keyboard-settings-outline", hex: "F09FA", version: "2.5.94" }, { name: "keyboard-space", hex: "F1050", version: "4.1.95" }, { name: "keyboard-tab", hex: "F0312", version: "1.5.54" }, { name: "keyboard-variant", hex: "F0313", version: "1.5.54" }, { name: "khanda", hex: "F10FD", version: "4.3.95" }, { name: "kickstarter", hex: "F0745", version: "1.9.32" }, { name: "klingon", hex: "F135B", version: "4.9.95" }, { name: "knife", hex: "F09FB", version: "2.5.94" }, { name: "knife-military", hex: "F09FC", version: "2.5.94" }, { name: "kodi", hex: "F0314", version: "1.5.54" }, { name: "kubernetes", hex: "F10FE", version: "4.3.95" }, { name: "label", hex: "F0315", version: "1.5.54" }, { name: "label-multiple", hex: "F1375", version: "4.9.95" }, { name: "label-multiple-outline", hex: "F1376", version: "4.9.95" }, { name: "label-off", hex: "F0ACB", version: "2.7.94" }, { name: "label-off-outline", hex: "F0ACC", version: "2.7.94" }, { name: "label-outline", hex: "F0316", version: "1.5.54" }, { name: "label-percent", hex: "F12EA", version: "4.8.95" }, { name: "label-percent-outline", hex: "F12EB", version: "4.8.95" }, { name: "label-variant", hex: "F0ACD", version: "2.7.94" }, { name: "label-variant-outline", hex: "F0ACE", version: "2.7.94" }, { name: "ladybug", hex: "F082D", version: "2.1.19" }, { name: "lambda", hex: "F0627", version: "1.6.50" }, { name: "lamp", hex: "F06B5", version: "1.7.22" }, { name: "lan", hex: "F0317", version: "1.5.54" }, { name: "lan-check", hex: "F12AA", version: "4.7.95" }, { name: "lan-connect", hex: "F0318", version: "1.5.54" }, { name: "lan-disconnect", hex: "F0319", version: "1.5.54" }, { name: "lan-pending", hex: "F031A", version: "1.5.54" }, { name: "language-c", hex: "F0671", version: "1.6.50" }, { name: "language-cpp", hex: "F0672", version: "1.6.50" }, { name: "language-csharp", hex: "F031B", version: "1.5.54" }, { name: "language-css3", hex: "F031C", version: "1.5.54" }, { name: "language-fortran", hex: "F121A", version: "4.6.95" }, { name: "language-go", hex: "F07D3", version: "2.0.46" }, { name: "language-haskell", hex: "F0C92", version: "3.2.89" }, { name: "language-html5", hex: "F031D", version: "1.5.54" }, { name: "language-java", hex: "F0B37", version: "2.8.94" }, { name: "language-javascript", hex: "F031E", version: "1.5.54" }, { name: "language-kotlin", hex: "F1219", version: "4.6.95" }, { name: "language-lua", hex: "F08B1", version: "2.2.43" }, { name: "language-markdown", hex: "F0354", version: "1.5.54" }, { name: "language-markdown-outline", hex: "F0F5B", version: "3.9.97" }, { name: "language-php", hex: "F031F", version: "1.5.54" }, { name: "language-python", hex: "F0320", version: "1.5.54" }, { name: "language-r", hex: "F07D4", version: "2.0.46" }, { name: "language-ruby", hex: "F0D2D", version: "3.3.92" }, { name: "language-ruby-on-rails", hex: "F0ACF", version: "2.7.94" }, { name: "language-swift", hex: "F06E5", version: "1.8.36" }, { name: "language-typescript", hex: "F06E6", version: "1.8.36" }, { name: "language-xaml", hex: "F0673", version: "1.6.50" }, { name: "laptop", hex: "F0322", version: "1.5.54" }, { name: "laptop-chromebook", hex: "F0323", version: "1.5.54" }, { name: "laptop-mac", hex: "F0324", version: "1.5.54" }, { name: "laptop-off", hex: "F06E7", version: "1.8.36" }, { name: "laptop-windows", hex: "F0325", version: "1.5.54" }, { name: "laravel", hex: "F0AD0", version: "2.7.94" }, { name: "lasso", hex: "F0F03", version: "3.8.95" }, { name: "lastpass", hex: "F0446", version: "1.5.54" }, { name: "latitude", hex: "F0F57", version: "3.9.97" }, { name: "launch", hex: "F0327", version: "1.5.54" }, { name: "lava-lamp", hex: "F07D5", version: "2.0.46" }, { name: "layers", hex: "F0328", version: "1.5.54" }, { name: "layers-minus", hex: "F0E4C", version: "3.6.95" }, { name: "layers-off", hex: "F0329", version: "1.5.54" }, { name: "layers-off-outline", hex: "F09FD", version: "2.5.94" }, { name: "layers-outline", hex: "F09FE", version: "2.5.94" }, { name: "layers-plus", hex: "F0E4D", version: "3.6.95" }, { name: "layers-remove", hex: "F0E4E", version: "3.6.95" }, { name: "layers-search", hex: "F1206", version: "4.6.95" }, { name: "layers-search-outline", hex: "F1207", version: "4.6.95" }, { name: "layers-triple", hex: "F0F58", version: "3.9.97" }, { name: "layers-triple-outline", hex: "F0F59", version: "3.9.97" }, { name: "lead-pencil", hex: "F064F", version: "1.6.50" }, { name: "leaf", hex: "F032A", version: "1.5.54" }, { name: "leaf-maple", hex: "F0C93", version: "3.2.89" }, { name: "leaf-maple-off", hex: "F12DA", version: "4.8.95" }, { name: "leaf-off", hex: "F12D9", version: "4.8.95" }, { name: "leak", hex: "F0DD7", version: "3.5.94" }, { name: "leak-off", hex: "F0DD8", version: "3.5.94" }, { name: "led-off", hex: "F032B", version: "1.5.54" }, { name: "led-on", hex: "F032C", version: "1.5.54" }, { name: "led-outline", hex: "F032D", version: "1.5.54" }, { name: "led-strip", hex: "F07D6", version: "2.0.46" }, { name: "led-strip-variant", hex: "F1051", version: "4.1.95" }, { name: "led-variant-off", hex: "F032E", version: "1.5.54" }, { name: "led-variant-on", hex: "F032F", version: "1.5.54" }, { name: "led-variant-outline", hex: "F0330", version: "1.5.54" }, { name: "leek", hex: "F117D", version: "4.4.95" }, { name: "less-than", hex: "F097C", version: "2.4.85" }, { name: "less-than-or-equal", hex: "F097D", version: "2.4.85" }, { name: "library", hex: "F0331", version: "1.5.54" }, { name: "library-shelves", hex: "F0BA9", version: "3.0.39" }, { name: "license", hex: "F0FC3", version: "4.0.96" }, { name: "lifebuoy", hex: "F087E", version: "2.1.99" }, { name: "light-switch", hex: "F097E", version: "2.4.85" }, { name: "lightbulb", hex: "F0335", version: "1.5.54" }, { name: "lightbulb-cfl", hex: "F1208", version: "4.6.95" }, { name: "lightbulb-cfl-off", hex: "F1209", version: "4.6.95" }, { name: "lightbulb-cfl-spiral", hex: "F1275", version: "4.7.95" }, { name: "lightbulb-cfl-spiral-off", hex: "F12C3", version: "4.8.95" }, { name: "lightbulb-group", hex: "F1253", version: "4.6.95" }, { name: "lightbulb-group-off", hex: "F12CD", version: "4.8.95" }, { name: "lightbulb-group-off-outline", hex: "F12CE", version: "4.8.95" }, { name: "lightbulb-group-outline", hex: "F1254", version: "4.6.95" }, { name: "lightbulb-multiple", hex: "F1255", version: "4.6.95" }, { name: "lightbulb-multiple-off", hex: "F12CF", version: "4.8.95" }, { name: "lightbulb-multiple-off-outline", hex: "F12D0", version: "4.8.95" }, { name: "lightbulb-multiple-outline", hex: "F1256", version: "4.6.95" }, { name: "lightbulb-off", hex: "F0E4F", version: "3.6.95" }, { name: "lightbulb-off-outline", hex: "F0E50", version: "3.6.95" }, { name: "lightbulb-on", hex: "F06E8", version: "1.8.36" }, { name: "lightbulb-on-outline", hex: "F06E9", version: "1.8.36" }, { name: "lightbulb-outline", hex: "F0336", version: "1.5.54" }, { name: "lighthouse", hex: "F09FF", version: "2.5.94" }, { name: "lighthouse-on", hex: "F0A00", version: "2.5.94" }, { name: "link", hex: "F0337", version: "1.5.54" }, { name: "link-box", hex: "F0D1A", version: "3.3.92" }, { name: "link-box-outline", hex: "F0D1B", version: "3.3.92" }, { name: "link-box-variant", hex: "F0D1C", version: "3.3.92" }, { name: "link-box-variant-outline", hex: "F0D1D", version: "3.3.92" }, { name: "link-lock", hex: "F10BA", version: "4.2.95" }, { name: "link-off", hex: "F0338", version: "1.5.54" }, { name: "link-plus", hex: "F0C94", version: "3.2.89" }, { name: "link-variant", hex: "F0339", version: "1.5.54" }, { name: "link-variant-minus", hex: "F10FF", version: "4.3.95" }, { name: "link-variant-off", hex: "F033A", version: "1.5.54" }, { name: "link-variant-plus", hex: "F1100", version: "4.3.95" }, { name: "link-variant-remove", hex: "F1101", version: "4.3.95" }, { name: "linkedin", hex: "F033B", version: "1.5.54" }, { name: "linux", hex: "F033D", version: "1.5.54" }, { name: "linux-mint", hex: "F08ED", version: "2.3.50" }, { name: "lipstick", hex: "F13B5", version: "5.0.45" }, { name: "litecoin", hex: "F0A61", version: "2.6.95" }, { name: "loading", hex: "F0772", version: "1.9.32" }, { name: "location-enter", hex: "F0FC4", version: "4.0.96" }, { name: "location-exit", hex: "F0FC5", version: "4.0.96" }, { name: "lock", hex: "F033E", version: "1.5.54" }, { name: "lock-alert", hex: "F08EE", version: "2.3.50" }, { name: "lock-check", hex: "F139A", version: "5.0.45" }, { name: "lock-clock", hex: "F097F", version: "2.4.85" }, { name: "lock-open", hex: "F033F", version: "1.5.54" }, { name: "lock-open-alert", hex: "F139B", version: "5.0.45" }, { name: "lock-open-check", hex: "F139C", version: "5.0.45" }, { name: "lock-open-outline", hex: "F0340", version: "1.5.54" }, { name: "lock-open-variant", hex: "F0FC6", version: "4.0.96" }, { name: "lock-open-variant-outline", hex: "F0FC7", version: "4.0.96" }, { name: "lock-outline", hex: "F0341", version: "1.5.54" }, { name: "lock-pattern", hex: "F06EA", version: "1.8.36" }, { name: "lock-plus", hex: "F05FB", version: "1.5.54" }, { name: "lock-question", hex: "F08EF", version: "2.3.50" }, { name: "lock-reset", hex: "F0773", version: "1.9.32" }, { name: "lock-smart", hex: "F08B2", version: "2.2.43" }, { name: "locker", hex: "F07D7", version: "2.0.46" }, { name: "locker-multiple", hex: "F07D8", version: "2.0.46" }, { name: "login", hex: "F0342", version: "1.5.54" }, { name: "login-variant", hex: "F05FC", version: "1.5.54" }, { name: "logout", hex: "F0343", version: "1.5.54" }, { name: "logout-variant", hex: "F05FD", version: "1.5.54" }, { name: "longitude", hex: "F0F5A", version: "3.9.97" }, { name: "looks", hex: "F0344", version: "1.5.54" }, { name: "loupe", hex: "F0345", version: "1.5.54" }, { name: "lumx", hex: "F0346", version: "1.5.54" }, { name: "lungs", hex: "F1084", version: "4.2.95" }, { name: "magnet", hex: "F0347", version: "1.5.54" }, { name: "magnet-on", hex: "F0348", version: "1.5.54" }, { name: "magnify", hex: "F0349", version: "1.5.54" }, { name: "magnify-close", hex: "F0980", version: "2.4.85" }, { name: "magnify-minus", hex: "F034A", version: "1.5.54" }, { name: "magnify-minus-cursor", hex: "F0A62", version: "2.6.95" }, { name: "magnify-minus-outline", hex: "F06EC", version: "1.8.36" }, { name: "magnify-plus", hex: "F034B", version: "1.5.54" }, { name: "magnify-plus-cursor", hex: "F0A63", version: "2.6.95" }, { name: "magnify-plus-outline", hex: "F06ED", version: "1.8.36" }, { name: "magnify-remove-cursor", hex: "F120C", version: "4.6.95" }, { name: "magnify-remove-outline", hex: "F120D", version: "4.6.95" }, { name: "magnify-scan", hex: "F1276", version: "4.7.95" }, { name: "mail", hex: "F0EBB", version: "3.7.94" }, { name: "mailbox", hex: "F06EE", version: "1.8.36" }, { name: "mailbox-open", hex: "F0D88", version: "3.4.93" }, { name: "mailbox-open-outline", hex: "F0D89", version: "3.4.93" }, { name: "mailbox-open-up", hex: "F0D8A", version: "3.4.93" }, { name: "mailbox-open-up-outline", hex: "F0D8B", version: "3.4.93" }, { name: "mailbox-outline", hex: "F0D8C", version: "3.4.93" }, { name: "mailbox-up", hex: "F0D8D", version: "3.4.93" }, { name: "mailbox-up-outline", hex: "F0D8E", version: "3.4.93" }, { name: "map", hex: "F034D", version: "1.5.54" }, { name: "map-check", hex: "F0EBC", version: "3.7.94" }, { name: "map-check-outline", hex: "F0EBD", version: "3.7.94" }, { name: "map-clock", hex: "F0D1E", version: "3.3.92" }, { name: "map-clock-outline", hex: "F0D1F", version: "3.3.92" }, { name: "map-legend", hex: "F0A01", version: "2.5.94" }, { name: "map-marker", hex: "F034E", version: "1.5.54" }, { name: "map-marker-alert", hex: "F0F05", version: "3.8.95" }, { name: "map-marker-alert-outline", hex: "F0F06", version: "3.8.95" }, { name: "map-marker-check", hex: "F0C95", version: "3.2.89" }, { name: "map-marker-check-outline", hex: "F12FB", version: "4.8.95" }, { name: "map-marker-circle", hex: "F034F", version: "1.5.54" }, { name: "map-marker-distance", hex: "F08F0", version: "2.3.50" }, { name: "map-marker-down", hex: "F1102", version: "4.3.95" }, { name: "map-marker-left", hex: "F12DB", version: "4.8.95" }, { name: "map-marker-left-outline", hex: "F12DD", version: "4.8.95" }, { name: "map-marker-minus", hex: "F0650", version: "1.6.50" }, { name: "map-marker-minus-outline", hex: "F12F9", version: "4.8.95" }, { name: "map-marker-multiple", hex: "F0350", version: "1.5.54" }, { name: "map-marker-multiple-outline", hex: "F1277", version: "4.7.95" }, { name: "map-marker-off", hex: "F0351", version: "1.5.54" }, { name: "map-marker-off-outline", hex: "F12FD", version: "4.8.95" }, { name: "map-marker-outline", hex: "F07D9", version: "2.0.46" }, { name: "map-marker-path", hex: "F0D20", version: "3.3.92" }, { name: "map-marker-plus", hex: "F0651", version: "1.6.50" }, { name: "map-marker-plus-outline", hex: "F12F8", version: "4.8.95" }, { name: "map-marker-question", hex: "F0F07", version: "3.8.95" }, { name: "map-marker-question-outline", hex: "F0F08", version: "3.8.95" }, { name: "map-marker-radius", hex: "F0352", version: "1.5.54" }, { name: "map-marker-radius-outline", hex: "F12FC", version: "4.8.95" }, { name: "map-marker-remove", hex: "F0F09", version: "3.8.95" }, { name: "map-marker-remove-outline", hex: "F12FA", version: "4.8.95" }, { name: "map-marker-remove-variant", hex: "F0F0A", version: "3.8.95" }, { name: "map-marker-right", hex: "F12DC", version: "4.8.95" }, { name: "map-marker-right-outline", hex: "F12DE", version: "4.8.95" }, { name: "map-marker-up", hex: "F1103", version: "4.3.95" }, { name: "map-minus", hex: "F0981", version: "2.4.85" }, { name: "map-outline", hex: "F0982", version: "2.4.85" }, { name: "map-plus", hex: "F0983", version: "2.4.85" }, { name: "map-search", hex: "F0984", version: "2.4.85" }, { name: "map-search-outline", hex: "F0985", version: "2.4.85" }, { name: "mapbox", hex: "F0BAA", version: "3.0.39" }, { name: "margin", hex: "F0353", version: "1.5.54" }, { name: "marker", hex: "F0652", version: "1.6.50" }, { name: "marker-cancel", hex: "F0DD9", version: "3.5.94" }, { name: "marker-check", hex: "F0355", version: "1.5.54" }, { name: "mastodon", hex: "F0AD1", version: "2.7.94" }, { name: "material-design", hex: "F0986", version: "2.4.85" }, { name: "material-ui", hex: "F0357", version: "1.5.54" }, { name: "math-compass", hex: "F0358", version: "1.5.54" }, { name: "math-cos", hex: "F0C96", version: "3.2.89" }, { name: "math-integral", hex: "F0FC8", version: "4.0.96" }, { name: "math-integral-box", hex: "F0FC9", version: "4.0.96" }, { name: "math-log", hex: "F1085", version: "4.2.95" }, { name: "math-norm", hex: "F0FCA", version: "4.0.96" }, { name: "math-norm-box", hex: "F0FCB", version: "4.0.96" }, { name: "math-sin", hex: "F0C97", version: "3.2.89" }, { name: "math-tan", hex: "F0C98", version: "3.2.89" }, { name: "matrix", hex: "F0628", version: "1.6.50" }, { name: "medal", hex: "F0987", version: "2.4.85" }, { name: "medal-outline", hex: "F1326", version: "4.9.95" }, { name: "medical-bag", hex: "F06EF", version: "1.8.36" }, { name: "meditation", hex: "F117B", version: "4.4.95" }, { name: "memory", hex: "F035B", version: "1.5.54" }, { name: "menu", hex: "F035C", version: "1.5.54" }, { name: "menu-down", hex: "F035D", version: "1.5.54" }, { name: "menu-down-outline", hex: "F06B6", version: "1.7.22" }, { name: "menu-left", hex: "F035E", version: "1.5.54" }, { name: "menu-left-outline", hex: "F0A02", version: "2.5.94" }, { name: "menu-open", hex: "F0BAB", version: "3.0.39" }, { name: "menu-right", hex: "F035F", version: "1.5.54" }, { name: "menu-right-outline", hex: "F0A03", version: "2.5.94" }, { name: "menu-swap", hex: "F0A64", version: "2.6.95" }, { name: "menu-swap-outline", hex: "F0A65", version: "2.6.95" }, { name: "menu-up", hex: "F0360", version: "1.5.54" }, { name: "menu-up-outline", hex: "F06B7", version: "1.7.22" }, { name: "merge", hex: "F0F5C", version: "3.9.97" }, { name: "message", hex: "F0361", version: "1.5.54" }, { name: "message-alert", hex: "F0362", version: "1.5.54" }, { name: "message-alert-outline", hex: "F0A04", version: "2.5.94" }, { name: "message-arrow-left", hex: "F12F2", version: "4.8.95" }, { name: "message-arrow-left-outline", hex: "F12F3", version: "4.8.95" }, { name: "message-arrow-right", hex: "F12F4", version: "4.8.95" }, { name: "message-arrow-right-outline", hex: "F12F5", version: "4.8.95" }, { name: "message-bulleted", hex: "F06A2", version: "1.7.12" }, { name: "message-bulleted-off", hex: "F06A3", version: "1.7.12" }, { name: "message-cog", hex: "F06F1", version: "1.8.36" }, { name: "message-cog-outline", hex: "F1172", version: "4.4.95" }, { name: "message-draw", hex: "F0363", version: "1.5.54" }, { name: "message-image", hex: "F0364", version: "1.5.54" }, { name: "message-image-outline", hex: "F116C", version: "4.4.95" }, { name: "message-lock", hex: "F0FCC", version: "4.0.96" }, { name: "message-lock-outline", hex: "F116D", version: "4.4.95" }, { name: "message-minus", hex: "F116E", version: "4.4.95" }, { name: "message-minus-outline", hex: "F116F", version: "4.4.95" }, { name: "message-outline", hex: "F0365", version: "1.5.54" }, { name: "message-plus", hex: "F0653", version: "1.6.50" }, { name: "message-plus-outline", hex: "F10BB", version: "4.2.95" }, { name: "message-processing", hex: "F0366", version: "1.5.54" }, { name: "message-processing-outline", hex: "F1170", version: "4.4.95" }, { name: "message-reply", hex: "F0367", version: "1.5.54" }, { name: "message-reply-text", hex: "F0368", version: "1.5.54" }, { name: "message-settings", hex: "F06F0", version: "1.8.36" }, { name: "message-settings-outline", hex: "F1171", version: "4.4.95" }, { name: "message-text", hex: "F0369", version: "1.5.54" }, { name: "message-text-clock", hex: "F1173", version: "4.4.95" }, { name: "message-text-clock-outline", hex: "F1174", version: "4.4.95" }, { name: "message-text-lock", hex: "F0FCD", version: "4.0.96" }, { name: "message-text-lock-outline", hex: "F1175", version: "4.4.95" }, { name: "message-text-outline", hex: "F036A", version: "1.5.54" }, { name: "message-video", hex: "F036B", version: "1.5.54" }, { name: "meteor", hex: "F0629", version: "1.6.50" }, { name: "metronome", hex: "F07DA", version: "2.0.46" }, { name: "metronome-tick", hex: "F07DB", version: "2.0.46" }, { name: "micro-sd", hex: "F07DC", version: "2.0.46" }, { name: "microphone", hex: "F036C", version: "1.5.54" }, { name: "microphone-minus", hex: "F08B3", version: "2.2.43" }, { name: "microphone-off", hex: "F036D", version: "1.5.54" }, { name: "microphone-outline", hex: "F036E", version: "1.5.54" }, { name: "microphone-plus", hex: "F08B4", version: "2.2.43" }, { name: "microphone-settings", hex: "F036F", version: "1.5.54" }, { name: "microphone-variant", hex: "F0370", version: "1.5.54" }, { name: "microphone-variant-off", hex: "F0371", version: "1.5.54" }, { name: "microscope", hex: "F0654", version: "1.6.50" }, { name: "microsoft", hex: "F0372", version: "1.5.54" }, { name: "microsoft-access", hex: "F138E", version: "5.0.45" }, { name: "microsoft-azure", hex: "F0805", version: "2.1.19" }, { name: "microsoft-azure-devops", hex: "F0FD5", version: "4.2.95" }, { name: "microsoft-bing", hex: "F00A4", version: "1.5.54" }, { name: "microsoft-dynamics-365", hex: "F0988", version: "2.4.85" }, { name: "microsoft-edge", hex: "F01E9", version: "1.5.54" }, { name: "microsoft-edge-legacy", hex: "F1250", version: "4.6.95" }, { name: "microsoft-excel", hex: "F138F", version: "5.0.45" }, { name: "microsoft-internet-explorer", hex: "F0300", version: "1.5.54" }, { name: "microsoft-office", hex: "F03C6", version: "1.5.54" }, { name: "microsoft-onedrive", hex: "F03CA", version: "1.5.54" }, { name: "microsoft-onenote", hex: "F0747", version: "1.9.32" }, { name: "microsoft-outlook", hex: "F0D22", version: "3.3.92" }, { name: "microsoft-powerpoint", hex: "F1390", version: "5.0.45" }, { name: "microsoft-sharepoint", hex: "F1391", version: "5.0.45" }, { name: "microsoft-teams", hex: "F02BB", version: "1.5.54" }, { name: "microsoft-visual-studio", hex: "F0610", version: "1.5.54" }, { name: "microsoft-visual-studio-code", hex: "F0A1E", version: "2.5.94" }, { name: "microsoft-windows", hex: "F05B3", version: "1.5.54" }, { name: "microsoft-windows-classic", hex: "F0A21", version: "2.5.94" }, { name: "microsoft-word", hex: "F1392", version: "5.0.45" }, { name: "microsoft-xbox", hex: "F05B9", version: "1.5.54" }, { name: "microsoft-xbox-controller", hex: "F05BA", version: "1.5.54" }, { name: "microsoft-xbox-controller-battery-alert", hex: "F074B", version: "1.9.32" }, { name: "microsoft-xbox-controller-battery-charging", hex: "F0A22", version: "2.5.94" }, { name: "microsoft-xbox-controller-battery-empty", hex: "F074C", version: "1.9.32" }, { name: "microsoft-xbox-controller-battery-full", hex: "F074D", version: "1.9.32" }, { name: "microsoft-xbox-controller-battery-low", hex: "F074E", version: "1.9.32" }, { name: "microsoft-xbox-controller-battery-medium", hex: "F074F", version: "1.9.32" }, { name: "microsoft-xbox-controller-battery-unknown", hex: "F0750", version: "1.9.32" }, { name: "microsoft-xbox-controller-menu", hex: "F0E6F", version: "3.6.95" }, { name: "microsoft-xbox-controller-off", hex: "F05BB", version: "1.5.54" }, { name: "microsoft-xbox-controller-view", hex: "F0E70", version: "3.6.95" }, { name: "microsoft-yammer", hex: "F0789", version: "1.9.32" }, { name: "microwave", hex: "F0C99", version: "3.2.89" }, { name: "middleware", hex: "F0F5D", version: "3.9.97" }, { name: "middleware-outline", hex: "F0F5E", version: "3.9.97" }, { name: "midi", hex: "F08F1", version: "2.3.50" }, { name: "midi-port", hex: "F08F2", version: "2.3.50" }, { name: "mine", hex: "F0DDA", version: "3.5.94" }, { name: "minecraft", hex: "F0373", version: "1.5.54" }, { name: "mini-sd", hex: "F0A05", version: "2.5.94" }, { name: "minidisc", hex: "F0A06", version: "2.5.94" }, { name: "minus", hex: "F0374", version: "1.5.54" }, { name: "minus-box", hex: "F0375", version: "1.5.54" }, { name: "minus-box-multiple", hex: "F1141", version: "4.4.95" }, { name: "minus-box-multiple-outline", hex: "F1142", version: "4.4.95" }, { name: "minus-box-outline", hex: "F06F2", version: "1.8.36" }, { name: "minus-circle", hex: "F0376", version: "1.5.54" }, { name: "minus-circle-multiple", hex: "F035A", version: "1.5.54" }, { name: "minus-circle-multiple-outline", hex: "F0AD3", version: "2.7.94" }, { name: "minus-circle-outline", hex: "F0377", version: "1.5.54" }, { name: "minus-network", hex: "F0378", version: "1.5.54" }, { name: "minus-network-outline", hex: "F0C9A", version: "3.2.89" }, { name: "mirror", hex: "F11FD", version: "4.6.95" }, { name: "mixed-martial-arts", hex: "F0D8F", version: "3.4.93" }, { name: "mixed-reality", hex: "F087F", version: "2.1.99" }, { name: "mixer", hex: "F07DD", version: "2.0.46" }, { name: "molecule", hex: "F0BAC", version: "3.0.39" }, { name: "molecule-co", hex: "F12FE", version: "4.8.95" }, { name: "molecule-co2", hex: "F07E4", version: "2.0.46" }, { name: "monitor", hex: "F0379", version: "1.5.54" }, { name: "monitor-cellphone", hex: "F0989", version: "2.4.85" }, { name: "monitor-cellphone-star", hex: "F098A", version: "2.4.85" }, { name: "monitor-clean", hex: "F1104", version: "4.3.95" }, { name: "monitor-dashboard", hex: "F0A07", version: "2.5.94" }, { name: "monitor-edit", hex: "F12C6", version: "4.8.95" }, { name: "monitor-eye", hex: "F13B4", version: "5.0.45" }, { name: "monitor-lock", hex: "F0DDB", version: "3.5.94" }, { name: "monitor-multiple", hex: "F037A", version: "1.5.54" }, { name: "monitor-off", hex: "F0D90", version: "3.4.93" }, { name: "monitor-screenshot", hex: "F0E51", version: "3.6.95" }, { name: "monitor-speaker", hex: "F0F5F", version: "3.9.97" }, { name: "monitor-speaker-off", hex: "F0F60", version: "3.9.97" }, { name: "monitor-star", hex: "F0DDC", version: "3.5.94" }, { name: "moon-first-quarter", hex: "F0F61", version: "3.9.97" }, { name: "moon-full", hex: "F0F62", version: "3.9.97" }, { name: "moon-last-quarter", hex: "F0F63", version: "3.9.97" }, { name: "moon-new", hex: "F0F64", version: "3.9.97" }, { name: "moon-waning-crescent", hex: "F0F65", version: "3.9.97" }, { name: "moon-waning-gibbous", hex: "F0F66", version: "3.9.97" }, { name: "moon-waxing-crescent", hex: "F0F67", version: "3.9.97" }, { name: "moon-waxing-gibbous", hex: "F0F68", version: "3.9.97" }, { name: "moped", hex: "F1086", version: "4.2.95" }, { name: "more", hex: "F037B", version: "1.5.54" }, { name: "mother-heart", hex: "F1314", version: "4.8.95" }, { name: "mother-nurse", hex: "F0D21", version: "3.3.92" }, { name: "motion-sensor", hex: "F0D91", version: "3.4.93" }, { name: "motorbike", hex: "F037C", version: "1.5.54" }, { name: "mouse", hex: "F037D", version: "1.5.54" }, { name: "mouse-bluetooth", hex: "F098B", version: "2.4.85" }, { name: "mouse-off", hex: "F037E", version: "1.5.54" }, { name: "mouse-variant", hex: "F037F", version: "1.5.54" }, { name: "mouse-variant-off", hex: "F0380", version: "1.5.54" }, { name: "move-resize", hex: "F0655", version: "1.6.50" }, { name: "move-resize-variant", hex: "F0656", version: "1.6.50" }, { name: "movie", hex: "F0381", version: "1.5.54" }, { name: "movie-edit", hex: "F1122", version: "4.3.95" }, { name: "movie-edit-outline", hex: "F1123", version: "4.3.95" }, { name: "movie-filter", hex: "F1124", version: "4.3.95" }, { name: "movie-filter-outline", hex: "F1125", version: "4.3.95" }, { name: "movie-open", hex: "F0FCE", version: "4.0.96" }, { name: "movie-open-outline", hex: "F0FCF", version: "4.0.96" }, { name: "movie-outline", hex: "F0DDD", version: "3.5.94" }, { name: "movie-roll", hex: "F07DE", version: "2.0.46" }, { name: "movie-search", hex: "F11D2", version: "4.5.95" }, { name: "movie-search-outline", hex: "F11D3", version: "4.5.95" }, { name: "muffin", hex: "F098C", version: "2.4.85" }, { name: "multiplication", hex: "F0382", version: "1.5.54" }, { name: "multiplication-box", hex: "F0383", version: "1.5.54" }, { name: "mushroom", hex: "F07DF", version: "2.0.46" }, { name: "mushroom-outline", hex: "F07E0", version: "2.0.46" }, { name: "music", hex: "F075A", version: "1.9.32" }, { name: "music-accidental-double-flat", hex: "F0F69", version: "3.9.97" }, { name: "music-accidental-double-sharp", hex: "F0F6A", version: "3.9.97" }, { name: "music-accidental-flat", hex: "F0F6B", version: "3.9.97" }, { name: "music-accidental-natural", hex: "F0F6C", version: "3.9.97" }, { name: "music-accidental-sharp", hex: "F0F6D", version: "3.9.97" }, { name: "music-box", hex: "F0384", version: "1.5.54" }, { name: "music-box-multiple", hex: "F0333", version: "1.5.54" }, { name: "music-box-multiple-outline", hex: "F0F04", version: "3.8.95" }, { name: "music-box-outline", hex: "F0385", version: "1.5.54" }, { name: "music-circle", hex: "F0386", version: "1.5.54" }, { name: "music-circle-outline", hex: "F0AD4", version: "2.7.94" }, { name: "music-clef-alto", hex: "F0F6E", version: "3.9.97" }, { name: "music-clef-bass", hex: "F0F6F", version: "3.9.97" }, { name: "music-clef-treble", hex: "F0F70", version: "3.9.97" }, { name: "music-note", hex: "F0387", version: "1.5.54" }, { name: "music-note-bluetooth", hex: "F05FE", version: "1.5.54" }, { name: "music-note-bluetooth-off", hex: "F05FF", version: "1.5.54" }, { name: "music-note-eighth", hex: "F0388", version: "1.5.54" }, { name: "music-note-eighth-dotted", hex: "F0F71", version: "3.9.97" }, { name: "music-note-half", hex: "F0389", version: "1.5.54" }, { name: "music-note-half-dotted", hex: "F0F72", version: "3.9.97" }, { name: "music-note-off", hex: "F038A", version: "1.5.54" }, { name: "music-note-off-outline", hex: "F0F73", version: "3.9.97" }, { name: "music-note-outline", hex: "F0F74", version: "3.9.97" }, { name: "music-note-plus", hex: "F0DDE", version: "3.5.94" }, { name: "music-note-quarter", hex: "F038B", version: "1.5.54" }, { name: "music-note-quarter-dotted", hex: "F0F75", version: "3.9.97" }, { name: "music-note-sixteenth", hex: "F038C", version: "1.5.54" }, { name: "music-note-sixteenth-dotted", hex: "F0F76", version: "3.9.97" }, { name: "music-note-whole", hex: "F038D", version: "1.5.54" }, { name: "music-note-whole-dotted", hex: "F0F77", version: "3.9.97" }, { name: "music-off", hex: "F075B", version: "1.9.32" }, { name: "music-rest-eighth", hex: "F0F78", version: "3.9.97" }, { name: "music-rest-half", hex: "F0F79", version: "3.9.97" }, { name: "music-rest-quarter", hex: "F0F7A", version: "3.9.97" }, { name: "music-rest-sixteenth", hex: "F0F7B", version: "3.9.97" }, { name: "music-rest-whole", hex: "F0F7C", version: "3.9.97" }, { name: "nail", hex: "F0DDF", version: "3.5.94" }, { name: "nas", hex: "F08F3", version: "2.3.50" }, { name: "nativescript", hex: "F0880", version: "2.1.99" }, { name: "nature", hex: "F038E", version: "1.5.54" }, { name: "nature-people", hex: "F038F", version: "1.5.54" }, { name: "navigation", hex: "F0390", version: "1.5.54" }, { name: "near-me", hex: "F05CD", version: "1.5.54" }, { name: "necklace", hex: "F0F0B", version: "3.8.95" }, { name: "needle", hex: "F0391", version: "1.5.54" }, { name: "netflix", hex: "F0746", version: "1.9.32" }, { name: "network", hex: "F06F3", version: "1.8.36" }, { name: "network-off", hex: "F0C9B", version: "3.2.89" }, { name: "network-off-outline", hex: "F0C9C", version: "3.2.89" }, { name: "network-outline", hex: "F0C9D", version: "3.2.89" }, { name: "network-strength-1", hex: "F08F4", version: "2.3.50" }, { name: "network-strength-1-alert", hex: "F08F5", version: "2.3.50" }, { name: "network-strength-2", hex: "F08F6", version: "2.3.50" }, { name: "network-strength-2-alert", hex: "F08F7", version: "2.3.50" }, { name: "network-strength-3", hex: "F08F8", version: "2.3.50" }, { name: "network-strength-3-alert", hex: "F08F9", version: "2.3.50" }, { name: "network-strength-4", hex: "F08FA", version: "2.3.50" }, { name: "network-strength-4-alert", hex: "F08FB", version: "2.3.50" }, { name: "network-strength-off", hex: "F08FC", version: "2.3.50" }, { name: "network-strength-off-outline", hex: "F08FD", version: "2.3.50" }, { name: "network-strength-outline", hex: "F08FE", version: "2.3.50" }, { name: "new-box", hex: "F0394", version: "1.5.54" }, { name: "newspaper", hex: "F0395", version: "1.5.54" }, { name: "newspaper-minus", hex: "F0F0C", version: "3.8.95" }, { name: "newspaper-plus", hex: "F0F0D", version: "3.8.95" }, { name: "newspaper-variant", hex: "F1001", version: "4.0.96" }, { name: "newspaper-variant-multiple", hex: "F1002", version: "4.0.96" }, { name: "newspaper-variant-multiple-outline", hex: "F1003", version: "4.0.96" }, { name: "newspaper-variant-outline", hex: "F1004", version: "4.0.96" }, { name: "nfc", hex: "F0396", version: "1.5.54" }, { name: "nfc-search-variant", hex: "F0E53", version: "3.6.95" }, { name: "nfc-tap", hex: "F0397", version: "1.5.54" }, { name: "nfc-variant", hex: "F0398", version: "1.5.54" }, { name: "nfc-variant-off", hex: "F0E54", version: "3.6.95" }, { name: "ninja", hex: "F0774", version: "1.9.32" }, { name: "nintendo-game-boy", hex: "F1393", version: "5.0.45" }, { name: "nintendo-switch", hex: "F07E1", version: "2.0.46" }, { name: "nintendo-wii", hex: "F05AB", version: "1.5.54" }, { name: "nintendo-wiiu", hex: "F072D", version: "1.8.36" }, { name: "nix", hex: "F1105", version: "4.3.95" }, { name: "nodejs", hex: "F0399", version: "1.5.54" }, { name: "noodles", hex: "F117E", version: "4.4.95" }, { name: "not-equal", hex: "F098D", version: "2.4.85" }, { name: "not-equal-variant", hex: "F098E", version: "2.4.85" }, { name: "note", hex: "F039A", version: "1.5.54" }, { name: "note-multiple", hex: "F06B8", version: "1.7.22" }, { name: "note-multiple-outline", hex: "F06B9", version: "1.7.22" }, { name: "note-outline", hex: "F039B", version: "1.5.54" }, { name: "note-plus", hex: "F039C", version: "1.5.54" }, { name: "note-plus-outline", hex: "F039D", version: "1.5.54" }, { name: "note-text", hex: "F039E", version: "1.5.54" }, { name: "note-text-outline", hex: "F11D7", version: "4.5.95" }, { name: "notebook", hex: "F082E", version: "2.1.19" }, { name: "notebook-multiple", hex: "F0E55", version: "3.6.95" }, { name: "notebook-outline", hex: "F0EBF", version: "3.7.94" }, { name: "notification-clear-all", hex: "F039F", version: "1.5.54" }, { name: "npm", hex: "F06F7", version: "1.8.36" }, { name: "nuke", hex: "F06A4", version: "1.7.12" }, { name: "null", hex: "F07E2", version: "2.0.46" }, { name: "numeric", hex: "F03A0", version: "1.5.54" }, { name: "numeric-0", hex: "F0B39", version: "2.8.94" }, { name: "numeric-0-box", hex: "F03A1", version: "1.5.54" }, { name: "numeric-0-box-multiple", hex: "F0F0E", version: "3.8.95" }, { name: "numeric-0-box-multiple-outline", hex: "F03A2", version: "1.5.54" }, { name: "numeric-0-box-outline", hex: "F03A3", version: "1.5.54" }, { name: "numeric-0-circle", hex: "F0C9E", version: "3.2.89" }, { name: "numeric-0-circle-outline", hex: "F0C9F", version: "3.2.89" }, { name: "numeric-1", hex: "F0B3A", version: "2.8.94" }, { name: "numeric-1-box", hex: "F03A4", version: "1.5.54" }, { name: "numeric-1-box-multiple", hex: "F0F0F", version: "3.8.95" }, { name: "numeric-1-box-multiple-outline", hex: "F03A5", version: "1.5.54" }, { name: "numeric-1-box-outline", hex: "F03A6", version: "1.5.54" }, { name: "numeric-1-circle", hex: "F0CA0", version: "3.2.89" }, { name: "numeric-1-circle-outline", hex: "F0CA1", version: "3.2.89" }, { name: "numeric-10", hex: "F0FE9", version: "4.0.96" }, { name: "numeric-10-box", hex: "F0F7D", version: "3.9.97" }, { name: "numeric-10-box-multiple", hex: "F0FEA", version: "4.0.96" }, { name: "numeric-10-box-multiple-outline", hex: "F0FEB", version: "4.0.96" }, { name: "numeric-10-box-outline", hex: "F0F7E", version: "3.9.97" }, { name: "numeric-10-circle", hex: "F0FEC", version: "4.0.96" }, { name: "numeric-10-circle-outline", hex: "F0FED", version: "4.0.96" }, { name: "numeric-2", hex: "F0B3B", version: "2.8.94" }, { name: "numeric-2-box", hex: "F03A7", version: "1.5.54" }, { name: "numeric-2-box-multiple", hex: "F0F10", version: "3.8.95" }, { name: "numeric-2-box-multiple-outline", hex: "F03A8", version: "1.5.54" }, { name: "numeric-2-box-outline", hex: "F03A9", version: "1.5.54" }, { name: "numeric-2-circle", hex: "F0CA2", version: "3.2.89" }, { name: "numeric-2-circle-outline", hex: "F0CA3", version: "3.2.89" }, { name: "numeric-3", hex: "F0B3C", version: "2.8.94" }, { name: "numeric-3-box", hex: "F03AA", version: "1.5.54" }, { name: "numeric-3-box-multiple", hex: "F0F11", version: "3.8.95" }, { name: "numeric-3-box-multiple-outline", hex: "F03AB", version: "1.5.54" }, { name: "numeric-3-box-outline", hex: "F03AC", version: "1.5.54" }, { name: "numeric-3-circle", hex: "F0CA4", version: "3.2.89" }, { name: "numeric-3-circle-outline", hex: "F0CA5", version: "3.2.89" }, { name: "numeric-4", hex: "F0B3D", version: "2.8.94" }, { name: "numeric-4-box", hex: "F03AD", version: "1.5.54" }, { name: "numeric-4-box-multiple", hex: "F0F12", version: "3.8.95" }, { name: "numeric-4-box-multiple-outline", hex: "F03B2", version: "1.5.54" }, { name: "numeric-4-box-outline", hex: "F03AE", version: "1.5.54" }, { name: "numeric-4-circle", hex: "F0CA6", version: "3.2.89" }, { name: "numeric-4-circle-outline", hex: "F0CA7", version: "3.2.89" }, { name: "numeric-5", hex: "F0B3E", version: "2.8.94" }, { name: "numeric-5-box", hex: "F03B1", version: "1.5.54" }, { name: "numeric-5-box-multiple", hex: "F0F13", version: "3.8.95" }, { name: "numeric-5-box-multiple-outline", hex: "F03AF", version: "1.5.54" }, { name: "numeric-5-box-outline", hex: "F03B0", version: "1.5.54" }, { name: "numeric-5-circle", hex: "F0CA8", version: "3.2.89" }, { name: "numeric-5-circle-outline", hex: "F0CA9", version: "3.2.89" }, { name: "numeric-6", hex: "F0B3F", version: "2.8.94" }, { name: "numeric-6-box", hex: "F03B3", version: "1.5.54" }, { name: "numeric-6-box-multiple", hex: "F0F14", version: "3.8.95" }, { name: "numeric-6-box-multiple-outline", hex: "F03B4", version: "1.5.54" }, { name: "numeric-6-box-outline", hex: "F03B5", version: "1.5.54" }, { name: "numeric-6-circle", hex: "F0CAA", version: "3.2.89" }, { name: "numeric-6-circle-outline", hex: "F0CAB", version: "3.2.89" }, { name: "numeric-7", hex: "F0B40", version: "2.8.94" }, { name: "numeric-7-box", hex: "F03B6", version: "1.5.54" }, { name: "numeric-7-box-multiple", hex: "F0F15", version: "3.8.95" }, { name: "numeric-7-box-multiple-outline", hex: "F03B7", version: "1.5.54" }, { name: "numeric-7-box-outline", hex: "F03B8", version: "1.5.54" }, { name: "numeric-7-circle", hex: "F0CAC", version: "3.2.89" }, { name: "numeric-7-circle-outline", hex: "F0CAD", version: "3.2.89" }, { name: "numeric-8", hex: "F0B41", version: "2.8.94" }, { name: "numeric-8-box", hex: "F03B9", version: "1.5.54" }, { name: "numeric-8-box-multiple", hex: "F0F16", version: "3.8.95" }, { name: "numeric-8-box-multiple-outline", hex: "F03BA", version: "1.5.54" }, { name: "numeric-8-box-outline", hex: "F03BB", version: "1.5.54" }, { name: "numeric-8-circle", hex: "F0CAE", version: "3.2.89" }, { name: "numeric-8-circle-outline", hex: "F0CAF", version: "3.2.89" }, { name: "numeric-9", hex: "F0B42", version: "2.8.94" }, { name: "numeric-9-box", hex: "F03BC", version: "1.5.54" }, { name: "numeric-9-box-multiple", hex: "F0F17", version: "3.8.95" }, { name: "numeric-9-box-multiple-outline", hex: "F03BD", version: "1.5.54" }, { name: "numeric-9-box-outline", hex: "F03BE", version: "1.5.54" }, { name: "numeric-9-circle", hex: "F0CB0", version: "3.2.89" }, { name: "numeric-9-circle-outline", hex: "F0CB1", version: "3.2.89" }, { name: "numeric-9-plus", hex: "F0FEE", version: "4.0.96" }, { name: "numeric-9-plus-box", hex: "F03BF", version: "1.5.54" }, { name: "numeric-9-plus-box-multiple", hex: "F0F18", version: "3.8.95" }, { name: "numeric-9-plus-box-multiple-outline", hex: "F03C0", version: "1.5.54" }, { name: "numeric-9-plus-box-outline", hex: "F03C1", version: "1.5.54" }, { name: "numeric-9-plus-circle", hex: "F0CB2", version: "3.2.89" }, { name: "numeric-9-plus-circle-outline", hex: "F0CB3", version: "3.2.89" }, { name: "numeric-negative-1", hex: "F1052", version: "4.1.95" }, { name: "nut", hex: "F06F8", version: "1.8.36" }, { name: "nutrition", hex: "F03C2", version: "1.5.54" }, { name: "nuxt", hex: "F1106", version: "4.3.95" }, { name: "oar", hex: "F067C", version: "1.7.12" }, { name: "ocarina", hex: "F0DE0", version: "3.5.94" }, { name: "oci", hex: "F12E9", version: "4.8.95" }, { name: "ocr", hex: "F113A", version: "4.4.95" }, { name: "octagon", hex: "F03C3", version: "1.5.54" }, { name: "octagon-outline", hex: "F03C4", version: "1.5.54" }, { name: "octagram", hex: "F06F9", version: "1.8.36" }, { name: "octagram-outline", hex: "F0775", version: "1.9.32" }, { name: "odnoklassniki", hex: "F03C5", version: "1.5.54" }, { name: "offer", hex: "F121B", version: "4.6.95" }, { name: "office-building", hex: "F0991", version: "2.4.85" }, { name: "oil", hex: "F03C7", version: "1.5.54" }, { name: "oil-lamp", hex: "F0F19", version: "3.8.95" }, { name: "oil-level", hex: "F1053", version: "4.1.95" }, { name: "oil-temperature", hex: "F0FF8", version: "4.0.96" }, { name: "omega", hex: "F03C9", version: "1.5.54" }, { name: "one-up", hex: "F0BAD", version: "3.0.39" }, { name: "onepassword", hex: "F0881", version: "2.1.99" }, { name: "opacity", hex: "F05CC", version: "1.5.54" }, { name: "open-in-app", hex: "F03CB", version: "1.5.54" }, { name: "open-in-new", hex: "F03CC", version: "1.5.54" }, { name: "open-source-initiative", hex: "F0BAE", version: "3.0.39" }, { name: "openid", hex: "F03CD", version: "1.5.54" }, { name: "opera", hex: "F03CE", version: "1.5.54" }, { name: "orbit", hex: "F0018", version: "1.5.54" }, { name: "order-alphabetical-ascending", hex: "F020D", version: "1.5.54" }, { name: "order-alphabetical-descending", hex: "F0D07", version: "3.3.92" }, { name: "order-bool-ascending", hex: "F02BE", version: "1.5.54" }, { name: "order-bool-ascending-variant", hex: "F098F", version: "2.4.85" }, { name: "order-bool-descending", hex: "F1384", version: "5.0.45" }, { name: "order-bool-descending-variant", hex: "F0990", version: "2.4.85" }, { name: "order-numeric-ascending", hex: "F0545", version: "1.5.54" }, { name: "order-numeric-descending", hex: "F0546", version: "1.5.54" }, { name: "origin", hex: "F0B43", version: "2.8.94" }, { name: "ornament", hex: "F03CF", version: "1.5.54" }, { name: "ornament-variant", hex: "F03D0", version: "1.5.54" }, { name: "outdoor-lamp", hex: "F1054", version: "4.1.95" }, { name: "overscan", hex: "F1005", version: "4.0.96" }, { name: "owl", hex: "F03D2", version: "1.5.54" }, { name: "pac-man", hex: "F0BAF", version: "3.0.39" }, { name: "package", hex: "F03D3", version: "1.5.54" }, { name: "package-down", hex: "F03D4", version: "1.5.54" }, { name: "package-up", hex: "F03D5", version: "1.5.54" }, { name: "package-variant", hex: "F03D6", version: "1.5.54" }, { name: "package-variant-closed", hex: "F03D7", version: "1.5.54" }, { name: "page-first", hex: "F0600", version: "1.5.54" }, { name: "page-last", hex: "F0601", version: "1.5.54" }, { name: "page-layout-body", hex: "F06FA", version: "1.8.36" }, { name: "page-layout-footer", hex: "F06FB", version: "1.8.36" }, { name: "page-layout-header", hex: "F06FC", version: "1.8.36" }, { name: "page-layout-header-footer", hex: "F0F7F", version: "3.9.97" }, { name: "page-layout-sidebar-left", hex: "F06FD", version: "1.8.36" }, { name: "page-layout-sidebar-right", hex: "F06FE", version: "1.8.36" }, { name: "page-next", hex: "F0BB0", version: "3.0.39" }, { name: "page-next-outline", hex: "F0BB1", version: "3.0.39" }, { name: "page-previous", hex: "F0BB2", version: "3.0.39" }, { name: "page-previous-outline", hex: "F0BB3", version: "3.0.39" }, { name: "palette", hex: "F03D8", version: "1.5.54" }, { name: "palette-advanced", hex: "F03D9", version: "1.5.54" }, { name: "palette-outline", hex: "F0E0C", version: "3.5.95" }, { name: "palette-swatch", hex: "F08B5", version: "2.2.43" }, { name: "palette-swatch-outline", hex: "F135C", version: "4.9.95" }, { name: "palm-tree", hex: "F1055", version: "4.1.95" }, { name: "pan", hex: "F0BB4", version: "3.0.39" }, { name: "pan-bottom-left", hex: "F0BB5", version: "3.0.39" }, { name: "pan-bottom-right", hex: "F0BB6", version: "3.0.39" }, { name: "pan-down", hex: "F0BB7", version: "3.0.39" }, { name: "pan-horizontal", hex: "F0BB8", version: "3.0.39" }, { name: "pan-left", hex: "F0BB9", version: "3.0.39" }, { name: "pan-right", hex: "F0BBA", version: "3.0.39" }, { name: "pan-top-left", hex: "F0BBB", version: "3.0.39" }, { name: "pan-top-right", hex: "F0BBC", version: "3.0.39" }, { name: "pan-up", hex: "F0BBD", version: "3.0.39" }, { name: "pan-vertical", hex: "F0BBE", version: "3.0.39" }, { name: "panda", hex: "F03DA", version: "1.5.54" }, { name: "pandora", hex: "F03DB", version: "1.5.54" }, { name: "panorama", hex: "F03DC", version: "1.5.54" }, { name: "panorama-fisheye", hex: "F03DD", version: "1.5.54" }, { name: "panorama-horizontal", hex: "F03DE", version: "1.5.54" }, { name: "panorama-vertical", hex: "F03DF", version: "1.5.54" }, { name: "panorama-wide-angle", hex: "F03E0", version: "1.5.54" }, { name: "paper-cut-vertical", hex: "F03E1", version: "1.5.54" }, { name: "paper-roll", hex: "F1157", version: "4.4.95" }, { name: "paper-roll-outline", hex: "F1158", version: "4.4.95" }, { name: "paperclip", hex: "F03E2", version: "1.5.54" }, { name: "parachute", hex: "F0CB4", version: "3.2.89" }, { name: "parachute-outline", hex: "F0CB5", version: "3.2.89" }, { name: "parking", hex: "F03E3", version: "1.5.54" }, { name: "party-popper", hex: "F1056", version: "4.1.95" }, { name: "passport", hex: "F07E3", version: "2.0.46" }, { name: "passport-biometric", hex: "F0DE1", version: "3.5.94" }, { name: "pasta", hex: "F1160", version: "4.4.95" }, { name: "patio-heater", hex: "F0F80", version: "3.9.97" }, { name: "patreon", hex: "F0882", version: "2.1.99" }, { name: "pause", hex: "F03E4", version: "1.5.54" }, { name: "pause-circle", hex: "F03E5", version: "1.5.54" }, { name: "pause-circle-outline", hex: "F03E6", version: "1.5.54" }, { name: "pause-octagon", hex: "F03E7", version: "1.5.54" }, { name: "pause-octagon-outline", hex: "F03E8", version: "1.5.54" }, { name: "paw", hex: "F03E9", version: "1.5.54" }, { name: "paw-off", hex: "F0657", version: "1.6.50" }, { name: "pdf-box", hex: "F0E56", version: "3.6.95" }, { name: "peace", hex: "F0884", version: "2.1.99" }, { name: "peanut", hex: "F0FFC", version: "4.0.96" }, { name: "peanut-off", hex: "F0FFD", version: "4.0.96" }, { name: "peanut-off-outline", hex: "F0FFF", version: "4.0.96" }, { name: "peanut-outline", hex: "F0FFE", version: "4.0.96" }, { name: "pen", hex: "F03EA", version: "1.5.54" }, { name: "pen-lock", hex: "F0DE2", version: "3.5.94" }, { name: "pen-minus", hex: "F0DE3", version: "3.5.94" }, { name: "pen-off", hex: "F0DE4", version: "3.5.94" }, { name: "pen-plus", hex: "F0DE5", version: "3.5.94" }, { name: "pen-remove", hex: "F0DE6", version: "3.5.94" }, { name: "pencil", hex: "F03EB", version: "1.5.54" }, { name: "pencil-box", hex: "F03EC", version: "1.5.54" }, { name: "pencil-box-multiple", hex: "F1144", version: "4.4.95" }, { name: "pencil-box-multiple-outline", hex: "F1145", version: "4.4.95" }, { name: "pencil-box-outline", hex: "F03ED", version: "1.5.54" }, { name: "pencil-circle", hex: "F06FF", version: "1.8.36" }, { name: "pencil-circle-outline", hex: "F0776", version: "1.9.32" }, { name: "pencil-lock", hex: "F03EE", version: "1.5.54" }, { name: "pencil-lock-outline", hex: "F0DE7", version: "3.5.94" }, { name: "pencil-minus", hex: "F0DE8", version: "3.5.94" }, { name: "pencil-minus-outline", hex: "F0DE9", version: "3.5.94" }, { name: "pencil-off", hex: "F03EF", version: "1.5.54" }, { name: "pencil-off-outline", hex: "F0DEA", version: "3.5.94" }, { name: "pencil-outline", hex: "F0CB6", version: "3.2.89" }, { name: "pencil-plus", hex: "F0DEB", version: "3.5.94" }, { name: "pencil-plus-outline", hex: "F0DEC", version: "3.5.94" }, { name: "pencil-remove", hex: "F0DED", version: "3.5.94" }, { name: "pencil-remove-outline", hex: "F0DEE", version: "3.5.94" }, { name: "pencil-ruler", hex: "F1353", version: "4.9.95" }, { name: "penguin", hex: "F0EC0", version: "3.7.94" }, { name: "pentagon", hex: "F0701", version: "1.8.36" }, { name: "pentagon-outline", hex: "F0700", version: "1.8.36" }, { name: "percent", hex: "F03F0", version: "1.5.54" }, { name: "percent-outline", hex: "F1278", version: "4.7.95" }, { name: "periodic-table", hex: "F08B6", version: "2.2.43" }, { name: "perspective-less", hex: "F0D23", version: "3.3.92" }, { name: "perspective-more", hex: "F0D24", version: "3.3.92" }, { name: "pharmacy", hex: "F03F1", version: "1.5.54" }, { name: "phone", hex: "F03F2", version: "1.5.54" }, { name: "phone-alert", hex: "F0F1A", version: "3.8.95" }, { name: "phone-alert-outline", hex: "F118E", version: "4.5.95" }, { name: "phone-bluetooth", hex: "F03F3", version: "1.5.54" }, { name: "phone-bluetooth-outline", hex: "F118F", version: "4.5.95" }, { name: "phone-cancel", hex: "F10BC", version: "4.2.95" }, { name: "phone-cancel-outline", hex: "F1190", version: "4.5.95" }, { name: "phone-check", hex: "F11A9", version: "4.5.95" }, { name: "phone-check-outline", hex: "F11AA", version: "4.5.95" }, { name: "phone-classic", hex: "F0602", version: "1.5.54" }, { name: "phone-classic-off", hex: "F1279", version: "4.7.95" }, { name: "phone-forward", hex: "F03F4", version: "1.5.54" }, { name: "phone-forward-outline", hex: "F1191", version: "4.5.95" }, { name: "phone-hangup", hex: "F03F5", version: "1.5.54" }, { name: "phone-hangup-outline", hex: "F1192", version: "4.5.95" }, { name: "phone-in-talk", hex: "F03F6", version: "1.5.54" }, { name: "phone-in-talk-outline", hex: "F1182", version: "4.4.95" }, { name: "phone-incoming", hex: "F03F7", version: "1.5.54" }, { name: "phone-incoming-outline", hex: "F1193", version: "4.5.95" }, { name: "phone-lock", hex: "F03F8", version: "1.5.54" }, { name: "phone-lock-outline", hex: "F1194", version: "4.5.95" }, { name: "phone-log", hex: "F03F9", version: "1.5.54" }, { name: "phone-log-outline", hex: "F1195", version: "4.5.95" }, { name: "phone-message", hex: "F1196", version: "4.5.95" }, { name: "phone-message-outline", hex: "F1197", version: "4.5.95" }, { name: "phone-minus", hex: "F0658", version: "1.6.50" }, { name: "phone-minus-outline", hex: "F1198", version: "4.5.95" }, { name: "phone-missed", hex: "F03FA", version: "1.5.54" }, { name: "phone-missed-outline", hex: "F11A5", version: "4.5.95" }, { name: "phone-off", hex: "F0DEF", version: "3.5.94" }, { name: "phone-off-outline", hex: "F11A6", version: "4.5.95" }, { name: "phone-outgoing", hex: "F03FB", version: "1.5.54" }, { name: "phone-outgoing-outline", hex: "F1199", version: "4.5.95" }, { name: "phone-outline", hex: "F0DF0", version: "3.5.94" }, { name: "phone-paused", hex: "F03FC", version: "1.5.54" }, { name: "phone-paused-outline", hex: "F119A", version: "4.5.95" }, { name: "phone-plus", hex: "F0659", version: "1.6.50" }, { name: "phone-plus-outline", hex: "F119B", version: "4.5.95" }, { name: "phone-return", hex: "F082F", version: "2.1.19" }, { name: "phone-return-outline", hex: "F119C", version: "4.5.95" }, { name: "phone-ring", hex: "F11AB", version: "4.5.95" }, { name: "phone-ring-outline", hex: "F11AC", version: "4.5.95" }, { name: "phone-rotate-landscape", hex: "F0885", version: "2.1.99" }, { name: "phone-rotate-portrait", hex: "F0886", version: "2.1.99" }, { name: "phone-settings", hex: "F03FD", version: "1.5.54" }, { name: "phone-settings-outline", hex: "F119D", version: "4.5.95" }, { name: "phone-voip", hex: "F03FE", version: "1.5.54" }, { name: "pi", hex: "F03FF", version: "1.5.54" }, { name: "pi-box", hex: "F0400", version: "1.5.54" }, { name: "pi-hole", hex: "F0DF1", version: "3.5.94" }, { name: "piano", hex: "F067D", version: "1.7.12" }, { name: "pickaxe", hex: "F08B7", version: "2.2.43" }, { name: "picture-in-picture-bottom-right", hex: "F0E57", version: "3.6.95" }, { name: "picture-in-picture-bottom-right-outline", hex: "F0E58", version: "3.6.95" }, { name: "picture-in-picture-top-right", hex: "F0E59", version: "3.6.95" }, { name: "picture-in-picture-top-right-outline", hex: "F0E5A", version: "3.6.95" }, { name: "pier", hex: "F0887", version: "2.1.99" }, { name: "pier-crane", hex: "F0888", version: "2.1.99" }, { name: "pig", hex: "F0401", version: "1.5.54" }, { name: "pig-variant", hex: "F1006", version: "4.0.96" }, { name: "piggy-bank", hex: "F1007", version: "4.0.96" }, { name: "pill", hex: "F0402", version: "1.5.54" }, { name: "pillar", hex: "F0702", version: "1.8.36" }, { name: "pin", hex: "F0403", version: "1.5.54" }, { name: "pin-off", hex: "F0404", version: "1.5.54" }, { name: "pin-off-outline", hex: "F0930", version: "2.3.54" }, { name: "pin-outline", hex: "F0931", version: "2.3.54" }, { name: "pine-tree", hex: "F0405", version: "1.5.54" }, { name: "pine-tree-box", hex: "F0406", version: "1.5.54" }, { name: "pinterest", hex: "F0407", version: "1.5.54" }, { name: "pinwheel", hex: "F0AD5", version: "2.7.94" }, { name: "pinwheel-outline", hex: "F0AD6", version: "2.7.94" }, { name: "pipe", hex: "F07E5", version: "2.0.46" }, { name: "pipe-disconnected", hex: "F07E6", version: "2.0.46" }, { name: "pipe-leak", hex: "F0889", version: "2.1.99" }, { name: "pipe-wrench", hex: "F1354", version: "4.9.95" }, { name: "pirate", hex: "F0A08", version: "2.5.94" }, { name: "pistol", hex: "F0703", version: "1.8.36" }, { name: "piston", hex: "F088A", version: "2.1.99" }, { name: "pizza", hex: "F0409", version: "1.5.54" }, { name: "play", hex: "F040A", version: "1.5.54" }, { name: "play-box", hex: "F127A", version: "4.7.95" }, { name: "play-box-multiple", hex: "F0D19", version: "3.3.92" }, { name: "play-box-outline", hex: "F040B", version: "1.5.54" }, { name: "play-circle", hex: "F040C", version: "1.5.54" }, { name: "play-circle-outline", hex: "F040D", version: "1.5.54" }, { name: "play-network", hex: "F088B", version: "2.1.99" }, { name: "play-network-outline", hex: "F0CB7", version: "3.2.89" }, { name: "play-outline", hex: "F0F1B", version: "3.8.95" }, { name: "play-pause", hex: "F040E", version: "1.5.54" }, { name: "play-protected-content", hex: "F040F", version: "1.5.54" }, { name: "play-speed", hex: "F08FF", version: "2.3.50" }, { name: "playlist-check", hex: "F05C7", version: "1.5.54" }, { name: "playlist-edit", hex: "F0900", version: "2.3.50" }, { name: "playlist-minus", hex: "F0410", version: "1.5.54" }, { name: "playlist-music", hex: "F0CB8", version: "3.2.89" }, { name: "playlist-music-outline", hex: "F0CB9", version: "3.2.89" }, { name: "playlist-play", hex: "F0411", version: "1.5.54" }, { name: "playlist-plus", hex: "F0412", version: "1.5.54" }, { name: "playlist-remove", hex: "F0413", version: "1.5.54" }, { name: "playlist-star", hex: "F0DF2", version: "3.5.94" }, { name: "plex", hex: "F06BA", version: "1.7.22" }, { name: "plus", hex: "F0415", version: "1.5.54" }, { name: "plus-box", hex: "F0416", version: "1.5.54" }, { name: "plus-box-multiple", hex: "F0334", version: "1.5.54" }, { name: "plus-box-multiple-outline", hex: "F1143", version: "4.4.95" }, { name: "plus-box-outline", hex: "F0704", version: "1.8.36" }, { name: "plus-circle", hex: "F0417", version: "1.5.54" }, { name: "plus-circle-multiple", hex: "F034C", version: "1.5.54" }, { name: "plus-circle-multiple-outline", hex: "F0418", version: "1.5.54" }, { name: "plus-circle-outline", hex: "F0419", version: "1.5.54" }, { name: "plus-minus", hex: "F0992", version: "2.4.85" }, { name: "plus-minus-box", hex: "F0993", version: "2.4.85" }, { name: "plus-network", hex: "F041A", version: "1.5.54" }, { name: "plus-network-outline", hex: "F0CBA", version: "3.2.89" }, { name: "plus-one", hex: "F041B", version: "1.5.54" }, { name: "plus-outline", hex: "F0705", version: "1.8.36" }, { name: "plus-thick", hex: "F11EC", version: "4.5.95" }, { name: "podcast", hex: "F0994", version: "2.4.85" }, { name: "podium", hex: "F0D25", version: "3.3.92" }, { name: "podium-bronze", hex: "F0D26", version: "3.3.92" }, { name: "podium-gold", hex: "F0D27", version: "3.3.92" }, { name: "podium-silver", hex: "F0D28", version: "3.3.92" }, { name: "point-of-sale", hex: "F0D92", version: "3.4.93" }, { name: "pokeball", hex: "F041D", version: "1.5.54" }, { name: "pokemon-go", hex: "F0A09", version: "2.5.94" }, { name: "poker-chip", hex: "F0830", version: "2.1.19" }, { name: "polaroid", hex: "F041E", version: "1.5.54" }, { name: "police-badge", hex: "F1167", version: "4.4.95" }, { name: "police-badge-outline", hex: "F1168", version: "4.4.95" }, { name: "poll", hex: "F041F", version: "1.5.54" }, { name: "poll-box", hex: "F0420", version: "1.5.54" }, { name: "poll-box-outline", hex: "F127B", version: "4.7.95" }, { name: "polymer", hex: "F0421", version: "1.5.54" }, { name: "pool", hex: "F0606", version: "1.5.54" }, { name: "popcorn", hex: "F0422", version: "1.5.54" }, { name: "post", hex: "F1008", version: "4.0.96" }, { name: "post-outline", hex: "F1009", version: "4.0.96" }, { name: "postage-stamp", hex: "F0CBB", version: "3.2.89" }, { name: "pot", hex: "F02E5", version: "1.5.54" }, { name: "pot-mix", hex: "F065B", version: "1.6.50" }, { name: "pot-mix-outline", hex: "F0677", version: "1.7.12" }, { name: "pot-outline", hex: "F02FF", version: "1.5.54" }, { name: "pot-steam", hex: "F065A", version: "1.6.50" }, { name: "pot-steam-outline", hex: "F0326", version: "1.5.54" }, { name: "pound", hex: "F0423", version: "1.5.54" }, { name: "pound-box", hex: "F0424", version: "1.5.54" }, { name: "pound-box-outline", hex: "F117F", version: "4.4.95" }, { name: "power", hex: "F0425", version: "1.5.54" }, { name: "power-cycle", hex: "F0901", version: "2.3.50" }, { name: "power-off", hex: "F0902", version: "2.3.50" }, { name: "power-on", hex: "F0903", version: "2.3.50" }, { name: "power-plug", hex: "F06A5", version: "1.7.12" }, { name: "power-plug-off", hex: "F06A6", version: "1.7.12" }, { name: "power-settings", hex: "F0426", version: "1.5.54" }, { name: "power-sleep", hex: "F0904", version: "2.3.50" }, { name: "power-socket", hex: "F0427", version: "1.5.54" }, { name: "power-socket-au", hex: "F0905", version: "2.3.50" }, { name: "power-socket-de", hex: "F1107", version: "4.3.95" }, { name: "power-socket-eu", hex: "F07E7", version: "2.0.46" }, { name: "power-socket-fr", hex: "F1108", version: "4.3.95" }, { name: "power-socket-jp", hex: "F1109", version: "4.3.95" }, { name: "power-socket-uk", hex: "F07E8", version: "2.0.46" }, { name: "power-socket-us", hex: "F07E9", version: "2.0.46" }, { name: "power-standby", hex: "F0906", version: "2.3.50" }, { name: "powershell", hex: "F0A0A", version: "2.5.94" }, { name: "prescription", hex: "F0706", version: "1.8.36" }, { name: "presentation", hex: "F0428", version: "1.5.54" }, { name: "presentation-play", hex: "F0429", version: "1.5.54" }, { name: "printer", hex: "F042A", version: "1.5.54" }, { name: "printer-3d", hex: "F042B", version: "1.5.54" }, { name: "printer-3d-nozzle", hex: "F0E5B", version: "3.6.95" }, { name: "printer-3d-nozzle-alert", hex: "F11C0", version: "4.5.95" }, { name: "printer-3d-nozzle-alert-outline", hex: "F11C1", version: "4.5.95" }, { name: "printer-3d-nozzle-outline", hex: "F0E5C", version: "3.6.95" }, { name: "printer-alert", hex: "F042C", version: "1.5.54" }, { name: "printer-check", hex: "F1146", version: "4.4.95" }, { name: "printer-off", hex: "F0E5D", version: "3.6.95" }, { name: "printer-pos", hex: "F1057", version: "4.1.95" }, { name: "printer-settings", hex: "F0707", version: "1.8.36" }, { name: "printer-wireless", hex: "F0A0B", version: "2.5.94" }, { name: "priority-high", hex: "F0603", version: "1.5.54" }, { name: "priority-low", hex: "F0604", version: "1.5.54" }, { name: "professional-hexagon", hex: "F042D", version: "1.5.54" }, { name: "progress-alert", hex: "F0CBC", version: "3.2.89" }, { name: "progress-check", hex: "F0995", version: "2.4.85" }, { name: "progress-clock", hex: "F0996", version: "2.4.85" }, { name: "progress-close", hex: "F110A", version: "4.3.95" }, { name: "progress-download", hex: "F0997", version: "2.4.85" }, { name: "progress-upload", hex: "F0998", version: "2.4.85" }, { name: "progress-wrench", hex: "F0CBD", version: "3.2.89" }, { name: "projector", hex: "F042E", version: "1.5.54" }, { name: "projector-screen", hex: "F042F", version: "1.5.54" }, { name: "propane-tank", hex: "F1357", version: "4.9.95" }, { name: "propane-tank-outline", hex: "F1358", version: "4.9.95" }, { name: "protocol", hex: "F0FD8", version: "4.0.96" }, { name: "publish", hex: "F06A7", version: "1.7.12" }, { name: "pulse", hex: "F0430", version: "1.5.54" }, { name: "pumpkin", hex: "F0BBF", version: "3.0.39" }, { name: "purse", hex: "F0F1C", version: "3.8.95" }, { name: "purse-outline", hex: "F0F1D", version: "3.8.95" }, { name: "puzzle", hex: "F0431", version: "1.5.54" }, { name: "puzzle-outline", hex: "F0A66", version: "2.6.95" }, { name: "qi", hex: "F0999", version: "2.4.85" }, { name: "qqchat", hex: "F0605", version: "1.5.54" }, { name: "qrcode", hex: "F0432", version: "1.5.54" }, { name: "qrcode-edit", hex: "F08B8", version: "2.2.43" }, { name: "qrcode-minus", hex: "F118C", version: "4.4.95" }, { name: "qrcode-plus", hex: "F118B", version: "4.4.95" }, { name: "qrcode-remove", hex: "F118D", version: "4.4.95" }, { name: "qrcode-scan", hex: "F0433", version: "1.5.54" }, { name: "quadcopter", hex: "F0434", version: "1.5.54" }, { name: "quality-high", hex: "F0435", version: "1.5.54" }, { name: "quality-low", hex: "F0A0C", version: "2.5.94" }, { name: "quality-medium", hex: "F0A0D", version: "2.5.94" }, { name: "quora", hex: "F0D29", version: "3.3.92" }, { name: "rabbit", hex: "F0907", version: "2.3.50" }, { name: "racing-helmet", hex: "F0D93", version: "3.4.93" }, { name: "racquetball", hex: "F0D94", version: "3.4.93" }, { name: "radar", hex: "F0437", version: "1.5.54" }, { name: "radiator", hex: "F0438", version: "1.5.54" }, { name: "radiator-disabled", hex: "F0AD7", version: "2.7.94" }, { name: "radiator-off", hex: "F0AD8", version: "2.7.94" }, { name: "radio", hex: "F0439", version: "1.5.54" }, { name: "radio-am", hex: "F0CBE", version: "3.2.89" }, { name: "radio-fm", hex: "F0CBF", version: "3.2.89" }, { name: "radio-handheld", hex: "F043A", version: "1.5.54" }, { name: "radio-off", hex: "F121C", version: "4.6.95" }, { name: "radio-tower", hex: "F043B", version: "1.5.54" }, { name: "radioactive", hex: "F043C", version: "1.5.54" }, { name: "radioactive-off", hex: "F0EC1", version: "3.7.94" }, { name: "radiobox-blank", hex: "F043D", version: "1.5.54" }, { name: "radiobox-marked", hex: "F043E", version: "1.5.54" }, { name: "radius", hex: "F0CC0", version: "3.2.89" }, { name: "radius-outline", hex: "F0CC1", version: "3.2.89" }, { name: "railroad-light", hex: "F0F1E", version: "3.8.95" }, { name: "raspberry-pi", hex: "F043F", version: "1.5.54" }, { name: "ray-end", hex: "F0440", version: "1.5.54" }, { name: "ray-end-arrow", hex: "F0441", version: "1.5.54" }, { name: "ray-start", hex: "F0442", version: "1.5.54" }, { name: "ray-start-arrow", hex: "F0443", version: "1.5.54" }, { name: "ray-start-end", hex: "F0444", version: "1.5.54" }, { name: "ray-vertex", hex: "F0445", version: "1.5.54" }, { name: "react", hex: "F0708", version: "1.8.36" }, { name: "read", hex: "F0447", version: "1.5.54" }, { name: "receipt", hex: "F0449", version: "1.5.54" }, { name: "record", hex: "F044A", version: "1.5.54" }, { name: "record-circle", hex: "F0EC2", version: "3.7.94" }, { name: "record-circle-outline", hex: "F0EC3", version: "3.7.94" }, { name: "record-player", hex: "F099A", version: "2.4.85" }, { name: "record-rec", hex: "F044B", version: "1.5.54" }, { name: "rectangle", hex: "F0E5E", version: "3.6.95" }, { name: "rectangle-outline", hex: "F0E5F", version: "3.6.95" }, { name: "recycle", hex: "F044C", version: "1.5.54" }, { name: "recycle-variant", hex: "F139D", version: "5.0.45" }, { name: "reddit", hex: "F044D", version: "1.5.54" }, { name: "redhat", hex: "F111B", version: "4.3.95" }, { name: "redo", hex: "F044E", version: "1.5.54" }, { name: "redo-variant", hex: "F044F", version: "1.5.54" }, { name: "reflect-horizontal", hex: "F0A0E", version: "2.5.94" }, { name: "reflect-vertical", hex: "F0A0F", version: "2.5.94" }, { name: "refresh", hex: "F0450", version: "1.5.54" }, { name: "refresh-circle", hex: "F1377", version: "4.9.95" }, { name: "regex", hex: "F0451", version: "1.5.54" }, { name: "registered-trademark", hex: "F0A67", version: "2.6.95" }, { name: "relative-scale", hex: "F0452", version: "1.5.54" }, { name: "reload", hex: "F0453", version: "1.5.54" }, { name: "reload-alert", hex: "F110B", version: "4.3.95" }, { name: "reminder", hex: "F088C", version: "2.1.99" }, { name: "remote", hex: "F0454", version: "1.5.54" }, { name: "remote-desktop", hex: "F08B9", version: "2.2.43" }, { name: "remote-off", hex: "F0EC4", version: "3.7.94" }, { name: "remote-tv", hex: "F0EC5", version: "3.7.94" }, { name: "remote-tv-off", hex: "F0EC6", version: "3.7.94" }, { name: "rename-box", hex: "F0455", version: "1.5.54" }, { name: "reorder-horizontal", hex: "F0688", version: "1.7.12" }, { name: "reorder-vertical", hex: "F0689", version: "1.7.12" }, { name: "repeat", hex: "F0456", version: "1.5.54" }, { name: "repeat-off", hex: "F0457", version: "1.5.54" }, { name: "repeat-once", hex: "F0458", version: "1.5.54" }, { name: "replay", hex: "F0459", version: "1.5.54" }, { name: "reply", hex: "F045A", version: "1.5.54" }, { name: "reply-all", hex: "F045B", version: "1.5.54" }, { name: "reply-all-outline", hex: "F0F1F", version: "3.8.95" }, { name: "reply-circle", hex: "F11AE", version: "4.5.95" }, { name: "reply-outline", hex: "F0F20", version: "3.8.95" }, { name: "reproduction", hex: "F045C", version: "1.5.54" }, { name: "resistor", hex: "F0B44", version: "2.8.94" }, { name: "resistor-nodes", hex: "F0B45", version: "2.8.94" }, { name: "resize", hex: "F0A68", version: "2.6.95" }, { name: "resize-bottom-right", hex: "F045D", version: "1.5.54" }, { name: "responsive", hex: "F045E", version: "1.5.54" }, { name: "restart", hex: "F0709", version: "1.8.36" }, { name: "restart-alert", hex: "F110C", version: "4.3.95" }, { name: "restart-off", hex: "F0D95", version: "3.4.93" }, { name: "restore", hex: "F099B", version: "2.4.85" }, { name: "restore-alert", hex: "F110D", version: "4.3.95" }, { name: "rewind", hex: "F045F", version: "1.5.54" }, { name: "rewind-10", hex: "F0D2A", version: "3.3.92" }, { name: "rewind-30", hex: "F0D96", version: "3.4.93" }, { name: "rewind-5", hex: "F11F9", version: "4.6.95" }, { name: "rewind-outline", hex: "F070A", version: "1.8.36" }, { name: "rhombus", hex: "F070B", version: "1.8.36" }, { name: "rhombus-medium", hex: "F0A10", version: "2.5.94" }, { name: "rhombus-outline", hex: "F070C", version: "1.8.36" }, { name: "rhombus-split", hex: "F0A11", version: "2.5.94" }, { name: "ribbon", hex: "F0460", version: "1.5.54" }, { name: "rice", hex: "F07EA", version: "2.0.46" }, { name: "ring", hex: "F07EB", version: "2.0.46" }, { name: "rivet", hex: "F0E60", version: "3.6.95" }, { name: "road", hex: "F0461", version: "1.5.54" }, { name: "road-variant", hex: "F0462", version: "1.5.54" }, { name: "robber", hex: "F1058", version: "4.1.95" }, { name: "robot", hex: "F06A9", version: "1.7.12" }, { name: "robot-industrial", hex: "F0B46", version: "2.8.94" }, { name: "robot-mower", hex: "F11F7", version: "4.6.95" }, { name: "robot-mower-outline", hex: "F11F3", version: "4.5.95" }, { name: "robot-vacuum", hex: "F070D", version: "1.8.36" }, { name: "robot-vacuum-variant", hex: "F0908", version: "2.3.50" }, { name: "rocket", hex: "F0463", version: "1.5.54" }, { name: "rocket-outline", hex: "F13AF", version: "5.0.45" }, { name: "rodent", hex: "F1327", version: "4.9.95" }, { name: "roller-skate", hex: "F0D2B", version: "3.3.92" }, { name: "roller-skate-off", hex: "F0145", version: "1.5.54" }, { name: "rollerblade", hex: "F0D2C", version: "3.3.92" }, { name: "rollerblade-off", hex: "F002E", version: "1.5.54" }, { name: "rollupjs", hex: "F0BC0", version: "3.0.39" }, { name: "roman-numeral-1", hex: "F1088", version: "4.2.95" }, { name: "roman-numeral-10", hex: "F1091", version: "4.2.95" }, { name: "roman-numeral-2", hex: "F1089", version: "4.2.95" }, { name: "roman-numeral-3", hex: "F108A", version: "4.2.95" }, { name: "roman-numeral-4", hex: "F108B", version: "4.2.95" }, { name: "roman-numeral-5", hex: "F108C", version: "4.2.95" }, { name: "roman-numeral-6", hex: "F108D", version: "4.2.95" }, { name: "roman-numeral-7", hex: "F108E", version: "4.2.95" }, { name: "roman-numeral-8", hex: "F108F", version: "4.2.95" }, { name: "roman-numeral-9", hex: "F1090", version: "4.2.95" }, { name: "room-service", hex: "F088D", version: "2.1.99" }, { name: "room-service-outline", hex: "F0D97", version: "3.4.93" }, { name: "rotate-3d", hex: "F0EC7", version: "3.7.94" }, { name: "rotate-3d-variant", hex: "F0464", version: "1.5.54" }, { name: "rotate-left", hex: "F0465", version: "1.5.54" }, { name: "rotate-left-variant", hex: "F0466", version: "1.5.54" }, { name: "rotate-orbit", hex: "F0D98", version: "3.4.93" }, { name: "rotate-right", hex: "F0467", version: "1.5.54" }, { name: "rotate-right-variant", hex: "F0468", version: "1.5.54" }, { name: "rounded-corner", hex: "F0607", version: "1.5.54" }, { name: "router", hex: "F11E2", version: "4.5.95" }, { name: "router-network", hex: "F1087", version: "4.2.95" }, { name: "router-wireless", hex: "F0469", version: "1.5.54" }, { name: "router-wireless-settings", hex: "F0A69", version: "2.6.95" }, { name: "routes", hex: "F046A", version: "1.5.54" }, { name: "routes-clock", hex: "F1059", version: "4.1.95" }, { name: "rowing", hex: "F0608", version: "1.5.54" }, { name: "rss", hex: "F046B", version: "1.5.54" }, { name: "rss-box", hex: "F046C", version: "1.5.54" }, { name: "rss-off", hex: "F0F21", version: "3.8.95" }, { name: "rugby", hex: "F0D99", version: "3.4.93" }, { name: "ruler", hex: "F046D", version: "1.5.54" }, { name: "ruler-square", hex: "F0CC2", version: "3.2.89" }, { name: "ruler-square-compass", hex: "F0EBE", version: "3.7.94" }, { name: "run", hex: "F070E", version: "1.8.36" }, { name: "run-fast", hex: "F046E", version: "1.5.54" }, { name: "rv-truck", hex: "F11D4", version: "4.5.95" }, { name: "sack", hex: "F0D2E", version: "3.3.92" }, { name: "sack-percent", hex: "F0D2F", version: "3.3.92" }, { name: "safe", hex: "F0A6A", version: "2.6.95" }, { name: "safe-square", hex: "F127C", version: "4.7.95" }, { name: "safe-square-outline", hex: "F127D", version: "4.7.95" }, { name: "safety-goggles", hex: "F0D30", version: "3.3.92" }, { name: "sail-boat", hex: "F0EC8", version: "3.7.94" }, { name: "sale", hex: "F046F", version: "1.5.54" }, { name: "salesforce", hex: "F088E", version: "2.1.99" }, { name: "sass", hex: "F07EC", version: "2.0.46" }, { name: "satellite", hex: "F0470", version: "1.5.54" }, { name: "satellite-uplink", hex: "F0909", version: "2.3.50" }, { name: "satellite-variant", hex: "F0471", version: "1.5.54" }, { name: "sausage", hex: "F08BA", version: "2.2.43" }, { name: "saw-blade", hex: "F0E61", version: "3.6.95" }, { name: "saxophone", hex: "F0609", version: "1.5.54" }, { name: "scale", hex: "F0472", version: "1.5.54" }, { name: "scale-balance", hex: "F05D1", version: "1.5.54" }, { name: "scale-bathroom", hex: "F0473", version: "1.5.54" }, { name: "scale-off", hex: "F105A", version: "4.1.95" }, { name: "scanner", hex: "F06AB", version: "1.7.12" }, { name: "scanner-off", hex: "F090A", version: "2.3.50" }, { name: "scatter-plot", hex: "F0EC9", version: "3.7.94" }, { name: "scatter-plot-outline", hex: "F0ECA", version: "3.7.94" }, { name: "school", hex: "F0474", version: "1.5.54" }, { name: "school-outline", hex: "F1180", version: "4.4.95" }, { name: "scissors-cutting", hex: "F0A6B", version: "2.6.95" }, { name: "scooter", hex: "F11E9", version: "4.5.95" }, { name: "scoreboard", hex: "F127E", version: "4.7.95" }, { name: "scoreboard-outline", hex: "F127F", version: "4.7.95" }, { name: "screen-rotation", hex: "F0475", version: "1.5.54" }, { name: "screen-rotation-lock", hex: "F0478", version: "1.5.54" }, { name: "screw-flat-top", hex: "F0DF3", version: "3.5.94" }, { name: "screw-lag", hex: "F0DF4", version: "3.5.94" }, { name: "screw-machine-flat-top", hex: "F0DF5", version: "3.5.94" }, { name: "screw-machine-round-top", hex: "F0DF6", version: "3.5.94" }, { name: "screw-round-top", hex: "F0DF7", version: "3.5.94" }, { name: "screwdriver", hex: "F0476", version: "1.5.54" }, { name: "script", hex: "F0BC1", version: "3.0.39" }, { name: "script-outline", hex: "F0477", version: "1.5.54" }, { name: "script-text", hex: "F0BC2", version: "3.0.39" }, { name: "script-text-outline", hex: "F0BC3", version: "3.0.39" }, { name: "sd", hex: "F0479", version: "1.5.54" }, { name: "seal", hex: "F047A", version: "1.5.54" }, { name: "seal-variant", hex: "F0FD9", version: "4.0.96" }, { name: "search-web", hex: "F070F", version: "1.8.36" }, { name: "seat", hex: "F0CC3", version: "3.2.89" }, { name: "seat-flat", hex: "F047B", version: "1.5.54" }, { name: "seat-flat-angled", hex: "F047C", version: "1.5.54" }, { name: "seat-individual-suite", hex: "F047D", version: "1.5.54" }, { name: "seat-legroom-extra", hex: "F047E", version: "1.5.54" }, { name: "seat-legroom-normal", hex: "F047F", version: "1.5.54" }, { name: "seat-legroom-reduced", hex: "F0480", version: "1.5.54" }, { name: "seat-outline", hex: "F0CC4", version: "3.2.89" }, { name: "seat-passenger", hex: "F1249", version: "4.6.95" }, { name: "seat-recline-extra", hex: "F0481", version: "1.5.54" }, { name: "seat-recline-normal", hex: "F0482", version: "1.5.54" }, { name: "seatbelt", hex: "F0CC5", version: "3.2.89" }, { name: "security", hex: "F0483", version: "1.5.54" }, { name: "security-network", hex: "F0484", version: "1.5.54" }, { name: "seed", hex: "F0E62", version: "3.6.95" }, { name: "seed-outline", hex: "F0E63", version: "3.6.95" }, { name: "segment", hex: "F0ECB", version: "3.7.94" }, { name: "select", hex: "F0485", version: "1.5.54" }, { name: "select-all", hex: "F0486", version: "1.5.54" }, { name: "select-color", hex: "F0D31", version: "3.3.92" }, { name: "select-compare", hex: "F0AD9", version: "2.7.94" }, { name: "select-drag", hex: "F0A6C", version: "2.6.95" }, { name: "select-group", hex: "F0F82", version: "3.9.97" }, { name: "select-inverse", hex: "F0487", version: "1.5.54" }, { name: "select-marker", hex: "F1280", version: "4.7.95" }, { name: "select-multiple", hex: "F1281", version: "4.7.95" }, { name: "select-multiple-marker", hex: "F1282", version: "4.7.95" }, { name: "select-off", hex: "F0488", version: "1.5.54" }, { name: "select-place", hex: "F0FDA", version: "4.0.96" }, { name: "select-search", hex: "F1204", version: "4.6.95" }, { name: "selection", hex: "F0489", version: "1.5.54" }, { name: "selection-drag", hex: "F0A6D", version: "2.6.95" }, { name: "selection-ellipse", hex: "F0D32", version: "3.3.92" }, { name: "selection-ellipse-arrow-inside", hex: "F0F22", version: "3.8.95" }, { name: "selection-marker", hex: "F1283", version: "4.7.95" }, { name: "selection-multiple-marker", hex: "F1284", version: "4.7.95" }, { name: "selection-mutliple", hex: "F1285", version: "4.7.95" }, { name: "selection-off", hex: "F0777", version: "1.9.32" }, { name: "selection-search", hex: "F1205", version: "4.6.95" }, { name: "semantic-web", hex: "F1316", version: "4.8.95" }, { name: "send", hex: "F048A", version: "1.5.54" }, { name: "send-check", hex: "F1161", version: "4.4.95" }, { name: "send-check-outline", hex: "F1162", version: "4.4.95" }, { name: "send-circle", hex: "F0DF8", version: "3.5.94" }, { name: "send-circle-outline", hex: "F0DF9", version: "3.5.94" }, { name: "send-clock", hex: "F1163", version: "4.4.95" }, { name: "send-clock-outline", hex: "F1164", version: "4.4.95" }, { name: "send-lock", hex: "F07ED", version: "2.0.46" }, { name: "send-lock-outline", hex: "F1166", version: "4.4.95" }, { name: "send-outline", hex: "F1165", version: "4.4.95" }, { name: "serial-port", hex: "F065C", version: "1.6.50" }, { name: "server", hex: "F048B", version: "1.5.54" }, { name: "server-minus", hex: "F048C", version: "1.5.54" }, { name: "server-network", hex: "F048D", version: "1.5.54" }, { name: "server-network-off", hex: "F048E", version: "1.5.54" }, { name: "server-off", hex: "F048F", version: "1.5.54" }, { name: "server-plus", hex: "F0490", version: "1.5.54" }, { name: "server-remove", hex: "F0491", version: "1.5.54" }, { name: "server-security", hex: "F0492", version: "1.5.54" }, { name: "set-all", hex: "F0778", version: "1.9.32" }, { name: "set-center", hex: "F0779", version: "1.9.32" }, { name: "set-center-right", hex: "F077A", version: "1.9.32" }, { name: "set-left", hex: "F077B", version: "1.9.32" }, { name: "set-left-center", hex: "F077C", version: "1.9.32" }, { name: "set-left-right", hex: "F077D", version: "1.9.32" }, { name: "set-none", hex: "F077E", version: "1.9.32" }, { name: "set-right", hex: "F077F", version: "1.9.32" }, { name: "set-top-box", hex: "F099F", version: "2.4.85" }, { name: "settings-helper", hex: "F0A6E", version: "2.6.95" }, { name: "shaker", hex: "F110E", version: "4.3.95" }, { name: "shaker-outline", hex: "F110F", version: "4.3.95" }, { name: "shape", hex: "F0831", version: "2.1.19" }, { name: "shape-circle-plus", hex: "F065D", version: "1.6.50" }, { name: "shape-outline", hex: "F0832", version: "2.1.19" }, { name: "shape-oval-plus", hex: "F11FA", version: "4.6.95" }, { name: "shape-plus", hex: "F0495", version: "1.5.54" }, { name: "shape-polygon-plus", hex: "F065E", version: "1.6.50" }, { name: "shape-rectangle-plus", hex: "F065F", version: "1.6.50" }, { name: "shape-square-plus", hex: "F0660", version: "1.6.50" }, { name: "share", hex: "F0496", version: "1.5.54" }, { name: "share-all", hex: "F11F4", version: "4.6.95" }, { name: "share-all-outline", hex: "F11F5", version: "4.6.95" }, { name: "share-circle", hex: "F11AD", version: "4.5.95" }, { name: "share-off", hex: "F0F23", version: "3.8.95" }, { name: "share-off-outline", hex: "F0F24", version: "3.8.95" }, { name: "share-outline", hex: "F0932", version: "2.3.54" }, { name: "share-variant", hex: "F0497", version: "1.5.54" }, { name: "sheep", hex: "F0CC6", version: "3.2.89" }, { name: "shield", hex: "F0498", version: "1.5.54" }, { name: "shield-account", hex: "F088F", version: "2.1.99" }, { name: "shield-account-outline", hex: "F0A12", version: "2.5.94" }, { name: "shield-airplane", hex: "F06BB", version: "1.7.22" }, { name: "shield-airplane-outline", hex: "F0CC7", version: "3.2.89" }, { name: "shield-alert", hex: "F0ECC", version: "3.7.94" }, { name: "shield-alert-outline", hex: "F0ECD", version: "3.7.94" }, { name: "shield-car", hex: "F0F83", version: "3.9.97" }, { name: "shield-check", hex: "F0565", version: "1.5.54" }, { name: "shield-check-outline", hex: "F0CC8", version: "3.2.89" }, { name: "shield-cross", hex: "F0CC9", version: "3.2.89" }, { name: "shield-cross-outline", hex: "F0CCA", version: "3.2.89" }, { name: "shield-edit", hex: "F11A0", version: "4.5.95" }, { name: "shield-edit-outline", hex: "F11A1", version: "4.5.95" }, { name: "shield-half", hex: "F1360", version: "4.9.95" }, { name: "shield-half-full", hex: "F0780", version: "1.9.32" }, { name: "shield-home", hex: "F068A", version: "1.7.12" }, { name: "shield-home-outline", hex: "F0CCB", version: "3.2.89" }, { name: "shield-key", hex: "F0BC4", version: "3.0.39" }, { name: "shield-key-outline", hex: "F0BC5", version: "3.0.39" }, { name: "shield-link-variant", hex: "F0D33", version: "3.3.92" }, { name: "shield-link-variant-outline", hex: "F0D34", version: "3.3.92" }, { name: "shield-lock", hex: "F099D", version: "2.4.85" }, { name: "shield-lock-outline", hex: "F0CCC", version: "3.2.89" }, { name: "shield-off", hex: "F099E", version: "2.4.85" }, { name: "shield-off-outline", hex: "F099C", version: "2.4.85" }, { name: "shield-outline", hex: "F0499", version: "1.5.54" }, { name: "shield-plus", hex: "F0ADA", version: "2.7.94" }, { name: "shield-plus-outline", hex: "F0ADB", version: "2.7.94" }, { name: "shield-refresh", hex: "F00AA", version: "1.5.54" }, { name: "shield-refresh-outline", hex: "F01E0", version: "1.5.54" }, { name: "shield-remove", hex: "F0ADC", version: "2.7.94" }, { name: "shield-remove-outline", hex: "F0ADD", version: "2.7.94" }, { name: "shield-search", hex: "F0D9A", version: "3.4.93" }, { name: "shield-star", hex: "F113B", version: "4.4.95" }, { name: "shield-star-outline", hex: "F113C", version: "4.4.95" }, { name: "shield-sun", hex: "F105D", version: "4.1.95" }, { name: "shield-sun-outline", hex: "F105E", version: "4.1.95" }, { name: "shield-sync", hex: "F11A2", version: "4.5.95" }, { name: "shield-sync-outline", hex: "F11A3", version: "4.5.95" }, { name: "ship-wheel", hex: "F0833", version: "2.1.19" }, { name: "shoe-formal", hex: "F0B47", version: "2.8.94" }, { name: "shoe-heel", hex: "F0B48", version: "2.8.94" }, { name: "shoe-print", hex: "F0DFA", version: "3.5.94" }, { name: "shopping", hex: "F049A", version: "1.5.54" }, { name: "shopping-music", hex: "F049B", version: "1.5.54" }, { name: "shopping-outline", hex: "F11D5", version: "4.5.95" }, { name: "shopping-search", hex: "F0F84", version: "3.9.97" }, { name: "shovel", hex: "F0710", version: "1.8.36" }, { name: "shovel-off", hex: "F0711", version: "1.8.36" }, { name: "shower", hex: "F09A0", version: "2.4.85" }, { name: "shower-head", hex: "F09A1", version: "2.4.85" }, { name: "shredder", hex: "F049C", version: "1.5.54" }, { name: "shuffle", hex: "F049D", version: "1.5.54" }, { name: "shuffle-disabled", hex: "F049E", version: "1.5.54" }, { name: "shuffle-variant", hex: "F049F", version: "1.5.54" }, { name: "shuriken", hex: "F137F", version: "4.9.95" }, { name: "sigma", hex: "F04A0", version: "1.5.54" }, { name: "sigma-lower", hex: "F062B", version: "1.6.50" }, { name: "sign-caution", hex: "F04A1", version: "1.5.54" }, { name: "sign-direction", hex: "F0781", version: "1.9.32" }, { name: "sign-direction-minus", hex: "F1000", version: "4.0.96" }, { name: "sign-direction-plus", hex: "F0FDC", version: "4.0.96" }, { name: "sign-direction-remove", hex: "F0FDD", version: "4.0.96" }, { name: "sign-real-estate", hex: "F1118", version: "4.3.95" }, { name: "sign-text", hex: "F0782", version: "1.9.32" }, { name: "signal", hex: "F04A2", version: "1.5.54" }, { name: "signal-2g", hex: "F0712", version: "1.8.36" }, { name: "signal-3g", hex: "F0713", version: "1.8.36" }, { name: "signal-4g", hex: "F0714", version: "1.8.36" }, { name: "signal-5g", hex: "F0A6F", version: "2.6.95" }, { name: "signal-cellular-1", hex: "F08BC", version: "2.2.43" }, { name: "signal-cellular-2", hex: "F08BD", version: "2.2.43" }, { name: "signal-cellular-3", hex: "F08BE", version: "2.2.43" }, { name: "signal-cellular-outline", hex: "F08BF", version: "2.2.43" }, { name: "signal-distance-variant", hex: "F0E64", version: "3.6.95" }, { name: "signal-hspa", hex: "F0715", version: "1.8.36" }, { name: "signal-hspa-plus", hex: "F0716", version: "1.8.36" }, { name: "signal-off", hex: "F0783", version: "1.9.32" }, { name: "signal-variant", hex: "F060A", version: "1.5.54" }, { name: "signature", hex: "F0DFB", version: "3.5.94" }, { name: "signature-freehand", hex: "F0DFC", version: "3.5.94" }, { name: "signature-image", hex: "F0DFD", version: "3.5.94" }, { name: "signature-text", hex: "F0DFE", version: "3.5.94" }, { name: "silo", hex: "F0B49", version: "2.8.94" }, { name: "silverware", hex: "F04A3", version: "1.5.54" }, { name: "silverware-clean", hex: "F0FDE", version: "4.0.96" }, { name: "silverware-fork", hex: "F04A4", version: "1.5.54" }, { name: "silverware-fork-knife", hex: "F0A70", version: "2.6.95" }, { name: "silverware-spoon", hex: "F04A5", version: "1.5.54" }, { name: "silverware-variant", hex: "F04A6", version: "1.5.54" }, { name: "sim", hex: "F04A7", version: "1.5.54" }, { name: "sim-alert", hex: "F04A8", version: "1.5.54" }, { name: "sim-off", hex: "F04A9", version: "1.5.54" }, { name: "simple-icons", hex: "F131D", version: "4.8.95" }, { name: "sina-weibo", hex: "F0ADF", version: "2.7.94" }, { name: "sitemap", hex: "F04AA", version: "1.5.54" }, { name: "size-l", hex: "F13A6", version: "5.0.45" }, { name: "size-m", hex: "F13A5", version: "5.0.45" }, { name: "size-s", hex: "F13A4", version: "5.0.45" }, { name: "size-xl", hex: "F13A7", version: "5.0.45" }, { name: "size-xs", hex: "F13A3", version: "5.0.45" }, { name: "size-xxl", hex: "F13A8", version: "5.0.45" }, { name: "size-xxs", hex: "F13A2", version: "5.0.45" }, { name: "size-xxxl", hex: "F13A9", version: "5.0.45" }, { name: "skate", hex: "F0D35", version: "3.3.92" }, { name: "skew-less", hex: "F0D36", version: "3.3.92" }, { name: "skew-more", hex: "F0D37", version: "3.3.92" }, { name: "ski", hex: "F1304", version: "4.8.95" }, { name: "ski-cross-country", hex: "F1305", version: "4.8.95" }, { name: "ski-water", hex: "F1306", version: "4.8.95" }, { name: "skip-backward", hex: "F04AB", version: "1.5.54" }, { name: "skip-backward-outline", hex: "F0F25", version: "3.8.95" }, { name: "skip-forward", hex: "F04AC", version: "1.5.54" }, { name: "skip-forward-outline", hex: "F0F26", version: "3.8.95" }, { name: "skip-next", hex: "F04AD", version: "1.5.54" }, { name: "skip-next-circle", hex: "F0661", version: "1.6.50" }, { name: "skip-next-circle-outline", hex: "F0662", version: "1.6.50" }, { name: "skip-next-outline", hex: "F0F27", version: "3.8.95" }, { name: "skip-previous", hex: "F04AE", version: "1.5.54" }, { name: "skip-previous-circle", hex: "F0663", version: "1.6.50" }, { name: "skip-previous-circle-outline", hex: "F0664", version: "1.6.50" }, { name: "skip-previous-outline", hex: "F0F28", version: "3.8.95" }, { name: "skull", hex: "F068C", version: "1.7.12" }, { name: "skull-crossbones", hex: "F0BC6", version: "3.0.39" }, { name: "skull-crossbones-outline", hex: "F0BC7", version: "3.0.39" }, { name: "skull-outline", hex: "F0BC8", version: "3.0.39" }, { name: "skype", hex: "F04AF", version: "1.5.54" }, { name: "skype-business", hex: "F04B0", version: "1.5.54" }, { name: "slack", hex: "F04B1", version: "1.5.54" }, { name: "slash-forward", hex: "F0FDF", version: "4.0.96" }, { name: "slash-forward-box", hex: "F0FE0", version: "4.0.96" }, { name: "sleep", hex: "F04B2", version: "1.5.54" }, { name: "sleep-off", hex: "F04B3", version: "1.5.54" }, { name: "slope-downhill", hex: "F0DFF", version: "3.5.94" }, { name: "slope-uphill", hex: "F0E00", version: "3.5.94" }, { name: "slot-machine", hex: "F1114", version: "4.3.95" }, { name: "slot-machine-outline", hex: "F1115", version: "4.3.95" }, { name: "smart-card", hex: "F10BD", version: "4.2.95" }, { name: "smart-card-outline", hex: "F10BE", version: "4.2.95" }, { name: "smart-card-reader", hex: "F10BF", version: "4.2.95" }, { name: "smart-card-reader-outline", hex: "F10C0", version: "4.2.95" }, { name: "smog", hex: "F0A71", version: "2.6.95" }, { name: "smoke-detector", hex: "F0392", version: "1.5.54" }, { name: "smoking", hex: "F04B4", version: "1.5.54" }, { name: "smoking-off", hex: "F04B5", version: "1.5.54" }, { name: "snapchat", hex: "F04B6", version: "1.5.54" }, { name: "snowboard", hex: "F1307", version: "4.8.95" }, { name: "snowflake", hex: "F0717", version: "1.8.36" }, { name: "snowflake-alert", hex: "F0F29", version: "3.8.95" }, { name: "snowflake-melt", hex: "F12CB", version: "4.8.95" }, { name: "snowflake-variant", hex: "F0F2A", version: "3.8.95" }, { name: "snowman", hex: "F04B7", version: "1.5.54" }, { name: "soccer", hex: "F04B8", version: "1.5.54" }, { name: "soccer-field", hex: "F0834", version: "2.1.19" }, { name: "sofa", hex: "F04B9", version: "1.5.54" }, { name: "solar-panel", hex: "F0D9B", version: "3.4.93" }, { name: "solar-panel-large", hex: "F0D9C", version: "3.4.93" }, { name: "solar-power", hex: "F0A72", version: "2.6.95" }, { name: "soldering-iron", hex: "F1092", version: "4.2.95" }, { name: "solid", hex: "F068D", version: "1.7.12" }, { name: "sony-playstation", hex: "F0414", version: "1.5.54" }, { name: "sort", hex: "F04BA", version: "1.5.54" }, { name: "sort-alphabetical-ascending", hex: "F05BD", version: "1.5.54" }, { name: "sort-alphabetical-ascending-variant", hex: "F1148", version: "4.4.95" }, { name: "sort-alphabetical-descending", hex: "F05BF", version: "1.5.54" }, { name: "sort-alphabetical-descending-variant", hex: "F1149", version: "4.4.95" }, { name: "sort-alphabetical-variant", hex: "F04BB", version: "1.5.54" }, { name: "sort-ascending", hex: "F04BC", version: "1.5.54" }, { name: "sort-bool-ascending", hex: "F1385", version: "5.0.45" }, { name: "sort-bool-ascending-variant", hex: "F1386", version: "5.0.45" }, { name: "sort-bool-descending", hex: "F1387", version: "5.0.45" }, { name: "sort-bool-descending-variant", hex: "F1388", version: "5.0.45" }, { name: "sort-descending", hex: "F04BD", version: "1.5.54" }, { name: "sort-numeric-ascending", hex: "F1389", version: "5.0.45" }, { name: "sort-numeric-ascending-variant", hex: "F090D", version: "2.3.50" }, { name: "sort-numeric-descending", hex: "F138A", version: "5.0.45" }, { name: "sort-numeric-descending-variant", hex: "F0AD2", version: "2.7.94" }, { name: "sort-numeric-variant", hex: "F04BE", version: "1.5.54" }, { name: "sort-reverse-variant", hex: "F033C", version: "1.5.54" }, { name: "sort-variant", hex: "F04BF", version: "1.5.54" }, { name: "sort-variant-lock", hex: "F0CCD", version: "3.2.89" }, { name: "sort-variant-lock-open", hex: "F0CCE", version: "3.2.89" }, { name: "sort-variant-remove", hex: "F1147", version: "4.4.95" }, { name: "soundcloud", hex: "F04C0", version: "1.5.54" }, { name: "source-branch", hex: "F062C", version: "1.6.50" }, { name: "source-commit", hex: "F0718", version: "1.8.36" }, { name: "source-commit-end", hex: "F0719", version: "1.8.36" }, { name: "source-commit-end-local", hex: "F071A", version: "1.8.36" }, { name: "source-commit-local", hex: "F071B", version: "1.8.36" }, { name: "source-commit-next-local", hex: "F071C", version: "1.8.36" }, { name: "source-commit-start", hex: "F071D", version: "1.8.36" }, { name: "source-commit-start-next-local", hex: "F071E", version: "1.8.36" }, { name: "source-fork", hex: "F04C1", version: "1.5.54" }, { name: "source-merge", hex: "F062D", version: "1.6.50" }, { name: "source-pull", hex: "F04C2", version: "1.5.54" }, { name: "source-repository", hex: "F0CCF", version: "3.2.89" }, { name: "source-repository-multiple", hex: "F0CD0", version: "3.2.89" }, { name: "soy-sauce", hex: "F07EE", version: "2.0.46" }, { name: "spa", hex: "F0CD1", version: "3.2.89" }, { name: "spa-outline", hex: "F0CD2", version: "3.2.89" }, { name: "space-invaders", hex: "F0BC9", version: "3.0.39" }, { name: "space-station", hex: "F1383", version: "4.9.95" }, { name: "spade", hex: "F0E65", version: "3.6.95" }, { name: "speaker", hex: "F04C3", version: "1.5.54" }, { name: "speaker-bluetooth", hex: "F09A2", version: "2.4.85" }, { name: "speaker-multiple", hex: "F0D38", version: "3.3.92" }, { name: "speaker-off", hex: "F04C4", version: "1.5.54" }, { name: "speaker-wireless", hex: "F071F", version: "1.8.36" }, { name: "speedometer", hex: "F04C5", version: "1.5.54" }, { name: "speedometer-medium", hex: "F0F85", version: "3.9.97" }, { name: "speedometer-slow", hex: "F0F86", version: "3.9.97" }, { name: "spellcheck", hex: "F04C6", version: "1.5.54" }, { name: "spider", hex: "F11EA", version: "4.5.95" }, { name: "spider-thread", hex: "F11EB", version: "4.5.95" }, { name: "spider-web", hex: "F0BCA", version: "3.0.39" }, { name: "spotify", hex: "F04C7", version: "1.5.54" }, { name: "spotlight", hex: "F04C8", version: "1.5.54" }, { name: "spotlight-beam", hex: "F04C9", version: "1.5.54" }, { name: "spray", hex: "F0665", version: "1.6.50" }, { name: "spray-bottle", hex: "F0AE0", version: "2.7.94" }, { name: "sprinkler", hex: "F105F", version: "4.1.95" }, { name: "sprinkler-variant", hex: "F1060", version: "4.1.95" }, { name: "sprout", hex: "F0E66", version: "3.6.95" }, { name: "sprout-outline", hex: "F0E67", version: "3.6.95" }, { name: "square", hex: "F0764", version: "1.9.32" }, { name: "square-edit-outline", hex: "F090C", version: "2.3.50" }, { name: "square-medium", hex: "F0A13", version: "2.5.94" }, { name: "square-medium-outline", hex: "F0A14", version: "2.5.94" }, { name: "square-off", hex: "F12EE", version: "4.8.95" }, { name: "square-off-outline", hex: "F12EF", version: "4.8.95" }, { name: "square-outline", hex: "F0763", version: "1.9.32" }, { name: "square-root", hex: "F0784", version: "1.9.32" }, { name: "square-root-box", hex: "F09A3", version: "2.4.85" }, { name: "square-small", hex: "F0A15", version: "2.5.94" }, { name: "squeegee", hex: "F0AE1", version: "2.7.94" }, { name: "ssh", hex: "F08C0", version: "2.2.43" }, { name: "stack-exchange", hex: "F060B", version: "1.5.54" }, { name: "stack-overflow", hex: "F04CC", version: "1.5.54" }, { name: "stackpath", hex: "F0359", version: "1.5.54" }, { name: "stadium", hex: "F0FF9", version: "4.0.96" }, { name: "stadium-variant", hex: "F0720", version: "1.8.36" }, { name: "stairs", hex: "F04CD", version: "1.5.54" }, { name: "stairs-box", hex: "F139E", version: "5.0.45" }, { name: "stairs-down", hex: "F12BE", version: "4.8.95" }, { name: "stairs-up", hex: "F12BD", version: "4.8.95" }, { name: "stamper", hex: "F0D39", version: "3.3.92" }, { name: "standard-definition", hex: "F07EF", version: "2.0.46" }, { name: "star", hex: "F04CE", version: "1.5.54" }, { name: "star-box", hex: "F0A73", version: "2.6.95" }, { name: "star-box-multiple", hex: "F1286", version: "4.7.95" }, { name: "star-box-multiple-outline", hex: "F1287", version: "4.7.95" }, { name: "star-box-outline", hex: "F0A74", version: "2.6.95" }, { name: "star-circle", hex: "F04CF", version: "1.5.54" }, { name: "star-circle-outline", hex: "F09A4", version: "2.4.85" }, { name: "star-face", hex: "F09A5", version: "2.4.85" }, { name: "star-four-points", hex: "F0AE2", version: "2.7.94" }, { name: "star-four-points-outline", hex: "F0AE3", version: "2.7.94" }, { name: "star-half", hex: "F0246", version: "1.5.54" }, { name: "star-half-full", hex: "F04D0", version: "1.5.54" }, { name: "star-off", hex: "F04D1", version: "1.5.54" }, { name: "star-outline", hex: "F04D2", version: "1.5.54" }, { name: "star-three-points", hex: "F0AE4", version: "2.7.94" }, { name: "star-three-points-outline", hex: "F0AE5", version: "2.7.94" }, { name: "state-machine", hex: "F11EF", version: "4.5.95" }, { name: "steam", hex: "F04D3", version: "1.5.54" }, { name: "steering", hex: "F04D4", version: "1.5.54" }, { name: "steering-off", hex: "F090E", version: "2.3.50" }, { name: "step-backward", hex: "F04D5", version: "1.5.54" }, { name: "step-backward-2", hex: "F04D6", version: "1.5.54" }, { name: "step-forward", hex: "F04D7", version: "1.5.54" }, { name: "step-forward-2", hex: "F04D8", version: "1.5.54" }, { name: "stethoscope", hex: "F04D9", version: "1.5.54" }, { name: "sticker", hex: "F1364", version: "4.9.95" }, { name: "sticker-alert", hex: "F1365", version: "4.9.95" }, { name: "sticker-alert-outline", hex: "F1366", version: "4.9.95" }, { name: "sticker-check", hex: "F1367", version: "4.9.95" }, { name: "sticker-check-outline", hex: "F1368", version: "4.9.95" }, { name: "sticker-circle-outline", hex: "F05D0", version: "1.5.54" }, { name: "sticker-emoji", hex: "F0785", version: "1.9.32" }, { name: "sticker-minus", hex: "F1369", version: "4.9.95" }, { name: "sticker-minus-outline", hex: "F136A", version: "4.9.95" }, { name: "sticker-outline", hex: "F136B", version: "4.9.95" }, { name: "sticker-plus", hex: "F136C", version: "4.9.95" }, { name: "sticker-plus-outline", hex: "F136D", version: "4.9.95" }, { name: "sticker-remove", hex: "F136E", version: "4.9.95" }, { name: "sticker-remove-outline", hex: "F136F", version: "4.9.95" }, { name: "stocking", hex: "F04DA", version: "1.5.54" }, { name: "stomach", hex: "F1093", version: "4.2.95" }, { name: "stop", hex: "F04DB", version: "1.5.54" }, { name: "stop-circle", hex: "F0666", version: "1.6.50" }, { name: "stop-circle-outline", hex: "F0667", version: "1.6.50" }, { name: "store", hex: "F04DC", version: "1.5.54" }, { name: "store-24-hour", hex: "F04DD", version: "1.5.54" }, { name: "store-outline", hex: "F1361", version: "4.9.95" }, { name: "storefront", hex: "F07C7", version: "2.0.46" }, { name: "storefront-outline", hex: "F10C1", version: "4.2.95" }, { name: "stove", hex: "F04DE", version: "1.5.54" }, { name: "strategy", hex: "F11D6", version: "4.5.95" }, { name: "stretch-to-page", hex: "F0F2B", version: "3.8.95" }, { name: "stretch-to-page-outline", hex: "F0F2C", version: "3.8.95" }, { name: "string-lights", hex: "F12BA", version: "4.7.95" }, { name: "string-lights-off", hex: "F12BB", version: "4.7.95" }, { name: "subdirectory-arrow-left", hex: "F060C", version: "1.5.54" }, { name: "subdirectory-arrow-right", hex: "F060D", version: "1.5.54" }, { name: "subtitles", hex: "F0A16", version: "2.5.94" }, { name: "subtitles-outline", hex: "F0A17", version: "2.5.94" }, { name: "subway", hex: "F06AC", version: "1.7.12" }, { name: "subway-alert-variant", hex: "F0D9D", version: "3.4.93" }, { name: "subway-variant", hex: "F04DF", version: "1.5.54" }, { name: "summit", hex: "F0786", version: "1.9.32" }, { name: "sunglasses", hex: "F04E0", version: "1.5.54" }, { name: "surround-sound", hex: "F05C5", version: "1.5.54" }, { name: "surround-sound-2-0", hex: "F07F0", version: "2.0.46" }, { name: "surround-sound-3-1", hex: "F07F1", version: "2.0.46" }, { name: "surround-sound-5-1", hex: "F07F2", version: "2.0.46" }, { name: "surround-sound-7-1", hex: "F07F3", version: "2.0.46" }, { name: "svg", hex: "F0721", version: "1.8.36" }, { name: "swap-horizontal", hex: "F04E1", version: "1.5.54" }, { name: "swap-horizontal-bold", hex: "F0BCD", version: "3.0.39" }, { name: "swap-horizontal-circle", hex: "F0FE1", version: "4.0.96" }, { name: "swap-horizontal-circle-outline", hex: "F0FE2", version: "4.0.96" }, { name: "swap-horizontal-variant", hex: "F08C1", version: "2.2.43" }, { name: "swap-vertical", hex: "F04E2", version: "1.5.54" }, { name: "swap-vertical-bold", hex: "F0BCE", version: "3.0.39" }, { name: "swap-vertical-circle", hex: "F0FE3", version: "4.0.96" }, { name: "swap-vertical-circle-outline", hex: "F0FE4", version: "4.0.96" }, { name: "swap-vertical-variant", hex: "F08C2", version: "2.2.43" }, { name: "swim", hex: "F04E3", version: "1.5.54" }, { name: "switch", hex: "F04E4", version: "1.5.54" }, { name: "sword", hex: "F04E5", version: "1.5.54" }, { name: "sword-cross", hex: "F0787", version: "1.9.32" }, { name: "syllabary-hangul", hex: "F1333", version: "4.9.95" }, { name: "syllabary-hiragana", hex: "F1334", version: "4.9.95" }, { name: "syllabary-katakana", hex: "F1335", version: "4.9.95" }, { name: "syllabary-katakana-half-width", hex: "F1336", version: "4.9.95" }, { name: "symfony", hex: "F0AE6", version: "2.7.94" }, { name: "sync", hex: "F04E6", version: "1.5.54" }, { name: "sync-alert", hex: "F04E7", version: "1.5.54" }, { name: "sync-circle", hex: "F1378", version: "4.9.95" }, { name: "sync-off", hex: "F04E8", version: "1.5.54" }, { name: "tab", hex: "F04E9", version: "1.5.54" }, { name: "tab-minus", hex: "F0B4B", version: "2.8.94" }, { name: "tab-plus", hex: "F075C", version: "1.9.32" }, { name: "tab-remove", hex: "F0B4C", version: "2.8.94" }, { name: "tab-unselected", hex: "F04EA", version: "1.5.54" }, { name: "table", hex: "F04EB", version: "1.5.54" }, { name: "table-border", hex: "F0A18", version: "2.5.94" }, { name: "table-chair", hex: "F1061", version: "4.1.95" }, { name: "table-column", hex: "F0835", version: "2.1.19" }, { name: "table-column-plus-after", hex: "F04EC", version: "1.5.54" }, { name: "table-column-plus-before", hex: "F04ED", version: "1.5.54" }, { name: "table-column-remove", hex: "F04EE", version: "1.5.54" }, { name: "table-column-width", hex: "F04EF", version: "1.5.54" }, { name: "table-edit", hex: "F04F0", version: "1.5.54" }, { name: "table-eye", hex: "F1094", version: "4.2.95" }, { name: "table-furniture", hex: "F05BC", version: "1.5.54" }, { name: "table-headers-eye", hex: "F121D", version: "4.6.95" }, { name: "table-headers-eye-off", hex: "F121E", version: "4.6.95" }, { name: "table-large", hex: "F04F1", version: "1.5.54" }, { name: "table-large-plus", hex: "F0F87", version: "3.9.97" }, { name: "table-large-remove", hex: "F0F88", version: "3.9.97" }, { name: "table-merge-cells", hex: "F09A6", version: "2.4.85" }, { name: "table-of-contents", hex: "F0836", version: "2.1.19" }, { name: "table-plus", hex: "F0A75", version: "2.6.95" }, { name: "table-refresh", hex: "F13A0", version: "5.0.45" }, { name: "table-remove", hex: "F0A76", version: "2.6.95" }, { name: "table-row", hex: "F0837", version: "2.1.19" }, { name: "table-row-height", hex: "F04F2", version: "1.5.54" }, { name: "table-row-plus-after", hex: "F04F3", version: "1.5.54" }, { name: "table-row-plus-before", hex: "F04F4", version: "1.5.54" }, { name: "table-row-remove", hex: "F04F5", version: "1.5.54" }, { name: "table-search", hex: "F090F", version: "2.3.50" }, { name: "table-settings", hex: "F0838", version: "2.1.19" }, { name: "table-sync", hex: "F13A1", version: "5.0.45" }, { name: "table-tennis", hex: "F0E68", version: "3.6.95" }, { name: "tablet", hex: "F04F6", version: "1.5.54" }, { name: "tablet-android", hex: "F04F7", version: "1.5.54" }, { name: "tablet-cellphone", hex: "F09A7", version: "2.4.85" }, { name: "tablet-dashboard", hex: "F0ECE", version: "3.7.94" }, { name: "tablet-ipad", hex: "F04F8", version: "1.5.54" }, { name: "taco", hex: "F0762", version: "1.9.32" }, { name: "tag", hex: "F04F9", version: "1.5.54" }, { name: "tag-faces", hex: "F04FA", version: "1.5.54" }, { name: "tag-heart", hex: "F068B", version: "1.7.12" }, { name: "tag-heart-outline", hex: "F0BCF", version: "3.0.39" }, { name: "tag-minus", hex: "F0910", version: "2.3.50" }, { name: "tag-minus-outline", hex: "F121F", version: "4.6.95" }, { name: "tag-multiple", hex: "F04FB", version: "1.5.54" }, { name: "tag-multiple-outline", hex: "F12F7", version: "4.8.95" }, { name: "tag-off", hex: "F1220", version: "4.6.95" }, { name: "tag-off-outline", hex: "F1221", version: "4.6.95" }, { name: "tag-outline", hex: "F04FC", version: "1.5.54" }, { name: "tag-plus", hex: "F0722", version: "1.8.36" }, { name: "tag-plus-outline", hex: "F1222", version: "4.6.95" }, { name: "tag-remove", hex: "F0723", version: "1.8.36" }, { name: "tag-remove-outline", hex: "F1223", version: "4.6.95" }, { name: "tag-text", hex: "F1224", version: "4.6.95" }, { name: "tag-text-outline", hex: "F04FD", version: "1.5.54" }, { name: "tank", hex: "F0D3A", version: "3.3.92" }, { name: "tanker-truck", hex: "F0FE5", version: "4.0.96" }, { name: "tape-measure", hex: "F0B4D", version: "2.8.94" }, { name: "target", hex: "F04FE", version: "1.5.54" }, { name: "target-account", hex: "F0BD0", version: "3.0.39" }, { name: "target-variant", hex: "F0A77", version: "2.6.95" }, { name: "taxi", hex: "F04FF", version: "1.5.54" }, { name: "tea", hex: "F0D9E", version: "3.4.93" }, { name: "tea-outline", hex: "F0D9F", version: "3.4.93" }, { name: "teach", hex: "F0890", version: "2.1.99" }, { name: "teamviewer", hex: "F0500", version: "1.5.54" }, { name: "telegram", hex: "F0501", version: "1.5.54" }, { name: "telescope", hex: "F0B4E", version: "2.8.94" }, { name: "television", hex: "F0502", version: "1.5.54" }, { name: "television-ambient-light", hex: "F1356", version: "4.9.95" }, { name: "television-box", hex: "F0839", version: "2.1.19" }, { name: "television-classic", hex: "F07F4", version: "2.0.46" }, { name: "television-classic-off", hex: "F083A", version: "2.1.19" }, { name: "television-clean", hex: "F1110", version: "4.3.95" }, { name: "television-guide", hex: "F0503", version: "1.5.54" }, { name: "television-off", hex: "F083B", version: "2.1.19" }, { name: "television-pause", hex: "F0F89", version: "3.9.97" }, { name: "television-play", hex: "F0ECF", version: "3.7.94" }, { name: "television-stop", hex: "F0F8A", version: "3.9.97" }, { name: "temperature-celsius", hex: "F0504", version: "1.5.54" }, { name: "temperature-fahrenheit", hex: "F0505", version: "1.5.54" }, { name: "temperature-kelvin", hex: "F0506", version: "1.5.54" }, { name: "tennis", hex: "F0DA0", version: "3.4.93" }, { name: "tennis-ball", hex: "F0507", version: "1.5.54" }, { name: "tent", hex: "F0508", version: "1.5.54" }, { name: "terraform", hex: "F1062", version: "4.1.95" }, { name: "terrain", hex: "F0509", version: "1.5.54" }, { name: "test-tube", hex: "F0668", version: "1.6.50" }, { name: "test-tube-empty", hex: "F0911", version: "2.3.50" }, { name: "test-tube-off", hex: "F0912", version: "2.3.50" }, { name: "text", hex: "F09A8", version: "2.4.85" }, { name: "text-box", hex: "F021A", version: "1.5.54" }, { name: "text-box-check", hex: "F0EA6", version: "3.7.94" }, { name: "text-box-check-outline", hex: "F0EA7", version: "3.7.94" }, { name: "text-box-minus", hex: "F0EA8", version: "3.7.94" }, { name: "text-box-minus-outline", hex: "F0EA9", version: "3.7.94" }, { name: "text-box-multiple", hex: "F0AB7", version: "2.7.94" }, { name: "text-box-multiple-outline", hex: "F0AB8", version: "2.7.94" }, { name: "text-box-outline", hex: "F09ED", version: "2.5.94" }, { name: "text-box-plus", hex: "F0EAA", version: "3.7.94" }, { name: "text-box-plus-outline", hex: "F0EAB", version: "3.7.94" }, { name: "text-box-remove", hex: "F0EAC", version: "3.7.94" }, { name: "text-box-remove-outline", hex: "F0EAD", version: "3.7.94" }, { name: "text-box-search", hex: "F0EAE", version: "3.7.94" }, { name: "text-box-search-outline", hex: "F0EAF", version: "3.7.94" }, { name: "text-recognition", hex: "F113D", version: "4.4.95" }, { name: "text-shadow", hex: "F0669", version: "1.6.50" }, { name: "text-short", hex: "F09A9", version: "2.4.85" }, { name: "text-subject", hex: "F09AA", version: "2.4.85" }, { name: "text-to-speech", hex: "F050A", version: "1.5.54" }, { name: "text-to-speech-off", hex: "F050B", version: "1.5.54" }, { name: "textarea", hex: "F1095", version: "4.2.95" }, { name: "textbox", hex: "F060E", version: "1.5.54" }, { name: "textbox-lock", hex: "F135D", version: "4.9.95" }, { name: "textbox-password", hex: "F07F5", version: "2.0.46" }, { name: "texture", hex: "F050C", version: "1.5.54" }, { name: "texture-box", hex: "F0FE6", version: "4.0.96" }, { name: "theater", hex: "F050D", version: "1.5.54" }, { name: "theme-light-dark", hex: "F050E", version: "1.5.54" }, { name: "thermometer", hex: "F050F", version: "1.5.54" }, { name: "thermometer-alert", hex: "F0E01", version: "3.5.94" }, { name: "thermometer-chevron-down", hex: "F0E02", version: "3.5.94" }, { name: "thermometer-chevron-up", hex: "F0E03", version: "3.5.94" }, { name: "thermometer-high", hex: "F10C2", version: "4.2.95" }, { name: "thermometer-lines", hex: "F0510", version: "1.5.54" }, { name: "thermometer-low", hex: "F10C3", version: "4.2.95" }, { name: "thermometer-minus", hex: "F0E04", version: "3.5.94" }, { name: "thermometer-plus", hex: "F0E05", version: "3.5.94" }, { name: "thermostat", hex: "F0393", version: "1.5.54" }, { name: "thermostat-box", hex: "F0891", version: "2.1.99" }, { name: "thought-bubble", hex: "F07F6", version: "2.0.46" }, { name: "thought-bubble-outline", hex: "F07F7", version: "2.0.46" }, { name: "thumb-down", hex: "F0511", version: "1.5.54" }, { name: "thumb-down-outline", hex: "F0512", version: "1.5.54" }, { name: "thumb-up", hex: "F0513", version: "1.5.54" }, { name: "thumb-up-outline", hex: "F0514", version: "1.5.54" }, { name: "thumbs-up-down", hex: "F0515", version: "1.5.54" }, { name: "ticket", hex: "F0516", version: "1.5.54" }, { name: "ticket-account", hex: "F0517", version: "1.5.54" }, { name: "ticket-confirmation", hex: "F0518", version: "1.5.54" }, { name: "ticket-confirmation-outline", hex: "F13AA", version: "5.0.45" }, { name: "ticket-outline", hex: "F0913", version: "2.3.50" }, { name: "ticket-percent", hex: "F0724", version: "1.8.36" }, { name: "tie", hex: "F0519", version: "1.5.54" }, { name: "tilde", hex: "F0725", version: "1.8.36" }, { name: "timelapse", hex: "F051A", version: "1.5.54" }, { name: "timeline", hex: "F0BD1", version: "3.0.39" }, { name: "timeline-alert", hex: "F0F95", version: "3.9.97" }, { name: "timeline-alert-outline", hex: "F0F98", version: "3.9.97" }, { name: "timeline-clock", hex: "F11FB", version: "4.6.95" }, { name: "timeline-clock-outline", hex: "F11FC", version: "4.6.95" }, { name: "timeline-help", hex: "F0F99", version: "3.9.97" }, { name: "timeline-help-outline", hex: "F0F9A", version: "3.9.97" }, { name: "timeline-outline", hex: "F0BD2", version: "3.0.39" }, { name: "timeline-plus", hex: "F0F96", version: "3.9.97" }, { name: "timeline-plus-outline", hex: "F0F97", version: "3.9.97" }, { name: "timeline-text", hex: "F0BD3", version: "3.0.39" }, { name: "timeline-text-outline", hex: "F0BD4", version: "3.0.39" }, { name: "timer", hex: "F13AB", version: "5.0.45" }, { name: "timer-10", hex: "F051C", version: "1.5.54" }, { name: "timer-3", hex: "F051D", version: "1.5.54" }, { name: "timer-off", hex: "F13AC", version: "5.0.45" }, { name: "timer-off-outline", hex: "F051E", version: "1.5.54" }, { name: "timer-outline", hex: "F051B", version: "1.5.54" }, { name: "timer-sand", hex: "F051F", version: "1.5.54" }, { name: "timer-sand-empty", hex: "F06AD", version: "1.7.12" }, { name: "timer-sand-full", hex: "F078C", version: "1.9.32" }, { name: "timetable", hex: "F0520", version: "1.5.54" }, { name: "toaster", hex: "F1063", version: "4.1.95" }, { name: "toaster-off", hex: "F11B7", version: "4.5.95" }, { name: "toaster-oven", hex: "F0CD3", version: "3.2.89" }, { name: "toggle-switch", hex: "F0521", version: "1.5.54" }, { name: "toggle-switch-off", hex: "F0522", version: "1.5.54" }, { name: "toggle-switch-off-outline", hex: "F0A19", version: "2.5.94" }, { name: "toggle-switch-outline", hex: "F0A1A", version: "2.5.94" }, { name: "toilet", hex: "F09AB", version: "2.4.85" }, { name: "toolbox", hex: "F09AC", version: "2.4.85" }, { name: "toolbox-outline", hex: "F09AD", version: "2.4.85" }, { name: "tools", hex: "F1064", version: "4.1.95" }, { name: "tooltip", hex: "F0523", version: "1.5.54" }, { name: "tooltip-account", hex: "F000C", version: "1.5.54" }, { name: "tooltip-edit", hex: "F0524", version: "1.5.54" }, { name: "tooltip-edit-outline", hex: "F12C5", version: "4.8.95" }, { name: "tooltip-image", hex: "F0525", version: "1.5.54" }, { name: "tooltip-image-outline", hex: "F0BD5", version: "3.0.39" }, { name: "tooltip-outline", hex: "F0526", version: "1.5.54" }, { name: "tooltip-plus", hex: "F0BD6", version: "3.0.39" }, { name: "tooltip-plus-outline", hex: "F0527", version: "1.5.54" }, { name: "tooltip-text", hex: "F0528", version: "1.5.54" }, { name: "tooltip-text-outline", hex: "F0BD7", version: "3.0.39" }, { name: "tooth", hex: "F08C3", version: "2.2.43" }, { name: "tooth-outline", hex: "F0529", version: "1.5.54" }, { name: "toothbrush", hex: "F1129", version: "4.3.95" }, { name: "toothbrush-electric", hex: "F112C", version: "4.4.95" }, { name: "toothbrush-paste", hex: "F112A", version: "4.3.95" }, { name: "tortoise", hex: "F0D3B", version: "3.3.92" }, { name: "toslink", hex: "F12B8", version: "4.7.95" }, { name: "tournament", hex: "F09AE", version: "2.4.85" }, { name: "tow-truck", hex: "F083C", version: "2.1.19" }, { name: "tower-beach", hex: "F0681", version: "1.7.12" }, { name: "tower-fire", hex: "F0682", version: "1.7.12" }, { name: "toy-brick", hex: "F1288", version: "4.7.95" }, { name: "toy-brick-marker", hex: "F1289", version: "4.7.95" }, { name: "toy-brick-marker-outline", hex: "F128A", version: "4.7.95" }, { name: "toy-brick-minus", hex: "F128B", version: "4.7.95" }, { name: "toy-brick-minus-outline", hex: "F128C", version: "4.7.95" }, { name: "toy-brick-outline", hex: "F128D", version: "4.7.95" }, { name: "toy-brick-plus", hex: "F128E", version: "4.7.95" }, { name: "toy-brick-plus-outline", hex: "F128F", version: "4.7.95" }, { name: "toy-brick-remove", hex: "F1290", version: "4.7.95" }, { name: "toy-brick-remove-outline", hex: "F1291", version: "4.7.95" }, { name: "toy-brick-search", hex: "F1292", version: "4.7.95" }, { name: "toy-brick-search-outline", hex: "F1293", version: "4.7.95" }, { name: "track-light", hex: "F0914", version: "2.3.50" }, { name: "trackpad", hex: "F07F8", version: "2.0.46" }, { name: "trackpad-lock", hex: "F0933", version: "2.3.54" }, { name: "tractor", hex: "F0892", version: "2.1.99" }, { name: "trademark", hex: "F0A78", version: "2.6.95" }, { name: "traffic-cone", hex: "F137C", version: "4.9.95" }, { name: "traffic-light", hex: "F052B", version: "1.5.54" }, { name: "train", hex: "F052C", version: "1.5.54" }, { name: "train-car", hex: "F0BD8", version: "3.0.39" }, { name: "train-variant", hex: "F08C4", version: "2.2.43" }, { name: "tram", hex: "F052D", version: "1.5.54" }, { name: "tram-side", hex: "F0FE7", version: "4.0.96" }, { name: "transcribe", hex: "F052E", version: "1.5.54" }, { name: "transcribe-close", hex: "F052F", version: "1.5.54" }, { name: "transfer", hex: "F1065", version: "4.1.95" }, { name: "transfer-down", hex: "F0DA1", version: "3.4.93" }, { name: "transfer-left", hex: "F0DA2", version: "3.4.93" }, { name: "transfer-right", hex: "F0530", version: "1.5.54" }, { name: "transfer-up", hex: "F0DA3", version: "3.4.93" }, { name: "transit-connection", hex: "F0D3C", version: "3.3.92" }, { name: "transit-connection-variant", hex: "F0D3D", version: "3.3.92" }, { name: "transit-detour", hex: "F0F8B", version: "3.9.97" }, { name: "transit-transfer", hex: "F06AE", version: "1.7.12" }, { name: "transition", hex: "F0915", version: "2.3.50" }, { name: "transition-masked", hex: "F0916", version: "2.3.50" }, { name: "translate", hex: "F05CA", version: "1.5.54" }, { name: "translate-off", hex: "F0E06", version: "3.5.94" }, { name: "transmission-tower", hex: "F0D3E", version: "3.3.92" }, { name: "trash-can", hex: "F0A79", version: "2.6.95" }, { name: "trash-can-outline", hex: "F0A7A", version: "2.6.95" }, { name: "tray", hex: "F1294", version: "4.7.95" }, { name: "tray-alert", hex: "F1295", version: "4.7.95" }, { name: "tray-full", hex: "F1296", version: "4.7.95" }, { name: "tray-minus", hex: "F1297", version: "4.7.95" }, { name: "tray-plus", hex: "F1298", version: "4.7.95" }, { name: "tray-remove", hex: "F1299", version: "4.7.95" }, { name: "treasure-chest", hex: "F0726", version: "1.8.36" }, { name: "tree", hex: "F0531", version: "1.5.54" }, { name: "tree-outline", hex: "F0E69", version: "3.6.95" }, { name: "trello", hex: "F0532", version: "1.5.54" }, { name: "trending-down", hex: "F0533", version: "1.5.54" }, { name: "trending-neutral", hex: "F0534", version: "1.5.54" }, { name: "trending-up", hex: "F0535", version: "1.5.54" }, { name: "triangle", hex: "F0536", version: "1.5.54" }, { name: "triangle-outline", hex: "F0537", version: "1.5.54" }, { name: "triforce", hex: "F0BD9", version: "3.0.39" }, { name: "trophy", hex: "F0538", version: "1.5.54" }, { name: "trophy-award", hex: "F0539", version: "1.5.54" }, { name: "trophy-broken", hex: "F0DA4", version: "3.4.93" }, { name: "trophy-outline", hex: "F053A", version: "1.5.54" }, { name: "trophy-variant", hex: "F053B", version: "1.5.54" }, { name: "trophy-variant-outline", hex: "F053C", version: "1.5.54" }, { name: "truck", hex: "F053D", version: "1.5.54" }, { name: "truck-check", hex: "F0CD4", version: "3.2.89" }, { name: "truck-check-outline", hex: "F129A", version: "4.7.95" }, { name: "truck-delivery", hex: "F053E", version: "1.5.54" }, { name: "truck-delivery-outline", hex: "F129B", version: "4.7.95" }, { name: "truck-fast", hex: "F0788", version: "1.9.32" }, { name: "truck-fast-outline", hex: "F129C", version: "4.7.95" }, { name: "truck-outline", hex: "F129D", version: "4.7.95" }, { name: "truck-trailer", hex: "F0727", version: "1.8.36" }, { name: "trumpet", hex: "F1096", version: "4.2.95" }, { name: "tshirt-crew", hex: "F0A7B", version: "2.6.95" }, { name: "tshirt-crew-outline", hex: "F053F", version: "1.5.54" }, { name: "tshirt-v", hex: "F0A7C", version: "2.6.95" }, { name: "tshirt-v-outline", hex: "F0540", version: "1.5.54" }, { name: "tumble-dryer", hex: "F0917", version: "2.3.50" }, { name: "tumble-dryer-alert", hex: "F11BA", version: "4.5.95" }, { name: "tumble-dryer-off", hex: "F11BB", version: "4.5.95" }, { name: "tune", hex: "F062E", version: "1.6.50" }, { name: "tune-vertical", hex: "F066A", version: "1.6.50" }, { name: "turnstile", hex: "F0CD5", version: "3.2.89" }, { name: "turnstile-outline", hex: "F0CD6", version: "3.2.89" }, { name: "turtle", hex: "F0CD7", version: "3.2.89" }, { name: "twitch", hex: "F0543", version: "1.5.54" }, { name: "twitter", hex: "F0544", version: "1.5.54" }, { name: "twitter-retweet", hex: "F0547", version: "1.5.54" }, { name: "two-factor-authentication", hex: "F09AF", version: "2.4.85" }, { name: "typewriter", hex: "F0F2D", version: "3.8.95" }, { name: "ubisoft", hex: "F0BDA", version: "3.0.39" }, { name: "ubuntu", hex: "F0548", version: "1.5.54" }, { name: "ufo", hex: "F10C4", version: "4.2.95" }, { name: "ufo-outline", hex: "F10C5", version: "4.2.95" }, { name: "ultra-high-definition", hex: "F07F9", version: "2.0.46" }, { name: "umbraco", hex: "F0549", version: "1.5.54" }, { name: "umbrella", hex: "F054A", version: "1.5.54" }, { name: "umbrella-closed", hex: "F09B0", version: "2.4.85" }, { name: "umbrella-outline", hex: "F054B", version: "1.5.54" }, { name: "undo", hex: "F054C", version: "1.5.54" }, { name: "undo-variant", hex: "F054D", version: "1.5.54" }, { name: "unfold-less-horizontal", hex: "F054E", version: "1.5.54" }, { name: "unfold-less-vertical", hex: "F0760", version: "1.9.32" }, { name: "unfold-more-horizontal", hex: "F054F", version: "1.5.54" }, { name: "unfold-more-vertical", hex: "F0761", version: "1.9.32" }, { name: "ungroup", hex: "F0550", version: "1.5.54" }, { name: "unicode", hex: "F0ED0", version: "3.7.94" }, { name: "unity", hex: "F06AF", version: "1.7.12" }, { name: "unreal", hex: "F09B1", version: "2.4.85" }, { name: "untappd", hex: "F0551", version: "1.5.54" }, { name: "update", hex: "F06B0", version: "1.7.12" }, { name: "upload", hex: "F0552", version: "1.5.54" }, { name: "upload-lock", hex: "F1373", version: "4.9.95" }, { name: "upload-lock-outline", hex: "F1374", version: "4.9.95" }, { name: "upload-multiple", hex: "F083D", version: "2.1.19" }, { name: "upload-network", hex: "F06F6", version: "1.8.36" }, { name: "upload-network-outline", hex: "F0CD8", version: "3.2.89" }, { name: "upload-off", hex: "F10C6", version: "4.2.95" }, { name: "upload-off-outline", hex: "F10C7", version: "4.2.95" }, { name: "upload-outline", hex: "F0E07", version: "3.5.94" }, { name: "usb", hex: "F0553", version: "1.5.54" }, { name: "usb-flash-drive", hex: "F129E", version: "4.7.95" }, { name: "usb-flash-drive-outline", hex: "F129F", version: "4.7.95" }, { name: "usb-port", hex: "F11F0", version: "4.5.95" }, { name: "valve", hex: "F1066", version: "4.1.95" }, { name: "valve-closed", hex: "F1067", version: "4.1.95" }, { name: "valve-open", hex: "F1068", version: "4.1.95" }, { name: "van-passenger", hex: "F07FA", version: "2.0.46" }, { name: "van-utility", hex: "F07FB", version: "2.0.46" }, { name: "vanish", hex: "F07FC", version: "2.0.46" }, { name: "vanity-light", hex: "F11E1", version: "4.5.95" }, { name: "variable", hex: "F0AE7", version: "2.7.94" }, { name: "variable-box", hex: "F1111", version: "4.3.95" }, { name: "vector-arrange-above", hex: "F0554", version: "1.5.54" }, { name: "vector-arrange-below", hex: "F0555", version: "1.5.54" }, { name: "vector-bezier", hex: "F0AE8", version: "2.7.94" }, { name: "vector-circle", hex: "F0556", version: "1.5.54" }, { name: "vector-circle-variant", hex: "F0557", version: "1.5.54" }, { name: "vector-combine", hex: "F0558", version: "1.5.54" }, { name: "vector-curve", hex: "F0559", version: "1.5.54" }, { name: "vector-difference", hex: "F055A", version: "1.5.54" }, { name: "vector-difference-ab", hex: "F055B", version: "1.5.54" }, { name: "vector-difference-ba", hex: "F055C", version: "1.5.54" }, { name: "vector-ellipse", hex: "F0893", version: "2.1.99" }, { name: "vector-intersection", hex: "F055D", version: "1.5.54" }, { name: "vector-line", hex: "F055E", version: "1.5.54" }, { name: "vector-link", hex: "F0FE8", version: "4.0.96" }, { name: "vector-point", hex: "F055F", version: "1.5.54" }, { name: "vector-polygon", hex: "F0560", version: "1.5.54" }, { name: "vector-polyline", hex: "F0561", version: "1.5.54" }, { name: "vector-polyline-edit", hex: "F1225", version: "4.6.95" }, { name: "vector-polyline-minus", hex: "F1226", version: "4.6.95" }, { name: "vector-polyline-plus", hex: "F1227", version: "4.6.95" }, { name: "vector-polyline-remove", hex: "F1228", version: "4.6.95" }, { name: "vector-radius", hex: "F074A", version: "1.9.32" }, { name: "vector-rectangle", hex: "F05C6", version: "1.5.54" }, { name: "vector-selection", hex: "F0562", version: "1.5.54" }, { name: "vector-square", hex: "F0001", version: "1.5.54" }, { name: "vector-triangle", hex: "F0563", version: "1.5.54" }, { name: "vector-union", hex: "F0564", version: "1.5.54" }, { name: "vhs", hex: "F0A1B", version: "2.5.94" }, { name: "vibrate", hex: "F0566", version: "1.5.54" }, { name: "vibrate-off", hex: "F0CD9", version: "3.2.89" }, { name: "video", hex: "F0567", version: "1.5.54" }, { name: "video-3d", hex: "F07FD", version: "2.0.46" }, { name: "video-3d-variant", hex: "F0ED1", version: "3.7.94" }, { name: "video-4k-box", hex: "F083E", version: "2.1.19" }, { name: "video-account", hex: "F0919", version: "2.3.50" }, { name: "video-box", hex: "F00FD", version: "1.5.54" }, { name: "video-box-off", hex: "F00FE", version: "1.5.54" }, { name: "video-check", hex: "F1069", version: "4.1.95" }, { name: "video-check-outline", hex: "F106A", version: "4.1.95" }, { name: "video-image", hex: "F091A", version: "2.3.50" }, { name: "video-input-antenna", hex: "F083F", version: "2.1.19" }, { name: "video-input-component", hex: "F0840", version: "2.1.19" }, { name: "video-input-hdmi", hex: "F0841", version: "2.1.19" }, { name: "video-input-scart", hex: "F0F8C", version: "3.9.97" }, { name: "video-input-svideo", hex: "F0842", version: "2.1.19" }, { name: "video-minus", hex: "F09B2", version: "2.4.85" }, { name: "video-minus-outline", hex: "F02BA", version: "1.5.54" }, { name: "video-off", hex: "F0568", version: "1.5.54" }, { name: "video-off-outline", hex: "F0BDB", version: "3.0.39" }, { name: "video-outline", hex: "F0BDC", version: "3.0.39" }, { name: "video-plus", hex: "F09B3", version: "2.4.85" }, { name: "video-plus-outline", hex: "F01D3", version: "1.5.54" }, { name: "video-stabilization", hex: "F091B", version: "2.3.50" }, { name: "video-switch", hex: "F0569", version: "1.5.54" }, { name: "video-switch-outline", hex: "F0790", version: "2.0.46" }, { name: "video-vintage", hex: "F0A1C", version: "2.5.94" }, { name: "video-wireless", hex: "F0ED2", version: "3.7.94" }, { name: "video-wireless-outline", hex: "F0ED3", version: "3.7.94" }, { name: "view-agenda", hex: "F056A", version: "1.5.54" }, { name: "view-agenda-outline", hex: "F11D8", version: "4.5.95" }, { name: "view-array", hex: "F056B", version: "1.5.54" }, { name: "view-carousel", hex: "F056C", version: "1.5.54" }, { name: "view-column", hex: "F056D", version: "1.5.54" }, { name: "view-comfy", hex: "F0E6A", version: "3.6.95" }, { name: "view-compact", hex: "F0E6B", version: "3.6.95" }, { name: "view-compact-outline", hex: "F0E6C", version: "3.6.95" }, { name: "view-dashboard", hex: "F056E", version: "1.5.54" }, { name: "view-dashboard-outline", hex: "F0A1D", version: "2.5.94" }, { name: "view-dashboard-variant", hex: "F0843", version: "2.1.19" }, { name: "view-day", hex: "F056F", version: "1.5.54" }, { name: "view-grid", hex: "F0570", version: "1.5.54" }, { name: "view-grid-outline", hex: "F11D9", version: "4.5.95" }, { name: "view-grid-plus", hex: "F0F8D", version: "3.9.97" }, { name: "view-grid-plus-outline", hex: "F11DA", version: "4.5.95" }, { name: "view-headline", hex: "F0571", version: "1.5.54" }, { name: "view-list", hex: "F0572", version: "1.5.54" }, { name: "view-module", hex: "F0573", version: "1.5.54" }, { name: "view-parallel", hex: "F0728", version: "1.8.36" }, { name: "view-quilt", hex: "F0574", version: "1.5.54" }, { name: "view-sequential", hex: "F0729", version: "1.8.36" }, { name: "view-split-horizontal", hex: "F0BCB", version: "3.0.39" }, { name: "view-split-vertical", hex: "F0BCC", version: "3.0.39" }, { name: "view-stream", hex: "F0575", version: "1.5.54" }, { name: "view-week", hex: "F0576", version: "1.5.54" }, { name: "vimeo", hex: "F0577", version: "1.5.54" }, { name: "violin", hex: "F060F", version: "1.5.54" }, { name: "virtual-reality", hex: "F0894", version: "2.1.99" }, { name: "vk", hex: "F0579", version: "1.5.54" }, { name: "vlc", hex: "F057C", version: "1.5.54" }, { name: "voice-off", hex: "F0ED4", version: "3.7.95" }, { name: "voicemail", hex: "F057D", version: "1.5.54" }, { name: "volleyball", hex: "F09B4", version: "2.4.85" }, { name: "volume-high", hex: "F057E", version: "1.5.54" }, { name: "volume-low", hex: "F057F", version: "1.5.54" }, { name: "volume-medium", hex: "F0580", version: "1.5.54" }, { name: "volume-minus", hex: "F075E", version: "1.9.32" }, { name: "volume-mute", hex: "F075F", version: "1.9.32" }, { name: "volume-off", hex: "F0581", version: "1.5.54" }, { name: "volume-plus", hex: "F075D", version: "1.9.32" }, { name: "volume-source", hex: "F1120", version: "4.3.95" }, { name: "volume-variant-off", hex: "F0E08", version: "3.5.94" }, { name: "volume-vibrate", hex: "F1121", version: "4.3.95" }, { name: "vote", hex: "F0A1F", version: "2.5.94" }, { name: "vote-outline", hex: "F0A20", version: "2.5.94" }, { name: "vpn", hex: "F0582", version: "1.5.54" }, { name: "vuejs", hex: "F0844", version: "2.1.19" }, { name: "vuetify", hex: "F0E6D", version: "3.6.95" }, { name: "walk", hex: "F0583", version: "1.5.54" }, { name: "wall", hex: "F07FE", version: "2.0.46" }, { name: "wall-sconce", hex: "F091C", version: "2.3.50" }, { name: "wall-sconce-flat", hex: "F091D", version: "2.3.50" }, { name: "wall-sconce-flat-variant", hex: "F041C", version: "1.5.54" }, { name: "wall-sconce-round", hex: "F0748", version: "1.9.32" }, { name: "wall-sconce-round-variant", hex: "F091E", version: "2.3.50" }, { name: "wallet", hex: "F0584", version: "1.5.54" }, { name: "wallet-giftcard", hex: "F0585", version: "1.5.54" }, { name: "wallet-membership", hex: "F0586", version: "1.5.54" }, { name: "wallet-outline", hex: "F0BDD", version: "3.0.39" }, { name: "wallet-plus", hex: "F0F8E", version: "3.9.97" }, { name: "wallet-plus-outline", hex: "F0F8F", version: "3.9.97" }, { name: "wallet-travel", hex: "F0587", version: "1.5.54" }, { name: "wallpaper", hex: "F0E09", version: "3.5.94" }, { name: "wan", hex: "F0588", version: "1.5.54" }, { name: "wardrobe", hex: "F0F90", version: "3.9.97" }, { name: "wardrobe-outline", hex: "F0F91", version: "3.9.97" }, { name: "warehouse", hex: "F0F81", version: "3.9.97" }, { name: "washing-machine", hex: "F072A", version: "1.8.36" }, { name: "washing-machine-alert", hex: "F11BC", version: "4.5.95" }, { name: "washing-machine-off", hex: "F11BD", version: "4.5.95" }, { name: "watch", hex: "F0589", version: "1.5.54" }, { name: "watch-export", hex: "F058A", version: "1.5.54" }, { name: "watch-export-variant", hex: "F0895", version: "2.1.99" }, { name: "watch-import", hex: "F058B", version: "1.5.54" }, { name: "watch-import-variant", hex: "F0896", version: "2.1.99" }, { name: "watch-variant", hex: "F0897", version: "2.1.99" }, { name: "watch-vibrate", hex: "F06B1", version: "1.7.12" }, { name: "watch-vibrate-off", hex: "F0CDA", version: "3.2.89" }, { name: "water", hex: "F058C", version: "1.5.54" }, { name: "water-boiler", hex: "F0F92", version: "3.9.97" }, { name: "water-boiler-alert", hex: "F11B3", version: "4.5.95" }, { name: "water-boiler-off", hex: "F11B4", version: "4.5.95" }, { name: "water-off", hex: "F058D", version: "1.5.54" }, { name: "water-outline", hex: "F0E0A", version: "3.5.94" }, { name: "water-percent", hex: "F058E", version: "1.5.54" }, { name: "water-polo", hex: "F12A0", version: "4.7.95" }, { name: "water-pump", hex: "F058F", version: "1.5.54" }, { name: "water-pump-off", hex: "F0F93", version: "3.9.97" }, { name: "water-well", hex: "F106B", version: "4.1.95" }, { name: "water-well-outline", hex: "F106C", version: "4.1.95" }, { name: "watermark", hex: "F0612", version: "1.5.54" }, { name: "wave", hex: "F0F2E", version: "3.8.95" }, { name: "waves", hex: "F078D", version: "1.9.32" }, { name: "waze", hex: "F0BDE", version: "3.0.39" }, { name: "weather-cloudy", hex: "F0590", version: "1.5.54" }, { name: "weather-cloudy-alert", hex: "F0F2F", version: "3.8.95" }, { name: "weather-cloudy-arrow-right", hex: "F0E6E", version: "3.6.95" }, { name: "weather-fog", hex: "F0591", version: "1.5.54" }, { name: "weather-hail", hex: "F0592", version: "1.5.54" }, { name: "weather-hazy", hex: "F0F30", version: "3.8.95" }, { name: "weather-hurricane", hex: "F0898", version: "2.1.99" }, { name: "weather-lightning", hex: "F0593", version: "1.5.54" }, { name: "weather-lightning-rainy", hex: "F067E", version: "1.7.12" }, { name: "weather-night", hex: "F0594", version: "1.5.54" }, { name: "weather-night-partly-cloudy", hex: "F0F31", version: "3.8.95" }, { name: "weather-partly-cloudy", hex: "F0595", version: "1.5.54" }, { name: "weather-partly-lightning", hex: "F0F32", version: "3.8.95" }, { name: "weather-partly-rainy", hex: "F0F33", version: "3.8.95" }, { name: "weather-partly-snowy", hex: "F0F34", version: "3.8.95" }, { name: "weather-partly-snowy-rainy", hex: "F0F35", version: "3.8.95" }, { name: "weather-pouring", hex: "F0596", version: "1.5.54" }, { name: "weather-rainy", hex: "F0597", version: "1.5.54" }, { name: "weather-snowy", hex: "F0598", version: "1.5.54" }, { name: "weather-snowy-heavy", hex: "F0F36", version: "3.8.95" }, { name: "weather-snowy-rainy", hex: "F067F", version: "1.7.12" }, { name: "weather-sunny", hex: "F0599", version: "1.5.54" }, { name: "weather-sunny-alert", hex: "F0F37", version: "3.8.95" }, { name: "weather-sunset", hex: "F059A", version: "1.5.54" }, { name: "weather-sunset-down", hex: "F059B", version: "1.5.54" }, { name: "weather-sunset-up", hex: "F059C", version: "1.5.54" }, { name: "weather-tornado", hex: "F0F38", version: "3.8.95" }, { name: "weather-windy", hex: "F059D", version: "1.5.54" }, { name: "weather-windy-variant", hex: "F059E", version: "1.5.54" }, { name: "web", hex: "F059F", version: "1.5.54" }, { name: "web-box", hex: "F0F94", version: "3.9.97" }, { name: "web-clock", hex: "F124A", version: "4.6.95" }, { name: "webcam", hex: "F05A0", version: "1.5.54" }, { name: "webhook", hex: "F062F", version: "1.6.50" }, { name: "webpack", hex: "F072B", version: "1.8.36" }, { name: "webrtc", hex: "F1248", version: "4.6.95" }, { name: "wechat", hex: "F0611", version: "1.5.54" }, { name: "weight", hex: "F05A1", version: "1.5.54" }, { name: "weight-gram", hex: "F0D3F", version: "3.3.92" }, { name: "weight-kilogram", hex: "F05A2", version: "1.5.54" }, { name: "weight-lifter", hex: "F115D", version: "4.4.95" }, { name: "weight-pound", hex: "F09B5", version: "2.4.85" }, { name: "whatsapp", hex: "F05A3", version: "1.5.54" }, { name: "wheelchair-accessibility", hex: "F05A4", version: "1.5.54" }, { name: "whistle", hex: "F09B6", version: "2.4.85" }, { name: "whistle-outline", hex: "F12BC", version: "4.8.95" }, { name: "white-balance-auto", hex: "F05A5", version: "1.5.54" }, { name: "white-balance-incandescent", hex: "F05A6", version: "1.5.54" }, { name: "white-balance-iridescent", hex: "F05A7", version: "1.5.54" }, { name: "white-balance-sunny", hex: "F05A8", version: "1.5.54" }, { name: "widgets", hex: "F072C", version: "1.8.36" }, { name: "widgets-outline", hex: "F1355", version: "4.9.95" }, { name: "wifi", hex: "F05A9", version: "1.5.54" }, { name: "wifi-off", hex: "F05AA", version: "1.5.54" }, { name: "wifi-star", hex: "F0E0B", version: "3.5.94" }, { name: "wifi-strength-1", hex: "F091F", version: "2.3.50" }, { name: "wifi-strength-1-alert", hex: "F0920", version: "2.3.50" }, { name: "wifi-strength-1-lock", hex: "F0921", version: "2.3.50" }, { name: "wifi-strength-2", hex: "F0922", version: "2.3.50" }, { name: "wifi-strength-2-alert", hex: "F0923", version: "2.3.50" }, { name: "wifi-strength-2-lock", hex: "F0924", version: "2.3.50" }, { name: "wifi-strength-3", hex: "F0925", version: "2.3.50" }, { name: "wifi-strength-3-alert", hex: "F0926", version: "2.3.50" }, { name: "wifi-strength-3-lock", hex: "F0927", version: "2.3.50" }, { name: "wifi-strength-4", hex: "F0928", version: "2.3.50" }, { name: "wifi-strength-4-alert", hex: "F0929", version: "2.3.50" }, { name: "wifi-strength-4-lock", hex: "F092A", version: "2.3.50" }, { name: "wifi-strength-alert-outline", hex: "F092B", version: "2.3.50" }, { name: "wifi-strength-lock-outline", hex: "F092C", version: "2.3.50" }, { name: "wifi-strength-off", hex: "F092D", version: "2.3.50" }, { name: "wifi-strength-off-outline", hex: "F092E", version: "2.3.50" }, { name: "wifi-strength-outline", hex: "F092F", version: "2.3.50" }, { name: "wikipedia", hex: "F05AC", version: "1.5.54" }, { name: "wind-turbine", hex: "F0DA5", version: "3.4.93" }, { name: "window-close", hex: "F05AD", version: "1.5.54" }, { name: "window-closed", hex: "F05AE", version: "1.5.54" }, { name: "window-closed-variant", hex: "F11DB", version: "4.5.95" }, { name: "window-maximize", hex: "F05AF", version: "1.5.54" }, { name: "window-minimize", hex: "F05B0", version: "1.5.54" }, { name: "window-open", hex: "F05B1", version: "1.5.54" }, { name: "window-open-variant", hex: "F11DC", version: "4.5.95" }, { name: "window-restore", hex: "F05B2", version: "1.5.54" }, { name: "window-shutter", hex: "F111C", version: "4.3.95" }, { name: "window-shutter-alert", hex: "F111D", version: "4.3.95" }, { name: "window-shutter-open", hex: "F111E", version: "4.3.95" }, { name: "wiper", hex: "F0AE9", version: "2.7.94" }, { name: "wiper-wash", hex: "F0DA6", version: "3.4.93" }, { name: "wordpress", hex: "F05B4", version: "1.5.54" }, { name: "wrap", hex: "F05B6", version: "1.5.54" }, { name: "wrap-disabled", hex: "F0BDF", version: "3.0.39" }, { name: "wrench", hex: "F05B7", version: "1.5.54" }, { name: "wrench-outline", hex: "F0BE0", version: "3.0.39" }, { name: "xamarin", hex: "F0845", version: "2.1.19" }, { name: "xamarin-outline", hex: "F0846", version: "2.1.19" }, { name: "xing", hex: "F05BE", version: "1.5.54" }, { name: "xml", hex: "F05C0", version: "1.5.54" }, { name: "xmpp", hex: "F07FF", version: "2.0.46" }, { name: "y-combinator", hex: "F0624", version: "1.6.50" }, { name: "yahoo", hex: "F0B4F", version: "2.8.94" }, { name: "yeast", hex: "F05C1", version: "1.5.54" }, { name: "yin-yang", hex: "F0680", version: "1.7.12" }, { name: "yoga", hex: "F117C", version: "4.4.95" }, { name: "youtube", hex: "F05C3", version: "1.5.54" }, { name: "youtube-gaming", hex: "F0848", version: "2.1.19" }, { name: "youtube-studio", hex: "F0847", version: "2.1.19" }, { name: "youtube-subscription", hex: "F0D40", version: "3.3.92" }, { name: "youtube-tv", hex: "F0448", version: "1.5.54" }, { name: "z-wave", hex: "F0AEA", version: "2.7.94" }, { name: "zend", hex: "F0AEB", version: "2.7.94" }, { name: "zigbee", hex: "F0D41", version: "3.3.92" }, { name: "zip-box", hex: "F05C4", version: "1.5.54" }, { name: "zip-box-outline", hex: "F0FFA", version: "4.0.96" }, { name: "zip-disk", hex: "F0A23", version: "2.5.94" }, { name: "zodiac-aquarius", hex: "F0A7D", version: "2.6.95" }, { name: "zodiac-aries", hex: "F0A7E", version: "2.6.95" }, { name: "zodiac-cancer", hex: "F0A7F", version: "2.6.95" }, { name: "zodiac-capricorn", hex: "F0A80", version: "2.6.95" }, { name: "zodiac-gemini", hex: "F0A81", version: "2.6.95" }, { name: "zodiac-leo", hex: "F0A82", version: "2.6.95" }, { name: "zodiac-libra", hex: "F0A83", version: "2.6.95" }, { name: "zodiac-pisces", hex: "F0A84", version: "2.6.95" }, { name: "zodiac-sagittarius", hex: "F0A85", version: "2.6.95" }, { name: "zodiac-scorpio", hex: "F0A86", version: "2.6.95" }, { name: "zodiac-taurus", hex: "F0A87", version: "2.6.95" }, { name: "zodiac-virgo", hex: "F0A88", version: "2.6.95" }]; +const icons = [ + { name: "ab-testing", hex: "F01C9", version: "4.0.96" }, + { name: "abjad-arabic", hex: "F1328", version: "4.9.95" }, + { name: "abjad-hebrew", hex: "F1329", version: "4.9.95" }, + { name: "abugida-devanagari", hex: "F132A", version: "4.9.95" }, + { name: "abugida-thai", hex: "F132B", version: "4.9.95" }, + { name: "access-point", hex: "F0003", version: "1.5.54" }, + { name: "access-point-network", hex: "F0002", version: "1.5.54" }, + { name: "access-point-network-off", hex: "F0BE1", version: "3.2.89" }, + { name: "account", hex: "F0004", version: "1.5.54" }, + { name: "account-alert", hex: "F0005", version: "1.5.54" }, + { name: "account-alert-outline", hex: "F0B50", version: "3.0.39" }, + { name: "account-arrow-left", hex: "F0B51", version: "3.0.39" }, + { name: "account-arrow-left-outline", hex: "F0B52", version: "3.0.39" }, + { name: "account-arrow-right", hex: "F0B53", version: "3.0.39" }, + { name: "account-arrow-right-outline", hex: "F0B54", version: "3.0.39" }, + { name: "account-box", hex: "F0006", version: "1.5.54" }, + { name: "account-box-multiple", hex: "F0934", version: "2.4.85" }, + { name: "account-box-multiple-outline", hex: "F100A", version: "4.1.95" }, + { name: "account-box-outline", hex: "F0007", version: "1.5.54" }, + { name: "account-cancel", hex: "F12DF", version: "4.8.95" }, + { name: "account-cancel-outline", hex: "F12E0", version: "4.8.95" }, + { name: "account-cash", hex: "F1097", version: "4.2.95" }, + { name: "account-cash-outline", hex: "F1098", version: "4.2.95" }, + { name: "account-check", hex: "F0008", version: "1.5.54" }, + { name: "account-check-outline", hex: "F0BE2", version: "3.2.89" }, + { name: "account-child", hex: "F0A89", version: "2.7.94" }, + { name: "account-child-circle", hex: "F0A8A", version: "2.7.94" }, + { name: "account-child-outline", hex: "F10C8", version: "4.3.95" }, + { name: "account-circle", hex: "F0009", version: "1.5.54" }, + { name: "account-circle-outline", hex: "F0B55", version: "3.0.39" }, + { name: "account-clock", hex: "F0B56", version: "3.0.39" }, + { name: "account-clock-outline", hex: "F0B57", version: "3.0.39" }, + { name: "account-cog", hex: "F1370", version: "4.9.95" }, + { name: "account-cog-outline", hex: "F1371", version: "4.9.95" }, + { name: "account-convert", hex: "F000A", version: "1.5.54" }, + { name: "account-convert-outline", hex: "F1301", version: "4.8.95" }, + { name: "account-cowboy-hat", hex: "F0E9B", version: "3.7.94" }, + { name: "account-details", hex: "F0631", version: "1.6.50" }, + { name: "account-details-outline", hex: "F1372", version: "4.9.95" }, + { name: "account-edit", hex: "F06BC", version: "1.8.36" }, + { name: "account-edit-outline", hex: "F0FFB", version: "4.0.96" }, + { name: "account-group", hex: "F0849", version: "2.1.99" }, + { name: "account-group-outline", hex: "F0B58", version: "3.0.39" }, + { name: "account-hard-hat", hex: "F05B5", version: "1.5.54" }, + { name: "account-heart", hex: "F0899", version: "2.2.43" }, + { name: "account-heart-outline", hex: "F0BE3", version: "3.2.89" }, + { name: "account-key", hex: "F000B", version: "1.5.54" }, + { name: "account-key-outline", hex: "F0BE4", version: "3.2.89" }, + { name: "account-lock", hex: "F115E", version: "4.4.95" }, + { name: "account-lock-outline", hex: "F115F", version: "4.4.95" }, + { name: "account-minus", hex: "F000D", version: "1.5.54" }, + { name: "account-minus-outline", hex: "F0AEC", version: "2.8.94" }, + { name: "account-multiple", hex: "F000E", version: "1.5.54" }, + { name: "account-multiple-check", hex: "F08C5", version: "2.3.50" }, + { name: "account-multiple-check-outline", hex: "F11FE", version: "4.6.95" }, + { name: "account-multiple-minus", hex: "F05D3", version: "1.5.54" }, + { name: "account-multiple-minus-outline", hex: "F0BE5", version: "3.2.89" }, + { name: "account-multiple-outline", hex: "F000F", version: "1.5.54" }, + { name: "account-multiple-plus", hex: "F0010", version: "1.5.54" }, + { name: "account-multiple-plus-outline", hex: "F0800", version: "2.1.19" }, + { name: "account-multiple-remove", hex: "F120A", version: "4.6.95" }, + { name: "account-multiple-remove-outline", hex: "F120B", version: "4.6.95" }, + { name: "account-music", hex: "F0803", version: "2.1.19" }, + { name: "account-music-outline", hex: "F0CE9", version: "3.3.92" }, + { name: "account-network", hex: "F0011", version: "1.5.54" }, + { name: "account-network-outline", hex: "F0BE6", version: "3.2.89" }, + { name: "account-off", hex: "F0012", version: "1.5.54" }, + { name: "account-off-outline", hex: "F0BE7", version: "3.2.89" }, + { name: "account-outline", hex: "F0013", version: "1.5.54" }, + { name: "account-plus", hex: "F0014", version: "1.5.54" }, + { name: "account-plus-outline", hex: "F0801", version: "2.1.19" }, + { name: "account-question", hex: "F0B59", version: "3.0.39" }, + { name: "account-question-outline", hex: "F0B5A", version: "3.0.39" }, + { name: "account-remove", hex: "F0015", version: "1.5.54" }, + { name: "account-remove-outline", hex: "F0AED", version: "2.8.94" }, + { name: "account-search", hex: "F0016", version: "1.5.54" }, + { name: "account-search-outline", hex: "F0935", version: "2.4.85" }, + { name: "account-settings", hex: "F0630", version: "1.6.50" }, + { name: "account-settings-outline", hex: "F10C9", version: "4.3.95" }, + { name: "account-star", hex: "F0017", version: "1.5.54" }, + { name: "account-star-outline", hex: "F0BE8", version: "3.2.89" }, + { name: "account-supervisor", hex: "F0A8B", version: "2.7.94" }, + { name: "account-supervisor-circle", hex: "F0A8C", version: "2.7.94" }, + { name: "account-supervisor-outline", hex: "F112D", version: "4.4.95" }, + { name: "account-switch", hex: "F0019", version: "1.5.54" }, + { name: "account-switch-outline", hex: "F04CB", version: "1.5.54" }, + { name: "account-tie", hex: "F0CE3", version: "3.3.92" }, + { name: "account-tie-outline", hex: "F10CA", version: "4.3.95" }, + { name: "account-tie-voice", hex: "F1308", version: "4.8.95" }, + { name: "account-tie-voice-off", hex: "F130A", version: "4.8.95" }, + { name: "account-tie-voice-off-outline", hex: "F130B", version: "4.8.95" }, + { name: "account-tie-voice-outline", hex: "F1309", version: "4.8.95" }, + { name: "account-voice", hex: "F05CB", version: "1.5.54" }, + { name: "adjust", hex: "F001A", version: "1.5.54" }, + { name: "adobe", hex: "F0936", version: "2.4.85" }, + { name: "adobe-acrobat", hex: "F0F9D", version: "4.0.96" }, + { name: "air-conditioner", hex: "F001B", version: "1.5.54" }, + { name: "air-filter", hex: "F0D43", version: "3.4.93" }, + { name: "air-horn", hex: "F0DAC", version: "3.5.94" }, + { name: "air-humidifier", hex: "F1099", version: "4.2.95" }, + { name: "air-purifier", hex: "F0D44", version: "3.4.93" }, + { name: "airbag", hex: "F0BE9", version: "3.2.89" }, + { name: "airballoon", hex: "F001C", version: "1.5.54" }, + { name: "airballoon-outline", hex: "F100B", version: "4.1.95" }, + { name: "airplane", hex: "F001D", version: "1.5.54" }, + { name: "airplane-landing", hex: "F05D4", version: "1.5.54" }, + { name: "airplane-off", hex: "F001E", version: "1.5.54" }, + { name: "airplane-takeoff", hex: "F05D5", version: "1.5.54" }, + { name: "airport", hex: "F084B", version: "2.1.99" }, + { name: "alarm", hex: "F0020", version: "1.5.54" }, + { name: "alarm-bell", hex: "F078E", version: "2.0.46" }, + { name: "alarm-check", hex: "F0021", version: "1.5.54" }, + { name: "alarm-light", hex: "F078F", version: "2.0.46" }, + { name: "alarm-light-outline", hex: "F0BEA", version: "3.2.89" }, + { name: "alarm-multiple", hex: "F0022", version: "1.5.54" }, + { name: "alarm-note", hex: "F0E71", version: "3.7.94" }, + { name: "alarm-note-off", hex: "F0E72", version: "3.7.94" }, + { name: "alarm-off", hex: "F0023", version: "1.5.54" }, + { name: "alarm-plus", hex: "F0024", version: "1.5.54" }, + { name: "alarm-snooze", hex: "F068E", version: "1.7.12" }, + { name: "album", hex: "F0025", version: "1.5.54" }, + { name: "alert", hex: "F0026", version: "1.5.54" }, + { name: "alert-box", hex: "F0027", version: "1.5.54" }, + { name: "alert-box-outline", hex: "F0CE4", version: "3.3.92" }, + { name: "alert-circle", hex: "F0028", version: "1.5.54" }, + { name: "alert-circle-check", hex: "F11ED", version: "4.5.95" }, + { name: "alert-circle-check-outline", hex: "F11EE", version: "4.5.95" }, + { name: "alert-circle-outline", hex: "F05D6", version: "1.5.54" }, + { name: "alert-decagram", hex: "F06BD", version: "1.8.36" }, + { name: "alert-decagram-outline", hex: "F0CE5", version: "3.3.92" }, + { name: "alert-octagon", hex: "F0029", version: "1.5.54" }, + { name: "alert-octagon-outline", hex: "F0CE6", version: "3.3.92" }, + { name: "alert-octagram", hex: "F0767", version: "1.9.32" }, + { name: "alert-octagram-outline", hex: "F0CE7", version: "3.3.92" }, + { name: "alert-outline", hex: "F002A", version: "1.5.54" }, + { name: "alert-rhombus", hex: "F11CE", version: "4.5.95" }, + { name: "alert-rhombus-outline", hex: "F11CF", version: "4.5.95" }, + { name: "alien", hex: "F089A", version: "2.2.43" }, + { name: "alien-outline", hex: "F10CB", version: "4.3.95" }, + { name: "align-horizontal-center", hex: "F11C3", version: "4.5.95" }, + { name: "align-horizontal-left", hex: "F11C2", version: "4.5.95" }, + { name: "align-horizontal-right", hex: "F11C4", version: "4.5.95" }, + { name: "align-vertical-bottom", hex: "F11C5", version: "4.5.95" }, + { name: "align-vertical-center", hex: "F11C6", version: "4.5.95" }, + { name: "align-vertical-top", hex: "F11C7", version: "4.5.95" }, + { name: "all-inclusive", hex: "F06BE", version: "1.8.36" }, + { name: "allergy", hex: "F1258", version: "4.7.95" }, + { name: "alpha", hex: "F002B", version: "1.5.54" }, + { name: "alpha-a", hex: "F0AEE", version: "2.8.94" }, + { name: "alpha-a-box", hex: "F0B08", version: "2.8.94" }, + { name: "alpha-a-box-outline", hex: "F0BEB", version: "3.2.89" }, + { name: "alpha-a-circle", hex: "F0BEC", version: "3.2.89" }, + { name: "alpha-a-circle-outline", hex: "F0BED", version: "3.2.89" }, + { name: "alpha-b", hex: "F0AEF", version: "2.8.94" }, + { name: "alpha-b-box", hex: "F0B09", version: "2.8.94" }, + { name: "alpha-b-box-outline", hex: "F0BEE", version: "3.2.89" }, + { name: "alpha-b-circle", hex: "F0BEF", version: "3.2.89" }, + { name: "alpha-b-circle-outline", hex: "F0BF0", version: "3.2.89" }, + { name: "alpha-c", hex: "F0AF0", version: "2.8.94" }, + { name: "alpha-c-box", hex: "F0B0A", version: "2.8.94" }, + { name: "alpha-c-box-outline", hex: "F0BF1", version: "3.2.89" }, + { name: "alpha-c-circle", hex: "F0BF2", version: "3.2.89" }, + { name: "alpha-c-circle-outline", hex: "F0BF3", version: "3.2.89" }, + { name: "alpha-d", hex: "F0AF1", version: "2.8.94" }, + { name: "alpha-d-box", hex: "F0B0B", version: "2.8.94" }, + { name: "alpha-d-box-outline", hex: "F0BF4", version: "3.2.89" }, + { name: "alpha-d-circle", hex: "F0BF5", version: "3.2.89" }, + { name: "alpha-d-circle-outline", hex: "F0BF6", version: "3.2.89" }, + { name: "alpha-e", hex: "F0AF2", version: "2.8.94" }, + { name: "alpha-e-box", hex: "F0B0C", version: "2.8.94" }, + { name: "alpha-e-box-outline", hex: "F0BF7", version: "3.2.89" }, + { name: "alpha-e-circle", hex: "F0BF8", version: "3.2.89" }, + { name: "alpha-e-circle-outline", hex: "F0BF9", version: "3.2.89" }, + { name: "alpha-f", hex: "F0AF3", version: "2.8.94" }, + { name: "alpha-f-box", hex: "F0B0D", version: "2.8.94" }, + { name: "alpha-f-box-outline", hex: "F0BFA", version: "3.2.89" }, + { name: "alpha-f-circle", hex: "F0BFB", version: "3.2.89" }, + { name: "alpha-f-circle-outline", hex: "F0BFC", version: "3.2.89" }, + { name: "alpha-g", hex: "F0AF4", version: "2.8.94" }, + { name: "alpha-g-box", hex: "F0B0E", version: "2.8.94" }, + { name: "alpha-g-box-outline", hex: "F0BFD", version: "3.2.89" }, + { name: "alpha-g-circle", hex: "F0BFE", version: "3.2.89" }, + { name: "alpha-g-circle-outline", hex: "F0BFF", version: "3.2.89" }, + { name: "alpha-h", hex: "F0AF5", version: "2.8.94" }, + { name: "alpha-h-box", hex: "F0B0F", version: "2.8.94" }, + { name: "alpha-h-box-outline", hex: "F0C00", version: "3.2.89" }, + { name: "alpha-h-circle", hex: "F0C01", version: "3.2.89" }, + { name: "alpha-h-circle-outline", hex: "F0C02", version: "3.2.89" }, + { name: "alpha-i", hex: "F0AF6", version: "2.8.94" }, + { name: "alpha-i-box", hex: "F0B10", version: "2.8.94" }, + { name: "alpha-i-box-outline", hex: "F0C03", version: "3.2.89" }, + { name: "alpha-i-circle", hex: "F0C04", version: "3.2.89" }, + { name: "alpha-i-circle-outline", hex: "F0C05", version: "3.2.89" }, + { name: "alpha-j", hex: "F0AF7", version: "2.8.94" }, + { name: "alpha-j-box", hex: "F0B11", version: "2.8.94" }, + { name: "alpha-j-box-outline", hex: "F0C06", version: "3.2.89" }, + { name: "alpha-j-circle", hex: "F0C07", version: "3.2.89" }, + { name: "alpha-j-circle-outline", hex: "F0C08", version: "3.2.89" }, + { name: "alpha-k", hex: "F0AF8", version: "2.8.94" }, + { name: "alpha-k-box", hex: "F0B12", version: "2.8.94" }, + { name: "alpha-k-box-outline", hex: "F0C09", version: "3.2.89" }, + { name: "alpha-k-circle", hex: "F0C0A", version: "3.2.89" }, + { name: "alpha-k-circle-outline", hex: "F0C0B", version: "3.2.89" }, + { name: "alpha-l", hex: "F0AF9", version: "2.8.94" }, + { name: "alpha-l-box", hex: "F0B13", version: "2.8.94" }, + { name: "alpha-l-box-outline", hex: "F0C0C", version: "3.2.89" }, + { name: "alpha-l-circle", hex: "F0C0D", version: "3.2.89" }, + { name: "alpha-l-circle-outline", hex: "F0C0E", version: "3.2.89" }, + { name: "alpha-m", hex: "F0AFA", version: "2.8.94" }, + { name: "alpha-m-box", hex: "F0B14", version: "2.8.94" }, + { name: "alpha-m-box-outline", hex: "F0C0F", version: "3.2.89" }, + { name: "alpha-m-circle", hex: "F0C10", version: "3.2.89" }, + { name: "alpha-m-circle-outline", hex: "F0C11", version: "3.2.89" }, + { name: "alpha-n", hex: "F0AFB", version: "2.8.94" }, + { name: "alpha-n-box", hex: "F0B15", version: "2.8.94" }, + { name: "alpha-n-box-outline", hex: "F0C12", version: "3.2.89" }, + { name: "alpha-n-circle", hex: "F0C13", version: "3.2.89" }, + { name: "alpha-n-circle-outline", hex: "F0C14", version: "3.2.89" }, + { name: "alpha-o", hex: "F0AFC", version: "2.8.94" }, + { name: "alpha-o-box", hex: "F0B16", version: "2.8.94" }, + { name: "alpha-o-box-outline", hex: "F0C15", version: "3.2.89" }, + { name: "alpha-o-circle", hex: "F0C16", version: "3.2.89" }, + { name: "alpha-o-circle-outline", hex: "F0C17", version: "3.2.89" }, + { name: "alpha-p", hex: "F0AFD", version: "2.8.94" }, + { name: "alpha-p-box", hex: "F0B17", version: "2.8.94" }, + { name: "alpha-p-box-outline", hex: "F0C18", version: "3.2.89" }, + { name: "alpha-p-circle", hex: "F0C19", version: "3.2.89" }, + { name: "alpha-p-circle-outline", hex: "F0C1A", version: "3.2.89" }, + { name: "alpha-q", hex: "F0AFE", version: "2.8.94" }, + { name: "alpha-q-box", hex: "F0B18", version: "2.8.94" }, + { name: "alpha-q-box-outline", hex: "F0C1B", version: "3.2.89" }, + { name: "alpha-q-circle", hex: "F0C1C", version: "3.2.89" }, + { name: "alpha-q-circle-outline", hex: "F0C1D", version: "3.2.89" }, + { name: "alpha-r", hex: "F0AFF", version: "2.8.94" }, + { name: "alpha-r-box", hex: "F0B19", version: "2.8.94" }, + { name: "alpha-r-box-outline", hex: "F0C1E", version: "3.2.89" }, + { name: "alpha-r-circle", hex: "F0C1F", version: "3.2.89" }, + { name: "alpha-r-circle-outline", hex: "F0C20", version: "3.2.89" }, + { name: "alpha-s", hex: "F0B00", version: "2.8.94" }, + { name: "alpha-s-box", hex: "F0B1A", version: "2.8.94" }, + { name: "alpha-s-box-outline", hex: "F0C21", version: "3.2.89" }, + { name: "alpha-s-circle", hex: "F0C22", version: "3.2.89" }, + { name: "alpha-s-circle-outline", hex: "F0C23", version: "3.2.89" }, + { name: "alpha-t", hex: "F0B01", version: "2.8.94" }, + { name: "alpha-t-box", hex: "F0B1B", version: "2.8.94" }, + { name: "alpha-t-box-outline", hex: "F0C24", version: "3.2.89" }, + { name: "alpha-t-circle", hex: "F0C25", version: "3.2.89" }, + { name: "alpha-t-circle-outline", hex: "F0C26", version: "3.2.89" }, + { name: "alpha-u", hex: "F0B02", version: "2.8.94" }, + { name: "alpha-u-box", hex: "F0B1C", version: "2.8.94" }, + { name: "alpha-u-box-outline", hex: "F0C27", version: "3.2.89" }, + { name: "alpha-u-circle", hex: "F0C28", version: "3.2.89" }, + { name: "alpha-u-circle-outline", hex: "F0C29", version: "3.2.89" }, + { name: "alpha-v", hex: "F0B03", version: "2.8.94" }, + { name: "alpha-v-box", hex: "F0B1D", version: "2.8.94" }, + { name: "alpha-v-box-outline", hex: "F0C2A", version: "3.2.89" }, + { name: "alpha-v-circle", hex: "F0C2B", version: "3.2.89" }, + { name: "alpha-v-circle-outline", hex: "F0C2C", version: "3.2.89" }, + { name: "alpha-w", hex: "F0B04", version: "2.8.94" }, + { name: "alpha-w-box", hex: "F0B1E", version: "2.8.94" }, + { name: "alpha-w-box-outline", hex: "F0C2D", version: "3.2.89" }, + { name: "alpha-w-circle", hex: "F0C2E", version: "3.2.89" }, + { name: "alpha-w-circle-outline", hex: "F0C2F", version: "3.2.89" }, + { name: "alpha-x", hex: "F0B05", version: "2.8.94" }, + { name: "alpha-x-box", hex: "F0B1F", version: "2.8.94" }, + { name: "alpha-x-box-outline", hex: "F0C30", version: "3.2.89" }, + { name: "alpha-x-circle", hex: "F0C31", version: "3.2.89" }, + { name: "alpha-x-circle-outline", hex: "F0C32", version: "3.2.89" }, + { name: "alpha-y", hex: "F0B06", version: "2.8.94" }, + { name: "alpha-y-box", hex: "F0B20", version: "2.8.94" }, + { name: "alpha-y-box-outline", hex: "F0C33", version: "3.2.89" }, + { name: "alpha-y-circle", hex: "F0C34", version: "3.2.89" }, + { name: "alpha-y-circle-outline", hex: "F0C35", version: "3.2.89" }, + { name: "alpha-z", hex: "F0B07", version: "2.8.94" }, + { name: "alpha-z-box", hex: "F0B21", version: "2.8.94" }, + { name: "alpha-z-box-outline", hex: "F0C36", version: "3.2.89" }, + { name: "alpha-z-circle", hex: "F0C37", version: "3.2.89" }, + { name: "alpha-z-circle-outline", hex: "F0C38", version: "3.2.89" }, + { name: "alphabet-aurebesh", hex: "F132C", version: "4.9.95" }, + { name: "alphabet-cyrillic", hex: "F132D", version: "4.9.95" }, + { name: "alphabet-greek", hex: "F132E", version: "4.9.95" }, + { name: "alphabet-latin", hex: "F132F", version: "4.9.95" }, + { name: "alphabet-piqad", hex: "F1330", version: "4.9.95" }, + { name: "alphabet-tengwar", hex: "F1337", version: "4.9.95" }, + { name: "alphabetical", hex: "F002C", version: "1.5.54" }, + { name: "alphabetical-off", hex: "F100C", version: "4.1.95" }, + { name: "alphabetical-variant", hex: "F100D", version: "4.1.95" }, + { name: "alphabetical-variant-off", hex: "F100E", version: "4.1.95" }, + { name: "altimeter", hex: "F05D7", version: "1.5.54" }, + { name: "amazon", hex: "F002D", version: "1.5.54" }, + { name: "amazon-alexa", hex: "F08C6", version: "2.3.50" }, + { name: "ambulance", hex: "F002F", version: "1.5.54" }, + { name: "ammunition", hex: "F0CE8", version: "3.3.92" }, + { name: "ampersand", hex: "F0A8D", version: "2.7.94" }, + { name: "amplifier", hex: "F0030", version: "1.5.54" }, + { name: "amplifier-off", hex: "F11B5", version: "4.5.95" }, + { name: "anchor", hex: "F0031", version: "1.5.54" }, + { name: "android", hex: "F0032", version: "1.5.54" }, + { name: "android-auto", hex: "F0A8E", version: "2.7.94" }, + { name: "android-debug-bridge", hex: "F0033", version: "1.5.54" }, + { name: "android-messages", hex: "F0D45", version: "3.4.93" }, + { name: "android-studio", hex: "F0034", version: "1.5.54" }, + { name: "angle-acute", hex: "F0937", version: "2.4.85" }, + { name: "angle-obtuse", hex: "F0938", version: "2.4.85" }, + { name: "angle-right", hex: "F0939", version: "2.4.85" }, + { name: "angular", hex: "F06B2", version: "1.7.22" }, + { name: "angularjs", hex: "F06BF", version: "1.8.36" }, + { name: "animation", hex: "F05D8", version: "1.5.54" }, + { name: "animation-outline", hex: "F0A8F", version: "2.7.94" }, + { name: "animation-play", hex: "F093A", version: "2.4.85" }, + { name: "animation-play-outline", hex: "F0A90", version: "2.7.94" }, + { name: "ansible", hex: "F109A", version: "4.2.95" }, + { name: "antenna", hex: "F1119", version: "4.3.95" }, + { name: "anvil", hex: "F089B", version: "2.2.43" }, + { name: "apache-kafka", hex: "F100F", version: "4.1.95" }, + { name: "api", hex: "F109B", version: "4.2.95" }, + { name: "api-off", hex: "F1257", version: "4.6.95" }, + { name: "apple", hex: "F0035", version: "1.5.54" }, + { name: "apple-airplay", hex: "F001F", version: "1.5.54" }, + { name: "apple-finder", hex: "F0036", version: "1.5.54" }, + { name: "apple-icloud", hex: "F0038", version: "1.5.54" }, + { name: "apple-ios", hex: "F0037", version: "1.5.54" }, + { name: "apple-keyboard-caps", hex: "F0632", version: "1.6.50" }, + { name: "apple-keyboard-command", hex: "F0633", version: "1.6.50" }, + { name: "apple-keyboard-control", hex: "F0634", version: "1.6.50" }, + { name: "apple-keyboard-option", hex: "F0635", version: "1.6.50" }, + { name: "apple-keyboard-shift", hex: "F0636", version: "1.6.50" }, + { name: "apple-safari", hex: "F0039", version: "1.5.54" }, + { name: "application", hex: "F0614", version: "1.6.50" }, + { name: "application-export", hex: "F0DAD", version: "3.5.94" }, + { name: "application-import", hex: "F0DAE", version: "3.5.94" }, + { name: "approximately-equal", hex: "F0F9E", version: "4.0.96" }, + { name: "approximately-equal-box", hex: "F0F9F", version: "4.0.96" }, + { name: "apps", hex: "F003B", version: "1.5.54" }, + { name: "apps-box", hex: "F0D46", version: "3.4.93" }, + { name: "arch", hex: "F08C7", version: "2.3.50" }, + { name: "archive", hex: "F003C", version: "1.5.54" }, + { name: "archive-arrow-down", hex: "F1259", version: "4.7.95" }, + { name: "archive-arrow-down-outline", hex: "F125A", version: "4.7.95" }, + { name: "archive-arrow-up", hex: "F125B", version: "4.7.95" }, + { name: "archive-arrow-up-outline", hex: "F125C", version: "4.7.95" }, + { name: "archive-outline", hex: "F120E", version: "4.6.95" }, + { name: "arm-flex", hex: "F0FD7", version: "4.2.95" }, + { name: "arm-flex-outline", hex: "F0FD6", version: "4.2.95" }, + { name: "arrange-bring-forward", hex: "F003D", version: "1.5.54" }, + { name: "arrange-bring-to-front", hex: "F003E", version: "1.5.54" }, + { name: "arrange-send-backward", hex: "F003F", version: "1.5.54" }, + { name: "arrange-send-to-back", hex: "F0040", version: "1.5.54" }, + { name: "arrow-all", hex: "F0041", version: "1.5.54" }, + { name: "arrow-bottom-left", hex: "F0042", version: "1.5.54" }, + { name: "arrow-bottom-left-bold-outline", hex: "F09B7", version: "2.5.94" }, + { name: "arrow-bottom-left-thick", hex: "F09B8", version: "2.5.94" }, + { name: "arrow-bottom-right", hex: "F0043", version: "1.5.54" }, + { name: "arrow-bottom-right-bold-outline", hex: "F09B9", version: "2.5.94" }, + { name: "arrow-bottom-right-thick", hex: "F09BA", version: "2.5.94" }, + { name: "arrow-collapse", hex: "F0615", version: "1.6.50" }, + { name: "arrow-collapse-all", hex: "F0044", version: "1.5.54" }, + { name: "arrow-collapse-down", hex: "F0792", version: "2.0.46" }, + { name: "arrow-collapse-horizontal", hex: "F084C", version: "2.1.99" }, + { name: "arrow-collapse-left", hex: "F0793", version: "2.0.46" }, + { name: "arrow-collapse-right", hex: "F0794", version: "2.0.46" }, + { name: "arrow-collapse-up", hex: "F0795", version: "2.0.46" }, + { name: "arrow-collapse-vertical", hex: "F084D", version: "2.1.99" }, + { name: "arrow-decision", hex: "F09BB", version: "2.5.94" }, + { name: "arrow-decision-auto", hex: "F09BC", version: "2.5.94" }, + { name: "arrow-decision-auto-outline", hex: "F09BD", version: "2.5.94" }, + { name: "arrow-decision-outline", hex: "F09BE", version: "2.5.94" }, + { name: "arrow-down", hex: "F0045", version: "1.5.54" }, + { name: "arrow-down-bold", hex: "F072E", version: "1.9.32" }, + { name: "arrow-down-bold-box", hex: "F072F", version: "1.9.32" }, + { name: "arrow-down-bold-box-outline", hex: "F0730", version: "1.9.32" }, + { name: "arrow-down-bold-circle", hex: "F0047", version: "1.5.54" }, + { name: "arrow-down-bold-circle-outline", hex: "F0048", version: "1.5.54" }, + { name: "arrow-down-bold-hexagon-outline", hex: "F0049", version: "1.5.54" }, + { name: "arrow-down-bold-outline", hex: "F09BF", version: "2.5.94" }, + { name: "arrow-down-box", hex: "F06C0", version: "1.8.36" }, + { name: "arrow-down-circle", hex: "F0CDB", version: "3.3.92" }, + { name: "arrow-down-circle-outline", hex: "F0CDC", version: "3.3.92" }, + { name: "arrow-down-drop-circle", hex: "F004A", version: "1.5.54" }, + { name: "arrow-down-drop-circle-outline", hex: "F004B", version: "1.5.54" }, + { name: "arrow-down-thick", hex: "F0046", version: "1.5.54" }, + { name: "arrow-expand", hex: "F0616", version: "1.6.50" }, + { name: "arrow-expand-all", hex: "F004C", version: "1.5.54" }, + { name: "arrow-expand-down", hex: "F0796", version: "2.0.46" }, + { name: "arrow-expand-horizontal", hex: "F084E", version: "2.1.99" }, + { name: "arrow-expand-left", hex: "F0797", version: "2.0.46" }, + { name: "arrow-expand-right", hex: "F0798", version: "2.0.46" }, + { name: "arrow-expand-up", hex: "F0799", version: "2.0.46" }, + { name: "arrow-expand-vertical", hex: "F084F", version: "2.1.99" }, + { name: "arrow-horizontal-lock", hex: "F115B", version: "4.4.95" }, + { name: "arrow-left", hex: "F004D", version: "1.5.54" }, + { name: "arrow-left-bold", hex: "F0731", version: "1.9.32" }, + { name: "arrow-left-bold-box", hex: "F0732", version: "1.9.32" }, + { name: "arrow-left-bold-box-outline", hex: "F0733", version: "1.9.32" }, + { name: "arrow-left-bold-circle", hex: "F004F", version: "1.5.54" }, + { name: "arrow-left-bold-circle-outline", hex: "F0050", version: "1.5.54" }, + { name: "arrow-left-bold-hexagon-outline", hex: "F0051", version: "1.5.54" }, + { name: "arrow-left-bold-outline", hex: "F09C0", version: "2.5.94" }, + { name: "arrow-left-box", hex: "F06C1", version: "1.8.36" }, + { name: "arrow-left-circle", hex: "F0CDD", version: "3.3.92" }, + { name: "arrow-left-circle-outline", hex: "F0CDE", version: "3.3.92" }, + { name: "arrow-left-drop-circle", hex: "F0052", version: "1.5.54" }, + { name: "arrow-left-drop-circle-outline", hex: "F0053", version: "1.5.54" }, + { name: "arrow-left-right", hex: "F0E73", version: "3.7.94" }, + { name: "arrow-left-right-bold", hex: "F0E74", version: "3.7.94" }, + { name: "arrow-left-right-bold-outline", hex: "F09C1", version: "2.5.94" }, + { name: "arrow-left-thick", hex: "F004E", version: "1.5.54" }, + { name: "arrow-right", hex: "F0054", version: "1.5.54" }, + { name: "arrow-right-bold", hex: "F0734", version: "1.9.32" }, + { name: "arrow-right-bold-box", hex: "F0735", version: "1.9.32" }, + { name: "arrow-right-bold-box-outline", hex: "F0736", version: "1.9.32" }, + { name: "arrow-right-bold-circle", hex: "F0056", version: "1.5.54" }, + { name: "arrow-right-bold-circle-outline", hex: "F0057", version: "1.5.54" }, + { name: "arrow-right-bold-hexagon-outline", hex: "F0058", version: "1.5.54" }, + { name: "arrow-right-bold-outline", hex: "F09C2", version: "2.5.94" }, + { name: "arrow-right-box", hex: "F06C2", version: "1.8.36" }, + { name: "arrow-right-circle", hex: "F0CDF", version: "3.3.92" }, + { name: "arrow-right-circle-outline", hex: "F0CE0", version: "3.3.92" }, + { name: "arrow-right-drop-circle", hex: "F0059", version: "1.5.54" }, + { name: "arrow-right-drop-circle-outline", hex: "F005A", version: "1.5.54" }, + { name: "arrow-right-thick", hex: "F0055", version: "1.5.54" }, + { name: "arrow-split-horizontal", hex: "F093B", version: "2.4.85" }, + { name: "arrow-split-vertical", hex: "F093C", version: "2.4.85" }, + { name: "arrow-top-left", hex: "F005B", version: "1.5.54" }, + { name: "arrow-top-left-bold-outline", hex: "F09C3", version: "2.5.94" }, + { name: "arrow-top-left-bottom-right", hex: "F0E75", version: "3.7.94" }, + { name: "arrow-top-left-bottom-right-bold", hex: "F0E76", version: "3.7.94" }, + { name: "arrow-top-left-thick", hex: "F09C4", version: "2.5.94" }, + { name: "arrow-top-right", hex: "F005C", version: "1.5.54" }, + { name: "arrow-top-right-bold-outline", hex: "F09C5", version: "2.5.94" }, + { name: "arrow-top-right-bottom-left", hex: "F0E77", version: "3.7.94" }, + { name: "arrow-top-right-bottom-left-bold", hex: "F0E78", version: "3.7.94" }, + { name: "arrow-top-right-thick", hex: "F09C6", version: "2.5.94" }, + { name: "arrow-up", hex: "F005D", version: "1.5.54" }, + { name: "arrow-up-bold", hex: "F0737", version: "1.9.32" }, + { name: "arrow-up-bold-box", hex: "F0738", version: "1.9.32" }, + { name: "arrow-up-bold-box-outline", hex: "F0739", version: "1.9.32" }, + { name: "arrow-up-bold-circle", hex: "F005F", version: "1.5.54" }, + { name: "arrow-up-bold-circle-outline", hex: "F0060", version: "1.5.54" }, + { name: "arrow-up-bold-hexagon-outline", hex: "F0061", version: "1.5.54" }, + { name: "arrow-up-bold-outline", hex: "F09C7", version: "2.5.94" }, + { name: "arrow-up-box", hex: "F06C3", version: "1.8.36" }, + { name: "arrow-up-circle", hex: "F0CE1", version: "3.3.92" }, + { name: "arrow-up-circle-outline", hex: "F0CE2", version: "3.3.92" }, + { name: "arrow-up-down", hex: "F0E79", version: "3.7.94" }, + { name: "arrow-up-down-bold", hex: "F0E7A", version: "3.7.94" }, + { name: "arrow-up-down-bold-outline", hex: "F09C8", version: "2.5.94" }, + { name: "arrow-up-drop-circle", hex: "F0062", version: "1.5.54" }, + { name: "arrow-up-drop-circle-outline", hex: "F0063", version: "1.5.54" }, + { name: "arrow-up-thick", hex: "F005E", version: "1.5.54" }, + { name: "arrow-vertical-lock", hex: "F115C", version: "4.4.95" }, + { name: "artstation", hex: "F0B5B", version: "3.0.39" }, + { name: "aspect-ratio", hex: "F0A24", version: "2.6.95" }, + { name: "assistant", hex: "F0064", version: "1.5.54" }, + { name: "asterisk", hex: "F06C4", version: "1.8.36" }, + { name: "at", hex: "F0065", version: "1.5.54" }, + { name: "atlassian", hex: "F0804", version: "2.1.19" }, + { name: "atm", hex: "F0D47", version: "3.4.93" }, + { name: "atom", hex: "F0768", version: "1.9.32" }, + { name: "atom-variant", hex: "F0E7B", version: "3.7.94" }, + { name: "attachment", hex: "F0066", version: "1.5.54" }, + { name: "audio-video", hex: "F093D", version: "2.4.85" }, + { name: "audio-video-off", hex: "F11B6", version: "4.5.95" }, + { name: "augmented-reality", hex: "F0850", version: "2.1.99" }, + { name: "auto-download", hex: "F137E", version: "4.9.95" }, + { name: "auto-fix", hex: "F0068", version: "1.5.54" }, + { name: "auto-upload", hex: "F0069", version: "1.5.54" }, + { name: "autorenew", hex: "F006A", version: "1.5.54" }, + { name: "av-timer", hex: "F006B", version: "1.5.54" }, + { name: "aws", hex: "F0E0F", version: "3.6.95" }, + { name: "axe", hex: "F08C8", version: "2.3.50" }, + { name: "axis", hex: "F0D48", version: "3.4.93" }, + { name: "axis-arrow", hex: "F0D49", version: "3.4.93" }, + { name: "axis-arrow-lock", hex: "F0D4A", version: "3.4.93" }, + { name: "axis-lock", hex: "F0D4B", version: "3.4.93" }, + { name: "axis-x-arrow", hex: "F0D4C", version: "3.4.93" }, + { name: "axis-x-arrow-lock", hex: "F0D4D", version: "3.4.93" }, + { name: "axis-x-rotate-clockwise", hex: "F0D4E", version: "3.4.93" }, + { name: "axis-x-rotate-counterclockwise", hex: "F0D4F", version: "3.4.93" }, + { name: "axis-x-y-arrow-lock", hex: "F0D50", version: "3.4.93" }, + { name: "axis-y-arrow", hex: "F0D51", version: "3.4.93" }, + { name: "axis-y-arrow-lock", hex: "F0D52", version: "3.4.93" }, + { name: "axis-y-rotate-clockwise", hex: "F0D53", version: "3.4.93" }, + { name: "axis-y-rotate-counterclockwise", hex: "F0D54", version: "3.4.93" }, + { name: "axis-z-arrow", hex: "F0D55", version: "3.4.93" }, + { name: "axis-z-arrow-lock", hex: "F0D56", version: "3.4.93" }, + { name: "axis-z-rotate-clockwise", hex: "F0D57", version: "3.4.93" }, + { name: "axis-z-rotate-counterclockwise", hex: "F0D58", version: "3.4.93" }, + { name: "babel", hex: "F0A25", version: "2.6.95" }, + { name: "baby", hex: "F006C", version: "1.5.54" }, + { name: "baby-bottle", hex: "F0F39", version: "3.9.97" }, + { name: "baby-bottle-outline", hex: "F0F3A", version: "3.9.97" }, + { name: "baby-carriage", hex: "F068F", version: "1.7.12" }, + { name: "baby-carriage-off", hex: "F0FA0", version: "4.0.96" }, + { name: "baby-face", hex: "F0E7C", version: "3.7.94" }, + { name: "baby-face-outline", hex: "F0E7D", version: "3.7.94" }, + { name: "backburger", hex: "F006D", version: "1.5.54" }, + { name: "backspace", hex: "F006E", version: "1.5.54" }, + { name: "backspace-outline", hex: "F0B5C", version: "3.0.39" }, + { name: "backspace-reverse", hex: "F0E7E", version: "3.7.94" }, + { name: "backspace-reverse-outline", hex: "F0E7F", version: "3.7.94" }, + { name: "backup-restore", hex: "F006F", version: "1.5.54" }, + { name: "bacteria", hex: "F0ED5", version: "3.8.95" }, + { name: "bacteria-outline", hex: "F0ED6", version: "3.8.95" }, + { name: "badge-account", hex: "F0DA7", version: "3.5.94" }, + { name: "badge-account-alert", hex: "F0DA8", version: "3.5.94" }, + { name: "badge-account-alert-outline", hex: "F0DA9", version: "3.5.94" }, + { name: "badge-account-horizontal", hex: "F0E0D", version: "3.6.95" }, + { name: "badge-account-horizontal-outline", hex: "F0E0E", version: "3.6.95" }, + { name: "badge-account-outline", hex: "F0DAA", version: "3.5.94" }, + { name: "badminton", hex: "F0851", version: "2.1.99" }, + { name: "bag-carry-on", hex: "F0F3B", version: "3.9.97" }, + { name: "bag-carry-on-check", hex: "F0D65", version: "3.4.93" }, + { name: "bag-carry-on-off", hex: "F0F3C", version: "3.9.97" }, + { name: "bag-checked", hex: "F0F3D", version: "3.9.97" }, + { name: "bag-personal", hex: "F0E10", version: "3.6.95" }, + { name: "bag-personal-off", hex: "F0E11", version: "3.6.95" }, + { name: "bag-personal-off-outline", hex: "F0E12", version: "3.6.95" }, + { name: "bag-personal-outline", hex: "F0E13", version: "3.6.95" }, + { name: "baguette", hex: "F0F3E", version: "3.9.97" }, + { name: "balloon", hex: "F0A26", version: "2.6.95" }, + { name: "ballot", hex: "F09C9", version: "2.5.94" }, + { name: "ballot-outline", hex: "F09CA", version: "2.5.94" }, + { name: "ballot-recount", hex: "F0C39", version: "3.2.89" }, + { name: "ballot-recount-outline", hex: "F0C3A", version: "3.2.89" }, + { name: "bandage", hex: "F0DAF", version: "3.5.94" }, + { name: "bandcamp", hex: "F0675", version: "1.7.12" }, + { name: "bank", hex: "F0070", version: "1.5.54" }, + { name: "bank-minus", hex: "F0DB0", version: "3.5.94" }, + { name: "bank-outline", hex: "F0E80", version: "3.7.94" }, + { name: "bank-plus", hex: "F0DB1", version: "3.5.94" }, + { name: "bank-remove", hex: "F0DB2", version: "3.5.94" }, + { name: "bank-transfer", hex: "F0A27", version: "2.6.95" }, + { name: "bank-transfer-in", hex: "F0A28", version: "2.6.95" }, + { name: "bank-transfer-out", hex: "F0A29", version: "2.6.95" }, + { name: "barcode", hex: "F0071", version: "1.5.54" }, + { name: "barcode-off", hex: "F1236", version: "4.6.95" }, + { name: "barcode-scan", hex: "F0072", version: "1.5.54" }, + { name: "barley", hex: "F0073", version: "1.5.54" }, + { name: "barley-off", hex: "F0B5D", version: "3.0.39" }, + { name: "barn", hex: "F0B5E", version: "3.0.39" }, + { name: "barrel", hex: "F0074", version: "1.5.54" }, + { name: "baseball", hex: "F0852", version: "2.1.99" }, + { name: "baseball-bat", hex: "F0853", version: "2.1.99" }, + { name: "bash", hex: "F1183", version: "4.4.95" }, + { name: "basket", hex: "F0076", version: "1.5.54" }, + { name: "basket-fill", hex: "F0077", version: "1.5.54" }, + { name: "basket-outline", hex: "F1181", version: "4.4.95" }, + { name: "basket-unfill", hex: "F0078", version: "1.5.54" }, + { name: "basketball", hex: "F0806", version: "2.1.19" }, + { name: "basketball-hoop", hex: "F0C3B", version: "3.2.89" }, + { name: "basketball-hoop-outline", hex: "F0C3C", version: "3.2.89" }, + { name: "bat", hex: "F0B5F", version: "3.0.39" }, + { name: "battery", hex: "F0079", version: "1.5.54" }, + { name: "battery-10", hex: "F007A", version: "1.5.54" }, + { name: "battery-10-bluetooth", hex: "F093E", version: "2.4.85" }, + { name: "battery-20", hex: "F007B", version: "1.5.54" }, + { name: "battery-20-bluetooth", hex: "F093F", version: "2.4.85" }, + { name: "battery-30", hex: "F007C", version: "1.5.54" }, + { name: "battery-30-bluetooth", hex: "F0940", version: "2.4.85" }, + { name: "battery-40", hex: "F007D", version: "1.5.54" }, + { name: "battery-40-bluetooth", hex: "F0941", version: "2.4.85" }, + { name: "battery-50", hex: "F007E", version: "1.5.54" }, + { name: "battery-50-bluetooth", hex: "F0942", version: "2.4.85" }, + { name: "battery-60", hex: "F007F", version: "1.5.54" }, + { name: "battery-60-bluetooth", hex: "F0943", version: "2.4.85" }, + { name: "battery-70", hex: "F0080", version: "1.5.54" }, + { name: "battery-70-bluetooth", hex: "F0944", version: "2.4.85" }, + { name: "battery-80", hex: "F0081", version: "1.5.54" }, + { name: "battery-80-bluetooth", hex: "F0945", version: "2.4.85" }, + { name: "battery-90", hex: "F0082", version: "1.5.54" }, + { name: "battery-90-bluetooth", hex: "F0946", version: "2.4.85" }, + { name: "battery-alert", hex: "F0083", version: "1.5.54" }, + { name: "battery-alert-bluetooth", hex: "F0947", version: "2.4.85" }, + { name: "battery-alert-variant", hex: "F10CC", version: "4.3.95" }, + { name: "battery-alert-variant-outline", hex: "F10CD", version: "4.3.95" }, + { name: "battery-bluetooth", hex: "F0948", version: "2.4.85" }, + { name: "battery-bluetooth-variant", hex: "F0949", version: "2.4.85" }, + { name: "battery-charging", hex: "F0084", version: "1.5.54" }, + { name: "battery-charging-10", hex: "F089C", version: "2.2.43" }, + { name: "battery-charging-100", hex: "F0085", version: "1.5.54" }, + { name: "battery-charging-20", hex: "F0086", version: "1.5.54" }, + { name: "battery-charging-30", hex: "F0087", version: "1.5.54" }, + { name: "battery-charging-40", hex: "F0088", version: "1.5.54" }, + { name: "battery-charging-50", hex: "F089D", version: "2.2.43" }, + { name: "battery-charging-60", hex: "F0089", version: "1.5.54" }, + { name: "battery-charging-70", hex: "F089E", version: "2.2.43" }, + { name: "battery-charging-80", hex: "F008A", version: "1.5.54" }, + { name: "battery-charging-90", hex: "F008B", version: "1.5.54" }, + { name: "battery-charging-high", hex: "F12A6", version: "4.7.95" }, + { name: "battery-charging-low", hex: "F12A4", version: "4.7.95" }, + { name: "battery-charging-medium", hex: "F12A5", version: "4.7.95" }, + { name: "battery-charging-outline", hex: "F089F", version: "2.2.43" }, + { name: "battery-charging-wireless", hex: "F0807", version: "2.1.19" }, + { name: "battery-charging-wireless-10", hex: "F0808", version: "2.1.19" }, + { name: "battery-charging-wireless-20", hex: "F0809", version: "2.1.19" }, + { name: "battery-charging-wireless-30", hex: "F080A", version: "2.1.19" }, + { name: "battery-charging-wireless-40", hex: "F080B", version: "2.1.19" }, + { name: "battery-charging-wireless-50", hex: "F080C", version: "2.1.19" }, + { name: "battery-charging-wireless-60", hex: "F080D", version: "2.1.19" }, + { name: "battery-charging-wireless-70", hex: "F080E", version: "2.1.19" }, + { name: "battery-charging-wireless-80", hex: "F080F", version: "2.1.19" }, + { name: "battery-charging-wireless-90", hex: "F0810", version: "2.1.19" }, + { name: "battery-charging-wireless-alert", hex: "F0811", version: "2.1.19" }, + { name: "battery-charging-wireless-outline", hex: "F0812", version: "2.1.19" }, + { name: "battery-heart", hex: "F120F", version: "4.6.95" }, + { name: "battery-heart-outline", hex: "F1210", version: "4.6.95" }, + { name: "battery-heart-variant", hex: "F1211", version: "4.6.95" }, + { name: "battery-high", hex: "F12A3", version: "4.7.95" }, + { name: "battery-low", hex: "F12A1", version: "4.7.95" }, + { name: "battery-medium", hex: "F12A2", version: "4.7.95" }, + { name: "battery-minus", hex: "F008C", version: "1.5.54" }, + { name: "battery-negative", hex: "F008D", version: "1.5.54" }, + { name: "battery-off", hex: "F125D", version: "4.7.95" }, + { name: "battery-off-outline", hex: "F125E", version: "4.7.95" }, + { name: "battery-outline", hex: "F008E", version: "1.5.54" }, + { name: "battery-plus", hex: "F008F", version: "1.5.54" }, + { name: "battery-positive", hex: "F0090", version: "1.5.54" }, + { name: "battery-unknown", hex: "F0091", version: "1.5.54" }, + { name: "battery-unknown-bluetooth", hex: "F094A", version: "2.4.85" }, + { name: "battlenet", hex: "F0B60", version: "3.0.39" }, + { name: "beach", hex: "F0092", version: "1.5.54" }, + { name: "beaker", hex: "F0CEA", version: "3.3.92" }, + { name: "beaker-alert", hex: "F1229", version: "4.6.95" }, + { name: "beaker-alert-outline", hex: "F122A", version: "4.6.95" }, + { name: "beaker-check", hex: "F122B", version: "4.6.95" }, + { name: "beaker-check-outline", hex: "F122C", version: "4.6.95" }, + { name: "beaker-minus", hex: "F122D", version: "4.6.95" }, + { name: "beaker-minus-outline", hex: "F122E", version: "4.6.95" }, + { name: "beaker-outline", hex: "F0690", version: "1.7.12" }, + { name: "beaker-plus", hex: "F122F", version: "4.6.95" }, + { name: "beaker-plus-outline", hex: "F1230", version: "4.6.95" }, + { name: "beaker-question", hex: "F1231", version: "4.6.95" }, + { name: "beaker-question-outline", hex: "F1232", version: "4.6.95" }, + { name: "beaker-remove", hex: "F1233", version: "4.6.95" }, + { name: "beaker-remove-outline", hex: "F1234", version: "4.6.95" }, + { name: "bed", hex: "F02E3", version: "1.5.54" }, + { name: "bed-double", hex: "F0FD4", version: "4.2.95" }, + { name: "bed-double-outline", hex: "F0FD3", version: "4.2.95" }, + { name: "bed-empty", hex: "F08A0", version: "2.2.43" }, + { name: "bed-king", hex: "F0FD2", version: "4.2.95" }, + { name: "bed-king-outline", hex: "F0FD1", version: "4.2.95" }, + { name: "bed-outline", hex: "F0099", version: "1.5.54" }, + { name: "bed-queen", hex: "F0FD0", version: "4.2.95" }, + { name: "bed-queen-outline", hex: "F0FDB", version: "4.2.95" }, + { name: "bed-single", hex: "F106D", version: "4.2.95" }, + { name: "bed-single-outline", hex: "F106E", version: "4.2.95" }, + { name: "bee", hex: "F0FA1", version: "4.0.96" }, + { name: "bee-flower", hex: "F0FA2", version: "4.0.96" }, + { name: "beehive-outline", hex: "F10CE", version: "4.3.95" }, + { name: "beer", hex: "F0098", version: "1.5.54" }, + { name: "beer-outline", hex: "F130C", version: "4.8.95" }, + { name: "bell", hex: "F009A", version: "1.5.54" }, + { name: "bell-alert", hex: "F0D59", version: "3.4.93" }, + { name: "bell-alert-outline", hex: "F0E81", version: "3.7.94" }, + { name: "bell-check", hex: "F11E5", version: "4.5.95" }, + { name: "bell-check-outline", hex: "F11E6", version: "4.5.95" }, + { name: "bell-circle", hex: "F0D5A", version: "3.4.93" }, + { name: "bell-circle-outline", hex: "F0D5B", version: "3.4.93" }, + { name: "bell-off", hex: "F009B", version: "1.5.54" }, + { name: "bell-off-outline", hex: "F0A91", version: "2.7.94" }, + { name: "bell-outline", hex: "F009C", version: "1.5.54" }, + { name: "bell-plus", hex: "F009D", version: "1.5.54" }, + { name: "bell-plus-outline", hex: "F0A92", version: "2.7.94" }, + { name: "bell-ring", hex: "F009E", version: "1.5.54" }, + { name: "bell-ring-outline", hex: "F009F", version: "1.5.54" }, + { name: "bell-sleep", hex: "F00A0", version: "1.5.54" }, + { name: "bell-sleep-outline", hex: "F0A93", version: "2.7.94" }, + { name: "beta", hex: "F00A1", version: "1.5.54" }, + { name: "betamax", hex: "F09CB", version: "2.5.94" }, + { name: "biathlon", hex: "F0E14", version: "3.6.95" }, + { name: "bicycle", hex: "F109C", version: "4.2.95" }, + { name: "bicycle-basket", hex: "F1235", version: "4.6.95" }, + { name: "bike", hex: "F00A3", version: "1.5.54" }, + { name: "bike-fast", hex: "F111F", version: "4.3.95" }, + { name: "billboard", hex: "F1010", version: "4.1.95" }, + { name: "billiards", hex: "F0B61", version: "3.0.39" }, + { name: "billiards-rack", hex: "F0B62", version: "3.0.39" }, + { name: "binoculars", hex: "F00A5", version: "1.5.54" }, + { name: "bio", hex: "F00A6", version: "1.5.54" }, + { name: "biohazard", hex: "F00A7", version: "1.5.54" }, + { name: "bitbucket", hex: "F00A8", version: "1.5.54" }, + { name: "bitcoin", hex: "F0813", version: "2.1.19" }, + { name: "black-mesa", hex: "F00A9", version: "1.5.54" }, + { name: "blender", hex: "F0CEB", version: "3.3.92" }, + { name: "blender-software", hex: "F00AB", version: "1.5.54" }, + { name: "blinds", hex: "F00AC", version: "1.5.54" }, + { name: "blinds-open", hex: "F1011", version: "4.1.95" }, + { name: "block-helper", hex: "F00AD", version: "1.5.54" }, + { name: "blogger", hex: "F00AE", version: "1.5.54" }, + { name: "blood-bag", hex: "F0CEC", version: "3.3.92" }, + { name: "bluetooth", hex: "F00AF", version: "1.5.54" }, + { name: "bluetooth-audio", hex: "F00B0", version: "1.5.54" }, + { name: "bluetooth-connect", hex: "F00B1", version: "1.5.54" }, + { name: "bluetooth-off", hex: "F00B2", version: "1.5.54" }, + { name: "bluetooth-settings", hex: "F00B3", version: "1.5.54" }, + { name: "bluetooth-transfer", hex: "F00B4", version: "1.5.54" }, + { name: "blur", hex: "F00B5", version: "1.5.54" }, + { name: "blur-linear", hex: "F00B6", version: "1.5.54" }, + { name: "blur-off", hex: "F00B7", version: "1.5.54" }, + { name: "blur-radial", hex: "F00B8", version: "1.5.54" }, + { name: "bolnisi-cross", hex: "F0CED", version: "3.3.92" }, + { name: "bolt", hex: "F0DB3", version: "3.5.94" }, + { name: "bomb", hex: "F0691", version: "1.7.12" }, + { name: "bomb-off", hex: "F06C5", version: "1.8.36" }, + { name: "bone", hex: "F00B9", version: "1.5.54" }, + { name: "book", hex: "F00BA", version: "1.5.54" }, + { name: "book-account", hex: "F13AD", version: "5.0.45" }, + { name: "book-account-outline", hex: "F13AE", version: "5.0.45" }, + { name: "book-alphabet", hex: "F061D", version: "1.6.50" }, + { name: "book-cross", hex: "F00A2", version: "1.5.54" }, + { name: "book-information-variant", hex: "F106F", version: "4.2.95" }, + { name: "book-lock", hex: "F079A", version: "2.0.46" }, + { name: "book-lock-open", hex: "F079B", version: "2.0.46" }, + { name: "book-minus", hex: "F05D9", version: "1.5.54" }, + { name: "book-minus-multiple", hex: "F0A94", version: "2.7.94" }, + { name: "book-minus-multiple-outline", hex: "F090B", version: "2.3.50" }, + { name: "book-multiple", hex: "F00BB", version: "1.5.54" }, + { name: "book-multiple-outline", hex: "F0436", version: "1.5.54" }, + { name: "book-music", hex: "F0067", version: "1.5.54" }, + { name: "book-open", hex: "F00BD", version: "1.5.54" }, + { name: "book-open-outline", hex: "F0B63", version: "3.0.39" }, + { name: "book-open-page-variant", hex: "F05DA", version: "1.5.54" }, + { name: "book-open-variant", hex: "F00BE", version: "1.5.54" }, + { name: "book-outline", hex: "F0B64", version: "3.0.39" }, + { name: "book-play", hex: "F0E82", version: "3.7.94" }, + { name: "book-play-outline", hex: "F0E83", version: "3.7.94" }, + { name: "book-plus", hex: "F05DB", version: "1.5.54" }, + { name: "book-plus-multiple", hex: "F0A95", version: "2.7.94" }, + { name: "book-plus-multiple-outline", hex: "F0ADE", version: "2.7.94" }, + { name: "book-remove", hex: "F0A97", version: "2.7.94" }, + { name: "book-remove-multiple", hex: "F0A96", version: "2.7.94" }, + { name: "book-remove-multiple-outline", hex: "F04CA", version: "1.5.54" }, + { name: "book-search", hex: "F0E84", version: "3.7.94" }, + { name: "book-search-outline", hex: "F0E85", version: "3.7.94" }, + { name: "book-variant", hex: "F00BF", version: "1.5.54" }, + { name: "book-variant-multiple", hex: "F00BC", version: "1.5.54" }, + { name: "bookmark", hex: "F00C0", version: "1.5.54" }, + { name: "bookmark-check", hex: "F00C1", version: "1.5.54" }, + { name: "bookmark-check-outline", hex: "F137B", version: "4.9.95" }, + { name: "bookmark-minus", hex: "F09CC", version: "2.5.94" }, + { name: "bookmark-minus-outline", hex: "F09CD", version: "2.5.94" }, + { name: "bookmark-multiple", hex: "F0E15", version: "3.6.95" }, + { name: "bookmark-multiple-outline", hex: "F0E16", version: "3.6.95" }, + { name: "bookmark-music", hex: "F00C2", version: "1.5.54" }, + { name: "bookmark-music-outline", hex: "F1379", version: "4.9.95" }, + { name: "bookmark-off", hex: "F09CE", version: "2.5.94" }, + { name: "bookmark-off-outline", hex: "F09CF", version: "2.5.94" }, + { name: "bookmark-outline", hex: "F00C3", version: "1.5.54" }, + { name: "bookmark-plus", hex: "F00C5", version: "1.5.54" }, + { name: "bookmark-plus-outline", hex: "F00C4", version: "1.5.54" }, + { name: "bookmark-remove", hex: "F00C6", version: "1.5.54" }, + { name: "bookmark-remove-outline", hex: "F137A", version: "4.9.95" }, + { name: "bookshelf", hex: "F125F", version: "4.7.95" }, + { name: "boom-gate", hex: "F0E86", version: "3.7.94" }, + { name: "boom-gate-alert", hex: "F0E87", version: "3.7.94" }, + { name: "boom-gate-alert-outline", hex: "F0E88", version: "3.7.94" }, + { name: "boom-gate-down", hex: "F0E89", version: "3.7.94" }, + { name: "boom-gate-down-outline", hex: "F0E8A", version: "3.7.94" }, + { name: "boom-gate-outline", hex: "F0E8B", version: "3.7.94" }, + { name: "boom-gate-up", hex: "F0E8C", version: "3.7.94" }, + { name: "boom-gate-up-outline", hex: "F0E8D", version: "3.7.94" }, + { name: "boombox", hex: "F05DC", version: "1.5.54" }, + { name: "boomerang", hex: "F10CF", version: "4.3.95" }, + { name: "bootstrap", hex: "F06C6", version: "1.8.36" }, + { name: "border-all", hex: "F00C7", version: "1.5.54" }, + { name: "border-all-variant", hex: "F08A1", version: "2.2.43" }, + { name: "border-bottom", hex: "F00C8", version: "1.5.54" }, + { name: "border-bottom-variant", hex: "F08A2", version: "2.2.43" }, + { name: "border-color", hex: "F00C9", version: "1.5.54" }, + { name: "border-horizontal", hex: "F00CA", version: "1.5.54" }, + { name: "border-inside", hex: "F00CB", version: "1.5.54" }, + { name: "border-left", hex: "F00CC", version: "1.5.54" }, + { name: "border-left-variant", hex: "F08A3", version: "2.2.43" }, + { name: "border-none", hex: "F00CD", version: "1.5.54" }, + { name: "border-none-variant", hex: "F08A4", version: "2.2.43" }, + { name: "border-outside", hex: "F00CE", version: "1.5.54" }, + { name: "border-right", hex: "F00CF", version: "1.5.54" }, + { name: "border-right-variant", hex: "F08A5", version: "2.2.43" }, + { name: "border-style", hex: "F00D0", version: "1.5.54" }, + { name: "border-top", hex: "F00D1", version: "1.5.54" }, + { name: "border-top-variant", hex: "F08A6", version: "2.2.43" }, + { name: "border-vertical", hex: "F00D2", version: "1.5.54" }, + { name: "bottle-soda", hex: "F1070", version: "4.2.95" }, + { name: "bottle-soda-classic", hex: "F1071", version: "4.2.95" }, + { name: "bottle-soda-classic-outline", hex: "F1363", version: "4.9.95" }, + { name: "bottle-soda-outline", hex: "F1072", version: "4.2.95" }, + { name: "bottle-tonic", hex: "F112E", version: "4.4.95" }, + { name: "bottle-tonic-outline", hex: "F112F", version: "4.4.95" }, + { name: "bottle-tonic-plus", hex: "F1130", version: "4.4.95" }, + { name: "bottle-tonic-plus-outline", hex: "F1131", version: "4.4.95" }, + { name: "bottle-tonic-skull", hex: "F1132", version: "4.4.95" }, + { name: "bottle-tonic-skull-outline", hex: "F1133", version: "4.4.95" }, + { name: "bottle-wine", hex: "F0854", version: "2.1.99" }, + { name: "bottle-wine-outline", hex: "F1310", version: "4.8.95" }, + { name: "bow-tie", hex: "F0678", version: "1.7.12" }, + { name: "bowl", hex: "F028E", version: "1.5.54" }, + { name: "bowl-mix", hex: "F0617", version: "1.6.50" }, + { name: "bowl-mix-outline", hex: "F02E4", version: "1.5.54" }, + { name: "bowl-outline", hex: "F02A9", version: "1.5.54" }, + { name: "bowling", hex: "F00D3", version: "1.5.54" }, + { name: "box", hex: "F00D4", version: "1.5.54" }, + { name: "box-cutter", hex: "F00D5", version: "1.5.54" }, + { name: "box-cutter-off", hex: "F0B4A", version: "2.8.94" }, + { name: "box-shadow", hex: "F0637", version: "1.6.50" }, + { name: "boxing-glove", hex: "F0B65", version: "3.0.39" }, + { name: "braille", hex: "F09D0", version: "2.5.94" }, + { name: "brain", hex: "F09D1", version: "2.5.94" }, + { name: "bread-slice", hex: "F0CEE", version: "3.3.92" }, + { name: "bread-slice-outline", hex: "F0CEF", version: "3.3.92" }, + { name: "bridge", hex: "F0618", version: "1.6.50" }, + { name: "briefcase", hex: "F00D6", version: "1.5.54" }, + { name: "briefcase-account", hex: "F0CF0", version: "3.3.92" }, + { name: "briefcase-account-outline", hex: "F0CF1", version: "3.3.92" }, + { name: "briefcase-check", hex: "F00D7", version: "1.5.54" }, + { name: "briefcase-check-outline", hex: "F131E", version: "4.8.95" }, + { name: "briefcase-clock", hex: "F10D0", version: "4.3.95" }, + { name: "briefcase-clock-outline", hex: "F10D1", version: "4.3.95" }, + { name: "briefcase-download", hex: "F00D8", version: "1.5.54" }, + { name: "briefcase-download-outline", hex: "F0C3D", version: "3.2.89" }, + { name: "briefcase-edit", hex: "F0A98", version: "2.7.94" }, + { name: "briefcase-edit-outline", hex: "F0C3E", version: "3.2.89" }, + { name: "briefcase-minus", hex: "F0A2A", version: "2.6.95" }, + { name: "briefcase-minus-outline", hex: "F0C3F", version: "3.2.89" }, + { name: "briefcase-outline", hex: "F0814", version: "2.1.19" }, + { name: "briefcase-plus", hex: "F0A2B", version: "2.6.95" }, + { name: "briefcase-plus-outline", hex: "F0C40", version: "3.2.89" }, + { name: "briefcase-remove", hex: "F0A2C", version: "2.6.95" }, + { name: "briefcase-remove-outline", hex: "F0C41", version: "3.2.89" }, + { name: "briefcase-search", hex: "F0A2D", version: "2.6.95" }, + { name: "briefcase-search-outline", hex: "F0C42", version: "3.2.89" }, + { name: "briefcase-upload", hex: "F00D9", version: "1.5.54" }, + { name: "briefcase-upload-outline", hex: "F0C43", version: "3.2.89" }, + { name: "brightness-1", hex: "F00DA", version: "1.5.54" }, + { name: "brightness-2", hex: "F00DB", version: "1.5.54" }, + { name: "brightness-3", hex: "F00DC", version: "1.5.54" }, + { name: "brightness-4", hex: "F00DD", version: "1.5.54" }, + { name: "brightness-5", hex: "F00DE", version: "1.5.54" }, + { name: "brightness-6", hex: "F00DF", version: "1.5.54" }, + { name: "brightness-7", hex: "F00E0", version: "1.5.54" }, + { name: "brightness-auto", hex: "F00E1", version: "1.5.54" }, + { name: "brightness-percent", hex: "F0CF2", version: "3.3.92" }, + { name: "broom", hex: "F00E2", version: "1.5.54" }, + { name: "brush", hex: "F00E3", version: "1.5.54" }, + { name: "buddhism", hex: "F094B", version: "2.4.85" }, + { name: "buffer", hex: "F0619", version: "1.6.50" }, + { name: "buffet", hex: "F0578", version: "1.5.54" }, + { name: "bug", hex: "F00E4", version: "1.5.54" }, + { name: "bug-check", hex: "F0A2E", version: "2.6.95" }, + { name: "bug-check-outline", hex: "F0A2F", version: "2.6.95" }, + { name: "bug-outline", hex: "F0A30", version: "2.6.95" }, + { name: "bugle", hex: "F0DB4", version: "3.5.94" }, + { name: "bulldozer", hex: "F0B22", version: "2.8.94" }, + { name: "bullet", hex: "F0CF3", version: "3.3.92" }, + { name: "bulletin-board", hex: "F00E5", version: "1.5.54" }, + { name: "bullhorn", hex: "F00E6", version: "1.5.54" }, + { name: "bullhorn-outline", hex: "F0B23", version: "2.8.94" }, + { name: "bullseye", hex: "F05DD", version: "1.5.54" }, + { name: "bullseye-arrow", hex: "F08C9", version: "2.3.50" }, + { name: "bulma", hex: "F12E7", version: "4.8.95" }, + { name: "bunk-bed", hex: "F1302", version: "4.8.95" }, + { name: "bunk-bed-outline", hex: "F0097", version: "1.5.54" }, + { name: "bus", hex: "F00E7", version: "1.5.54" }, + { name: "bus-alert", hex: "F0A99", version: "2.7.94" }, + { name: "bus-articulated-end", hex: "F079C", version: "2.0.46" }, + { name: "bus-articulated-front", hex: "F079D", version: "2.0.46" }, + { name: "bus-clock", hex: "F08CA", version: "2.3.50" }, + { name: "bus-double-decker", hex: "F079E", version: "2.0.46" }, + { name: "bus-marker", hex: "F1212", version: "4.6.95" }, + { name: "bus-multiple", hex: "F0F3F", version: "3.9.97" }, + { name: "bus-school", hex: "F079F", version: "2.0.46" }, + { name: "bus-side", hex: "F07A0", version: "2.0.46" }, + { name: "bus-stop", hex: "F1012", version: "4.1.95" }, + { name: "bus-stop-covered", hex: "F1013", version: "4.1.95" }, + { name: "bus-stop-uncovered", hex: "F1014", version: "4.1.95" }, + { name: "cable-data", hex: "F1394", version: "5.0.45" }, + { name: "cached", hex: "F00E8", version: "1.5.54" }, + { name: "cactus", hex: "F0DB5", version: "3.5.94" }, + { name: "cake", hex: "F00E9", version: "1.5.54" }, + { name: "cake-layered", hex: "F00EA", version: "1.5.54" }, + { name: "cake-variant", hex: "F00EB", version: "1.5.54" }, + { name: "calculator", hex: "F00EC", version: "1.5.54" }, + { name: "calculator-variant", hex: "F0A9A", version: "2.7.94" }, + { name: "calendar", hex: "F00ED", version: "1.5.54" }, + { name: "calendar-account", hex: "F0ED7", version: "3.8.95" }, + { name: "calendar-account-outline", hex: "F0ED8", version: "3.8.95" }, + { name: "calendar-alert", hex: "F0A31", version: "2.6.95" }, + { name: "calendar-arrow-left", hex: "F1134", version: "4.4.95" }, + { name: "calendar-arrow-right", hex: "F1135", version: "4.4.95" }, + { name: "calendar-blank", hex: "F00EE", version: "1.5.54" }, + { name: "calendar-blank-multiple", hex: "F1073", version: "4.2.95" }, + { name: "calendar-blank-outline", hex: "F0B66", version: "3.0.39" }, + { name: "calendar-check", hex: "F00EF", version: "1.5.54" }, + { name: "calendar-check-outline", hex: "F0C44", version: "3.2.89" }, + { name: "calendar-clock", hex: "F00F0", version: "1.5.54" }, + { name: "calendar-edit", hex: "F08A7", version: "2.2.43" }, + { name: "calendar-export", hex: "F0B24", version: "2.8.94" }, + { name: "calendar-heart", hex: "F09D2", version: "2.5.94" }, + { name: "calendar-import", hex: "F0B25", version: "2.8.94" }, + { name: "calendar-minus", hex: "F0D5C", version: "3.4.93" }, + { name: "calendar-month", hex: "F0E17", version: "3.6.95" }, + { name: "calendar-month-outline", hex: "F0E18", version: "3.6.95" }, + { name: "calendar-multiple", hex: "F00F1", version: "1.5.54" }, + { name: "calendar-multiple-check", hex: "F00F2", version: "1.5.54" }, + { name: "calendar-multiselect", hex: "F0A32", version: "2.6.95" }, + { name: "calendar-outline", hex: "F0B67", version: "3.0.39" }, + { name: "calendar-plus", hex: "F00F3", version: "1.5.54" }, + { name: "calendar-question", hex: "F0692", version: "1.7.12" }, + { name: "calendar-range", hex: "F0679", version: "1.7.12" }, + { name: "calendar-range-outline", hex: "F0B68", version: "3.0.39" }, + { name: "calendar-refresh", hex: "F01E1", version: "1.5.54" }, + { name: "calendar-refresh-outline", hex: "F0203", version: "1.5.54" }, + { name: "calendar-remove", hex: "F00F4", version: "1.5.54" }, + { name: "calendar-remove-outline", hex: "F0C45", version: "3.2.89" }, + { name: "calendar-search", hex: "F094C", version: "2.4.85" }, + { name: "calendar-star", hex: "F09D3", version: "2.5.94" }, + { name: "calendar-sync", hex: "F0E8E", version: "3.7.94" }, + { name: "calendar-sync-outline", hex: "F0E8F", version: "3.7.94" }, + { name: "calendar-text", hex: "F00F5", version: "1.5.54" }, + { name: "calendar-text-outline", hex: "F0C46", version: "3.2.89" }, + { name: "calendar-today", hex: "F00F6", version: "1.5.54" }, + { name: "calendar-week", hex: "F0A33", version: "2.6.95" }, + { name: "calendar-week-begin", hex: "F0A34", version: "2.6.95" }, + { name: "calendar-weekend", hex: "F0ED9", version: "3.8.95" }, + { name: "calendar-weekend-outline", hex: "F0EDA", version: "3.8.95" }, + { name: "call-made", hex: "F00F7", version: "1.5.54" }, + { name: "call-merge", hex: "F00F8", version: "1.5.54" }, + { name: "call-missed", hex: "F00F9", version: "1.5.54" }, + { name: "call-received", hex: "F00FA", version: "1.5.54" }, + { name: "call-split", hex: "F00FB", version: "1.5.54" }, + { name: "camcorder", hex: "F00FC", version: "1.5.54" }, + { name: "camcorder-off", hex: "F00FF", version: "1.5.54" }, + { name: "camera", hex: "F0100", version: "1.5.54" }, + { name: "camera-account", hex: "F08CB", version: "2.3.50" }, + { name: "camera-burst", hex: "F0693", version: "1.7.12" }, + { name: "camera-control", hex: "F0B69", version: "3.0.39" }, + { name: "camera-enhance", hex: "F0101", version: "1.5.54" }, + { name: "camera-enhance-outline", hex: "F0B6A", version: "3.0.39" }, + { name: "camera-front", hex: "F0102", version: "1.5.54" }, + { name: "camera-front-variant", hex: "F0103", version: "1.5.54" }, + { name: "camera-gopro", hex: "F07A1", version: "2.0.46" }, + { name: "camera-image", hex: "F08CC", version: "2.3.50" }, + { name: "camera-iris", hex: "F0104", version: "1.5.54" }, + { name: "camera-metering-center", hex: "F07A2", version: "2.0.46" }, + { name: "camera-metering-matrix", hex: "F07A3", version: "2.0.46" }, + { name: "camera-metering-partial", hex: "F07A4", version: "2.0.46" }, + { name: "camera-metering-spot", hex: "F07A5", version: "2.0.46" }, + { name: "camera-off", hex: "F05DF", version: "1.5.54" }, + { name: "camera-outline", hex: "F0D5D", version: "3.4.93" }, + { name: "camera-party-mode", hex: "F0105", version: "1.5.54" }, + { name: "camera-plus", hex: "F0EDB", version: "3.8.95" }, + { name: "camera-plus-outline", hex: "F0EDC", version: "3.8.95" }, + { name: "camera-rear", hex: "F0106", version: "1.5.54" }, + { name: "camera-rear-variant", hex: "F0107", version: "1.5.54" }, + { name: "camera-retake", hex: "F0E19", version: "3.6.95" }, + { name: "camera-retake-outline", hex: "F0E1A", version: "3.6.95" }, + { name: "camera-switch", hex: "F0108", version: "1.5.54" }, + { name: "camera-switch-outline", hex: "F084A", version: "2.1.99" }, + { name: "camera-timer", hex: "F0109", version: "1.5.54" }, + { name: "camera-wireless", hex: "F0DB6", version: "3.5.94" }, + { name: "camera-wireless-outline", hex: "F0DB7", version: "3.5.94" }, + { name: "campfire", hex: "F0EDD", version: "3.8.95" }, + { name: "cancel", hex: "F073A", version: "1.9.32" }, + { name: "candle", hex: "F05E2", version: "1.5.54" }, + { name: "candycane", hex: "F010A", version: "1.5.54" }, + { name: "cannabis", hex: "F07A6", version: "2.0.46" }, + { name: "caps-lock", hex: "F0A9B", version: "2.7.94" }, + { name: "car", hex: "F010B", version: "1.5.54" }, + { name: "car-2-plus", hex: "F1015", version: "4.1.95" }, + { name: "car-3-plus", hex: "F1016", version: "4.1.95" }, + { name: "car-arrow-left", hex: "F13B2", version: "5.0.45" }, + { name: "car-arrow-right", hex: "F13B3", version: "5.0.45" }, + { name: "car-back", hex: "F0E1B", version: "3.6.95" }, + { name: "car-battery", hex: "F010C", version: "1.5.54" }, + { name: "car-brake-abs", hex: "F0C47", version: "3.2.89" }, + { name: "car-brake-alert", hex: "F0C48", version: "3.2.89" }, + { name: "car-brake-hold", hex: "F0D5E", version: "3.4.93" }, + { name: "car-brake-parking", hex: "F0D5F", version: "3.4.93" }, + { name: "car-brake-retarder", hex: "F1017", version: "4.1.95" }, + { name: "car-child-seat", hex: "F0FA3", version: "4.0.96" }, + { name: "car-clutch", hex: "F1018", version: "4.1.95" }, + { name: "car-connected", hex: "F010D", version: "1.5.54" }, + { name: "car-convertible", hex: "F07A7", version: "2.0.46" }, + { name: "car-coolant-level", hex: "F1019", version: "4.1.95" }, + { name: "car-cruise-control", hex: "F0D60", version: "3.4.93" }, + { name: "car-defrost-front", hex: "F0D61", version: "3.4.93" }, + { name: "car-defrost-rear", hex: "F0D62", version: "3.4.93" }, + { name: "car-door", hex: "F0B6B", version: "3.0.39" }, + { name: "car-door-lock", hex: "F109D", version: "4.2.95" }, + { name: "car-electric", hex: "F0B6C", version: "3.0.39" }, + { name: "car-esp", hex: "F0C49", version: "3.2.89" }, + { name: "car-estate", hex: "F07A8", version: "2.0.46" }, + { name: "car-hatchback", hex: "F07A9", version: "2.0.46" }, + { name: "car-info", hex: "F11BE", version: "4.5.95" }, + { name: "car-key", hex: "F0B6D", version: "3.0.39" }, + { name: "car-light-dimmed", hex: "F0C4A", version: "3.2.89" }, + { name: "car-light-fog", hex: "F0C4B", version: "3.2.89" }, + { name: "car-light-high", hex: "F0C4C", version: "3.2.89" }, + { name: "car-limousine", hex: "F08CD", version: "2.3.50" }, + { name: "car-multiple", hex: "F0B6E", version: "3.0.39" }, + { name: "car-off", hex: "F0E1C", version: "3.6.95" }, + { name: "car-parking-lights", hex: "F0D63", version: "3.4.93" }, + { name: "car-pickup", hex: "F07AA", version: "2.0.46" }, + { name: "car-seat", hex: "F0FA4", version: "4.0.96" }, + { name: "car-seat-cooler", hex: "F0FA5", version: "4.0.96" }, + { name: "car-seat-heater", hex: "F0FA6", version: "4.0.96" }, + { name: "car-shift-pattern", hex: "F0F40", version: "3.9.97" }, + { name: "car-side", hex: "F07AB", version: "2.0.46" }, + { name: "car-sports", hex: "F07AC", version: "2.0.46" }, + { name: "car-tire-alert", hex: "F0C4D", version: "3.2.89" }, + { name: "car-traction-control", hex: "F0D64", version: "3.4.93" }, + { name: "car-turbocharger", hex: "F101A", version: "4.1.95" }, + { name: "car-wash", hex: "F010E", version: "1.5.54" }, + { name: "car-windshield", hex: "F101B", version: "4.1.95" }, + { name: "car-windshield-outline", hex: "F101C", version: "4.1.95" }, + { name: "caravan", hex: "F07AD", version: "2.0.46" }, + { name: "card", hex: "F0B6F", version: "3.0.39" }, + { name: "card-account-details", hex: "F05D2", version: "1.5.54" }, + { name: "card-account-details-outline", hex: "F0DAB", version: "3.5.94" }, + { name: "card-account-details-star", hex: "F02A3", version: "1.5.54" }, + { name: "card-account-details-star-outline", hex: "F06DB", version: "1.8.36" }, + { name: "card-account-mail", hex: "F018E", version: "1.5.54" }, + { name: "card-account-mail-outline", hex: "F0E98", version: "3.7.94" }, + { name: "card-account-phone", hex: "F0E99", version: "3.7.94" }, + { name: "card-account-phone-outline", hex: "F0E9A", version: "3.7.94" }, + { name: "card-bulleted", hex: "F0B70", version: "3.0.39" }, + { name: "card-bulleted-off", hex: "F0B71", version: "3.0.39" }, + { name: "card-bulleted-off-outline", hex: "F0B72", version: "3.0.39" }, + { name: "card-bulleted-outline", hex: "F0B73", version: "3.0.39" }, + { name: "card-bulleted-settings", hex: "F0B74", version: "3.0.39" }, + { name: "card-bulleted-settings-outline", hex: "F0B75", version: "3.0.39" }, + { name: "card-outline", hex: "F0B76", version: "3.0.39" }, + { name: "card-plus", hex: "F11FF", version: "4.6.95" }, + { name: "card-plus-outline", hex: "F1200", version: "4.6.95" }, + { name: "card-search", hex: "F1074", version: "4.2.95" }, + { name: "card-search-outline", hex: "F1075", version: "4.2.95" }, + { name: "card-text", hex: "F0B77", version: "3.0.39" }, + { name: "card-text-outline", hex: "F0B78", version: "3.0.39" }, + { name: "cards", hex: "F0638", version: "1.6.50" }, + { name: "cards-club", hex: "F08CE", version: "2.3.50" }, + { name: "cards-diamond", hex: "F08CF", version: "2.3.50" }, + { name: "cards-diamond-outline", hex: "F101D", version: "4.1.95" }, + { name: "cards-heart", hex: "F08D0", version: "2.3.50" }, + { name: "cards-outline", hex: "F0639", version: "1.6.50" }, + { name: "cards-playing-outline", hex: "F063A", version: "1.6.50" }, + { name: "cards-spade", hex: "F08D1", version: "2.3.50" }, + { name: "cards-variant", hex: "F06C7", version: "1.8.36" }, + { name: "carrot", hex: "F010F", version: "1.5.54" }, + { name: "cart", hex: "F0110", version: "1.5.54" }, + { name: "cart-arrow-down", hex: "F0D66", version: "3.4.93" }, + { name: "cart-arrow-right", hex: "F0C4E", version: "3.2.89" }, + { name: "cart-arrow-up", hex: "F0D67", version: "3.4.93" }, + { name: "cart-minus", hex: "F0D68", version: "3.4.93" }, + { name: "cart-off", hex: "F066B", version: "1.6.50" }, + { name: "cart-outline", hex: "F0111", version: "1.5.54" }, + { name: "cart-plus", hex: "F0112", version: "1.5.54" }, + { name: "cart-remove", hex: "F0D69", version: "3.4.93" }, + { name: "case-sensitive-alt", hex: "F0113", version: "1.5.54" }, + { name: "cash", hex: "F0114", version: "1.5.54" }, + { name: "cash-100", hex: "F0115", version: "1.5.54" }, + { name: "cash-marker", hex: "F0DB8", version: "3.5.94" }, + { name: "cash-minus", hex: "F1260", version: "4.7.95" }, + { name: "cash-multiple", hex: "F0116", version: "1.5.54" }, + { name: "cash-plus", hex: "F1261", version: "4.7.95" }, + { name: "cash-refund", hex: "F0A9C", version: "2.7.94" }, + { name: "cash-register", hex: "F0CF4", version: "3.3.92" }, + { name: "cash-remove", hex: "F1262", version: "4.7.95" }, + { name: "cash-usd", hex: "F1176", version: "4.4.95" }, + { name: "cash-usd-outline", hex: "F0117", version: "1.5.54" }, + { name: "cassette", hex: "F09D4", version: "2.5.94" }, + { name: "cast", hex: "F0118", version: "1.5.54" }, + { name: "cast-audio", hex: "F101E", version: "4.1.95" }, + { name: "cast-connected", hex: "F0119", version: "1.5.54" }, + { name: "cast-education", hex: "F0E1D", version: "3.6.95" }, + { name: "cast-off", hex: "F078A", version: "1.9.32" }, + { name: "castle", hex: "F011A", version: "1.5.54" }, + { name: "cat", hex: "F011B", version: "1.5.54" }, + { name: "cctv", hex: "F07AE", version: "2.0.46" }, + { name: "ceiling-light", hex: "F0769", version: "1.9.32" }, + { name: "cellphone", hex: "F011C", version: "1.5.54" }, + { name: "cellphone-android", hex: "F011D", version: "1.5.54" }, + { name: "cellphone-arrow-down", hex: "F09D5", version: "2.5.94" }, + { name: "cellphone-basic", hex: "F011E", version: "1.5.54" }, + { name: "cellphone-charging", hex: "F1397", version: "5.0.45" }, + { name: "cellphone-cog", hex: "F0951", version: "2.4.85" }, + { name: "cellphone-dock", hex: "F011F", version: "1.5.54" }, + { name: "cellphone-erase", hex: "F094D", version: "2.4.85" }, + { name: "cellphone-information", hex: "F0F41", version: "3.9.97" }, + { name: "cellphone-iphone", hex: "F0120", version: "1.5.54" }, + { name: "cellphone-key", hex: "F094E", version: "2.4.85" }, + { name: "cellphone-link", hex: "F0121", version: "1.5.54" }, + { name: "cellphone-link-off", hex: "F0122", version: "1.5.54" }, + { name: "cellphone-lock", hex: "F094F", version: "2.4.85" }, + { name: "cellphone-message", hex: "F08D3", version: "2.3.50" }, + { name: "cellphone-message-off", hex: "F10D2", version: "4.3.95" }, + { name: "cellphone-nfc", hex: "F0E90", version: "3.7.94" }, + { name: "cellphone-nfc-off", hex: "F12D8", version: "4.8.95" }, + { name: "cellphone-off", hex: "F0950", version: "2.4.85" }, + { name: "cellphone-play", hex: "F101F", version: "4.1.95" }, + { name: "cellphone-screenshot", hex: "F0A35", version: "2.6.95" }, + { name: "cellphone-settings", hex: "F0123", version: "1.5.54" }, + { name: "cellphone-sound", hex: "F0952", version: "2.4.85" }, + { name: "cellphone-text", hex: "F08D2", version: "2.3.50" }, + { name: "cellphone-wireless", hex: "F0815", version: "2.1.19" }, + { name: "celtic-cross", hex: "F0CF5", version: "3.3.92" }, + { name: "centos", hex: "F111A", version: "4.3.95" }, + { name: "certificate", hex: "F0124", version: "1.5.54" }, + { name: "certificate-outline", hex: "F1188", version: "4.4.95" }, + { name: "chair-rolling", hex: "F0F48", version: "3.9.97" }, + { name: "chair-school", hex: "F0125", version: "1.5.54" }, + { name: "charity", hex: "F0C4F", version: "3.2.89" }, + { name: "chart-arc", hex: "F0126", version: "1.5.54" }, + { name: "chart-areaspline", hex: "F0127", version: "1.5.54" }, + { name: "chart-areaspline-variant", hex: "F0E91", version: "3.7.94" }, + { name: "chart-bar", hex: "F0128", version: "1.5.54" }, + { name: "chart-bar-stacked", hex: "F076A", version: "1.9.32" }, + { name: "chart-bell-curve", hex: "F0C50", version: "3.2.89" }, + { name: "chart-bell-curve-cumulative", hex: "F0FA7", version: "4.0.96" }, + { name: "chart-bubble", hex: "F05E3", version: "1.5.54" }, + { name: "chart-donut", hex: "F07AF", version: "2.0.46" }, + { name: "chart-donut-variant", hex: "F07B0", version: "2.0.46" }, + { name: "chart-gantt", hex: "F066C", version: "1.6.50" }, + { name: "chart-histogram", hex: "F0129", version: "1.5.54" }, + { name: "chart-line", hex: "F012A", version: "1.5.54" }, + { name: "chart-line-stacked", hex: "F076B", version: "1.9.32" }, + { name: "chart-line-variant", hex: "F07B1", version: "2.0.46" }, + { name: "chart-multiline", hex: "F08D4", version: "2.3.50" }, + { name: "chart-multiple", hex: "F1213", version: "4.6.95" }, + { name: "chart-pie", hex: "F012B", version: "1.5.54" }, + { name: "chart-ppf", hex: "F1380", version: "4.9.95" }, + { name: "chart-sankey", hex: "F11DF", version: "4.5.95" }, + { name: "chart-sankey-variant", hex: "F11E0", version: "4.5.95" }, + { name: "chart-scatter-plot", hex: "F0E92", version: "3.7.94" }, + { name: "chart-scatter-plot-hexbin", hex: "F066D", version: "1.6.50" }, + { name: "chart-timeline", hex: "F066E", version: "1.6.50" }, + { name: "chart-timeline-variant", hex: "F0E93", version: "3.7.94" }, + { name: "chart-tree", hex: "F0E94", version: "3.7.94" }, + { name: "chat", hex: "F0B79", version: "3.0.39" }, + { name: "chat-alert", hex: "F0B7A", version: "3.0.39" }, + { name: "chat-alert-outline", hex: "F12C9", version: "4.8.95" }, + { name: "chat-outline", hex: "F0EDE", version: "3.8.95" }, + { name: "chat-processing", hex: "F0B7B", version: "3.0.39" }, + { name: "chat-processing-outline", hex: "F12CA", version: "4.8.95" }, + { name: "chat-sleep", hex: "F12D1", version: "4.8.95" }, + { name: "chat-sleep-outline", hex: "F12D2", version: "4.8.95" }, + { name: "check", hex: "F012C", version: "1.5.54" }, + { name: "check-all", hex: "F012D", version: "1.5.54" }, + { name: "check-bold", hex: "F0E1E", version: "3.6.95" }, + { name: "check-box-multiple-outline", hex: "F0C51", version: "3.2.89" }, + { name: "check-box-outline", hex: "F0C52", version: "3.2.89" }, + { name: "check-circle", hex: "F05E0", version: "1.5.54" }, + { name: "check-circle-outline", hex: "F05E1", version: "1.5.54" }, + { name: "check-decagram", hex: "F0791", version: "2.0.46" }, + { name: "check-network", hex: "F0C53", version: "3.2.89" }, + { name: "check-network-outline", hex: "F0C54", version: "3.2.89" }, + { name: "check-outline", hex: "F0855", version: "2.1.99" }, + { name: "check-underline", hex: "F0E1F", version: "3.6.95" }, + { name: "check-underline-circle", hex: "F0E20", version: "3.6.95" }, + { name: "check-underline-circle-outline", hex: "F0E21", version: "3.6.95" }, + { name: "checkbook", hex: "F0A9D", version: "2.7.94" }, + { name: "checkbox-blank", hex: "F012E", version: "1.5.54" }, + { name: "checkbox-blank-circle", hex: "F012F", version: "1.5.54" }, + { name: "checkbox-blank-circle-outline", hex: "F0130", version: "1.5.54" }, + { name: "checkbox-blank-off", hex: "F12EC", version: "4.8.95" }, + { name: "checkbox-blank-off-outline", hex: "F12ED", version: "4.8.95" }, + { name: "checkbox-blank-outline", hex: "F0131", version: "1.5.54" }, + { name: "checkbox-intermediate", hex: "F0856", version: "2.1.99" }, + { name: "checkbox-marked", hex: "F0132", version: "1.5.54" }, + { name: "checkbox-marked-circle", hex: "F0133", version: "1.5.54" }, + { name: "checkbox-marked-circle-outline", hex: "F0134", version: "1.5.54" }, + { name: "checkbox-marked-outline", hex: "F0135", version: "1.5.54" }, + { name: "checkbox-multiple-blank", hex: "F0136", version: "1.5.54" }, + { name: "checkbox-multiple-blank-circle", hex: "F063B", version: "1.6.50" }, + { name: "checkbox-multiple-blank-circle-outline", hex: "F063C", version: "1.6.50" }, + { name: "checkbox-multiple-blank-outline", hex: "F0137", version: "1.5.54" }, + { name: "checkbox-multiple-marked", hex: "F0138", version: "1.5.54" }, + { name: "checkbox-multiple-marked-circle", hex: "F063D", version: "1.6.50" }, + { name: "checkbox-multiple-marked-circle-outline", hex: "F063E", version: "1.6.50" }, + { name: "checkbox-multiple-marked-outline", hex: "F0139", version: "1.5.54" }, + { name: "checkerboard", hex: "F013A", version: "1.5.54" }, + { name: "checkerboard-minus", hex: "F1202", version: "4.6.95" }, + { name: "checkerboard-plus", hex: "F1201", version: "4.6.95" }, + { name: "checkerboard-remove", hex: "F1203", version: "4.6.95" }, + { name: "cheese", hex: "F12B9", version: "4.7.95" }, + { name: "chef-hat", hex: "F0B7C", version: "3.0.39" }, + { name: "chemical-weapon", hex: "F013B", version: "1.5.54" }, + { name: "chess-bishop", hex: "F085C", version: "2.1.99" }, + { name: "chess-king", hex: "F0857", version: "2.1.99" }, + { name: "chess-knight", hex: "F0858", version: "2.1.99" }, + { name: "chess-pawn", hex: "F0859", version: "2.1.99" }, + { name: "chess-queen", hex: "F085A", version: "2.1.99" }, + { name: "chess-rook", hex: "F085B", version: "2.1.99" }, + { name: "chevron-double-down", hex: "F013C", version: "1.5.54" }, + { name: "chevron-double-left", hex: "F013D", version: "1.5.54" }, + { name: "chevron-double-right", hex: "F013E", version: "1.5.54" }, + { name: "chevron-double-up", hex: "F013F", version: "1.5.54" }, + { name: "chevron-down", hex: "F0140", version: "1.5.54" }, + { name: "chevron-down-box", hex: "F09D6", version: "2.5.94" }, + { name: "chevron-down-box-outline", hex: "F09D7", version: "2.5.94" }, + { name: "chevron-down-circle", hex: "F0B26", version: "2.8.94" }, + { name: "chevron-down-circle-outline", hex: "F0B27", version: "2.8.94" }, + { name: "chevron-left", hex: "F0141", version: "1.5.54" }, + { name: "chevron-left-box", hex: "F09D8", version: "2.5.94" }, + { name: "chevron-left-box-outline", hex: "F09D9", version: "2.5.94" }, + { name: "chevron-left-circle", hex: "F0B28", version: "2.8.94" }, + { name: "chevron-left-circle-outline", hex: "F0B29", version: "2.8.94" }, + { name: "chevron-right", hex: "F0142", version: "1.5.54" }, + { name: "chevron-right-box", hex: "F09DA", version: "2.5.94" }, + { name: "chevron-right-box-outline", hex: "F09DB", version: "2.5.94" }, + { name: "chevron-right-circle", hex: "F0B2A", version: "2.8.94" }, + { name: "chevron-right-circle-outline", hex: "F0B2B", version: "2.8.94" }, + { name: "chevron-triple-down", hex: "F0DB9", version: "3.5.94" }, + { name: "chevron-triple-left", hex: "F0DBA", version: "3.5.94" }, + { name: "chevron-triple-right", hex: "F0DBB", version: "3.5.94" }, + { name: "chevron-triple-up", hex: "F0DBC", version: "3.5.94" }, + { name: "chevron-up", hex: "F0143", version: "1.5.54" }, + { name: "chevron-up-box", hex: "F09DC", version: "2.5.94" }, + { name: "chevron-up-box-outline", hex: "F09DD", version: "2.5.94" }, + { name: "chevron-up-circle", hex: "F0B2C", version: "2.8.94" }, + { name: "chevron-up-circle-outline", hex: "F0B2D", version: "2.8.94" }, + { name: "chili-hot", hex: "F07B2", version: "2.0.46" }, + { name: "chili-medium", hex: "F07B3", version: "2.0.46" }, + { name: "chili-mild", hex: "F07B4", version: "2.0.46" }, + { name: "chip", hex: "F061A", version: "1.6.50" }, + { name: "christianity", hex: "F0953", version: "2.4.85" }, + { name: "christianity-outline", hex: "F0CF6", version: "3.3.92" }, + { name: "church", hex: "F0144", version: "1.5.54" }, + { name: "cigar", hex: "F1189", version: "4.4.95" }, + { name: "circle", hex: "F0765", version: "1.9.32" }, + { name: "circle-double", hex: "F0E95", version: "3.7.94" }, + { name: "circle-edit-outline", hex: "F08D5", version: "2.3.50" }, + { name: "circle-expand", hex: "F0E96", version: "3.7.94" }, + { name: "circle-half", hex: "F1395", version: "5.0.45" }, + { name: "circle-half-full", hex: "F1396", version: "5.0.45" }, + { name: "circle-medium", hex: "F09DE", version: "2.5.94" }, + { name: "circle-multiple", hex: "F0B38", version: "2.8.94" }, + { name: "circle-multiple-outline", hex: "F0695", version: "1.7.12" }, + { name: "circle-off-outline", hex: "F10D3", version: "4.3.95" }, + { name: "circle-outline", hex: "F0766", version: "1.9.32" }, + { name: "circle-slice-1", hex: "F0A9E", version: "2.7.94" }, + { name: "circle-slice-2", hex: "F0A9F", version: "2.7.94" }, + { name: "circle-slice-3", hex: "F0AA0", version: "2.7.94" }, + { name: "circle-slice-4", hex: "F0AA1", version: "2.7.94" }, + { name: "circle-slice-5", hex: "F0AA2", version: "2.7.94" }, + { name: "circle-slice-6", hex: "F0AA3", version: "2.7.94" }, + { name: "circle-slice-7", hex: "F0AA4", version: "2.7.94" }, + { name: "circle-slice-8", hex: "F0AA5", version: "2.7.94" }, + { name: "circle-small", hex: "F09DF", version: "2.5.94" }, + { name: "circular-saw", hex: "F0E22", version: "3.6.95" }, + { name: "city", hex: "F0146", version: "1.5.54" }, + { name: "city-variant", hex: "F0A36", version: "2.6.95" }, + { name: "city-variant-outline", hex: "F0A37", version: "2.6.95" }, + { name: "clipboard", hex: "F0147", version: "1.5.54" }, + { name: "clipboard-account", hex: "F0148", version: "1.5.54" }, + { name: "clipboard-account-outline", hex: "F0C55", version: "3.2.89" }, + { name: "clipboard-alert", hex: "F0149", version: "1.5.54" }, + { name: "clipboard-alert-outline", hex: "F0CF7", version: "3.3.92" }, + { name: "clipboard-arrow-down", hex: "F014A", version: "1.5.54" }, + { name: "clipboard-arrow-down-outline", hex: "F0C56", version: "3.2.89" }, + { name: "clipboard-arrow-left", hex: "F014B", version: "1.5.54" }, + { name: "clipboard-arrow-left-outline", hex: "F0CF8", version: "3.3.92" }, + { name: "clipboard-arrow-right", hex: "F0CF9", version: "3.3.92" }, + { name: "clipboard-arrow-right-outline", hex: "F0CFA", version: "3.3.92" }, + { name: "clipboard-arrow-up", hex: "F0C57", version: "3.2.89" }, + { name: "clipboard-arrow-up-outline", hex: "F0C58", version: "3.2.89" }, + { name: "clipboard-check", hex: "F014E", version: "1.5.54" }, + { name: "clipboard-check-multiple", hex: "F1263", version: "4.7.95" }, + { name: "clipboard-check-multiple-outline", hex: "F1264", version: "4.7.95" }, + { name: "clipboard-check-outline", hex: "F08A8", version: "2.2.43" }, + { name: "clipboard-file", hex: "F1265", version: "4.7.95" }, + { name: "clipboard-file-outline", hex: "F1266", version: "4.7.95" }, + { name: "clipboard-flow", hex: "F06C8", version: "1.8.36" }, + { name: "clipboard-flow-outline", hex: "F1117", version: "4.3.95" }, + { name: "clipboard-list", hex: "F10D4", version: "4.3.95" }, + { name: "clipboard-list-outline", hex: "F10D5", version: "4.3.95" }, + { name: "clipboard-multiple", hex: "F1267", version: "4.7.95" }, + { name: "clipboard-multiple-outline", hex: "F1268", version: "4.7.95" }, + { name: "clipboard-outline", hex: "F014C", version: "1.5.54" }, + { name: "clipboard-play", hex: "F0C59", version: "3.2.89" }, + { name: "clipboard-play-multiple", hex: "F1269", version: "4.7.95" }, + { name: "clipboard-play-multiple-outline", hex: "F126A", version: "4.7.95" }, + { name: "clipboard-play-outline", hex: "F0C5A", version: "3.2.89" }, + { name: "clipboard-plus", hex: "F0751", version: "1.9.32" }, + { name: "clipboard-plus-outline", hex: "F131F", version: "4.8.95" }, + { name: "clipboard-pulse", hex: "F085D", version: "2.1.99" }, + { name: "clipboard-pulse-outline", hex: "F085E", version: "2.1.99" }, + { name: "clipboard-text", hex: "F014D", version: "1.5.54" }, + { name: "clipboard-text-multiple", hex: "F126B", version: "4.7.95" }, + { name: "clipboard-text-multiple-outline", hex: "F126C", version: "4.7.95" }, + { name: "clipboard-text-outline", hex: "F0A38", version: "2.6.95" }, + { name: "clipboard-text-play", hex: "F0C5B", version: "3.2.89" }, + { name: "clipboard-text-play-outline", hex: "F0C5C", version: "3.2.89" }, + { name: "clippy", hex: "F014F", version: "1.5.54" }, + { name: "clock", hex: "F0954", version: "2.4.85" }, + { name: "clock-alert", hex: "F0955", version: "2.4.85" }, + { name: "clock-alert-outline", hex: "F05CE", version: "1.5.54" }, + { name: "clock-check", hex: "F0FA8", version: "4.0.96" }, + { name: "clock-check-outline", hex: "F0FA9", version: "4.0.96" }, + { name: "clock-digital", hex: "F0E97", version: "3.7.94" }, + { name: "clock-end", hex: "F0151", version: "1.5.54" }, + { name: "clock-fast", hex: "F0152", version: "1.5.54" }, + { name: "clock-in", hex: "F0153", version: "1.5.54" }, + { name: "clock-out", hex: "F0154", version: "1.5.54" }, + { name: "clock-outline", hex: "F0150", version: "1.5.54" }, + { name: "clock-start", hex: "F0155", version: "1.5.54" }, + { name: "close", hex: "F0156", version: "1.5.54" }, + { name: "close-box", hex: "F0157", version: "1.5.54" }, + { name: "close-box-multiple", hex: "F0C5D", version: "3.2.89" }, + { name: "close-box-multiple-outline", hex: "F0C5E", version: "3.2.89" }, + { name: "close-box-outline", hex: "F0158", version: "1.5.54" }, + { name: "close-circle", hex: "F0159", version: "1.5.54" }, + { name: "close-circle-multiple", hex: "F062A", version: "1.6.50" }, + { name: "close-circle-multiple-outline", hex: "F0883", version: "2.1.99" }, + { name: "close-circle-outline", hex: "F015A", version: "1.5.54" }, + { name: "close-network", hex: "F015B", version: "1.5.54" }, + { name: "close-network-outline", hex: "F0C5F", version: "3.2.89" }, + { name: "close-octagon", hex: "F015C", version: "1.5.54" }, + { name: "close-octagon-outline", hex: "F015D", version: "1.5.54" }, + { name: "close-outline", hex: "F06C9", version: "1.8.36" }, + { name: "close-thick", hex: "F1398", version: "5.0.45" }, + { name: "closed-caption", hex: "F015E", version: "1.5.54" }, + { name: "closed-caption-outline", hex: "F0DBD", version: "3.5.94" }, + { name: "cloud", hex: "F015F", version: "1.5.54" }, + { name: "cloud-alert", hex: "F09E0", version: "2.5.94" }, + { name: "cloud-braces", hex: "F07B5", version: "2.0.46" }, + { name: "cloud-check", hex: "F0160", version: "1.5.54" }, + { name: "cloud-check-outline", hex: "F12CC", version: "4.8.95" }, + { name: "cloud-circle", hex: "F0161", version: "1.5.54" }, + { name: "cloud-download", hex: "F0162", version: "1.5.54" }, + { name: "cloud-download-outline", hex: "F0B7D", version: "3.0.39" }, + { name: "cloud-lock", hex: "F11F1", version: "4.5.95" }, + { name: "cloud-lock-outline", hex: "F11F2", version: "4.5.95" }, + { name: "cloud-off-outline", hex: "F0164", version: "1.5.54" }, + { name: "cloud-outline", hex: "F0163", version: "1.5.54" }, + { name: "cloud-print", hex: "F0165", version: "1.5.54" }, + { name: "cloud-print-outline", hex: "F0166", version: "1.5.54" }, + { name: "cloud-question", hex: "F0A39", version: "2.6.95" }, + { name: "cloud-refresh", hex: "F052A", version: "1.5.54" }, + { name: "cloud-search", hex: "F0956", version: "2.4.85" }, + { name: "cloud-search-outline", hex: "F0957", version: "2.4.85" }, + { name: "cloud-sync", hex: "F063F", version: "1.6.50" }, + { name: "cloud-sync-outline", hex: "F12D6", version: "4.8.95" }, + { name: "cloud-tags", hex: "F07B6", version: "2.0.46" }, + { name: "cloud-upload", hex: "F0167", version: "1.5.54" }, + { name: "cloud-upload-outline", hex: "F0B7E", version: "3.0.39" }, + { name: "clover", hex: "F0816", version: "2.1.19" }, + { name: "coach-lamp", hex: "F1020", version: "4.1.95" }, + { name: "coat-rack", hex: "F109E", version: "4.2.95" }, + { name: "code-array", hex: "F0168", version: "1.5.54" }, + { name: "code-braces", hex: "F0169", version: "1.5.54" }, + { name: "code-braces-box", hex: "F10D6", version: "4.3.95" }, + { name: "code-brackets", hex: "F016A", version: "1.5.54" }, + { name: "code-equal", hex: "F016B", version: "1.5.54" }, + { name: "code-greater-than", hex: "F016C", version: "1.5.54" }, + { name: "code-greater-than-or-equal", hex: "F016D", version: "1.5.54" }, + { name: "code-json", hex: "F0626", version: "1.6.50" }, + { name: "code-less-than", hex: "F016E", version: "1.5.54" }, + { name: "code-less-than-or-equal", hex: "F016F", version: "1.5.54" }, + { name: "code-not-equal", hex: "F0170", version: "1.5.54" }, + { name: "code-not-equal-variant", hex: "F0171", version: "1.5.54" }, + { name: "code-parentheses", hex: "F0172", version: "1.5.54" }, + { name: "code-parentheses-box", hex: "F10D7", version: "4.3.95" }, + { name: "code-string", hex: "F0173", version: "1.5.54" }, + { name: "code-tags", hex: "F0174", version: "1.5.54" }, + { name: "code-tags-check", hex: "F0694", version: "1.7.12" }, + { name: "codepen", hex: "F0175", version: "1.5.54" }, + { name: "coffee", hex: "F0176", version: "1.5.54" }, + { name: "coffee-maker", hex: "F109F", version: "4.2.95" }, + { name: "coffee-off", hex: "F0FAA", version: "3.9.97" }, + { name: "coffee-off-outline", hex: "F0FAB", version: "3.9.97" }, + { name: "coffee-outline", hex: "F06CA", version: "1.8.36" }, + { name: "coffee-to-go", hex: "F0177", version: "1.5.54" }, + { name: "coffee-to-go-outline", hex: "F130E", version: "4.8.95" }, + { name: "coffin", hex: "F0B7F", version: "3.0.39" }, + { name: "cog", hex: "F0493", version: "1.5.54" }, + { name: "cog-box", hex: "F0494", version: "1.5.54" }, + { name: "cog-clockwise", hex: "F11DD", version: "4.5.95" }, + { name: "cog-counterclockwise", hex: "F11DE", version: "4.5.95" }, + { name: "cog-outline", hex: "F08BB", version: "2.2.43" }, + { name: "cog-transfer", hex: "F105B", version: "4.1.95" }, + { name: "cog-transfer-outline", hex: "F105C", version: "4.1.95" }, + { name: "cogs", hex: "F08D6", version: "2.3.50" }, + { name: "collage", hex: "F0640", version: "1.6.50" }, + { name: "collapse-all", hex: "F0AA6", version: "2.7.94" }, + { name: "collapse-all-outline", hex: "F0AA7", version: "2.7.94" }, + { name: "color-helper", hex: "F0179", version: "1.5.54" }, + { name: "comma", hex: "F0E23", version: "3.6.95" }, + { name: "comma-box", hex: "F0E2B", version: "3.6.95" }, + { name: "comma-box-outline", hex: "F0E24", version: "3.6.95" }, + { name: "comma-circle", hex: "F0E25", version: "3.6.95" }, + { name: "comma-circle-outline", hex: "F0E26", version: "3.6.95" }, + { name: "comment", hex: "F017A", version: "1.5.54" }, + { name: "comment-account", hex: "F017B", version: "1.5.54" }, + { name: "comment-account-outline", hex: "F017C", version: "1.5.54" }, + { name: "comment-alert", hex: "F017D", version: "1.5.54" }, + { name: "comment-alert-outline", hex: "F017E", version: "1.5.54" }, + { name: "comment-arrow-left", hex: "F09E1", version: "2.5.94" }, + { name: "comment-arrow-left-outline", hex: "F09E2", version: "2.5.94" }, + { name: "comment-arrow-right", hex: "F09E3", version: "2.5.94" }, + { name: "comment-arrow-right-outline", hex: "F09E4", version: "2.5.94" }, + { name: "comment-check", hex: "F017F", version: "1.5.54" }, + { name: "comment-check-outline", hex: "F0180", version: "1.5.54" }, + { name: "comment-edit", hex: "F11BF", version: "4.5.95" }, + { name: "comment-edit-outline", hex: "F12C4", version: "4.8.95" }, + { name: "comment-eye", hex: "F0A3A", version: "2.6.95" }, + { name: "comment-eye-outline", hex: "F0A3B", version: "2.6.95" }, + { name: "comment-multiple", hex: "F085F", version: "2.1.99" }, + { name: "comment-multiple-outline", hex: "F0181", version: "1.5.54" }, + { name: "comment-outline", hex: "F0182", version: "1.5.54" }, + { name: "comment-plus", hex: "F09E5", version: "2.5.94" }, + { name: "comment-plus-outline", hex: "F0183", version: "1.5.54" }, + { name: "comment-processing", hex: "F0184", version: "1.5.54" }, + { name: "comment-processing-outline", hex: "F0185", version: "1.5.54" }, + { name: "comment-question", hex: "F0817", version: "2.1.19" }, + { name: "comment-question-outline", hex: "F0186", version: "1.5.54" }, + { name: "comment-quote", hex: "F1021", version: "4.1.95" }, + { name: "comment-quote-outline", hex: "F1022", version: "4.1.95" }, + { name: "comment-remove", hex: "F05DE", version: "1.5.54" }, + { name: "comment-remove-outline", hex: "F0187", version: "1.5.54" }, + { name: "comment-search", hex: "F0A3C", version: "2.6.95" }, + { name: "comment-search-outline", hex: "F0A3D", version: "2.6.95" }, + { name: "comment-text", hex: "F0188", version: "1.5.54" }, + { name: "comment-text-multiple", hex: "F0860", version: "2.1.99" }, + { name: "comment-text-multiple-outline", hex: "F0861", version: "2.1.99" }, + { name: "comment-text-outline", hex: "F0189", version: "1.5.54" }, + { name: "compare", hex: "F018A", version: "1.5.54" }, + { name: "compass", hex: "F018B", version: "1.5.54" }, + { name: "compass-off", hex: "F0B80", version: "3.0.39" }, + { name: "compass-off-outline", hex: "F0B81", version: "3.0.39" }, + { name: "compass-outline", hex: "F018C", version: "1.5.54" }, + { name: "compass-rose", hex: "F1382", version: "4.9.95" }, + { name: "concourse-ci", hex: "F10A0", version: "4.2.95" }, + { name: "console", hex: "F018D", version: "1.5.54" }, + { name: "console-line", hex: "F07B7", version: "2.0.46" }, + { name: "console-network", hex: "F08A9", version: "2.2.43" }, + { name: "console-network-outline", hex: "F0C60", version: "3.2.89" }, + { name: "consolidate", hex: "F10D8", version: "4.3.95" }, + { name: "contactless-payment", hex: "F0D6A", version: "3.4.93" }, + { name: "contactless-payment-circle", hex: "F0321", version: "1.5.54" }, + { name: "contactless-payment-circle-outline", hex: "F0408", version: "1.5.54" }, + { name: "contacts", hex: "F06CB", version: "1.8.36" }, + { name: "contacts-outline", hex: "F05B8", version: "1.5.54" }, + { name: "contain", hex: "F0A3E", version: "2.6.95" }, + { name: "contain-end", hex: "F0A3F", version: "2.6.95" }, + { name: "contain-start", hex: "F0A40", version: "2.6.95" }, + { name: "content-copy", hex: "F018F", version: "1.5.54" }, + { name: "content-cut", hex: "F0190", version: "1.5.54" }, + { name: "content-duplicate", hex: "F0191", version: "1.5.54" }, + { name: "content-paste", hex: "F0192", version: "1.5.54" }, + { name: "content-save", hex: "F0193", version: "1.5.54" }, + { name: "content-save-alert", hex: "F0F42", version: "3.9.97" }, + { name: "content-save-alert-outline", hex: "F0F43", version: "3.9.97" }, + { name: "content-save-all", hex: "F0194", version: "1.5.54" }, + { name: "content-save-all-outline", hex: "F0F44", version: "3.9.97" }, + { name: "content-save-edit", hex: "F0CFB", version: "3.3.92" }, + { name: "content-save-edit-outline", hex: "F0CFC", version: "3.3.92" }, + { name: "content-save-move", hex: "F0E27", version: "3.6.95" }, + { name: "content-save-move-outline", hex: "F0E28", version: "3.6.95" }, + { name: "content-save-outline", hex: "F0818", version: "2.1.19" }, + { name: "content-save-settings", hex: "F061B", version: "1.6.50" }, + { name: "content-save-settings-outline", hex: "F0B2E", version: "2.8.94" }, + { name: "contrast", hex: "F0195", version: "1.5.54" }, + { name: "contrast-box", hex: "F0196", version: "1.5.54" }, + { name: "contrast-circle", hex: "F0197", version: "1.5.54" }, + { name: "controller-classic", hex: "F0B82", version: "3.0.39" }, + { name: "controller-classic-outline", hex: "F0B83", version: "3.0.39" }, + { name: "cookie", hex: "F0198", version: "1.5.54" }, + { name: "coolant-temperature", hex: "F03C8", version: "1.5.54" }, + { name: "copyright", hex: "F05E6", version: "1.5.54" }, + { name: "cordova", hex: "F0958", version: "2.4.85" }, + { name: "corn", hex: "F07B8", version: "2.0.46" }, + { name: "counter", hex: "F0199", version: "1.5.54" }, + { name: "cow", hex: "F019A", version: "1.5.54" }, + { name: "cpu-32-bit", hex: "F0EDF", version: "3.8.95" }, + { name: "cpu-64-bit", hex: "F0EE0", version: "3.8.95" }, + { name: "crane", hex: "F0862", version: "2.1.99" }, + { name: "creation", hex: "F0674", version: "1.7.12" }, + { name: "creative-commons", hex: "F0D6B", version: "3.4.93" }, + { name: "credit-card", hex: "F0FEF", version: "4.0.96" }, + { name: "credit-card-clock", hex: "F0EE1", version: "3.8.95" }, + { name: "credit-card-clock-outline", hex: "F0EE2", version: "3.8.95" }, + { name: "credit-card-marker", hex: "F06A8", version: "1.7.12" }, + { name: "credit-card-marker-outline", hex: "F0DBE", version: "3.5.94" }, + { name: "credit-card-minus", hex: "F0FAC", version: "4.0.96" }, + { name: "credit-card-minus-outline", hex: "F0FAD", version: "4.0.96" }, + { name: "credit-card-multiple", hex: "F0FF0", version: "4.0.96" }, + { name: "credit-card-multiple-outline", hex: "F019C", version: "1.5.54" }, + { name: "credit-card-off", hex: "F0FF1", version: "4.0.96" }, + { name: "credit-card-off-outline", hex: "F05E4", version: "1.5.54" }, + { name: "credit-card-outline", hex: "F019B", version: "1.5.54" }, + { name: "credit-card-plus", hex: "F0FF2", version: "4.0.96" }, + { name: "credit-card-plus-outline", hex: "F0676", version: "1.7.12" }, + { name: "credit-card-refund", hex: "F0FF3", version: "4.0.96" }, + { name: "credit-card-refund-outline", hex: "F0AA8", version: "2.7.94" }, + { name: "credit-card-remove", hex: "F0FAE", version: "4.0.96" }, + { name: "credit-card-remove-outline", hex: "F0FAF", version: "4.0.96" }, + { name: "credit-card-scan", hex: "F0FF4", version: "4.0.96" }, + { name: "credit-card-scan-outline", hex: "F019D", version: "1.5.54" }, + { name: "credit-card-settings", hex: "F0FF5", version: "4.0.96" }, + { name: "credit-card-settings-outline", hex: "F08D7", version: "2.3.50" }, + { name: "credit-card-wireless", hex: "F0802", version: "2.1.19" }, + { name: "credit-card-wireless-off", hex: "F057A", version: "1.5.54" }, + { name: "credit-card-wireless-off-outline", hex: "F057B", version: "1.5.54" }, + { name: "credit-card-wireless-outline", hex: "F0D6C", version: "3.4.93" }, + { name: "cricket", hex: "F0D6D", version: "3.4.93" }, + { name: "crop", hex: "F019E", version: "1.5.54" }, + { name: "crop-free", hex: "F019F", version: "1.5.54" }, + { name: "crop-landscape", hex: "F01A0", version: "1.5.54" }, + { name: "crop-portrait", hex: "F01A1", version: "1.5.54" }, + { name: "crop-rotate", hex: "F0696", version: "1.7.12" }, + { name: "crop-square", hex: "F01A2", version: "1.5.54" }, + { name: "crosshairs", hex: "F01A3", version: "1.5.54" }, + { name: "crosshairs-gps", hex: "F01A4", version: "1.5.54" }, + { name: "crosshairs-off", hex: "F0F45", version: "3.9.97" }, + { name: "crosshairs-question", hex: "F1136", version: "4.4.95" }, + { name: "crown", hex: "F01A5", version: "1.5.54" }, + { name: "crown-outline", hex: "F11D0", version: "4.5.95" }, + { name: "cryengine", hex: "F0959", version: "2.4.85" }, + { name: "crystal-ball", hex: "F0B2F", version: "2.8.94" }, + { name: "cube", hex: "F01A6", version: "1.5.54" }, + { name: "cube-outline", hex: "F01A7", version: "1.5.54" }, + { name: "cube-scan", hex: "F0B84", version: "3.0.39" }, + { name: "cube-send", hex: "F01A8", version: "1.5.54" }, + { name: "cube-unfolded", hex: "F01A9", version: "1.5.54" }, + { name: "cup", hex: "F01AA", version: "1.5.54" }, + { name: "cup-off", hex: "F05E5", version: "1.5.54" }, + { name: "cup-off-outline", hex: "F137D", version: "4.9.95" }, + { name: "cup-outline", hex: "F130F", version: "4.8.95" }, + { name: "cup-water", hex: "F01AB", version: "1.5.54" }, + { name: "cupboard", hex: "F0F46", version: "3.9.97" }, + { name: "cupboard-outline", hex: "F0F47", version: "3.9.97" }, + { name: "cupcake", hex: "F095A", version: "2.4.85" }, + { name: "curling", hex: "F0863", version: "2.1.99" }, + { name: "currency-bdt", hex: "F0864", version: "2.1.99" }, + { name: "currency-brl", hex: "F0B85", version: "3.0.39" }, + { name: "currency-btc", hex: "F01AC", version: "1.5.54" }, + { name: "currency-cny", hex: "F07BA", version: "2.0.46" }, + { name: "currency-eth", hex: "F07BB", version: "2.0.46" }, + { name: "currency-eur", hex: "F01AD", version: "1.5.54" }, + { name: "currency-eur-off", hex: "F1315", version: "4.8.95" }, + { name: "currency-gbp", hex: "F01AE", version: "1.5.54" }, + { name: "currency-ils", hex: "F0C61", version: "3.2.89" }, + { name: "currency-inr", hex: "F01AF", version: "1.5.54" }, + { name: "currency-jpy", hex: "F07BC", version: "2.0.46" }, + { name: "currency-krw", hex: "F07BD", version: "2.0.46" }, + { name: "currency-kzt", hex: "F0865", version: "2.1.99" }, + { name: "currency-ngn", hex: "F01B0", version: "1.5.54" }, + { name: "currency-php", hex: "F09E6", version: "2.5.94" }, + { name: "currency-rial", hex: "F0E9C", version: "3.7.94" }, + { name: "currency-rub", hex: "F01B1", version: "1.5.54" }, + { name: "currency-sign", hex: "F07BE", version: "2.0.46" }, + { name: "currency-try", hex: "F01B2", version: "1.5.54" }, + { name: "currency-twd", hex: "F07BF", version: "2.0.46" }, + { name: "currency-usd", hex: "F01C1", version: "1.5.54" }, + { name: "currency-usd-circle", hex: "F116B", version: "4.4.95" }, + { name: "currency-usd-circle-outline", hex: "F0178", version: "1.5.54" }, + { name: "currency-usd-off", hex: "F067A", version: "1.7.12" }, + { name: "current-ac", hex: "F095B", version: "2.4.85" }, + { name: "current-dc", hex: "F095C", version: "2.4.85" }, + { name: "cursor-default", hex: "F01C0", version: "1.5.54" }, + { name: "cursor-default-click", hex: "F0CFD", version: "3.3.92" }, + { name: "cursor-default-click-outline", hex: "F0CFE", version: "3.3.92" }, + { name: "cursor-default-gesture", hex: "F1127", version: "4.3.95" }, + { name: "cursor-default-gesture-outline", hex: "F1128", version: "4.3.95" }, + { name: "cursor-default-outline", hex: "F01BF", version: "1.5.54" }, + { name: "cursor-move", hex: "F01BE", version: "1.5.54" }, + { name: "cursor-pointer", hex: "F01BD", version: "1.5.54" }, + { name: "cursor-text", hex: "F05E7", version: "1.5.54" }, + { name: "database", hex: "F01BC", version: "1.5.54" }, + { name: "database-check", hex: "F0AA9", version: "2.7.94" }, + { name: "database-edit", hex: "F0B86", version: "3.0.39" }, + { name: "database-export", hex: "F095E", version: "2.4.85" }, + { name: "database-import", hex: "F095D", version: "2.4.85" }, + { name: "database-lock", hex: "F0AAA", version: "2.7.94" }, + { name: "database-marker", hex: "F12F6", version: "4.8.95" }, + { name: "database-minus", hex: "F01BB", version: "1.5.54" }, + { name: "database-plus", hex: "F01BA", version: "1.5.54" }, + { name: "database-refresh", hex: "F05C2", version: "1.5.54" }, + { name: "database-remove", hex: "F0D00", version: "3.3.92" }, + { name: "database-search", hex: "F0866", version: "2.1.99" }, + { name: "database-settings", hex: "F0D01", version: "3.3.92" }, + { name: "database-sync", hex: "F0CFF", version: "3.3.92" }, + { name: "death-star", hex: "F08D8", version: "2.3.50" }, + { name: "death-star-variant", hex: "F08D9", version: "2.3.50" }, + { name: "deathly-hallows", hex: "F0B87", version: "3.0.39" }, + { name: "debian", hex: "F08DA", version: "2.3.50" }, + { name: "debug-step-into", hex: "F01B9", version: "1.5.54" }, + { name: "debug-step-out", hex: "F01B8", version: "1.5.54" }, + { name: "debug-step-over", hex: "F01B7", version: "1.5.54" }, + { name: "decagram", hex: "F076C", version: "1.9.32" }, + { name: "decagram-outline", hex: "F076D", version: "1.9.32" }, + { name: "decimal", hex: "F10A1", version: "4.2.95" }, + { name: "decimal-comma", hex: "F10A2", version: "4.2.95" }, + { name: "decimal-comma-decrease", hex: "F10A3", version: "4.2.95" }, + { name: "decimal-comma-increase", hex: "F10A4", version: "4.2.95" }, + { name: "decimal-decrease", hex: "F01B6", version: "1.5.54" }, + { name: "decimal-increase", hex: "F01B5", version: "1.5.54" }, + { name: "delete", hex: "F01B4", version: "1.5.54" }, + { name: "delete-alert", hex: "F10A5", version: "4.2.95" }, + { name: "delete-alert-outline", hex: "F10A6", version: "4.2.95" }, + { name: "delete-circle", hex: "F0683", version: "1.7.12" }, + { name: "delete-circle-outline", hex: "F0B88", version: "3.0.39" }, + { name: "delete-empty", hex: "F06CC", version: "1.8.36" }, + { name: "delete-empty-outline", hex: "F0E9D", version: "3.7.94" }, + { name: "delete-forever", hex: "F05E8", version: "1.5.54" }, + { name: "delete-forever-outline", hex: "F0B89", version: "3.0.39" }, + { name: "delete-off", hex: "F10A7", version: "4.2.95" }, + { name: "delete-off-outline", hex: "F10A8", version: "4.2.95" }, + { name: "delete-outline", hex: "F09E7", version: "2.5.94" }, + { name: "delete-restore", hex: "F0819", version: "2.1.19" }, + { name: "delete-sweep", hex: "F05E9", version: "1.5.54" }, + { name: "delete-sweep-outline", hex: "F0C62", version: "3.2.89" }, + { name: "delete-variant", hex: "F01B3", version: "1.5.54" }, + { name: "delta", hex: "F01C2", version: "1.5.54" }, + { name: "desk", hex: "F1239", version: "4.6.95" }, + { name: "desk-lamp", hex: "F095F", version: "2.4.85" }, + { name: "deskphone", hex: "F01C3", version: "1.5.54" }, + { name: "desktop-classic", hex: "F07C0", version: "2.0.46" }, + { name: "desktop-mac", hex: "F01C4", version: "1.5.54" }, + { name: "desktop-mac-dashboard", hex: "F09E8", version: "2.5.94" }, + { name: "desktop-tower", hex: "F01C5", version: "1.5.54" }, + { name: "desktop-tower-monitor", hex: "F0AAB", version: "2.7.94" }, + { name: "details", hex: "F01C6", version: "1.5.54" }, + { name: "dev-to", hex: "F0D6E", version: "3.4.93" }, + { name: "developer-board", hex: "F0697", version: "1.7.12" }, + { name: "deviantart", hex: "F01C7", version: "1.5.54" }, + { name: "devices", hex: "F0FB0", version: "4.0.96" }, + { name: "diabetes", hex: "F1126", version: "4.3.95" }, + { name: "dialpad", hex: "F061C", version: "1.6.50" }, + { name: "diameter", hex: "F0C63", version: "3.2.89" }, + { name: "diameter-outline", hex: "F0C64", version: "3.2.89" }, + { name: "diameter-variant", hex: "F0C65", version: "3.2.89" }, + { name: "diamond", hex: "F0B8A", version: "3.0.39" }, + { name: "diamond-outline", hex: "F0B8B", version: "3.0.39" }, + { name: "diamond-stone", hex: "F01C8", version: "1.5.54" }, + { name: "dice-1", hex: "F01CA", version: "1.5.54" }, + { name: "dice-1-outline", hex: "F114A", version: "4.4.95" }, + { name: "dice-2", hex: "F01CB", version: "1.5.54" }, + { name: "dice-2-outline", hex: "F114B", version: "4.4.95" }, + { name: "dice-3", hex: "F01CC", version: "1.5.54" }, + { name: "dice-3-outline", hex: "F114C", version: "4.4.95" }, + { name: "dice-4", hex: "F01CD", version: "1.5.54" }, + { name: "dice-4-outline", hex: "F114D", version: "4.4.95" }, + { name: "dice-5", hex: "F01CE", version: "1.5.54" }, + { name: "dice-5-outline", hex: "F114E", version: "4.4.95" }, + { name: "dice-6", hex: "F01CF", version: "1.5.54" }, + { name: "dice-6-outline", hex: "F114F", version: "4.4.95" }, + { name: "dice-d10", hex: "F1153", version: "4.4.95" }, + { name: "dice-d10-outline", hex: "F076F", version: "1.9.32" }, + { name: "dice-d12", hex: "F1154", version: "4.4.95" }, + { name: "dice-d12-outline", hex: "F0867", version: "2.1.99" }, + { name: "dice-d20", hex: "F1155", version: "4.4.95" }, + { name: "dice-d20-outline", hex: "F05EA", version: "1.5.54" }, + { name: "dice-d4", hex: "F1150", version: "4.4.95" }, + { name: "dice-d4-outline", hex: "F05EB", version: "1.5.54" }, + { name: "dice-d6", hex: "F1151", version: "4.4.95" }, + { name: "dice-d6-outline", hex: "F05ED", version: "1.5.54" }, + { name: "dice-d8", hex: "F1152", version: "4.4.95" }, + { name: "dice-d8-outline", hex: "F05EC", version: "1.5.54" }, + { name: "dice-multiple", hex: "F076E", version: "1.9.32" }, + { name: "dice-multiple-outline", hex: "F1156", version: "4.4.95" }, + { name: "digital-ocean", hex: "F1237", version: "4.6.95" }, + { name: "dip-switch", hex: "F07C1", version: "2.0.46" }, + { name: "directions", hex: "F01D0", version: "1.5.54" }, + { name: "directions-fork", hex: "F0641", version: "1.6.50" }, + { name: "disc", hex: "F05EE", version: "1.5.54" }, + { name: "disc-alert", hex: "F01D1", version: "1.5.54" }, + { name: "disc-player", hex: "F0960", version: "2.4.85" }, + { name: "discord", hex: "F066F", version: "1.6.50" }, + { name: "dishwasher", hex: "F0AAC", version: "2.7.94" }, + { name: "dishwasher-alert", hex: "F11B8", version: "4.5.95" }, + { name: "dishwasher-off", hex: "F11B9", version: "4.5.95" }, + { name: "disqus", hex: "F01D2", version: "1.5.54" }, + { name: "distribute-horizontal-center", hex: "F11C9", version: "4.5.95" }, + { name: "distribute-horizontal-left", hex: "F11C8", version: "4.5.95" }, + { name: "distribute-horizontal-right", hex: "F11CA", version: "4.5.95" }, + { name: "distribute-vertical-bottom", hex: "F11CB", version: "4.5.95" }, + { name: "distribute-vertical-center", hex: "F11CC", version: "4.5.95" }, + { name: "distribute-vertical-top", hex: "F11CD", version: "4.5.95" }, + { name: "diving-flippers", hex: "F0DBF", version: "3.5.94" }, + { name: "diving-helmet", hex: "F0DC0", version: "3.5.94" }, + { name: "diving-scuba", hex: "F0DC1", version: "3.5.94" }, + { name: "diving-scuba-flag", hex: "F0DC2", version: "3.5.94" }, + { name: "diving-scuba-tank", hex: "F0DC3", version: "3.5.94" }, + { name: "diving-scuba-tank-multiple", hex: "F0DC4", version: "3.5.94" }, + { name: "diving-snorkel", hex: "F0DC5", version: "3.5.94" }, + { name: "division", hex: "F01D4", version: "1.5.54" }, + { name: "division-box", hex: "F01D5", version: "1.5.54" }, + { name: "dlna", hex: "F0A41", version: "2.6.95" }, + { name: "dna", hex: "F0684", version: "1.7.12" }, + { name: "dns", hex: "F01D6", version: "1.5.54" }, + { name: "dns-outline", hex: "F0B8C", version: "3.0.39" }, + { name: "do-not-disturb", hex: "F0698", version: "1.7.12" }, + { name: "do-not-disturb-off", hex: "F0699", version: "1.7.12" }, + { name: "dock-bottom", hex: "F10A9", version: "4.2.95" }, + { name: "dock-left", hex: "F10AA", version: "4.2.95" }, + { name: "dock-right", hex: "F10AB", version: "4.2.95" }, + { name: "dock-window", hex: "F10AC", version: "4.2.95" }, + { name: "docker", hex: "F0868", version: "2.1.99" }, + { name: "doctor", hex: "F0A42", version: "2.6.95" }, + { name: "dog", hex: "F0A43", version: "2.6.95" }, + { name: "dog-service", hex: "F0AAD", version: "2.7.94" }, + { name: "dog-side", hex: "F0A44", version: "2.6.95" }, + { name: "dolby", hex: "F06B3", version: "1.7.22" }, + { name: "dolly", hex: "F0E9E", version: "3.7.94" }, + { name: "domain", hex: "F01D7", version: "1.5.54" }, + { name: "domain-off", hex: "F0D6F", version: "3.4.93" }, + { name: "domain-plus", hex: "F10AD", version: "4.2.95" }, + { name: "domain-remove", hex: "F10AE", version: "4.2.95" }, + { name: "domino-mask", hex: "F1023", version: "4.1.95" }, + { name: "donkey", hex: "F07C2", version: "2.0.46" }, + { name: "door", hex: "F081A", version: "2.1.19" }, + { name: "door-closed", hex: "F081B", version: "2.1.19" }, + { name: "door-closed-lock", hex: "F10AF", version: "4.2.95" }, + { name: "door-open", hex: "F081C", version: "2.1.19" }, + { name: "doorbell", hex: "F12E6", version: "4.8.95" }, + { name: "doorbell-video", hex: "F0869", version: "2.1.99" }, + { name: "dot-net", hex: "F0AAE", version: "2.7.94" }, + { name: "dots-horizontal", hex: "F01D8", version: "1.5.54" }, + { name: "dots-horizontal-circle", hex: "F07C3", version: "2.0.46" }, + { name: "dots-horizontal-circle-outline", hex: "F0B8D", version: "3.0.39" }, + { name: "dots-vertical", hex: "F01D9", version: "1.5.54" }, + { name: "dots-vertical-circle", hex: "F07C4", version: "2.0.46" }, + { name: "dots-vertical-circle-outline", hex: "F0B8E", version: "3.0.39" }, + { name: "douban", hex: "F069A", version: "1.7.12" }, + { name: "download", hex: "F01DA", version: "1.5.54" }, + { name: "download-lock", hex: "F1320", version: "4.9.95" }, + { name: "download-lock-outline", hex: "F1321", version: "4.9.95" }, + { name: "download-multiple", hex: "F09E9", version: "2.5.94" }, + { name: "download-network", hex: "F06F4", version: "1.8.36" }, + { name: "download-network-outline", hex: "F0C66", version: "3.2.89" }, + { name: "download-off", hex: "F10B0", version: "4.2.95" }, + { name: "download-off-outline", hex: "F10B1", version: "4.2.95" }, + { name: "download-outline", hex: "F0B8F", version: "3.0.39" }, + { name: "drag", hex: "F01DB", version: "1.5.54" }, + { name: "drag-horizontal", hex: "F01DC", version: "1.5.54" }, + { name: "drag-horizontal-variant", hex: "F12F0", version: "4.8.95" }, + { name: "drag-variant", hex: "F0B90", version: "3.0.39" }, + { name: "drag-vertical", hex: "F01DD", version: "1.5.54" }, + { name: "drag-vertical-variant", hex: "F12F1", version: "4.8.95" }, + { name: "drama-masks", hex: "F0D02", version: "3.3.92" }, + { name: "draw", hex: "F0F49", version: "3.9.97" }, + { name: "drawing", hex: "F01DE", version: "1.5.54" }, + { name: "drawing-box", hex: "F01DF", version: "1.5.54" }, + { name: "dresser", hex: "F0F4A", version: "3.9.97" }, + { name: "dresser-outline", hex: "F0F4B", version: "3.9.97" }, + { name: "drone", hex: "F01E2", version: "1.5.54" }, + { name: "dropbox", hex: "F01E3", version: "1.5.54" }, + { name: "drupal", hex: "F01E4", version: "1.5.54" }, + { name: "duck", hex: "F01E5", version: "1.5.54" }, + { name: "dumbbell", hex: "F01E6", version: "1.5.54" }, + { name: "dump-truck", hex: "F0C67", version: "3.2.89" }, + { name: "ear-hearing", hex: "F07C5", version: "2.0.46" }, + { name: "ear-hearing-off", hex: "F0A45", version: "2.6.95" }, + { name: "earth", hex: "F01E7", version: "1.5.54" }, + { name: "earth-arrow-right", hex: "F1311", version: "4.8.95" }, + { name: "earth-box", hex: "F06CD", version: "1.8.36" }, + { name: "earth-box-off", hex: "F06CE", version: "1.8.36" }, + { name: "earth-off", hex: "F01E8", version: "1.5.54" }, + { name: "egg", hex: "F0AAF", version: "2.7.94" }, + { name: "egg-easter", hex: "F0AB0", version: "2.7.94" }, + { name: "eight-track", hex: "F09EA", version: "2.5.94" }, + { name: "eject", hex: "F01EA", version: "1.5.54" }, + { name: "eject-outline", hex: "F0B91", version: "3.0.39" }, + { name: "electric-switch", hex: "F0E9F", version: "3.7.94" }, + { name: "electric-switch-closed", hex: "F10D9", version: "4.3.95" }, + { name: "electron-framework", hex: "F1024", version: "4.1.95" }, + { name: "elephant", hex: "F07C6", version: "2.0.46" }, + { name: "elevation-decline", hex: "F01EB", version: "1.5.54" }, + { name: "elevation-rise", hex: "F01EC", version: "1.5.54" }, + { name: "elevator", hex: "F01ED", version: "1.5.54" }, + { name: "elevator-down", hex: "F12C2", version: "4.8.95" }, + { name: "elevator-passenger", hex: "F1381", version: "4.9.95" }, + { name: "elevator-up", hex: "F12C1", version: "4.8.95" }, + { name: "ellipse", hex: "F0EA0", version: "3.7.94" }, + { name: "ellipse-outline", hex: "F0EA1", version: "3.7.94" }, + { name: "email", hex: "F01EE", version: "1.5.54" }, + { name: "email-alert", hex: "F06CF", version: "1.8.36" }, + { name: "email-alert-outline", hex: "F0D42", version: "3.4.93" }, + { name: "email-box", hex: "F0D03", version: "3.3.92" }, + { name: "email-check", hex: "F0AB1", version: "2.7.94" }, + { name: "email-check-outline", hex: "F0AB2", version: "2.7.94" }, + { name: "email-edit", hex: "F0EE3", version: "3.8.95" }, + { name: "email-edit-outline", hex: "F0EE4", version: "3.8.95" }, + { name: "email-lock", hex: "F01F1", version: "1.5.54" }, + { name: "email-mark-as-unread", hex: "F0B92", version: "3.0.39" }, + { name: "email-minus", hex: "F0EE5", version: "3.8.95" }, + { name: "email-minus-outline", hex: "F0EE6", version: "3.8.95" }, + { name: "email-multiple", hex: "F0EE7", version: "3.8.95" }, + { name: "email-multiple-outline", hex: "F0EE8", version: "3.8.95" }, + { name: "email-newsletter", hex: "F0FB1", version: "4.0.96" }, + { name: "email-open", hex: "F01EF", version: "1.5.54" }, + { name: "email-open-multiple", hex: "F0EE9", version: "3.8.95" }, + { name: "email-open-multiple-outline", hex: "F0EEA", version: "3.8.95" }, + { name: "email-open-outline", hex: "F05EF", version: "1.5.54" }, + { name: "email-outline", hex: "F01F0", version: "1.5.54" }, + { name: "email-plus", hex: "F09EB", version: "2.5.94" }, + { name: "email-plus-outline", hex: "F09EC", version: "2.5.94" }, + { name: "email-receive", hex: "F10DA", version: "4.3.95" }, + { name: "email-receive-outline", hex: "F10DB", version: "4.3.95" }, + { name: "email-search", hex: "F0961", version: "2.4.85" }, + { name: "email-search-outline", hex: "F0962", version: "2.4.85" }, + { name: "email-send", hex: "F10DC", version: "4.3.95" }, + { name: "email-send-outline", hex: "F10DD", version: "4.3.95" }, + { name: "email-sync", hex: "F12C7", version: "4.8.95" }, + { name: "email-sync-outline", hex: "F12C8", version: "4.8.95" }, + { name: "email-variant", hex: "F05F0", version: "1.5.54" }, + { name: "ember", hex: "F0B30", version: "2.8.94" }, + { name: "emby", hex: "F06B4", version: "1.7.22" }, + { name: "emoticon", hex: "F0C68", version: "3.2.89" }, + { name: "emoticon-angry", hex: "F0C69", version: "3.2.89" }, + { name: "emoticon-angry-outline", hex: "F0C6A", version: "3.2.89" }, + { name: "emoticon-confused", hex: "F10DE", version: "4.3.95" }, + { name: "emoticon-confused-outline", hex: "F10DF", version: "4.3.95" }, + { name: "emoticon-cool", hex: "F0C6B", version: "3.2.89" }, + { name: "emoticon-cool-outline", hex: "F01F3", version: "1.5.54" }, + { name: "emoticon-cry", hex: "F0C6C", version: "3.2.89" }, + { name: "emoticon-cry-outline", hex: "F0C6D", version: "3.2.89" }, + { name: "emoticon-dead", hex: "F0C6E", version: "3.2.89" }, + { name: "emoticon-dead-outline", hex: "F069B", version: "1.7.12" }, + { name: "emoticon-devil", hex: "F0C6F", version: "3.2.89" }, + { name: "emoticon-devil-outline", hex: "F01F4", version: "1.5.54" }, + { name: "emoticon-excited", hex: "F0C70", version: "3.2.89" }, + { name: "emoticon-excited-outline", hex: "F069C", version: "1.7.12" }, + { name: "emoticon-frown", hex: "F0F4C", version: "3.9.97" }, + { name: "emoticon-frown-outline", hex: "F0F4D", version: "3.9.97" }, + { name: "emoticon-happy", hex: "F0C71", version: "3.2.89" }, + { name: "emoticon-happy-outline", hex: "F01F5", version: "1.5.54" }, + { name: "emoticon-kiss", hex: "F0C72", version: "3.2.89" }, + { name: "emoticon-kiss-outline", hex: "F0C73", version: "3.2.89" }, + { name: "emoticon-lol", hex: "F1214", version: "4.6.95" }, + { name: "emoticon-lol-outline", hex: "F1215", version: "4.6.95" }, + { name: "emoticon-neutral", hex: "F0C74", version: "3.2.89" }, + { name: "emoticon-neutral-outline", hex: "F01F6", version: "1.5.54" }, + { name: "emoticon-outline", hex: "F01F2", version: "1.5.54" }, + { name: "emoticon-poop", hex: "F01F7", version: "1.5.54" }, + { name: "emoticon-poop-outline", hex: "F0C75", version: "3.2.89" }, + { name: "emoticon-sad", hex: "F0C76", version: "3.2.89" }, + { name: "emoticon-sad-outline", hex: "F01F8", version: "1.5.54" }, + { name: "emoticon-tongue", hex: "F01F9", version: "1.5.54" }, + { name: "emoticon-tongue-outline", hex: "F0C77", version: "3.2.89" }, + { name: "emoticon-wink", hex: "F0C78", version: "3.2.89" }, + { name: "emoticon-wink-outline", hex: "F0C79", version: "3.2.89" }, + { name: "engine", hex: "F01FA", version: "1.5.54" }, + { name: "engine-off", hex: "F0A46", version: "2.6.95" }, + { name: "engine-off-outline", hex: "F0A47", version: "2.6.95" }, + { name: "engine-outline", hex: "F01FB", version: "1.5.54" }, + { name: "epsilon", hex: "F10E0", version: "4.3.95" }, + { name: "equal", hex: "F01FC", version: "1.5.54" }, + { name: "equal-box", hex: "F01FD", version: "1.5.54" }, + { name: "equalizer", hex: "F0EA2", version: "3.7.94" }, + { name: "equalizer-outline", hex: "F0EA3", version: "3.7.94" }, + { name: "eraser", hex: "F01FE", version: "1.5.54" }, + { name: "eraser-variant", hex: "F0642", version: "1.6.50" }, + { name: "escalator", hex: "F01FF", version: "1.5.54" }, + { name: "escalator-box", hex: "F1399", version: "5.0.45" }, + { name: "escalator-down", hex: "F12C0", version: "4.8.95" }, + { name: "escalator-up", hex: "F12BF", version: "4.8.95" }, + { name: "eslint", hex: "F0C7A", version: "3.2.89" }, + { name: "et", hex: "F0AB3", version: "2.7.94" }, + { name: "ethereum", hex: "F086A", version: "2.1.99" }, + { name: "ethernet", hex: "F0200", version: "1.5.54" }, + { name: "ethernet-cable", hex: "F0201", version: "1.5.54" }, + { name: "ethernet-cable-off", hex: "F0202", version: "1.5.54" }, + { name: "ev-station", hex: "F05F1", version: "1.5.54" }, + { name: "evernote", hex: "F0204", version: "1.5.54" }, + { name: "excavator", hex: "F1025", version: "4.1.95" }, + { name: "exclamation", hex: "F0205", version: "1.5.54" }, + { name: "exclamation-thick", hex: "F1238", version: "4.6.95" }, + { name: "exit-run", hex: "F0A48", version: "2.6.95" }, + { name: "exit-to-app", hex: "F0206", version: "1.5.54" }, + { name: "expand-all", hex: "F0AB4", version: "2.7.94" }, + { name: "expand-all-outline", hex: "F0AB5", version: "2.7.94" }, + { name: "expansion-card", hex: "F08AE", version: "2.2.43" }, + { name: "expansion-card-variant", hex: "F0FB2", version: "4.0.96" }, + { name: "exponent", hex: "F0963", version: "2.4.85" }, + { name: "exponent-box", hex: "F0964", version: "2.4.85" }, + { name: "export", hex: "F0207", version: "1.5.54" }, + { name: "export-variant", hex: "F0B93", version: "3.0.39" }, + { name: "eye", hex: "F0208", version: "1.5.54" }, + { name: "eye-check", hex: "F0D04", version: "3.3.92" }, + { name: "eye-check-outline", hex: "F0D05", version: "3.3.92" }, + { name: "eye-circle", hex: "F0B94", version: "3.0.39" }, + { name: "eye-circle-outline", hex: "F0B95", version: "3.0.39" }, + { name: "eye-minus", hex: "F1026", version: "4.1.95" }, + { name: "eye-minus-outline", hex: "F1027", version: "4.1.95" }, + { name: "eye-off", hex: "F0209", version: "1.5.54" }, + { name: "eye-off-outline", hex: "F06D1", version: "1.8.36" }, + { name: "eye-outline", hex: "F06D0", version: "1.8.36" }, + { name: "eye-plus", hex: "F086B", version: "2.1.99" }, + { name: "eye-plus-outline", hex: "F086C", version: "2.1.99" }, + { name: "eye-settings", hex: "F086D", version: "2.1.99" }, + { name: "eye-settings-outline", hex: "F086E", version: "2.1.99" }, + { name: "eyedropper", hex: "F020A", version: "1.5.54" }, + { name: "eyedropper-variant", hex: "F020B", version: "1.5.54" }, + { name: "face", hex: "F0643", version: "1.6.50" }, + { name: "face-agent", hex: "F0D70", version: "3.4.93" }, + { name: "face-outline", hex: "F0B96", version: "3.0.39" }, + { name: "face-profile", hex: "F0644", version: "1.6.50" }, + { name: "face-profile-woman", hex: "F1076", version: "4.2.95" }, + { name: "face-recognition", hex: "F0C7B", version: "3.2.89" }, + { name: "face-woman", hex: "F1077", version: "4.2.95" }, + { name: "face-woman-outline", hex: "F1078", version: "4.2.95" }, + { name: "facebook", hex: "F020C", version: "1.5.54" }, + { name: "facebook-messenger", hex: "F020E", version: "1.5.54" }, + { name: "facebook-workplace", hex: "F0B31", version: "2.8.94" }, + { name: "factory", hex: "F020F", version: "1.5.54" }, + { name: "fan", hex: "F0210", version: "1.5.54" }, + { name: "fan-off", hex: "F081D", version: "2.1.19" }, + { name: "fast-forward", hex: "F0211", version: "1.5.54" }, + { name: "fast-forward-10", hex: "F0D71", version: "3.4.93" }, + { name: "fast-forward-30", hex: "F0D06", version: "3.3.92" }, + { name: "fast-forward-5", hex: "F11F8", version: "4.6.95" }, + { name: "fast-forward-outline", hex: "F06D2", version: "1.8.36" }, + { name: "fax", hex: "F0212", version: "1.5.54" }, + { name: "feather", hex: "F06D3", version: "1.8.36" }, + { name: "feature-search", hex: "F0A49", version: "2.6.95" }, + { name: "feature-search-outline", hex: "F0A4A", version: "2.6.95" }, + { name: "fedora", hex: "F08DB", version: "2.3.50" }, + { name: "ferris-wheel", hex: "F0EA4", version: "3.7.94" }, + { name: "ferry", hex: "F0213", version: "1.5.54" }, + { name: "file", hex: "F0214", version: "1.5.54" }, + { name: "file-account", hex: "F073B", version: "1.9.32" }, + { name: "file-account-outline", hex: "F1028", version: "4.1.95" }, + { name: "file-alert", hex: "F0A4B", version: "2.6.95" }, + { name: "file-alert-outline", hex: "F0A4C", version: "2.6.95" }, + { name: "file-cabinet", hex: "F0AB6", version: "2.7.94" }, + { name: "file-cad", hex: "F0EEB", version: "3.8.95" }, + { name: "file-cad-box", hex: "F0EEC", version: "3.8.95" }, + { name: "file-cancel", hex: "F0DC6", version: "3.5.94" }, + { name: "file-cancel-outline", hex: "F0DC7", version: "3.5.94" }, + { name: "file-certificate", hex: "F1186", version: "4.4.95" }, + { name: "file-certificate-outline", hex: "F1187", version: "4.4.95" }, + { name: "file-chart", hex: "F0215", version: "1.5.54" }, + { name: "file-chart-outline", hex: "F1029", version: "4.1.95" }, + { name: "file-check", hex: "F0216", version: "1.5.54" }, + { name: "file-check-outline", hex: "F0E29", version: "3.6.95" }, + { name: "file-clock", hex: "F12E1", version: "4.8.95" }, + { name: "file-clock-outline", hex: "F12E2", version: "4.8.95" }, + { name: "file-cloud", hex: "F0217", version: "1.5.54" }, + { name: "file-cloud-outline", hex: "F102A", version: "4.1.95" }, + { name: "file-code", hex: "F022E", version: "1.5.54" }, + { name: "file-code-outline", hex: "F102B", version: "4.1.95" }, + { name: "file-cog", hex: "F107B", version: "4.2.95" }, + { name: "file-cog-outline", hex: "F107C", version: "4.2.95" }, + { name: "file-compare", hex: "F08AA", version: "2.2.43" }, + { name: "file-delimited", hex: "F0218", version: "1.5.54" }, + { name: "file-delimited-outline", hex: "F0EA5", version: "3.7.94" }, + { name: "file-document", hex: "F0219", version: "1.5.54" }, + { name: "file-document-edit", hex: "F0DC8", version: "3.5.94" }, + { name: "file-document-edit-outline", hex: "F0DC9", version: "3.5.94" }, + { name: "file-document-outline", hex: "F09EE", version: "2.5.94" }, + { name: "file-download", hex: "F0965", version: "2.4.85" }, + { name: "file-download-outline", hex: "F0966", version: "2.4.85" }, + { name: "file-edit", hex: "F11E7", version: "4.5.95" }, + { name: "file-edit-outline", hex: "F11E8", version: "4.5.95" }, + { name: "file-excel", hex: "F021B", version: "1.5.54" }, + { name: "file-excel-box", hex: "F021C", version: "1.5.54" }, + { name: "file-excel-box-outline", hex: "F102C", version: "4.1.95" }, + { name: "file-excel-outline", hex: "F102D", version: "4.1.95" }, + { name: "file-export", hex: "F021D", version: "1.5.54" }, + { name: "file-export-outline", hex: "F102E", version: "4.1.95" }, + { name: "file-eye", hex: "F0DCA", version: "3.5.94" }, + { name: "file-eye-outline", hex: "F0DCB", version: "3.5.94" }, + { name: "file-find", hex: "F021E", version: "1.5.54" }, + { name: "file-find-outline", hex: "F0B97", version: "3.0.39" }, + { name: "file-hidden", hex: "F0613", version: "1.5.54" }, + { name: "file-image", hex: "F021F", version: "1.5.54" }, + { name: "file-image-outline", hex: "F0EB0", version: "3.7.94" }, + { name: "file-import", hex: "F0220", version: "1.5.54" }, + { name: "file-import-outline", hex: "F102F", version: "4.1.95" }, + { name: "file-key", hex: "F1184", version: "4.4.95" }, + { name: "file-key-outline", hex: "F1185", version: "4.4.95" }, + { name: "file-link", hex: "F1177", version: "4.4.95" }, + { name: "file-link-outline", hex: "F1178", version: "4.4.95" }, + { name: "file-lock", hex: "F0221", version: "1.5.54" }, + { name: "file-lock-outline", hex: "F1030", version: "4.1.95" }, + { name: "file-move", hex: "F0AB9", version: "2.7.94" }, + { name: "file-move-outline", hex: "F1031", version: "4.1.95" }, + { name: "file-multiple", hex: "F0222", version: "1.5.54" }, + { name: "file-multiple-outline", hex: "F1032", version: "4.1.95" }, + { name: "file-music", hex: "F0223", version: "1.5.54" }, + { name: "file-music-outline", hex: "F0E2A", version: "3.6.95" }, + { name: "file-outline", hex: "F0224", version: "1.5.54" }, + { name: "file-pdf", hex: "F0225", version: "1.5.54" }, + { name: "file-pdf-box", hex: "F0226", version: "1.5.54" }, + { name: "file-pdf-box-outline", hex: "F0FB3", version: "4.0.96" }, + { name: "file-pdf-outline", hex: "F0E2D", version: "3.6.95" }, + { name: "file-percent", hex: "F081E", version: "2.1.19" }, + { name: "file-percent-outline", hex: "F1033", version: "4.1.95" }, + { name: "file-phone", hex: "F1179", version: "4.4.95" }, + { name: "file-phone-outline", hex: "F117A", version: "4.4.95" }, + { name: "file-plus", hex: "F0752", version: "1.9.32" }, + { name: "file-plus-outline", hex: "F0EED", version: "3.8.95" }, + { name: "file-powerpoint", hex: "F0227", version: "1.5.54" }, + { name: "file-powerpoint-box", hex: "F0228", version: "1.5.54" }, + { name: "file-powerpoint-box-outline", hex: "F1034", version: "4.1.95" }, + { name: "file-powerpoint-outline", hex: "F1035", version: "4.1.95" }, + { name: "file-presentation-box", hex: "F0229", version: "1.5.54" }, + { name: "file-question", hex: "F086F", version: "2.1.99" }, + { name: "file-question-outline", hex: "F1036", version: "4.1.95" }, + { name: "file-refresh", hex: "F0918", version: "2.3.50" }, + { name: "file-refresh-outline", hex: "F0541", version: "1.5.54" }, + { name: "file-remove", hex: "F0B98", version: "3.0.39" }, + { name: "file-remove-outline", hex: "F1037", version: "4.1.95" }, + { name: "file-replace", hex: "F0B32", version: "2.8.94" }, + { name: "file-replace-outline", hex: "F0B33", version: "2.8.94" }, + { name: "file-restore", hex: "F0670", version: "1.6.50" }, + { name: "file-restore-outline", hex: "F1038", version: "4.1.95" }, + { name: "file-search", hex: "F0C7C", version: "3.2.89" }, + { name: "file-search-outline", hex: "F0C7D", version: "3.2.89" }, + { name: "file-send", hex: "F022A", version: "1.5.54" }, + { name: "file-send-outline", hex: "F1039", version: "4.1.95" }, + { name: "file-settings", hex: "F1079", version: "4.2.95" }, + { name: "file-settings-outline", hex: "F107A", version: "4.2.95" }, + { name: "file-star", hex: "F103A", version: "4.1.95" }, + { name: "file-star-outline", hex: "F103B", version: "4.1.95" }, + { name: "file-swap", hex: "F0FB4", version: "4.0.96" }, + { name: "file-swap-outline", hex: "F0FB5", version: "4.0.96" }, + { name: "file-sync", hex: "F1216", version: "4.6.95" }, + { name: "file-sync-outline", hex: "F1217", version: "4.6.95" }, + { name: "file-table", hex: "F0C7E", version: "3.2.89" }, + { name: "file-table-box", hex: "F10E1", version: "4.3.95" }, + { name: "file-table-box-multiple", hex: "F10E2", version: "4.3.95" }, + { name: "file-table-box-multiple-outline", hex: "F10E3", version: "4.3.95" }, + { name: "file-table-box-outline", hex: "F10E4", version: "4.3.95" }, + { name: "file-table-outline", hex: "F0C7F", version: "3.2.89" }, + { name: "file-tree", hex: "F0645", version: "1.6.50" }, + { name: "file-undo", hex: "F08DC", version: "2.3.50" }, + { name: "file-undo-outline", hex: "F103C", version: "4.1.95" }, + { name: "file-upload", hex: "F0A4D", version: "2.6.95" }, + { name: "file-upload-outline", hex: "F0A4E", version: "2.6.95" }, + { name: "file-video", hex: "F022B", version: "1.5.54" }, + { name: "file-video-outline", hex: "F0E2C", version: "3.6.95" }, + { name: "file-word", hex: "F022C", version: "1.5.54" }, + { name: "file-word-box", hex: "F022D", version: "1.5.54" }, + { name: "file-word-box-outline", hex: "F103D", version: "4.1.95" }, + { name: "file-word-outline", hex: "F103E", version: "4.1.95" }, + { name: "film", hex: "F022F", version: "1.5.54" }, + { name: "filmstrip", hex: "F0230", version: "1.5.54" }, + { name: "filmstrip-box", hex: "F0332", version: "1.5.54" }, + { name: "filmstrip-box-multiple", hex: "F0D18", version: "3.3.92" }, + { name: "filmstrip-off", hex: "F0231", version: "1.5.54" }, + { name: "filter", hex: "F0232", version: "1.5.54" }, + { name: "filter-menu", hex: "F10E5", version: "4.3.95" }, + { name: "filter-menu-outline", hex: "F10E6", version: "4.3.95" }, + { name: "filter-minus", hex: "F0EEE", version: "3.8.95" }, + { name: "filter-minus-outline", hex: "F0EEF", version: "3.8.95" }, + { name: "filter-outline", hex: "F0233", version: "1.5.54" }, + { name: "filter-plus", hex: "F0EF0", version: "3.8.95" }, + { name: "filter-plus-outline", hex: "F0EF1", version: "3.8.95" }, + { name: "filter-remove", hex: "F0234", version: "1.5.54" }, + { name: "filter-remove-outline", hex: "F0235", version: "1.5.54" }, + { name: "filter-variant", hex: "F0236", version: "1.5.54" }, + { name: "filter-variant-minus", hex: "F1112", version: "4.3.95" }, + { name: "filter-variant-plus", hex: "F1113", version: "4.3.95" }, + { name: "filter-variant-remove", hex: "F103F", version: "4.1.95" }, + { name: "finance", hex: "F081F", version: "2.1.19" }, + { name: "find-replace", hex: "F06D4", version: "1.8.36" }, + { name: "fingerprint", hex: "F0237", version: "1.5.54" }, + { name: "fingerprint-off", hex: "F0EB1", version: "3.7.94" }, + { name: "fire", hex: "F0238", version: "1.5.54" }, + { name: "fire-extinguisher", hex: "F0EF2", version: "3.8.95" }, + { name: "fire-hydrant", hex: "F1137", version: "4.4.95" }, + { name: "fire-hydrant-alert", hex: "F1138", version: "4.4.95" }, + { name: "fire-hydrant-off", hex: "F1139", version: "4.4.95" }, + { name: "fire-truck", hex: "F08AB", version: "2.2.43" }, + { name: "firebase", hex: "F0967", version: "2.4.85" }, + { name: "firefox", hex: "F0239", version: "1.5.54" }, + { name: "fireplace", hex: "F0E2E", version: "3.6.95" }, + { name: "fireplace-off", hex: "F0E2F", version: "3.6.95" }, + { name: "firework", hex: "F0E30", version: "3.6.95" }, + { name: "fish", hex: "F023A", version: "1.5.54" }, + { name: "fishbowl", hex: "F0EF3", version: "3.8.95" }, + { name: "fishbowl-outline", hex: "F0EF4", version: "3.8.95" }, + { name: "fit-to-page", hex: "F0EF5", version: "3.8.95" }, + { name: "fit-to-page-outline", hex: "F0EF6", version: "3.8.95" }, + { name: "flag", hex: "F023B", version: "1.5.54" }, + { name: "flag-checkered", hex: "F023C", version: "1.5.54" }, + { name: "flag-minus", hex: "F0B99", version: "3.0.39" }, + { name: "flag-minus-outline", hex: "F10B2", version: "4.2.95" }, + { name: "flag-outline", hex: "F023D", version: "1.5.54" }, + { name: "flag-plus", hex: "F0B9A", version: "3.0.39" }, + { name: "flag-plus-outline", hex: "F10B3", version: "4.2.95" }, + { name: "flag-remove", hex: "F0B9B", version: "3.0.39" }, + { name: "flag-remove-outline", hex: "F10B4", version: "4.2.95" }, + { name: "flag-triangle", hex: "F023F", version: "1.5.54" }, + { name: "flag-variant", hex: "F0240", version: "1.5.54" }, + { name: "flag-variant-outline", hex: "F023E", version: "1.5.54" }, + { name: "flare", hex: "F0D72", version: "3.4.93" }, + { name: "flash", hex: "F0241", version: "1.5.54" }, + { name: "flash-alert", hex: "F0EF7", version: "3.8.95" }, + { name: "flash-alert-outline", hex: "F0EF8", version: "3.8.95" }, + { name: "flash-auto", hex: "F0242", version: "1.5.54" }, + { name: "flash-circle", hex: "F0820", version: "2.1.19" }, + { name: "flash-off", hex: "F0243", version: "1.5.54" }, + { name: "flash-outline", hex: "F06D5", version: "1.8.36" }, + { name: "flash-red-eye", hex: "F067B", version: "1.7.12" }, + { name: "flashlight", hex: "F0244", version: "1.5.54" }, + { name: "flashlight-off", hex: "F0245", version: "1.5.54" }, + { name: "flask", hex: "F0093", version: "1.5.54" }, + { name: "flask-empty", hex: "F0094", version: "1.5.54" }, + { name: "flask-empty-minus", hex: "F123A", version: "4.6.95" }, + { name: "flask-empty-minus-outline", hex: "F123B", version: "4.6.95" }, + { name: "flask-empty-outline", hex: "F0095", version: "1.5.54" }, + { name: "flask-empty-plus", hex: "F123C", version: "4.6.95" }, + { name: "flask-empty-plus-outline", hex: "F123D", version: "4.6.95" }, + { name: "flask-empty-remove", hex: "F123E", version: "4.6.95" }, + { name: "flask-empty-remove-outline", hex: "F123F", version: "4.6.95" }, + { name: "flask-minus", hex: "F1240", version: "4.6.95" }, + { name: "flask-minus-outline", hex: "F1241", version: "4.6.95" }, + { name: "flask-outline", hex: "F0096", version: "1.5.54" }, + { name: "flask-plus", hex: "F1242", version: "4.6.95" }, + { name: "flask-plus-outline", hex: "F1243", version: "4.6.95" }, + { name: "flask-remove", hex: "F1244", version: "4.6.95" }, + { name: "flask-remove-outline", hex: "F1245", version: "4.6.95" }, + { name: "flask-round-bottom", hex: "F124B", version: "4.6.95" }, + { name: "flask-round-bottom-empty", hex: "F124C", version: "4.6.95" }, + { name: "flask-round-bottom-empty-outline", hex: "F124D", version: "4.6.95" }, + { name: "flask-round-bottom-outline", hex: "F124E", version: "4.6.95" }, + { name: "fleur-de-lis", hex: "F1303", version: "4.8.95" }, + { name: "flip-horizontal", hex: "F10E7", version: "4.3.95" }, + { name: "flip-to-back", hex: "F0247", version: "1.5.54" }, + { name: "flip-to-front", hex: "F0248", version: "1.5.54" }, + { name: "flip-vertical", hex: "F10E8", version: "4.3.95" }, + { name: "floor-lamp", hex: "F08DD", version: "2.3.50" }, + { name: "floor-lamp-dual", hex: "F1040", version: "4.1.95" }, + { name: "floor-lamp-variant", hex: "F1041", version: "4.1.95" }, + { name: "floor-plan", hex: "F0821", version: "2.1.19" }, + { name: "floppy", hex: "F0249", version: "1.5.54" }, + { name: "floppy-variant", hex: "F09EF", version: "2.5.94" }, + { name: "flower", hex: "F024A", version: "1.5.54" }, + { name: "flower-outline", hex: "F09F0", version: "2.5.94" }, + { name: "flower-poppy", hex: "F0D08", version: "3.3.92" }, + { name: "flower-tulip", hex: "F09F1", version: "2.5.94" }, + { name: "flower-tulip-outline", hex: "F09F2", version: "2.5.94" }, + { name: "focus-auto", hex: "F0F4E", version: "3.9.97" }, + { name: "focus-field", hex: "F0F4F", version: "3.9.97" }, + { name: "focus-field-horizontal", hex: "F0F50", version: "3.9.97" }, + { name: "focus-field-vertical", hex: "F0F51", version: "3.9.97" }, + { name: "folder", hex: "F024B", version: "1.5.54" }, + { name: "folder-account", hex: "F024C", version: "1.5.54" }, + { name: "folder-account-outline", hex: "F0B9C", version: "3.0.39" }, + { name: "folder-alert", hex: "F0DCC", version: "3.5.94" }, + { name: "folder-alert-outline", hex: "F0DCD", version: "3.5.94" }, + { name: "folder-clock", hex: "F0ABA", version: "2.7.94" }, + { name: "folder-clock-outline", hex: "F0ABB", version: "2.7.94" }, + { name: "folder-cog", hex: "F107F", version: "4.2.95" }, + { name: "folder-cog-outline", hex: "F1080", version: "4.2.95" }, + { name: "folder-download", hex: "F024D", version: "1.5.54" }, + { name: "folder-download-outline", hex: "F10E9", version: "4.3.95" }, + { name: "folder-edit", hex: "F08DE", version: "2.3.50" }, + { name: "folder-edit-outline", hex: "F0DCE", version: "3.5.94" }, + { name: "folder-google-drive", hex: "F024E", version: "1.5.54" }, + { name: "folder-heart", hex: "F10EA", version: "4.3.95" }, + { name: "folder-heart-outline", hex: "F10EB", version: "4.3.95" }, + { name: "folder-home", hex: "F10B5", version: "4.2.95" }, + { name: "folder-home-outline", hex: "F10B6", version: "4.2.95" }, + { name: "folder-image", hex: "F024F", version: "1.5.54" }, + { name: "folder-information", hex: "F10B7", version: "4.2.95" }, + { name: "folder-information-outline", hex: "F10B8", version: "4.2.95" }, + { name: "folder-key", hex: "F08AC", version: "2.2.43" }, + { name: "folder-key-network", hex: "F08AD", version: "2.2.43" }, + { name: "folder-key-network-outline", hex: "F0C80", version: "3.2.89" }, + { name: "folder-key-outline", hex: "F10EC", version: "4.3.95" }, + { name: "folder-lock", hex: "F0250", version: "1.5.54" }, + { name: "folder-lock-open", hex: "F0251", version: "1.5.54" }, + { name: "folder-marker", hex: "F126D", version: "4.7.95" }, + { name: "folder-marker-outline", hex: "F126E", version: "4.7.95" }, + { name: "folder-move", hex: "F0252", version: "1.5.54" }, + { name: "folder-move-outline", hex: "F1246", version: "4.6.95" }, + { name: "folder-multiple", hex: "F0253", version: "1.5.54" }, + { name: "folder-multiple-image", hex: "F0254", version: "1.5.54" }, + { name: "folder-multiple-outline", hex: "F0255", version: "1.5.54" }, + { name: "folder-music", hex: "F1359", version: "4.9.95" }, + { name: "folder-music-outline", hex: "F135A", version: "4.9.95" }, + { name: "folder-network", hex: "F0870", version: "2.1.99" }, + { name: "folder-network-outline", hex: "F0C81", version: "3.2.89" }, + { name: "folder-open", hex: "F0770", version: "1.9.32" }, + { name: "folder-open-outline", hex: "F0DCF", version: "3.5.94" }, + { name: "folder-outline", hex: "F0256", version: "1.5.54" }, + { name: "folder-plus", hex: "F0257", version: "1.5.54" }, + { name: "folder-plus-outline", hex: "F0B9D", version: "3.0.39" }, + { name: "folder-pound", hex: "F0D09", version: "3.3.92" }, + { name: "folder-pound-outline", hex: "F0D0A", version: "3.3.92" }, + { name: "folder-refresh", hex: "F0749", version: "1.9.32" }, + { name: "folder-refresh-outline", hex: "F0542", version: "1.5.54" }, + { name: "folder-remove", hex: "F0258", version: "1.5.54" }, + { name: "folder-remove-outline", hex: "F0B9E", version: "3.0.39" }, + { name: "folder-search", hex: "F0968", version: "2.4.85" }, + { name: "folder-search-outline", hex: "F0969", version: "2.4.85" }, + { name: "folder-settings", hex: "F107D", version: "4.2.95" }, + { name: "folder-settings-outline", hex: "F107E", version: "4.2.95" }, + { name: "folder-star", hex: "F069D", version: "1.7.12" }, + { name: "folder-star-outline", hex: "F0B9F", version: "3.0.39" }, + { name: "folder-swap", hex: "F0FB6", version: "4.0.96" }, + { name: "folder-swap-outline", hex: "F0FB7", version: "4.0.96" }, + { name: "folder-sync", hex: "F0D0B", version: "3.3.92" }, + { name: "folder-sync-outline", hex: "F0D0C", version: "3.3.92" }, + { name: "folder-table", hex: "F12E3", version: "4.8.95" }, + { name: "folder-table-outline", hex: "F12E4", version: "4.8.95" }, + { name: "folder-text", hex: "F0C82", version: "3.2.89" }, + { name: "folder-text-outline", hex: "F0C83", version: "3.2.89" }, + { name: "folder-upload", hex: "F0259", version: "1.5.54" }, + { name: "folder-upload-outline", hex: "F10ED", version: "4.3.95" }, + { name: "folder-zip", hex: "F06EB", version: "1.8.36" }, + { name: "folder-zip-outline", hex: "F07B9", version: "2.0.46" }, + { name: "font-awesome", hex: "F003A", version: "1.5.54" }, + { name: "food", hex: "F025A", version: "1.5.54" }, + { name: "food-apple", hex: "F025B", version: "1.5.54" }, + { name: "food-apple-outline", hex: "F0C84", version: "3.2.89" }, + { name: "food-croissant", hex: "F07C8", version: "2.0.46" }, + { name: "food-fork-drink", hex: "F05F2", version: "1.5.54" }, + { name: "food-off", hex: "F05F3", version: "1.5.54" }, + { name: "food-variant", hex: "F025C", version: "1.5.54" }, + { name: "foot-print", hex: "F0F52", version: "3.9.97" }, + { name: "football", hex: "F025D", version: "1.5.54" }, + { name: "football-australian", hex: "F025E", version: "1.5.54" }, + { name: "football-helmet", hex: "F025F", version: "1.5.54" }, + { name: "forklift", hex: "F07C9", version: "2.0.46" }, + { name: "format-align-bottom", hex: "F0753", version: "1.9.32" }, + { name: "format-align-center", hex: "F0260", version: "1.5.54" }, + { name: "format-align-justify", hex: "F0261", version: "1.5.54" }, + { name: "format-align-left", hex: "F0262", version: "1.5.54" }, + { name: "format-align-middle", hex: "F0754", version: "1.9.32" }, + { name: "format-align-right", hex: "F0263", version: "1.5.54" }, + { name: "format-align-top", hex: "F0755", version: "1.9.32" }, + { name: "format-annotation-minus", hex: "F0ABC", version: "2.7.94" }, + { name: "format-annotation-plus", hex: "F0646", version: "1.6.50" }, + { name: "format-bold", hex: "F0264", version: "1.5.54" }, + { name: "format-clear", hex: "F0265", version: "1.5.54" }, + { name: "format-color-fill", hex: "F0266", version: "1.5.54" }, + { name: "format-color-highlight", hex: "F0E31", version: "3.6.95" }, + { name: "format-color-marker-cancel", hex: "F1313", version: "4.8.95" }, + { name: "format-color-text", hex: "F069E", version: "1.7.12" }, + { name: "format-columns", hex: "F08DF", version: "2.3.50" }, + { name: "format-float-center", hex: "F0267", version: "1.5.54" }, + { name: "format-float-left", hex: "F0268", version: "1.5.54" }, + { name: "format-float-none", hex: "F0269", version: "1.5.54" }, + { name: "format-float-right", hex: "F026A", version: "1.5.54" }, + { name: "format-font", hex: "F06D6", version: "1.8.36" }, + { name: "format-font-size-decrease", hex: "F09F3", version: "2.5.94" }, + { name: "format-font-size-increase", hex: "F09F4", version: "2.5.94" }, + { name: "format-header-1", hex: "F026B", version: "1.5.54" }, + { name: "format-header-2", hex: "F026C", version: "1.5.54" }, + { name: "format-header-3", hex: "F026D", version: "1.5.54" }, + { name: "format-header-4", hex: "F026E", version: "1.5.54" }, + { name: "format-header-5", hex: "F026F", version: "1.5.54" }, + { name: "format-header-6", hex: "F0270", version: "1.5.54" }, + { name: "format-header-decrease", hex: "F0271", version: "1.5.54" }, + { name: "format-header-equal", hex: "F0272", version: "1.5.54" }, + { name: "format-header-increase", hex: "F0273", version: "1.5.54" }, + { name: "format-header-pound", hex: "F0274", version: "1.5.54" }, + { name: "format-horizontal-align-center", hex: "F061E", version: "1.6.50" }, + { name: "format-horizontal-align-left", hex: "F061F", version: "1.6.50" }, + { name: "format-horizontal-align-right", hex: "F0620", version: "1.6.50" }, + { name: "format-indent-decrease", hex: "F0275", version: "1.5.54" }, + { name: "format-indent-increase", hex: "F0276", version: "1.5.54" }, + { name: "format-italic", hex: "F0277", version: "1.5.54" }, + { name: "format-letter-case", hex: "F0B34", version: "2.8.94" }, + { name: "format-letter-case-lower", hex: "F0B35", version: "2.8.94" }, + { name: "format-letter-case-upper", hex: "F0B36", version: "2.8.94" }, + { name: "format-letter-ends-with", hex: "F0FB8", version: "4.0.96" }, + { name: "format-letter-matches", hex: "F0FB9", version: "4.0.96" }, + { name: "format-letter-starts-with", hex: "F0FBA", version: "4.0.96" }, + { name: "format-line-spacing", hex: "F0278", version: "1.5.54" }, + { name: "format-line-style", hex: "F05C8", version: "1.5.54" }, + { name: "format-line-weight", hex: "F05C9", version: "1.5.54" }, + { name: "format-list-bulleted", hex: "F0279", version: "1.5.54" }, + { name: "format-list-bulleted-square", hex: "F0DD0", version: "3.5.94" }, + { name: "format-list-bulleted-triangle", hex: "F0EB2", version: "3.7.94" }, + { name: "format-list-bulleted-type", hex: "F027A", version: "1.5.54" }, + { name: "format-list-checkbox", hex: "F096A", version: "2.4.85" }, + { name: "format-list-checks", hex: "F0756", version: "1.9.32" }, + { name: "format-list-numbered", hex: "F027B", version: "1.5.54" }, + { name: "format-list-numbered-rtl", hex: "F0D0D", version: "3.3.92" }, + { name: "format-list-text", hex: "F126F", version: "4.7.95" }, + { name: "format-overline", hex: "F0EB3", version: "3.7.94" }, + { name: "format-page-break", hex: "F06D7", version: "1.8.36" }, + { name: "format-paint", hex: "F027C", version: "1.5.54" }, + { name: "format-paragraph", hex: "F027D", version: "1.5.54" }, + { name: "format-pilcrow", hex: "F06D8", version: "1.8.36" }, + { name: "format-quote-close", hex: "F027E", version: "1.5.54" }, + { name: "format-quote-close-outline", hex: "F11A8", version: "4.5.95" }, + { name: "format-quote-open", hex: "F0757", version: "1.9.32" }, + { name: "format-quote-open-outline", hex: "F11A7", version: "4.5.95" }, + { name: "format-rotate-90", hex: "F06AA", version: "1.7.12" }, + { name: "format-section", hex: "F069F", version: "1.7.12" }, + { name: "format-size", hex: "F027F", version: "1.5.54" }, + { name: "format-strikethrough", hex: "F0280", version: "1.5.54" }, + { name: "format-strikethrough-variant", hex: "F0281", version: "1.5.54" }, + { name: "format-subscript", hex: "F0282", version: "1.5.54" }, + { name: "format-superscript", hex: "F0283", version: "1.5.54" }, + { name: "format-text", hex: "F0284", version: "1.5.54" }, + { name: "format-text-rotation-angle-down", hex: "F0FBB", version: "4.0.96" }, + { name: "format-text-rotation-angle-up", hex: "F0FBC", version: "4.0.96" }, + { name: "format-text-rotation-down", hex: "F0D73", version: "3.4.93" }, + { name: "format-text-rotation-down-vertical", hex: "F0FBD", version: "4.0.96" }, + { name: "format-text-rotation-none", hex: "F0D74", version: "3.4.93" }, + { name: "format-text-rotation-up", hex: "F0FBE", version: "4.0.96" }, + { name: "format-text-rotation-vertical", hex: "F0FBF", version: "4.0.96" }, + { name: "format-text-variant", hex: "F0E32", version: "3.6.95" }, + { name: "format-text-wrapping-clip", hex: "F0D0E", version: "3.3.92" }, + { name: "format-text-wrapping-overflow", hex: "F0D0F", version: "3.3.92" }, + { name: "format-text-wrapping-wrap", hex: "F0D10", version: "3.3.92" }, + { name: "format-textbox", hex: "F0D11", version: "3.3.92" }, + { name: "format-textdirection-l-to-r", hex: "F0285", version: "1.5.54" }, + { name: "format-textdirection-r-to-l", hex: "F0286", version: "1.5.54" }, + { name: "format-title", hex: "F05F4", version: "1.5.54" }, + { name: "format-underline", hex: "F0287", version: "1.5.54" }, + { name: "format-vertical-align-bottom", hex: "F0621", version: "1.6.50" }, + { name: "format-vertical-align-center", hex: "F0622", version: "1.6.50" }, + { name: "format-vertical-align-top", hex: "F0623", version: "1.6.50" }, + { name: "format-wrap-inline", hex: "F0288", version: "1.5.54" }, + { name: "format-wrap-square", hex: "F0289", version: "1.5.54" }, + { name: "format-wrap-tight", hex: "F028A", version: "1.5.54" }, + { name: "format-wrap-top-bottom", hex: "F028B", version: "1.5.54" }, + { name: "forum", hex: "F028C", version: "1.5.54" }, + { name: "forum-outline", hex: "F0822", version: "2.1.19" }, + { name: "forward", hex: "F028D", version: "1.5.54" }, + { name: "forwardburger", hex: "F0D75", version: "3.4.93" }, + { name: "fountain", hex: "F096B", version: "2.4.85" }, + { name: "fountain-pen", hex: "F0D12", version: "3.3.92" }, + { name: "fountain-pen-tip", hex: "F0D13", version: "3.3.92" }, + { name: "freebsd", hex: "F08E0", version: "2.3.50" }, + { name: "frequently-asked-questions", hex: "F0EB4", version: "3.7.94" }, + { name: "fridge", hex: "F0290", version: "1.5.54" }, + { name: "fridge-alert", hex: "F11B1", version: "4.5.95" }, + { name: "fridge-alert-outline", hex: "F11B2", version: "4.5.95" }, + { name: "fridge-bottom", hex: "F0292", version: "1.5.54" }, + { name: "fridge-off", hex: "F11AF", version: "4.5.95" }, + { name: "fridge-off-outline", hex: "F11B0", version: "4.5.95" }, + { name: "fridge-outline", hex: "F028F", version: "1.5.54" }, + { name: "fridge-top", hex: "F0291", version: "1.5.54" }, + { name: "fruit-cherries", hex: "F1042", version: "4.1.95" }, + { name: "fruit-citrus", hex: "F1043", version: "4.1.95" }, + { name: "fruit-grapes", hex: "F1044", version: "4.1.95" }, + { name: "fruit-grapes-outline", hex: "F1045", version: "4.1.95" }, + { name: "fruit-pineapple", hex: "F1046", version: "4.1.95" }, + { name: "fruit-watermelon", hex: "F1047", version: "4.1.95" }, + { name: "fuel", hex: "F07CA", version: "2.0.46" }, + { name: "fullscreen", hex: "F0293", version: "1.5.54" }, + { name: "fullscreen-exit", hex: "F0294", version: "1.5.54" }, + { name: "function", hex: "F0295", version: "1.5.54" }, + { name: "function-variant", hex: "F0871", version: "2.1.99" }, + { name: "furigana-horizontal", hex: "F1081", version: "4.2.95" }, + { name: "furigana-vertical", hex: "F1082", version: "4.2.95" }, + { name: "fuse", hex: "F0C85", version: "3.2.89" }, + { name: "fuse-blade", hex: "F0C86", version: "3.2.89" }, + { name: "gamepad", hex: "F0296", version: "1.5.54" }, + { name: "gamepad-circle", hex: "F0E33", version: "3.6.95" }, + { name: "gamepad-circle-down", hex: "F0E34", version: "3.6.95" }, + { name: "gamepad-circle-left", hex: "F0E35", version: "3.6.95" }, + { name: "gamepad-circle-outline", hex: "F0E36", version: "3.6.95" }, + { name: "gamepad-circle-right", hex: "F0E37", version: "3.6.95" }, + { name: "gamepad-circle-up", hex: "F0E38", version: "3.6.95" }, + { name: "gamepad-down", hex: "F0E39", version: "3.6.95" }, + { name: "gamepad-left", hex: "F0E3A", version: "3.6.95" }, + { name: "gamepad-right", hex: "F0E3B", version: "3.6.95" }, + { name: "gamepad-round", hex: "F0E3C", version: "3.6.95" }, + { name: "gamepad-round-down", hex: "F0E3D", version: "3.6.95" }, + { name: "gamepad-round-left", hex: "F0E3E", version: "3.6.95" }, + { name: "gamepad-round-outline", hex: "F0E3F", version: "3.6.95" }, + { name: "gamepad-round-right", hex: "F0E40", version: "3.6.95" }, + { name: "gamepad-round-up", hex: "F0E41", version: "3.6.95" }, + { name: "gamepad-square", hex: "F0EB5", version: "3.7.94" }, + { name: "gamepad-square-outline", hex: "F0EB6", version: "3.7.94" }, + { name: "gamepad-up", hex: "F0E42", version: "3.6.95" }, + { name: "gamepad-variant", hex: "F0297", version: "1.5.54" }, + { name: "gamepad-variant-outline", hex: "F0EB7", version: "3.7.94" }, + { name: "gamma", hex: "F10EE", version: "4.3.95" }, + { name: "gantry-crane", hex: "F0DD1", version: "3.5.94" }, + { name: "garage", hex: "F06D9", version: "1.8.36" }, + { name: "garage-alert", hex: "F0872", version: "2.1.99" }, + { name: "garage-alert-variant", hex: "F12D5", version: "4.8.95" }, + { name: "garage-open", hex: "F06DA", version: "1.8.36" }, + { name: "garage-open-variant", hex: "F12D4", version: "4.8.95" }, + { name: "garage-variant", hex: "F12D3", version: "4.8.95" }, + { name: "gas-cylinder", hex: "F0647", version: "1.6.50" }, + { name: "gas-station", hex: "F0298", version: "1.5.54" }, + { name: "gas-station-outline", hex: "F0EB8", version: "3.7.94" }, + { name: "gate", hex: "F0299", version: "1.5.54" }, + { name: "gate-and", hex: "F08E1", version: "2.3.50" }, + { name: "gate-arrow-right", hex: "F1169", version: "4.4.95" }, + { name: "gate-nand", hex: "F08E2", version: "2.3.50" }, + { name: "gate-nor", hex: "F08E3", version: "2.3.50" }, + { name: "gate-not", hex: "F08E4", version: "2.3.50" }, + { name: "gate-open", hex: "F116A", version: "4.4.95" }, + { name: "gate-or", hex: "F08E5", version: "2.3.50" }, + { name: "gate-xnor", hex: "F08E6", version: "2.3.50" }, + { name: "gate-xor", hex: "F08E7", version: "2.3.50" }, + { name: "gatsby", hex: "F0E43", version: "3.6.95" }, + { name: "gauge", hex: "F029A", version: "1.5.54" }, + { name: "gauge-empty", hex: "F0873", version: "2.1.99" }, + { name: "gauge-full", hex: "F0874", version: "2.1.99" }, + { name: "gauge-low", hex: "F0875", version: "2.1.99" }, + { name: "gavel", hex: "F029B", version: "1.5.54" }, + { name: "gender-female", hex: "F029C", version: "1.5.54" }, + { name: "gender-male", hex: "F029D", version: "1.5.54" }, + { name: "gender-male-female", hex: "F029E", version: "1.5.54" }, + { name: "gender-male-female-variant", hex: "F113F", version: "4.4.95" }, + { name: "gender-non-binary", hex: "F1140", version: "4.4.95" }, + { name: "gender-transgender", hex: "F029F", version: "1.5.54" }, + { name: "gentoo", hex: "F08E8", version: "2.3.50" }, + { name: "gesture", hex: "F07CB", version: "2.0.46" }, + { name: "gesture-double-tap", hex: "F073C", version: "1.9.32" }, + { name: "gesture-pinch", hex: "F0ABD", version: "2.7.94" }, + { name: "gesture-spread", hex: "F0ABE", version: "2.7.94" }, + { name: "gesture-swipe", hex: "F0D76", version: "3.4.93" }, + { name: "gesture-swipe-down", hex: "F073D", version: "1.9.32" }, + { name: "gesture-swipe-horizontal", hex: "F0ABF", version: "2.7.94" }, + { name: "gesture-swipe-left", hex: "F073E", version: "1.9.32" }, + { name: "gesture-swipe-right", hex: "F073F", version: "1.9.32" }, + { name: "gesture-swipe-up", hex: "F0740", version: "1.9.32" }, + { name: "gesture-swipe-vertical", hex: "F0AC0", version: "2.7.94" }, + { name: "gesture-tap", hex: "F0741", version: "1.9.32" }, + { name: "gesture-tap-box", hex: "F12A9", version: "4.7.95" }, + { name: "gesture-tap-button", hex: "F12A8", version: "4.7.95" }, + { name: "gesture-tap-hold", hex: "F0D77", version: "3.4.93" }, + { name: "gesture-two-double-tap", hex: "F0742", version: "1.9.32" }, + { name: "gesture-two-tap", hex: "F0743", version: "1.9.32" }, + { name: "ghost", hex: "F02A0", version: "1.5.54" }, + { name: "ghost-off", hex: "F09F5", version: "2.5.94" }, + { name: "gif", hex: "F0D78", version: "3.4.93" }, + { name: "gift", hex: "F0E44", version: "3.6.95" }, + { name: "gift-outline", hex: "F02A1", version: "1.5.54" }, + { name: "git", hex: "F02A2", version: "1.5.54" }, + { name: "github", hex: "F02A4", version: "1.5.54" }, + { name: "gitlab", hex: "F0BA0", version: "3.0.39" }, + { name: "glass-cocktail", hex: "F0356", version: "1.5.54" }, + { name: "glass-flute", hex: "F02A5", version: "1.5.54" }, + { name: "glass-mug", hex: "F02A6", version: "1.5.54" }, + { name: "glass-mug-variant", hex: "F1116", version: "4.3.95" }, + { name: "glass-pint-outline", hex: "F130D", version: "4.8.95" }, + { name: "glass-stange", hex: "F02A7", version: "1.5.54" }, + { name: "glass-tulip", hex: "F02A8", version: "1.5.54" }, + { name: "glass-wine", hex: "F0876", version: "2.1.99" }, + { name: "glasses", hex: "F02AA", version: "1.5.54" }, + { name: "globe-light", hex: "F12D7", version: "4.8.95" }, + { name: "globe-model", hex: "F08E9", version: "2.3.50" }, + { name: "gmail", hex: "F02AB", version: "1.5.54" }, + { name: "gnome", hex: "F02AC", version: "1.5.54" }, + { name: "go-kart", hex: "F0D79", version: "3.4.93" }, + { name: "go-kart-track", hex: "F0D7A", version: "3.4.93" }, + { name: "gog", hex: "F0BA1", version: "3.0.39" }, + { name: "gold", hex: "F124F", version: "4.6.95" }, + { name: "golf", hex: "F0823", version: "2.1.19" }, + { name: "golf-cart", hex: "F11A4", version: "4.5.95" }, + { name: "golf-tee", hex: "F1083", version: "4.2.95" }, + { name: "gondola", hex: "F0686", version: "1.7.12" }, + { name: "goodreads", hex: "F0D7B", version: "3.4.93" }, + { name: "google", hex: "F02AD", version: "1.5.54" }, + { name: "google-ads", hex: "F0C87", version: "3.2.89" }, + { name: "google-analytics", hex: "F07CC", version: "2.0.46" }, + { name: "google-assistant", hex: "F07CD", version: "2.0.46" }, + { name: "google-cardboard", hex: "F02AE", version: "1.5.54" }, + { name: "google-chrome", hex: "F02AF", version: "1.5.54" }, + { name: "google-circles", hex: "F02B0", version: "1.5.54" }, + { name: "google-circles-communities", hex: "F02B1", version: "1.5.54" }, + { name: "google-circles-extended", hex: "F02B2", version: "1.5.54" }, + { name: "google-circles-group", hex: "F02B3", version: "1.5.54" }, + { name: "google-classroom", hex: "F02C0", version: "1.5.54" }, + { name: "google-cloud", hex: "F11F6", version: "4.6.95" }, + { name: "google-controller", hex: "F02B4", version: "1.5.54" }, + { name: "google-controller-off", hex: "F02B5", version: "1.5.54" }, + { name: "google-downasaur", hex: "F1362", version: "4.9.95" }, + { name: "google-drive", hex: "F02B6", version: "1.5.54" }, + { name: "google-earth", hex: "F02B7", version: "1.5.54" }, + { name: "google-fit", hex: "F096C", version: "2.4.85" }, + { name: "google-glass", hex: "F02B8", version: "1.5.54" }, + { name: "google-hangouts", hex: "F02C9", version: "1.5.54" }, + { name: "google-home", hex: "F0824", version: "2.1.19" }, + { name: "google-keep", hex: "F06DC", version: "1.8.36" }, + { name: "google-lens", hex: "F09F6", version: "2.5.94" }, + { name: "google-maps", hex: "F05F5", version: "1.5.54" }, + { name: "google-my-business", hex: "F1048", version: "4.1.95" }, + { name: "google-nearby", hex: "F02B9", version: "1.5.54" }, + { name: "google-photos", hex: "F06DD", version: "1.8.36" }, + { name: "google-play", hex: "F02BC", version: "1.5.54" }, + { name: "google-plus", hex: "F02BD", version: "1.5.54" }, + { name: "google-podcast", hex: "F0EB9", version: "3.7.94" }, + { name: "google-spreadsheet", hex: "F09F7", version: "2.5.94" }, + { name: "google-street-view", hex: "F0C88", version: "3.2.89" }, + { name: "google-translate", hex: "F02BF", version: "1.5.54" }, + { name: "gradient", hex: "F06A0", version: "1.7.12" }, + { name: "grain", hex: "F0D7C", version: "3.4.93" }, + { name: "graph", hex: "F1049", version: "4.1.95" }, + { name: "graph-outline", hex: "F104A", version: "4.1.95" }, + { name: "graphql", hex: "F0877", version: "2.1.99" }, + { name: "grave-stone", hex: "F0BA2", version: "3.0.39" }, + { name: "grease-pencil", hex: "F0648", version: "1.6.50" }, + { name: "greater-than", hex: "F096D", version: "2.4.85" }, + { name: "greater-than-or-equal", hex: "F096E", version: "2.4.85" }, + { name: "grid", hex: "F02C1", version: "1.5.54" }, + { name: "grid-large", hex: "F0758", version: "1.9.32" }, + { name: "grid-off", hex: "F02C2", version: "1.5.54" }, + { name: "grill", hex: "F0E45", version: "3.6.95" }, + { name: "grill-outline", hex: "F118A", version: "4.4.95" }, + { name: "group", hex: "F02C3", version: "1.5.54" }, + { name: "guitar-acoustic", hex: "F0771", version: "1.9.32" }, + { name: "guitar-electric", hex: "F02C4", version: "1.5.54" }, + { name: "guitar-pick", hex: "F02C5", version: "1.5.54" }, + { name: "guitar-pick-outline", hex: "F02C6", version: "1.5.54" }, + { name: "guy-fawkes-mask", hex: "F0825", version: "2.1.19" }, + { name: "hail", hex: "F0AC1", version: "2.7.94" }, + { name: "hair-dryer", hex: "F10EF", version: "4.3.95" }, + { name: "hair-dryer-outline", hex: "F10F0", version: "4.3.95" }, + { name: "halloween", hex: "F0BA3", version: "3.0.39" }, + { name: "hamburger", hex: "F0685", version: "1.7.12" }, + { name: "hammer", hex: "F08EA", version: "2.3.50" }, + { name: "hammer-screwdriver", hex: "F1322", version: "4.9.95" }, + { name: "hammer-wrench", hex: "F1323", version: "4.9.95" }, + { name: "hand", hex: "F0A4F", version: "2.6.95" }, + { name: "hand-heart", hex: "F10F1", version: "4.3.95" }, + { name: "hand-left", hex: "F0E46", version: "3.6.95" }, + { name: "hand-okay", hex: "F0A50", version: "2.6.95" }, + { name: "hand-peace", hex: "F0A51", version: "2.6.95" }, + { name: "hand-peace-variant", hex: "F0A52", version: "2.6.95" }, + { name: "hand-pointing-down", hex: "F0A53", version: "2.6.95" }, + { name: "hand-pointing-left", hex: "F0A54", version: "2.6.95" }, + { name: "hand-pointing-right", hex: "F02C7", version: "1.5.54" }, + { name: "hand-pointing-up", hex: "F0A55", version: "2.6.95" }, + { name: "hand-right", hex: "F0E47", version: "3.6.95" }, + { name: "hand-saw", hex: "F0E48", version: "3.6.95" }, + { name: "hand-water", hex: "F139F", version: "5.0.45" }, + { name: "handball", hex: "F0F53", version: "3.9.97" }, + { name: "handcuffs", hex: "F113E", version: "4.4.95" }, + { name: "handshake", hex: "F1218", version: "4.6.95" }, + { name: "hanger", hex: "F02C8", version: "1.5.54" }, + { name: "hard-hat", hex: "F096F", version: "2.4.85" }, + { name: "harddisk", hex: "F02CA", version: "1.5.54" }, + { name: "harddisk-plus", hex: "F104B", version: "4.1.95" }, + { name: "harddisk-remove", hex: "F104C", version: "4.1.95" }, + { name: "hat-fedora", hex: "F0BA4", version: "3.0.39" }, + { name: "hazard-lights", hex: "F0C89", version: "3.2.89" }, + { name: "hdr", hex: "F0D7D", version: "3.4.93" }, + { name: "hdr-off", hex: "F0D7E", version: "3.4.93" }, + { name: "head", hex: "F135E", version: "4.9.95" }, + { name: "head-alert", hex: "F1338", version: "4.9.95" }, + { name: "head-alert-outline", hex: "F1339", version: "4.9.95" }, + { name: "head-check", hex: "F133A", version: "4.9.95" }, + { name: "head-check-outline", hex: "F133B", version: "4.9.95" }, + { name: "head-cog", hex: "F133C", version: "4.9.95" }, + { name: "head-cog-outline", hex: "F133D", version: "4.9.95" }, + { name: "head-dots-horizontal", hex: "F133E", version: "4.9.95" }, + { name: "head-dots-horizontal-outline", hex: "F133F", version: "4.9.95" }, + { name: "head-flash", hex: "F1340", version: "4.9.95" }, + { name: "head-flash-outline", hex: "F1341", version: "4.9.95" }, + { name: "head-heart", hex: "F1342", version: "4.9.95" }, + { name: "head-heart-outline", hex: "F1343", version: "4.9.95" }, + { name: "head-lightbulb", hex: "F1344", version: "4.9.95" }, + { name: "head-lightbulb-outline", hex: "F1345", version: "4.9.95" }, + { name: "head-minus", hex: "F1346", version: "4.9.95" }, + { name: "head-minus-outline", hex: "F1347", version: "4.9.95" }, + { name: "head-outline", hex: "F135F", version: "4.9.95" }, + { name: "head-plus", hex: "F1348", version: "4.9.95" }, + { name: "head-plus-outline", hex: "F1349", version: "4.9.95" }, + { name: "head-question", hex: "F134A", version: "4.9.95" }, + { name: "head-question-outline", hex: "F134B", version: "4.9.95" }, + { name: "head-remove", hex: "F134C", version: "4.9.95" }, + { name: "head-remove-outline", hex: "F134D", version: "4.9.95" }, + { name: "head-snowflake", hex: "F134E", version: "4.9.95" }, + { name: "head-snowflake-outline", hex: "F134F", version: "4.9.95" }, + { name: "head-sync", hex: "F1350", version: "4.9.95" }, + { name: "head-sync-outline", hex: "F1351", version: "4.9.95" }, + { name: "headphones", hex: "F02CB", version: "1.5.54" }, + { name: "headphones-bluetooth", hex: "F0970", version: "2.4.85" }, + { name: "headphones-box", hex: "F02CC", version: "1.5.54" }, + { name: "headphones-off", hex: "F07CE", version: "2.0.46" }, + { name: "headphones-settings", hex: "F02CD", version: "1.5.54" }, + { name: "headset", hex: "F02CE", version: "1.5.54" }, + { name: "headset-dock", hex: "F02CF", version: "1.5.54" }, + { name: "headset-off", hex: "F02D0", version: "1.5.54" }, + { name: "heart", hex: "F02D1", version: "1.5.54" }, + { name: "heart-box", hex: "F02D2", version: "1.5.54" }, + { name: "heart-box-outline", hex: "F02D3", version: "1.5.54" }, + { name: "heart-broken", hex: "F02D4", version: "1.5.54" }, + { name: "heart-broken-outline", hex: "F0D14", version: "3.3.92" }, + { name: "heart-circle", hex: "F0971", version: "2.4.85" }, + { name: "heart-circle-outline", hex: "F0972", version: "2.4.85" }, + { name: "heart-flash", hex: "F0EF9", version: "3.8.95" }, + { name: "heart-half", hex: "F06DF", version: "1.8.36" }, + { name: "heart-half-full", hex: "F06DE", version: "1.8.36" }, + { name: "heart-half-outline", hex: "F06E0", version: "1.8.36" }, + { name: "heart-multiple", hex: "F0A56", version: "2.6.95" }, + { name: "heart-multiple-outline", hex: "F0A57", version: "2.6.95" }, + { name: "heart-off", hex: "F0759", version: "1.9.32" }, + { name: "heart-outline", hex: "F02D5", version: "1.5.54" }, + { name: "heart-pulse", hex: "F05F6", version: "1.5.54" }, + { name: "helicopter", hex: "F0AC2", version: "2.7.94" }, + { name: "help", hex: "F02D6", version: "1.5.54" }, + { name: "help-box", hex: "F078B", version: "1.9.32" }, + { name: "help-circle", hex: "F02D7", version: "1.5.54" }, + { name: "help-circle-outline", hex: "F0625", version: "1.6.50" }, + { name: "help-network", hex: "F06F5", version: "1.8.36" }, + { name: "help-network-outline", hex: "F0C8A", version: "3.2.89" }, + { name: "help-rhombus", hex: "F0BA5", version: "3.0.39" }, + { name: "help-rhombus-outline", hex: "F0BA6", version: "3.0.39" }, + { name: "hexadecimal", hex: "F12A7", version: "4.7.95" }, + { name: "hexagon", hex: "F02D8", version: "1.5.54" }, + { name: "hexagon-multiple", hex: "F06E1", version: "1.8.36" }, + { name: "hexagon-multiple-outline", hex: "F10F2", version: "4.3.95" }, + { name: "hexagon-outline", hex: "F02D9", version: "1.5.54" }, + { name: "hexagon-slice-1", hex: "F0AC3", version: "2.7.94" }, + { name: "hexagon-slice-2", hex: "F0AC4", version: "2.7.94" }, + { name: "hexagon-slice-3", hex: "F0AC5", version: "2.7.94" }, + { name: "hexagon-slice-4", hex: "F0AC6", version: "2.7.94" }, + { name: "hexagon-slice-5", hex: "F0AC7", version: "2.7.94" }, + { name: "hexagon-slice-6", hex: "F0AC8", version: "2.7.94" }, + { name: "hexagram", hex: "F0AC9", version: "2.7.94" }, + { name: "hexagram-outline", hex: "F0ACA", version: "2.7.94" }, + { name: "high-definition", hex: "F07CF", version: "2.0.46" }, + { name: "high-definition-box", hex: "F0878", version: "2.1.99" }, + { name: "highway", hex: "F05F7", version: "1.5.54" }, + { name: "hiking", hex: "F0D7F", version: "3.4.93" }, + { name: "hinduism", hex: "F0973", version: "2.4.85" }, + { name: "history", hex: "F02DA", version: "1.5.54" }, + { name: "hockey-puck", hex: "F0879", version: "2.1.99" }, + { name: "hockey-sticks", hex: "F087A", version: "2.1.99" }, + { name: "hololens", hex: "F02DB", version: "1.5.54" }, + { name: "home", hex: "F02DC", version: "1.5.54" }, + { name: "home-account", hex: "F0826", version: "2.1.19" }, + { name: "home-alert", hex: "F087B", version: "2.1.99" }, + { name: "home-analytics", hex: "F0EBA", version: "3.7.94" }, + { name: "home-assistant", hex: "F07D0", version: "2.0.46" }, + { name: "home-automation", hex: "F07D1", version: "2.0.46" }, + { name: "home-circle", hex: "F07D2", version: "2.0.46" }, + { name: "home-circle-outline", hex: "F104D", version: "4.1.95" }, + { name: "home-city", hex: "F0D15", version: "3.3.92" }, + { name: "home-city-outline", hex: "F0D16", version: "3.3.92" }, + { name: "home-currency-usd", hex: "F08AF", version: "2.2.43" }, + { name: "home-edit", hex: "F1159", version: "4.4.95" }, + { name: "home-edit-outline", hex: "F115A", version: "4.4.95" }, + { name: "home-export-outline", hex: "F0F9B", version: "3.9.97" }, + { name: "home-flood", hex: "F0EFA", version: "3.8.95" }, + { name: "home-floor-0", hex: "F0DD2", version: "3.5.94" }, + { name: "home-floor-1", hex: "F0D80", version: "3.4.93" }, + { name: "home-floor-2", hex: "F0D81", version: "3.4.93" }, + { name: "home-floor-3", hex: "F0D82", version: "3.4.93" }, + { name: "home-floor-a", hex: "F0D83", version: "3.4.93" }, + { name: "home-floor-b", hex: "F0D84", version: "3.4.93" }, + { name: "home-floor-g", hex: "F0D85", version: "3.4.93" }, + { name: "home-floor-l", hex: "F0D86", version: "3.4.93" }, + { name: "home-floor-negative-1", hex: "F0DD3", version: "3.5.94" }, + { name: "home-group", hex: "F0DD4", version: "3.5.94" }, + { name: "home-heart", hex: "F0827", version: "2.1.19" }, + { name: "home-import-outline", hex: "F0F9C", version: "3.9.97" }, + { name: "home-lightbulb", hex: "F1251", version: "4.6.95" }, + { name: "home-lightbulb-outline", hex: "F1252", version: "4.6.95" }, + { name: "home-lock", hex: "F08EB", version: "2.3.50" }, + { name: "home-lock-open", hex: "F08EC", version: "2.3.50" }, + { name: "home-map-marker", hex: "F05F8", version: "1.5.54" }, + { name: "home-minus", hex: "F0974", version: "2.4.85" }, + { name: "home-modern", hex: "F02DD", version: "1.5.54" }, + { name: "home-outline", hex: "F06A1", version: "1.7.12" }, + { name: "home-plus", hex: "F0975", version: "2.4.85" }, + { name: "home-remove", hex: "F1247", version: "4.6.95" }, + { name: "home-roof", hex: "F112B", version: "4.3.95" }, + { name: "home-search", hex: "F13B0", version: "5.0.45" }, + { name: "home-search-outline", hex: "F13B1", version: "5.0.45" }, + { name: "home-thermometer", hex: "F0F54", version: "3.9.97" }, + { name: "home-thermometer-outline", hex: "F0F55", version: "3.9.97" }, + { name: "home-variant", hex: "F02DE", version: "1.5.54" }, + { name: "home-variant-outline", hex: "F0BA7", version: "3.0.39" }, + { name: "hook", hex: "F06E2", version: "1.8.36" }, + { name: "hook-off", hex: "F06E3", version: "1.8.36" }, + { name: "hops", hex: "F02DF", version: "1.5.54" }, + { name: "horizontal-rotate-clockwise", hex: "F10F3", version: "4.3.95" }, + { name: "horizontal-rotate-counterclockwise", hex: "F10F4", version: "4.3.95" }, + { name: "horseshoe", hex: "F0A58", version: "2.6.95" }, + { name: "hospital", hex: "F0FF6", version: "4.0.96" }, + { name: "hospital-box", hex: "F02E0", version: "1.5.54" }, + { name: "hospital-box-outline", hex: "F0FF7", version: "4.0.96" }, + { name: "hospital-building", hex: "F02E1", version: "1.5.54" }, + { name: "hospital-marker", hex: "F02E2", version: "1.5.54" }, + { name: "hot-tub", hex: "F0828", version: "2.1.19" }, + { name: "hubspot", hex: "F0D17", version: "3.3.92" }, + { name: "hulu", hex: "F0829", version: "2.1.19" }, + { name: "human", hex: "F02E6", version: "1.5.54" }, + { name: "human-baby-changing-table", hex: "F138B", version: "5.0.45" }, + { name: "human-child", hex: "F02E7", version: "1.5.54" }, + { name: "human-female", hex: "F0649", version: "1.6.50" }, + { name: "human-female-boy", hex: "F0A59", version: "2.6.95" }, + { name: "human-female-female", hex: "F0A5A", version: "2.6.95" }, + { name: "human-female-girl", hex: "F0A5B", version: "2.6.95" }, + { name: "human-greeting", hex: "F064A", version: "1.6.50" }, + { name: "human-handsdown", hex: "F064B", version: "1.6.50" }, + { name: "human-handsup", hex: "F064C", version: "1.6.50" }, + { name: "human-male", hex: "F064D", version: "1.6.50" }, + { name: "human-male-boy", hex: "F0A5C", version: "2.6.95" }, + { name: "human-male-child", hex: "F138C", version: "5.0.45" }, + { name: "human-male-female", hex: "F02E8", version: "1.5.54" }, + { name: "human-male-girl", hex: "F0A5D", version: "2.6.95" }, + { name: "human-male-height", hex: "F0EFB", version: "3.8.95" }, + { name: "human-male-height-variant", hex: "F0EFC", version: "3.8.95" }, + { name: "human-male-male", hex: "F0A5E", version: "2.6.95" }, + { name: "human-pregnant", hex: "F05CF", version: "1.5.54" }, + { name: "human-wheelchair", hex: "F138D", version: "5.0.45" }, + { name: "humble-bundle", hex: "F0744", version: "1.9.32" }, + { name: "hvac", hex: "F1352", version: "4.9.95" }, + { name: "hydraulic-oil-level", hex: "F1324", version: "4.9.95" }, + { name: "hydraulic-oil-temperature", hex: "F1325", version: "4.9.95" }, + { name: "hydro-power", hex: "F12E5", version: "4.8.95" }, + { name: "ice-cream", hex: "F082A", version: "2.1.19" }, + { name: "ice-cream-off", hex: "F0E52", version: "3.6.95" }, + { name: "ice-pop", hex: "F0EFD", version: "3.8.95" }, + { name: "id-card", hex: "F0FC0", version: "4.0.96" }, + { name: "identifier", hex: "F0EFE", version: "3.8.95" }, + { name: "ideogram-cjk", hex: "F1331", version: "4.9.95" }, + { name: "ideogram-cjk-variant", hex: "F1332", version: "4.9.95" }, + { name: "iframe", hex: "F0C8B", version: "3.2.89" }, + { name: "iframe-array", hex: "F10F5", version: "4.3.95" }, + { name: "iframe-array-outline", hex: "F10F6", version: "4.3.95" }, + { name: "iframe-braces", hex: "F10F7", version: "4.3.95" }, + { name: "iframe-braces-outline", hex: "F10F8", version: "4.3.95" }, + { name: "iframe-outline", hex: "F0C8C", version: "3.2.89" }, + { name: "iframe-parentheses", hex: "F10F9", version: "4.3.95" }, + { name: "iframe-parentheses-outline", hex: "F10FA", version: "4.3.95" }, + { name: "iframe-variable", hex: "F10FB", version: "4.3.95" }, + { name: "iframe-variable-outline", hex: "F10FC", version: "4.3.95" }, + { name: "image", hex: "F02E9", version: "1.5.54" }, + { name: "image-album", hex: "F02EA", version: "1.5.54" }, + { name: "image-area", hex: "F02EB", version: "1.5.54" }, + { name: "image-area-close", hex: "F02EC", version: "1.5.54" }, + { name: "image-auto-adjust", hex: "F0FC1", version: "4.0.96" }, + { name: "image-broken", hex: "F02ED", version: "1.5.54" }, + { name: "image-broken-variant", hex: "F02EE", version: "1.5.54" }, + { name: "image-edit", hex: "F11E3", version: "4.5.95" }, + { name: "image-edit-outline", hex: "F11E4", version: "4.5.95" }, + { name: "image-filter-black-white", hex: "F02F0", version: "1.5.54" }, + { name: "image-filter-center-focus", hex: "F02F1", version: "1.5.54" }, + { name: "image-filter-center-focus-strong", hex: "F0EFF", version: "3.8.95" }, + { name: "image-filter-center-focus-strong-outline", hex: "F0F00", version: "3.8.95" }, + { name: "image-filter-center-focus-weak", hex: "F02F2", version: "1.5.54" }, + { name: "image-filter-drama", hex: "F02F3", version: "1.5.54" }, + { name: "image-filter-frames", hex: "F02F4", version: "1.5.54" }, + { name: "image-filter-hdr", hex: "F02F5", version: "1.5.54" }, + { name: "image-filter-none", hex: "F02F6", version: "1.5.54" }, + { name: "image-filter-tilt-shift", hex: "F02F7", version: "1.5.54" }, + { name: "image-filter-vintage", hex: "F02F8", version: "1.5.54" }, + { name: "image-frame", hex: "F0E49", version: "3.6.95" }, + { name: "image-move", hex: "F09F8", version: "2.5.94" }, + { name: "image-multiple", hex: "F02F9", version: "1.5.54" }, + { name: "image-multiple-outline", hex: "F02EF", version: "1.5.54" }, + { name: "image-off", hex: "F082B", version: "2.1.19" }, + { name: "image-off-outline", hex: "F11D1", version: "4.5.95" }, + { name: "image-outline", hex: "F0976", version: "2.4.85" }, + { name: "image-plus", hex: "F087C", version: "2.1.99" }, + { name: "image-search", hex: "F0977", version: "2.4.85" }, + { name: "image-search-outline", hex: "F0978", version: "2.4.85" }, + { name: "image-size-select-actual", hex: "F0C8D", version: "3.2.89" }, + { name: "image-size-select-large", hex: "F0C8E", version: "3.2.89" }, + { name: "image-size-select-small", hex: "F0C8F", version: "3.2.89" }, + { name: "import", hex: "F02FA", version: "1.5.54" }, + { name: "inbox", hex: "F0687", version: "1.7.12" }, + { name: "inbox-arrow-down", hex: "F02FB", version: "1.5.54" }, + { name: "inbox-arrow-down-outline", hex: "F1270", version: "4.7.95" }, + { name: "inbox-arrow-up", hex: "F03D1", version: "1.5.54" }, + { name: "inbox-arrow-up-outline", hex: "F1271", version: "4.7.95" }, + { name: "inbox-full", hex: "F1272", version: "4.7.95" }, + { name: "inbox-full-outline", hex: "F1273", version: "4.7.95" }, + { name: "inbox-multiple", hex: "F08B0", version: "2.2.43" }, + { name: "inbox-multiple-outline", hex: "F0BA8", version: "3.0.39" }, + { name: "inbox-outline", hex: "F1274", version: "4.7.95" }, + { name: "incognito", hex: "F05F9", version: "1.5.54" }, + { name: "incognito-off", hex: "F0075", version: "1.5.54" }, + { name: "infinity", hex: "F06E4", version: "1.8.36" }, + { name: "information", hex: "F02FC", version: "1.5.54" }, + { name: "information-outline", hex: "F02FD", version: "1.5.54" }, + { name: "information-variant", hex: "F064E", version: "1.6.50" }, + { name: "instagram", hex: "F02FE", version: "1.5.54" }, + { name: "instrument-triangle", hex: "F104E", version: "4.1.95" }, + { name: "invert-colors", hex: "F0301", version: "1.5.54" }, + { name: "invert-colors-off", hex: "F0E4A", version: "3.6.95" }, + { name: "iobroker", hex: "F12E8", version: "4.8.95" }, + { name: "ip", hex: "F0A5F", version: "2.6.95" }, + { name: "ip-network", hex: "F0A60", version: "2.6.95" }, + { name: "ip-network-outline", hex: "F0C90", version: "3.2.89" }, + { name: "ipod", hex: "F0C91", version: "3.2.89" }, + { name: "islam", hex: "F0979", version: "2.4.85" }, + { name: "island", hex: "F104F", version: "4.1.95" }, + { name: "iv-bag", hex: "F10B9", version: "4.2.95" }, + { name: "jabber", hex: "F0DD5", version: "3.5.94" }, + { name: "jeepney", hex: "F0302", version: "1.5.54" }, + { name: "jellyfish", hex: "F0F01", version: "3.8.95" }, + { name: "jellyfish-outline", hex: "F0F02", version: "3.8.95" }, + { name: "jira", hex: "F0303", version: "1.5.54" }, + { name: "jquery", hex: "F087D", version: "2.1.99" }, + { name: "jsfiddle", hex: "F0304", version: "1.5.54" }, + { name: "judaism", hex: "F097A", version: "2.4.85" }, + { name: "jump-rope", hex: "F12FF", version: "4.8.95" }, + { name: "kabaddi", hex: "F0D87", version: "3.4.93" }, + { name: "karate", hex: "F082C", version: "2.1.19" }, + { name: "keg", hex: "F0305", version: "1.5.54" }, + { name: "kettle", hex: "F05FA", version: "1.5.54" }, + { name: "kettle-alert", hex: "F1317", version: "4.8.95" }, + { name: "kettle-alert-outline", hex: "F1318", version: "4.8.95" }, + { name: "kettle-off", hex: "F131B", version: "4.8.95" }, + { name: "kettle-off-outline", hex: "F131C", version: "4.8.95" }, + { name: "kettle-outline", hex: "F0F56", version: "3.9.97" }, + { name: "kettle-steam", hex: "F1319", version: "4.8.95" }, + { name: "kettle-steam-outline", hex: "F131A", version: "4.8.95" }, + { name: "kettlebell", hex: "F1300", version: "4.8.95" }, + { name: "key", hex: "F0306", version: "1.5.54" }, + { name: "key-arrow-right", hex: "F1312", version: "4.8.95" }, + { name: "key-change", hex: "F0307", version: "1.5.54" }, + { name: "key-link", hex: "F119F", version: "4.4.95" }, + { name: "key-minus", hex: "F0308", version: "1.5.54" }, + { name: "key-outline", hex: "F0DD6", version: "3.5.94" }, + { name: "key-plus", hex: "F0309", version: "1.5.54" }, + { name: "key-remove", hex: "F030A", version: "1.5.54" }, + { name: "key-star", hex: "F119E", version: "4.4.95" }, + { name: "key-variant", hex: "F030B", version: "1.5.54" }, + { name: "key-wireless", hex: "F0FC2", version: "4.0.96" }, + { name: "keyboard", hex: "F030C", version: "1.5.54" }, + { name: "keyboard-backspace", hex: "F030D", version: "1.5.54" }, + { name: "keyboard-caps", hex: "F030E", version: "1.5.54" }, + { name: "keyboard-close", hex: "F030F", version: "1.5.54" }, + { name: "keyboard-esc", hex: "F12B7", version: "4.7.95" }, + { name: "keyboard-f1", hex: "F12AB", version: "4.7.95" }, + { name: "keyboard-f10", hex: "F12B4", version: "4.7.95" }, + { name: "keyboard-f11", hex: "F12B5", version: "4.7.95" }, + { name: "keyboard-f12", hex: "F12B6", version: "4.7.95" }, + { name: "keyboard-f2", hex: "F12AC", version: "4.7.95" }, + { name: "keyboard-f3", hex: "F12AD", version: "4.7.95" }, + { name: "keyboard-f4", hex: "F12AE", version: "4.7.95" }, + { name: "keyboard-f5", hex: "F12AF", version: "4.7.95" }, + { name: "keyboard-f6", hex: "F12B0", version: "4.7.95" }, + { name: "keyboard-f7", hex: "F12B1", version: "4.7.95" }, + { name: "keyboard-f8", hex: "F12B2", version: "4.7.95" }, + { name: "keyboard-f9", hex: "F12B3", version: "4.7.95" }, + { name: "keyboard-off", hex: "F0310", version: "1.5.54" }, + { name: "keyboard-off-outline", hex: "F0E4B", version: "3.6.95" }, + { name: "keyboard-outline", hex: "F097B", version: "2.4.85" }, + { name: "keyboard-return", hex: "F0311", version: "1.5.54" }, + { name: "keyboard-settings", hex: "F09F9", version: "2.5.94" }, + { name: "keyboard-settings-outline", hex: "F09FA", version: "2.5.94" }, + { name: "keyboard-space", hex: "F1050", version: "4.1.95" }, + { name: "keyboard-tab", hex: "F0312", version: "1.5.54" }, + { name: "keyboard-variant", hex: "F0313", version: "1.5.54" }, + { name: "khanda", hex: "F10FD", version: "4.3.95" }, + { name: "kickstarter", hex: "F0745", version: "1.9.32" }, + { name: "klingon", hex: "F135B", version: "4.9.95" }, + { name: "knife", hex: "F09FB", version: "2.5.94" }, + { name: "knife-military", hex: "F09FC", version: "2.5.94" }, + { name: "kodi", hex: "F0314", version: "1.5.54" }, + { name: "kubernetes", hex: "F10FE", version: "4.3.95" }, + { name: "label", hex: "F0315", version: "1.5.54" }, + { name: "label-multiple", hex: "F1375", version: "4.9.95" }, + { name: "label-multiple-outline", hex: "F1376", version: "4.9.95" }, + { name: "label-off", hex: "F0ACB", version: "2.7.94" }, + { name: "label-off-outline", hex: "F0ACC", version: "2.7.94" }, + { name: "label-outline", hex: "F0316", version: "1.5.54" }, + { name: "label-percent", hex: "F12EA", version: "4.8.95" }, + { name: "label-percent-outline", hex: "F12EB", version: "4.8.95" }, + { name: "label-variant", hex: "F0ACD", version: "2.7.94" }, + { name: "label-variant-outline", hex: "F0ACE", version: "2.7.94" }, + { name: "ladybug", hex: "F082D", version: "2.1.19" }, + { name: "lambda", hex: "F0627", version: "1.6.50" }, + { name: "lamp", hex: "F06B5", version: "1.7.22" }, + { name: "lan", hex: "F0317", version: "1.5.54" }, + { name: "lan-check", hex: "F12AA", version: "4.7.95" }, + { name: "lan-connect", hex: "F0318", version: "1.5.54" }, + { name: "lan-disconnect", hex: "F0319", version: "1.5.54" }, + { name: "lan-pending", hex: "F031A", version: "1.5.54" }, + { name: "language-c", hex: "F0671", version: "1.6.50" }, + { name: "language-cpp", hex: "F0672", version: "1.6.50" }, + { name: "language-csharp", hex: "F031B", version: "1.5.54" }, + { name: "language-css3", hex: "F031C", version: "1.5.54" }, + { name: "language-fortran", hex: "F121A", version: "4.6.95" }, + { name: "language-go", hex: "F07D3", version: "2.0.46" }, + { name: "language-haskell", hex: "F0C92", version: "3.2.89" }, + { name: "language-html5", hex: "F031D", version: "1.5.54" }, + { name: "language-java", hex: "F0B37", version: "2.8.94" }, + { name: "language-javascript", hex: "F031E", version: "1.5.54" }, + { name: "language-kotlin", hex: "F1219", version: "4.6.95" }, + { name: "language-lua", hex: "F08B1", version: "2.2.43" }, + { name: "language-markdown", hex: "F0354", version: "1.5.54" }, + { name: "language-markdown-outline", hex: "F0F5B", version: "3.9.97" }, + { name: "language-php", hex: "F031F", version: "1.5.54" }, + { name: "language-python", hex: "F0320", version: "1.5.54" }, + { name: "language-r", hex: "F07D4", version: "2.0.46" }, + { name: "language-ruby", hex: "F0D2D", version: "3.3.92" }, + { name: "language-ruby-on-rails", hex: "F0ACF", version: "2.7.94" }, + { name: "language-swift", hex: "F06E5", version: "1.8.36" }, + { name: "language-typescript", hex: "F06E6", version: "1.8.36" }, + { name: "language-xaml", hex: "F0673", version: "1.6.50" }, + { name: "laptop", hex: "F0322", version: "1.5.54" }, + { name: "laptop-chromebook", hex: "F0323", version: "1.5.54" }, + { name: "laptop-mac", hex: "F0324", version: "1.5.54" }, + { name: "laptop-off", hex: "F06E7", version: "1.8.36" }, + { name: "laptop-windows", hex: "F0325", version: "1.5.54" }, + { name: "laravel", hex: "F0AD0", version: "2.7.94" }, + { name: "lasso", hex: "F0F03", version: "3.8.95" }, + { name: "lastpass", hex: "F0446", version: "1.5.54" }, + { name: "latitude", hex: "F0F57", version: "3.9.97" }, + { name: "launch", hex: "F0327", version: "1.5.54" }, + { name: "lava-lamp", hex: "F07D5", version: "2.0.46" }, + { name: "layers", hex: "F0328", version: "1.5.54" }, + { name: "layers-minus", hex: "F0E4C", version: "3.6.95" }, + { name: "layers-off", hex: "F0329", version: "1.5.54" }, + { name: "layers-off-outline", hex: "F09FD", version: "2.5.94" }, + { name: "layers-outline", hex: "F09FE", version: "2.5.94" }, + { name: "layers-plus", hex: "F0E4D", version: "3.6.95" }, + { name: "layers-remove", hex: "F0E4E", version: "3.6.95" }, + { name: "layers-search", hex: "F1206", version: "4.6.95" }, + { name: "layers-search-outline", hex: "F1207", version: "4.6.95" }, + { name: "layers-triple", hex: "F0F58", version: "3.9.97" }, + { name: "layers-triple-outline", hex: "F0F59", version: "3.9.97" }, + { name: "lead-pencil", hex: "F064F", version: "1.6.50" }, + { name: "leaf", hex: "F032A", version: "1.5.54" }, + { name: "leaf-maple", hex: "F0C93", version: "3.2.89" }, + { name: "leaf-maple-off", hex: "F12DA", version: "4.8.95" }, + { name: "leaf-off", hex: "F12D9", version: "4.8.95" }, + { name: "leak", hex: "F0DD7", version: "3.5.94" }, + { name: "leak-off", hex: "F0DD8", version: "3.5.94" }, + { name: "led-off", hex: "F032B", version: "1.5.54" }, + { name: "led-on", hex: "F032C", version: "1.5.54" }, + { name: "led-outline", hex: "F032D", version: "1.5.54" }, + { name: "led-strip", hex: "F07D6", version: "2.0.46" }, + { name: "led-strip-variant", hex: "F1051", version: "4.1.95" }, + { name: "led-variant-off", hex: "F032E", version: "1.5.54" }, + { name: "led-variant-on", hex: "F032F", version: "1.5.54" }, + { name: "led-variant-outline", hex: "F0330", version: "1.5.54" }, + { name: "leek", hex: "F117D", version: "4.4.95" }, + { name: "less-than", hex: "F097C", version: "2.4.85" }, + { name: "less-than-or-equal", hex: "F097D", version: "2.4.85" }, + { name: "library", hex: "F0331", version: "1.5.54" }, + { name: "library-shelves", hex: "F0BA9", version: "3.0.39" }, + { name: "license", hex: "F0FC3", version: "4.0.96" }, + { name: "lifebuoy", hex: "F087E", version: "2.1.99" }, + { name: "light-switch", hex: "F097E", version: "2.4.85" }, + { name: "lightbulb", hex: "F0335", version: "1.5.54" }, + { name: "lightbulb-cfl", hex: "F1208", version: "4.6.95" }, + { name: "lightbulb-cfl-off", hex: "F1209", version: "4.6.95" }, + { name: "lightbulb-cfl-spiral", hex: "F1275", version: "4.7.95" }, + { name: "lightbulb-cfl-spiral-off", hex: "F12C3", version: "4.8.95" }, + { name: "lightbulb-group", hex: "F1253", version: "4.6.95" }, + { name: "lightbulb-group-off", hex: "F12CD", version: "4.8.95" }, + { name: "lightbulb-group-off-outline", hex: "F12CE", version: "4.8.95" }, + { name: "lightbulb-group-outline", hex: "F1254", version: "4.6.95" }, + { name: "lightbulb-multiple", hex: "F1255", version: "4.6.95" }, + { name: "lightbulb-multiple-off", hex: "F12CF", version: "4.8.95" }, + { name: "lightbulb-multiple-off-outline", hex: "F12D0", version: "4.8.95" }, + { name: "lightbulb-multiple-outline", hex: "F1256", version: "4.6.95" }, + { name: "lightbulb-off", hex: "F0E4F", version: "3.6.95" }, + { name: "lightbulb-off-outline", hex: "F0E50", version: "3.6.95" }, + { name: "lightbulb-on", hex: "F06E8", version: "1.8.36" }, + { name: "lightbulb-on-outline", hex: "F06E9", version: "1.8.36" }, + { name: "lightbulb-outline", hex: "F0336", version: "1.5.54" }, + { name: "lighthouse", hex: "F09FF", version: "2.5.94" }, + { name: "lighthouse-on", hex: "F0A00", version: "2.5.94" }, + { name: "link", hex: "F0337", version: "1.5.54" }, + { name: "link-box", hex: "F0D1A", version: "3.3.92" }, + { name: "link-box-outline", hex: "F0D1B", version: "3.3.92" }, + { name: "link-box-variant", hex: "F0D1C", version: "3.3.92" }, + { name: "link-box-variant-outline", hex: "F0D1D", version: "3.3.92" }, + { name: "link-lock", hex: "F10BA", version: "4.2.95" }, + { name: "link-off", hex: "F0338", version: "1.5.54" }, + { name: "link-plus", hex: "F0C94", version: "3.2.89" }, + { name: "link-variant", hex: "F0339", version: "1.5.54" }, + { name: "link-variant-minus", hex: "F10FF", version: "4.3.95" }, + { name: "link-variant-off", hex: "F033A", version: "1.5.54" }, + { name: "link-variant-plus", hex: "F1100", version: "4.3.95" }, + { name: "link-variant-remove", hex: "F1101", version: "4.3.95" }, + { name: "linkedin", hex: "F033B", version: "1.5.54" }, + { name: "linux", hex: "F033D", version: "1.5.54" }, + { name: "linux-mint", hex: "F08ED", version: "2.3.50" }, + { name: "lipstick", hex: "F13B5", version: "5.0.45" }, + { name: "litecoin", hex: "F0A61", version: "2.6.95" }, + { name: "loading", hex: "F0772", version: "1.9.32" }, + { name: "location-enter", hex: "F0FC4", version: "4.0.96" }, + { name: "location-exit", hex: "F0FC5", version: "4.0.96" }, + { name: "lock", hex: "F033E", version: "1.5.54" }, + { name: "lock-alert", hex: "F08EE", version: "2.3.50" }, + { name: "lock-check", hex: "F139A", version: "5.0.45" }, + { name: "lock-clock", hex: "F097F", version: "2.4.85" }, + { name: "lock-open", hex: "F033F", version: "1.5.54" }, + { name: "lock-open-alert", hex: "F139B", version: "5.0.45" }, + { name: "lock-open-check", hex: "F139C", version: "5.0.45" }, + { name: "lock-open-outline", hex: "F0340", version: "1.5.54" }, + { name: "lock-open-variant", hex: "F0FC6", version: "4.0.96" }, + { name: "lock-open-variant-outline", hex: "F0FC7", version: "4.0.96" }, + { name: "lock-outline", hex: "F0341", version: "1.5.54" }, + { name: "lock-pattern", hex: "F06EA", version: "1.8.36" }, + { name: "lock-plus", hex: "F05FB", version: "1.5.54" }, + { name: "lock-question", hex: "F08EF", version: "2.3.50" }, + { name: "lock-reset", hex: "F0773", version: "1.9.32" }, + { name: "lock-smart", hex: "F08B2", version: "2.2.43" }, + { name: "locker", hex: "F07D7", version: "2.0.46" }, + { name: "locker-multiple", hex: "F07D8", version: "2.0.46" }, + { name: "login", hex: "F0342", version: "1.5.54" }, + { name: "login-variant", hex: "F05FC", version: "1.5.54" }, + { name: "logout", hex: "F0343", version: "1.5.54" }, + { name: "logout-variant", hex: "F05FD", version: "1.5.54" }, + { name: "longitude", hex: "F0F5A", version: "3.9.97" }, + { name: "looks", hex: "F0344", version: "1.5.54" }, + { name: "loupe", hex: "F0345", version: "1.5.54" }, + { name: "lumx", hex: "F0346", version: "1.5.54" }, + { name: "lungs", hex: "F1084", version: "4.2.95" }, + { name: "magnet", hex: "F0347", version: "1.5.54" }, + { name: "magnet-on", hex: "F0348", version: "1.5.54" }, + { name: "magnify", hex: "F0349", version: "1.5.54" }, + { name: "magnify-close", hex: "F0980", version: "2.4.85" }, + { name: "magnify-minus", hex: "F034A", version: "1.5.54" }, + { name: "magnify-minus-cursor", hex: "F0A62", version: "2.6.95" }, + { name: "magnify-minus-outline", hex: "F06EC", version: "1.8.36" }, + { name: "magnify-plus", hex: "F034B", version: "1.5.54" }, + { name: "magnify-plus-cursor", hex: "F0A63", version: "2.6.95" }, + { name: "magnify-plus-outline", hex: "F06ED", version: "1.8.36" }, + { name: "magnify-remove-cursor", hex: "F120C", version: "4.6.95" }, + { name: "magnify-remove-outline", hex: "F120D", version: "4.6.95" }, + { name: "magnify-scan", hex: "F1276", version: "4.7.95" }, + { name: "mail", hex: "F0EBB", version: "3.7.94" }, + { name: "mailbox", hex: "F06EE", version: "1.8.36" }, + { name: "mailbox-open", hex: "F0D88", version: "3.4.93" }, + { name: "mailbox-open-outline", hex: "F0D89", version: "3.4.93" }, + { name: "mailbox-open-up", hex: "F0D8A", version: "3.4.93" }, + { name: "mailbox-open-up-outline", hex: "F0D8B", version: "3.4.93" }, + { name: "mailbox-outline", hex: "F0D8C", version: "3.4.93" }, + { name: "mailbox-up", hex: "F0D8D", version: "3.4.93" }, + { name: "mailbox-up-outline", hex: "F0D8E", version: "3.4.93" }, + { name: "map", hex: "F034D", version: "1.5.54" }, + { name: "map-check", hex: "F0EBC", version: "3.7.94" }, + { name: "map-check-outline", hex: "F0EBD", version: "3.7.94" }, + { name: "map-clock", hex: "F0D1E", version: "3.3.92" }, + { name: "map-clock-outline", hex: "F0D1F", version: "3.3.92" }, + { name: "map-legend", hex: "F0A01", version: "2.5.94" }, + { name: "map-marker", hex: "F034E", version: "1.5.54" }, + { name: "map-marker-alert", hex: "F0F05", version: "3.8.95" }, + { name: "map-marker-alert-outline", hex: "F0F06", version: "3.8.95" }, + { name: "map-marker-check", hex: "F0C95", version: "3.2.89" }, + { name: "map-marker-check-outline", hex: "F12FB", version: "4.8.95" }, + { name: "map-marker-circle", hex: "F034F", version: "1.5.54" }, + { name: "map-marker-distance", hex: "F08F0", version: "2.3.50" }, + { name: "map-marker-down", hex: "F1102", version: "4.3.95" }, + { name: "map-marker-left", hex: "F12DB", version: "4.8.95" }, + { name: "map-marker-left-outline", hex: "F12DD", version: "4.8.95" }, + { name: "map-marker-minus", hex: "F0650", version: "1.6.50" }, + { name: "map-marker-minus-outline", hex: "F12F9", version: "4.8.95" }, + { name: "map-marker-multiple", hex: "F0350", version: "1.5.54" }, + { name: "map-marker-multiple-outline", hex: "F1277", version: "4.7.95" }, + { name: "map-marker-off", hex: "F0351", version: "1.5.54" }, + { name: "map-marker-off-outline", hex: "F12FD", version: "4.8.95" }, + { name: "map-marker-outline", hex: "F07D9", version: "2.0.46" }, + { name: "map-marker-path", hex: "F0D20", version: "3.3.92" }, + { name: "map-marker-plus", hex: "F0651", version: "1.6.50" }, + { name: "map-marker-plus-outline", hex: "F12F8", version: "4.8.95" }, + { name: "map-marker-question", hex: "F0F07", version: "3.8.95" }, + { name: "map-marker-question-outline", hex: "F0F08", version: "3.8.95" }, + { name: "map-marker-radius", hex: "F0352", version: "1.5.54" }, + { name: "map-marker-radius-outline", hex: "F12FC", version: "4.8.95" }, + { name: "map-marker-remove", hex: "F0F09", version: "3.8.95" }, + { name: "map-marker-remove-outline", hex: "F12FA", version: "4.8.95" }, + { name: "map-marker-remove-variant", hex: "F0F0A", version: "3.8.95" }, + { name: "map-marker-right", hex: "F12DC", version: "4.8.95" }, + { name: "map-marker-right-outline", hex: "F12DE", version: "4.8.95" }, + { name: "map-marker-up", hex: "F1103", version: "4.3.95" }, + { name: "map-minus", hex: "F0981", version: "2.4.85" }, + { name: "map-outline", hex: "F0982", version: "2.4.85" }, + { name: "map-plus", hex: "F0983", version: "2.4.85" }, + { name: "map-search", hex: "F0984", version: "2.4.85" }, + { name: "map-search-outline", hex: "F0985", version: "2.4.85" }, + { name: "mapbox", hex: "F0BAA", version: "3.0.39" }, + { name: "margin", hex: "F0353", version: "1.5.54" }, + { name: "marker", hex: "F0652", version: "1.6.50" }, + { name: "marker-cancel", hex: "F0DD9", version: "3.5.94" }, + { name: "marker-check", hex: "F0355", version: "1.5.54" }, + { name: "mastodon", hex: "F0AD1", version: "2.7.94" }, + { name: "material-design", hex: "F0986", version: "2.4.85" }, + { name: "material-ui", hex: "F0357", version: "1.5.54" }, + { name: "math-compass", hex: "F0358", version: "1.5.54" }, + { name: "math-cos", hex: "F0C96", version: "3.2.89" }, + { name: "math-integral", hex: "F0FC8", version: "4.0.96" }, + { name: "math-integral-box", hex: "F0FC9", version: "4.0.96" }, + { name: "math-log", hex: "F1085", version: "4.2.95" }, + { name: "math-norm", hex: "F0FCA", version: "4.0.96" }, + { name: "math-norm-box", hex: "F0FCB", version: "4.0.96" }, + { name: "math-sin", hex: "F0C97", version: "3.2.89" }, + { name: "math-tan", hex: "F0C98", version: "3.2.89" }, + { name: "matrix", hex: "F0628", version: "1.6.50" }, + { name: "medal", hex: "F0987", version: "2.4.85" }, + { name: "medal-outline", hex: "F1326", version: "4.9.95" }, + { name: "medical-bag", hex: "F06EF", version: "1.8.36" }, + { name: "meditation", hex: "F117B", version: "4.4.95" }, + { name: "memory", hex: "F035B", version: "1.5.54" }, + { name: "menu", hex: "F035C", version: "1.5.54" }, + { name: "menu-down", hex: "F035D", version: "1.5.54" }, + { name: "menu-down-outline", hex: "F06B6", version: "1.7.22" }, + { name: "menu-left", hex: "F035E", version: "1.5.54" }, + { name: "menu-left-outline", hex: "F0A02", version: "2.5.94" }, + { name: "menu-open", hex: "F0BAB", version: "3.0.39" }, + { name: "menu-right", hex: "F035F", version: "1.5.54" }, + { name: "menu-right-outline", hex: "F0A03", version: "2.5.94" }, + { name: "menu-swap", hex: "F0A64", version: "2.6.95" }, + { name: "menu-swap-outline", hex: "F0A65", version: "2.6.95" }, + { name: "menu-up", hex: "F0360", version: "1.5.54" }, + { name: "menu-up-outline", hex: "F06B7", version: "1.7.22" }, + { name: "merge", hex: "F0F5C", version: "3.9.97" }, + { name: "message", hex: "F0361", version: "1.5.54" }, + { name: "message-alert", hex: "F0362", version: "1.5.54" }, + { name: "message-alert-outline", hex: "F0A04", version: "2.5.94" }, + { name: "message-arrow-left", hex: "F12F2", version: "4.8.95" }, + { name: "message-arrow-left-outline", hex: "F12F3", version: "4.8.95" }, + { name: "message-arrow-right", hex: "F12F4", version: "4.8.95" }, + { name: "message-arrow-right-outline", hex: "F12F5", version: "4.8.95" }, + { name: "message-bulleted", hex: "F06A2", version: "1.7.12" }, + { name: "message-bulleted-off", hex: "F06A3", version: "1.7.12" }, + { name: "message-cog", hex: "F06F1", version: "1.8.36" }, + { name: "message-cog-outline", hex: "F1172", version: "4.4.95" }, + { name: "message-draw", hex: "F0363", version: "1.5.54" }, + { name: "message-image", hex: "F0364", version: "1.5.54" }, + { name: "message-image-outline", hex: "F116C", version: "4.4.95" }, + { name: "message-lock", hex: "F0FCC", version: "4.0.96" }, + { name: "message-lock-outline", hex: "F116D", version: "4.4.95" }, + { name: "message-minus", hex: "F116E", version: "4.4.95" }, + { name: "message-minus-outline", hex: "F116F", version: "4.4.95" }, + { name: "message-outline", hex: "F0365", version: "1.5.54" }, + { name: "message-plus", hex: "F0653", version: "1.6.50" }, + { name: "message-plus-outline", hex: "F10BB", version: "4.2.95" }, + { name: "message-processing", hex: "F0366", version: "1.5.54" }, + { name: "message-processing-outline", hex: "F1170", version: "4.4.95" }, + { name: "message-reply", hex: "F0367", version: "1.5.54" }, + { name: "message-reply-text", hex: "F0368", version: "1.5.54" }, + { name: "message-settings", hex: "F06F0", version: "1.8.36" }, + { name: "message-settings-outline", hex: "F1171", version: "4.4.95" }, + { name: "message-text", hex: "F0369", version: "1.5.54" }, + { name: "message-text-clock", hex: "F1173", version: "4.4.95" }, + { name: "message-text-clock-outline", hex: "F1174", version: "4.4.95" }, + { name: "message-text-lock", hex: "F0FCD", version: "4.0.96" }, + { name: "message-text-lock-outline", hex: "F1175", version: "4.4.95" }, + { name: "message-text-outline", hex: "F036A", version: "1.5.54" }, + { name: "message-video", hex: "F036B", version: "1.5.54" }, + { name: "meteor", hex: "F0629", version: "1.6.50" }, + { name: "metronome", hex: "F07DA", version: "2.0.46" }, + { name: "metronome-tick", hex: "F07DB", version: "2.0.46" }, + { name: "micro-sd", hex: "F07DC", version: "2.0.46" }, + { name: "microphone", hex: "F036C", version: "1.5.54" }, + { name: "microphone-minus", hex: "F08B3", version: "2.2.43" }, + { name: "microphone-off", hex: "F036D", version: "1.5.54" }, + { name: "microphone-outline", hex: "F036E", version: "1.5.54" }, + { name: "microphone-plus", hex: "F08B4", version: "2.2.43" }, + { name: "microphone-settings", hex: "F036F", version: "1.5.54" }, + { name: "microphone-variant", hex: "F0370", version: "1.5.54" }, + { name: "microphone-variant-off", hex: "F0371", version: "1.5.54" }, + { name: "microscope", hex: "F0654", version: "1.6.50" }, + { name: "microsoft", hex: "F0372", version: "1.5.54" }, + { name: "microsoft-access", hex: "F138E", version: "5.0.45" }, + { name: "microsoft-azure", hex: "F0805", version: "2.1.19" }, + { name: "microsoft-azure-devops", hex: "F0FD5", version: "4.2.95" }, + { name: "microsoft-bing", hex: "F00A4", version: "1.5.54" }, + { name: "microsoft-dynamics-365", hex: "F0988", version: "2.4.85" }, + { name: "microsoft-edge", hex: "F01E9", version: "1.5.54" }, + { name: "microsoft-edge-legacy", hex: "F1250", version: "4.6.95" }, + { name: "microsoft-excel", hex: "F138F", version: "5.0.45" }, + { name: "microsoft-internet-explorer", hex: "F0300", version: "1.5.54" }, + { name: "microsoft-office", hex: "F03C6", version: "1.5.54" }, + { name: "microsoft-onedrive", hex: "F03CA", version: "1.5.54" }, + { name: "microsoft-onenote", hex: "F0747", version: "1.9.32" }, + { name: "microsoft-outlook", hex: "F0D22", version: "3.3.92" }, + { name: "microsoft-powerpoint", hex: "F1390", version: "5.0.45" }, + { name: "microsoft-sharepoint", hex: "F1391", version: "5.0.45" }, + { name: "microsoft-teams", hex: "F02BB", version: "1.5.54" }, + { name: "microsoft-visual-studio", hex: "F0610", version: "1.5.54" }, + { name: "microsoft-visual-studio-code", hex: "F0A1E", version: "2.5.94" }, + { name: "microsoft-windows", hex: "F05B3", version: "1.5.54" }, + { name: "microsoft-windows-classic", hex: "F0A21", version: "2.5.94" }, + { name: "microsoft-word", hex: "F1392", version: "5.0.45" }, + { name: "microsoft-xbox", hex: "F05B9", version: "1.5.54" }, + { name: "microsoft-xbox-controller", hex: "F05BA", version: "1.5.54" }, + { name: "microsoft-xbox-controller-battery-alert", hex: "F074B", version: "1.9.32" }, + { name: "microsoft-xbox-controller-battery-charging", hex: "F0A22", version: "2.5.94" }, + { name: "microsoft-xbox-controller-battery-empty", hex: "F074C", version: "1.9.32" }, + { name: "microsoft-xbox-controller-battery-full", hex: "F074D", version: "1.9.32" }, + { name: "microsoft-xbox-controller-battery-low", hex: "F074E", version: "1.9.32" }, + { name: "microsoft-xbox-controller-battery-medium", hex: "F074F", version: "1.9.32" }, + { name: "microsoft-xbox-controller-battery-unknown", hex: "F0750", version: "1.9.32" }, + { name: "microsoft-xbox-controller-menu", hex: "F0E6F", version: "3.6.95" }, + { name: "microsoft-xbox-controller-off", hex: "F05BB", version: "1.5.54" }, + { name: "microsoft-xbox-controller-view", hex: "F0E70", version: "3.6.95" }, + { name: "microsoft-yammer", hex: "F0789", version: "1.9.32" }, + { name: "microwave", hex: "F0C99", version: "3.2.89" }, + { name: "middleware", hex: "F0F5D", version: "3.9.97" }, + { name: "middleware-outline", hex: "F0F5E", version: "3.9.97" }, + { name: "midi", hex: "F08F1", version: "2.3.50" }, + { name: "midi-port", hex: "F08F2", version: "2.3.50" }, + { name: "mine", hex: "F0DDA", version: "3.5.94" }, + { name: "minecraft", hex: "F0373", version: "1.5.54" }, + { name: "mini-sd", hex: "F0A05", version: "2.5.94" }, + { name: "minidisc", hex: "F0A06", version: "2.5.94" }, + { name: "minus", hex: "F0374", version: "1.5.54" }, + { name: "minus-box", hex: "F0375", version: "1.5.54" }, + { name: "minus-box-multiple", hex: "F1141", version: "4.4.95" }, + { name: "minus-box-multiple-outline", hex: "F1142", version: "4.4.95" }, + { name: "minus-box-outline", hex: "F06F2", version: "1.8.36" }, + { name: "minus-circle", hex: "F0376", version: "1.5.54" }, + { name: "minus-circle-multiple", hex: "F035A", version: "1.5.54" }, + { name: "minus-circle-multiple-outline", hex: "F0AD3", version: "2.7.94" }, + { name: "minus-circle-outline", hex: "F0377", version: "1.5.54" }, + { name: "minus-network", hex: "F0378", version: "1.5.54" }, + { name: "minus-network-outline", hex: "F0C9A", version: "3.2.89" }, + { name: "mirror", hex: "F11FD", version: "4.6.95" }, + { name: "mixed-martial-arts", hex: "F0D8F", version: "3.4.93" }, + { name: "mixed-reality", hex: "F087F", version: "2.1.99" }, + { name: "mixer", hex: "F07DD", version: "2.0.46" }, + { name: "molecule", hex: "F0BAC", version: "3.0.39" }, + { name: "molecule-co", hex: "F12FE", version: "4.8.95" }, + { name: "molecule-co2", hex: "F07E4", version: "2.0.46" }, + { name: "monitor", hex: "F0379", version: "1.5.54" }, + { name: "monitor-cellphone", hex: "F0989", version: "2.4.85" }, + { name: "monitor-cellphone-star", hex: "F098A", version: "2.4.85" }, + { name: "monitor-clean", hex: "F1104", version: "4.3.95" }, + { name: "monitor-dashboard", hex: "F0A07", version: "2.5.94" }, + { name: "monitor-edit", hex: "F12C6", version: "4.8.95" }, + { name: "monitor-eye", hex: "F13B4", version: "5.0.45" }, + { name: "monitor-lock", hex: "F0DDB", version: "3.5.94" }, + { name: "monitor-multiple", hex: "F037A", version: "1.5.54" }, + { name: "monitor-off", hex: "F0D90", version: "3.4.93" }, + { name: "monitor-screenshot", hex: "F0E51", version: "3.6.95" }, + { name: "monitor-speaker", hex: "F0F5F", version: "3.9.97" }, + { name: "monitor-speaker-off", hex: "F0F60", version: "3.9.97" }, + { name: "monitor-star", hex: "F0DDC", version: "3.5.94" }, + { name: "moon-first-quarter", hex: "F0F61", version: "3.9.97" }, + { name: "moon-full", hex: "F0F62", version: "3.9.97" }, + { name: "moon-last-quarter", hex: "F0F63", version: "3.9.97" }, + { name: "moon-new", hex: "F0F64", version: "3.9.97" }, + { name: "moon-waning-crescent", hex: "F0F65", version: "3.9.97" }, + { name: "moon-waning-gibbous", hex: "F0F66", version: "3.9.97" }, + { name: "moon-waxing-crescent", hex: "F0F67", version: "3.9.97" }, + { name: "moon-waxing-gibbous", hex: "F0F68", version: "3.9.97" }, + { name: "moped", hex: "F1086", version: "4.2.95" }, + { name: "more", hex: "F037B", version: "1.5.54" }, + { name: "mother-heart", hex: "F1314", version: "4.8.95" }, + { name: "mother-nurse", hex: "F0D21", version: "3.3.92" }, + { name: "motion-sensor", hex: "F0D91", version: "3.4.93" }, + { name: "motorbike", hex: "F037C", version: "1.5.54" }, + { name: "mouse", hex: "F037D", version: "1.5.54" }, + { name: "mouse-bluetooth", hex: "F098B", version: "2.4.85" }, + { name: "mouse-off", hex: "F037E", version: "1.5.54" }, + { name: "mouse-variant", hex: "F037F", version: "1.5.54" }, + { name: "mouse-variant-off", hex: "F0380", version: "1.5.54" }, + { name: "move-resize", hex: "F0655", version: "1.6.50" }, + { name: "move-resize-variant", hex: "F0656", version: "1.6.50" }, + { name: "movie", hex: "F0381", version: "1.5.54" }, + { name: "movie-edit", hex: "F1122", version: "4.3.95" }, + { name: "movie-edit-outline", hex: "F1123", version: "4.3.95" }, + { name: "movie-filter", hex: "F1124", version: "4.3.95" }, + { name: "movie-filter-outline", hex: "F1125", version: "4.3.95" }, + { name: "movie-open", hex: "F0FCE", version: "4.0.96" }, + { name: "movie-open-outline", hex: "F0FCF", version: "4.0.96" }, + { name: "movie-outline", hex: "F0DDD", version: "3.5.94" }, + { name: "movie-roll", hex: "F07DE", version: "2.0.46" }, + { name: "movie-search", hex: "F11D2", version: "4.5.95" }, + { name: "movie-search-outline", hex: "F11D3", version: "4.5.95" }, + { name: "muffin", hex: "F098C", version: "2.4.85" }, + { name: "multiplication", hex: "F0382", version: "1.5.54" }, + { name: "multiplication-box", hex: "F0383", version: "1.5.54" }, + { name: "mushroom", hex: "F07DF", version: "2.0.46" }, + { name: "mushroom-outline", hex: "F07E0", version: "2.0.46" }, + { name: "music", hex: "F075A", version: "1.9.32" }, + { name: "music-accidental-double-flat", hex: "F0F69", version: "3.9.97" }, + { name: "music-accidental-double-sharp", hex: "F0F6A", version: "3.9.97" }, + { name: "music-accidental-flat", hex: "F0F6B", version: "3.9.97" }, + { name: "music-accidental-natural", hex: "F0F6C", version: "3.9.97" }, + { name: "music-accidental-sharp", hex: "F0F6D", version: "3.9.97" }, + { name: "music-box", hex: "F0384", version: "1.5.54" }, + { name: "music-box-multiple", hex: "F0333", version: "1.5.54" }, + { name: "music-box-multiple-outline", hex: "F0F04", version: "3.8.95" }, + { name: "music-box-outline", hex: "F0385", version: "1.5.54" }, + { name: "music-circle", hex: "F0386", version: "1.5.54" }, + { name: "music-circle-outline", hex: "F0AD4", version: "2.7.94" }, + { name: "music-clef-alto", hex: "F0F6E", version: "3.9.97" }, + { name: "music-clef-bass", hex: "F0F6F", version: "3.9.97" }, + { name: "music-clef-treble", hex: "F0F70", version: "3.9.97" }, + { name: "music-note", hex: "F0387", version: "1.5.54" }, + { name: "music-note-bluetooth", hex: "F05FE", version: "1.5.54" }, + { name: "music-note-bluetooth-off", hex: "F05FF", version: "1.5.54" }, + { name: "music-note-eighth", hex: "F0388", version: "1.5.54" }, + { name: "music-note-eighth-dotted", hex: "F0F71", version: "3.9.97" }, + { name: "music-note-half", hex: "F0389", version: "1.5.54" }, + { name: "music-note-half-dotted", hex: "F0F72", version: "3.9.97" }, + { name: "music-note-off", hex: "F038A", version: "1.5.54" }, + { name: "music-note-off-outline", hex: "F0F73", version: "3.9.97" }, + { name: "music-note-outline", hex: "F0F74", version: "3.9.97" }, + { name: "music-note-plus", hex: "F0DDE", version: "3.5.94" }, + { name: "music-note-quarter", hex: "F038B", version: "1.5.54" }, + { name: "music-note-quarter-dotted", hex: "F0F75", version: "3.9.97" }, + { name: "music-note-sixteenth", hex: "F038C", version: "1.5.54" }, + { name: "music-note-sixteenth-dotted", hex: "F0F76", version: "3.9.97" }, + { name: "music-note-whole", hex: "F038D", version: "1.5.54" }, + { name: "music-note-whole-dotted", hex: "F0F77", version: "3.9.97" }, + { name: "music-off", hex: "F075B", version: "1.9.32" }, + { name: "music-rest-eighth", hex: "F0F78", version: "3.9.97" }, + { name: "music-rest-half", hex: "F0F79", version: "3.9.97" }, + { name: "music-rest-quarter", hex: "F0F7A", version: "3.9.97" }, + { name: "music-rest-sixteenth", hex: "F0F7B", version: "3.9.97" }, + { name: "music-rest-whole", hex: "F0F7C", version: "3.9.97" }, + { name: "nail", hex: "F0DDF", version: "3.5.94" }, + { name: "nas", hex: "F08F3", version: "2.3.50" }, + { name: "nativescript", hex: "F0880", version: "2.1.99" }, + { name: "nature", hex: "F038E", version: "1.5.54" }, + { name: "nature-people", hex: "F038F", version: "1.5.54" }, + { name: "navigation", hex: "F0390", version: "1.5.54" }, + { name: "near-me", hex: "F05CD", version: "1.5.54" }, + { name: "necklace", hex: "F0F0B", version: "3.8.95" }, + { name: "needle", hex: "F0391", version: "1.5.54" }, + { name: "netflix", hex: "F0746", version: "1.9.32" }, + { name: "network", hex: "F06F3", version: "1.8.36" }, + { name: "network-off", hex: "F0C9B", version: "3.2.89" }, + { name: "network-off-outline", hex: "F0C9C", version: "3.2.89" }, + { name: "network-outline", hex: "F0C9D", version: "3.2.89" }, + { name: "network-strength-1", hex: "F08F4", version: "2.3.50" }, + { name: "network-strength-1-alert", hex: "F08F5", version: "2.3.50" }, + { name: "network-strength-2", hex: "F08F6", version: "2.3.50" }, + { name: "network-strength-2-alert", hex: "F08F7", version: "2.3.50" }, + { name: "network-strength-3", hex: "F08F8", version: "2.3.50" }, + { name: "network-strength-3-alert", hex: "F08F9", version: "2.3.50" }, + { name: "network-strength-4", hex: "F08FA", version: "2.3.50" }, + { name: "network-strength-4-alert", hex: "F08FB", version: "2.3.50" }, + { name: "network-strength-off", hex: "F08FC", version: "2.3.50" }, + { name: "network-strength-off-outline", hex: "F08FD", version: "2.3.50" }, + { name: "network-strength-outline", hex: "F08FE", version: "2.3.50" }, + { name: "new-box", hex: "F0394", version: "1.5.54" }, + { name: "newspaper", hex: "F0395", version: "1.5.54" }, + { name: "newspaper-minus", hex: "F0F0C", version: "3.8.95" }, + { name: "newspaper-plus", hex: "F0F0D", version: "3.8.95" }, + { name: "newspaper-variant", hex: "F1001", version: "4.0.96" }, + { name: "newspaper-variant-multiple", hex: "F1002", version: "4.0.96" }, + { name: "newspaper-variant-multiple-outline", hex: "F1003", version: "4.0.96" }, + { name: "newspaper-variant-outline", hex: "F1004", version: "4.0.96" }, + { name: "nfc", hex: "F0396", version: "1.5.54" }, + { name: "nfc-search-variant", hex: "F0E53", version: "3.6.95" }, + { name: "nfc-tap", hex: "F0397", version: "1.5.54" }, + { name: "nfc-variant", hex: "F0398", version: "1.5.54" }, + { name: "nfc-variant-off", hex: "F0E54", version: "3.6.95" }, + { name: "ninja", hex: "F0774", version: "1.9.32" }, + { name: "nintendo-game-boy", hex: "F1393", version: "5.0.45" }, + { name: "nintendo-switch", hex: "F07E1", version: "2.0.46" }, + { name: "nintendo-wii", hex: "F05AB", version: "1.5.54" }, + { name: "nintendo-wiiu", hex: "F072D", version: "1.8.36" }, + { name: "nix", hex: "F1105", version: "4.3.95" }, + { name: "nodejs", hex: "F0399", version: "1.5.54" }, + { name: "noodles", hex: "F117E", version: "4.4.95" }, + { name: "not-equal", hex: "F098D", version: "2.4.85" }, + { name: "not-equal-variant", hex: "F098E", version: "2.4.85" }, + { name: "note", hex: "F039A", version: "1.5.54" }, + { name: "note-multiple", hex: "F06B8", version: "1.7.22" }, + { name: "note-multiple-outline", hex: "F06B9", version: "1.7.22" }, + { name: "note-outline", hex: "F039B", version: "1.5.54" }, + { name: "note-plus", hex: "F039C", version: "1.5.54" }, + { name: "note-plus-outline", hex: "F039D", version: "1.5.54" }, + { name: "note-text", hex: "F039E", version: "1.5.54" }, + { name: "note-text-outline", hex: "F11D7", version: "4.5.95" }, + { name: "notebook", hex: "F082E", version: "2.1.19" }, + { name: "notebook-multiple", hex: "F0E55", version: "3.6.95" }, + { name: "notebook-outline", hex: "F0EBF", version: "3.7.94" }, + { name: "notification-clear-all", hex: "F039F", version: "1.5.54" }, + { name: "npm", hex: "F06F7", version: "1.8.36" }, + { name: "nuke", hex: "F06A4", version: "1.7.12" }, + { name: "null", hex: "F07E2", version: "2.0.46" }, + { name: "numeric", hex: "F03A0", version: "1.5.54" }, + { name: "numeric-0", hex: "F0B39", version: "2.8.94" }, + { name: "numeric-0-box", hex: "F03A1", version: "1.5.54" }, + { name: "numeric-0-box-multiple", hex: "F0F0E", version: "3.8.95" }, + { name: "numeric-0-box-multiple-outline", hex: "F03A2", version: "1.5.54" }, + { name: "numeric-0-box-outline", hex: "F03A3", version: "1.5.54" }, + { name: "numeric-0-circle", hex: "F0C9E", version: "3.2.89" }, + { name: "numeric-0-circle-outline", hex: "F0C9F", version: "3.2.89" }, + { name: "numeric-1", hex: "F0B3A", version: "2.8.94" }, + { name: "numeric-1-box", hex: "F03A4", version: "1.5.54" }, + { name: "numeric-1-box-multiple", hex: "F0F0F", version: "3.8.95" }, + { name: "numeric-1-box-multiple-outline", hex: "F03A5", version: "1.5.54" }, + { name: "numeric-1-box-outline", hex: "F03A6", version: "1.5.54" }, + { name: "numeric-1-circle", hex: "F0CA0", version: "3.2.89" }, + { name: "numeric-1-circle-outline", hex: "F0CA1", version: "3.2.89" }, + { name: "numeric-10", hex: "F0FE9", version: "4.0.96" }, + { name: "numeric-10-box", hex: "F0F7D", version: "3.9.97" }, + { name: "numeric-10-box-multiple", hex: "F0FEA", version: "4.0.96" }, + { name: "numeric-10-box-multiple-outline", hex: "F0FEB", version: "4.0.96" }, + { name: "numeric-10-box-outline", hex: "F0F7E", version: "3.9.97" }, + { name: "numeric-10-circle", hex: "F0FEC", version: "4.0.96" }, + { name: "numeric-10-circle-outline", hex: "F0FED", version: "4.0.96" }, + { name: "numeric-2", hex: "F0B3B", version: "2.8.94" }, + { name: "numeric-2-box", hex: "F03A7", version: "1.5.54" }, + { name: "numeric-2-box-multiple", hex: "F0F10", version: "3.8.95" }, + { name: "numeric-2-box-multiple-outline", hex: "F03A8", version: "1.5.54" }, + { name: "numeric-2-box-outline", hex: "F03A9", version: "1.5.54" }, + { name: "numeric-2-circle", hex: "F0CA2", version: "3.2.89" }, + { name: "numeric-2-circle-outline", hex: "F0CA3", version: "3.2.89" }, + { name: "numeric-3", hex: "F0B3C", version: "2.8.94" }, + { name: "numeric-3-box", hex: "F03AA", version: "1.5.54" }, + { name: "numeric-3-box-multiple", hex: "F0F11", version: "3.8.95" }, + { name: "numeric-3-box-multiple-outline", hex: "F03AB", version: "1.5.54" }, + { name: "numeric-3-box-outline", hex: "F03AC", version: "1.5.54" }, + { name: "numeric-3-circle", hex: "F0CA4", version: "3.2.89" }, + { name: "numeric-3-circle-outline", hex: "F0CA5", version: "3.2.89" }, + { name: "numeric-4", hex: "F0B3D", version: "2.8.94" }, + { name: "numeric-4-box", hex: "F03AD", version: "1.5.54" }, + { name: "numeric-4-box-multiple", hex: "F0F12", version: "3.8.95" }, + { name: "numeric-4-box-multiple-outline", hex: "F03B2", version: "1.5.54" }, + { name: "numeric-4-box-outline", hex: "F03AE", version: "1.5.54" }, + { name: "numeric-4-circle", hex: "F0CA6", version: "3.2.89" }, + { name: "numeric-4-circle-outline", hex: "F0CA7", version: "3.2.89" }, + { name: "numeric-5", hex: "F0B3E", version: "2.8.94" }, + { name: "numeric-5-box", hex: "F03B1", version: "1.5.54" }, + { name: "numeric-5-box-multiple", hex: "F0F13", version: "3.8.95" }, + { name: "numeric-5-box-multiple-outline", hex: "F03AF", version: "1.5.54" }, + { name: "numeric-5-box-outline", hex: "F03B0", version: "1.5.54" }, + { name: "numeric-5-circle", hex: "F0CA8", version: "3.2.89" }, + { name: "numeric-5-circle-outline", hex: "F0CA9", version: "3.2.89" }, + { name: "numeric-6", hex: "F0B3F", version: "2.8.94" }, + { name: "numeric-6-box", hex: "F03B3", version: "1.5.54" }, + { name: "numeric-6-box-multiple", hex: "F0F14", version: "3.8.95" }, + { name: "numeric-6-box-multiple-outline", hex: "F03B4", version: "1.5.54" }, + { name: "numeric-6-box-outline", hex: "F03B5", version: "1.5.54" }, + { name: "numeric-6-circle", hex: "F0CAA", version: "3.2.89" }, + { name: "numeric-6-circle-outline", hex: "F0CAB", version: "3.2.89" }, + { name: "numeric-7", hex: "F0B40", version: "2.8.94" }, + { name: "numeric-7-box", hex: "F03B6", version: "1.5.54" }, + { name: "numeric-7-box-multiple", hex: "F0F15", version: "3.8.95" }, + { name: "numeric-7-box-multiple-outline", hex: "F03B7", version: "1.5.54" }, + { name: "numeric-7-box-outline", hex: "F03B8", version: "1.5.54" }, + { name: "numeric-7-circle", hex: "F0CAC", version: "3.2.89" }, + { name: "numeric-7-circle-outline", hex: "F0CAD", version: "3.2.89" }, + { name: "numeric-8", hex: "F0B41", version: "2.8.94" }, + { name: "numeric-8-box", hex: "F03B9", version: "1.5.54" }, + { name: "numeric-8-box-multiple", hex: "F0F16", version: "3.8.95" }, + { name: "numeric-8-box-multiple-outline", hex: "F03BA", version: "1.5.54" }, + { name: "numeric-8-box-outline", hex: "F03BB", version: "1.5.54" }, + { name: "numeric-8-circle", hex: "F0CAE", version: "3.2.89" }, + { name: "numeric-8-circle-outline", hex: "F0CAF", version: "3.2.89" }, + { name: "numeric-9", hex: "F0B42", version: "2.8.94" }, + { name: "numeric-9-box", hex: "F03BC", version: "1.5.54" }, + { name: "numeric-9-box-multiple", hex: "F0F17", version: "3.8.95" }, + { name: "numeric-9-box-multiple-outline", hex: "F03BD", version: "1.5.54" }, + { name: "numeric-9-box-outline", hex: "F03BE", version: "1.5.54" }, + { name: "numeric-9-circle", hex: "F0CB0", version: "3.2.89" }, + { name: "numeric-9-circle-outline", hex: "F0CB1", version: "3.2.89" }, + { name: "numeric-9-plus", hex: "F0FEE", version: "4.0.96" }, + { name: "numeric-9-plus-box", hex: "F03BF", version: "1.5.54" }, + { name: "numeric-9-plus-box-multiple", hex: "F0F18", version: "3.8.95" }, + { name: "numeric-9-plus-box-multiple-outline", hex: "F03C0", version: "1.5.54" }, + { name: "numeric-9-plus-box-outline", hex: "F03C1", version: "1.5.54" }, + { name: "numeric-9-plus-circle", hex: "F0CB2", version: "3.2.89" }, + { name: "numeric-9-plus-circle-outline", hex: "F0CB3", version: "3.2.89" }, + { name: "numeric-negative-1", hex: "F1052", version: "4.1.95" }, + { name: "nut", hex: "F06F8", version: "1.8.36" }, + { name: "nutrition", hex: "F03C2", version: "1.5.54" }, + { name: "nuxt", hex: "F1106", version: "4.3.95" }, + { name: "oar", hex: "F067C", version: "1.7.12" }, + { name: "ocarina", hex: "F0DE0", version: "3.5.94" }, + { name: "oci", hex: "F12E9", version: "4.8.95" }, + { name: "ocr", hex: "F113A", version: "4.4.95" }, + { name: "octagon", hex: "F03C3", version: "1.5.54" }, + { name: "octagon-outline", hex: "F03C4", version: "1.5.54" }, + { name: "octagram", hex: "F06F9", version: "1.8.36" }, + { name: "octagram-outline", hex: "F0775", version: "1.9.32" }, + { name: "odnoklassniki", hex: "F03C5", version: "1.5.54" }, + { name: "offer", hex: "F121B", version: "4.6.95" }, + { name: "office-building", hex: "F0991", version: "2.4.85" }, + { name: "oil", hex: "F03C7", version: "1.5.54" }, + { name: "oil-lamp", hex: "F0F19", version: "3.8.95" }, + { name: "oil-level", hex: "F1053", version: "4.1.95" }, + { name: "oil-temperature", hex: "F0FF8", version: "4.0.96" }, + { name: "omega", hex: "F03C9", version: "1.5.54" }, + { name: "one-up", hex: "F0BAD", version: "3.0.39" }, + { name: "onepassword", hex: "F0881", version: "2.1.99" }, + { name: "opacity", hex: "F05CC", version: "1.5.54" }, + { name: "open-in-app", hex: "F03CB", version: "1.5.54" }, + { name: "open-in-new", hex: "F03CC", version: "1.5.54" }, + { name: "open-source-initiative", hex: "F0BAE", version: "3.0.39" }, + { name: "openid", hex: "F03CD", version: "1.5.54" }, + { name: "opera", hex: "F03CE", version: "1.5.54" }, + { name: "orbit", hex: "F0018", version: "1.5.54" }, + { name: "order-alphabetical-ascending", hex: "F020D", version: "1.5.54" }, + { name: "order-alphabetical-descending", hex: "F0D07", version: "3.3.92" }, + { name: "order-bool-ascending", hex: "F02BE", version: "1.5.54" }, + { name: "order-bool-ascending-variant", hex: "F098F", version: "2.4.85" }, + { name: "order-bool-descending", hex: "F1384", version: "5.0.45" }, + { name: "order-bool-descending-variant", hex: "F0990", version: "2.4.85" }, + { name: "order-numeric-ascending", hex: "F0545", version: "1.5.54" }, + { name: "order-numeric-descending", hex: "F0546", version: "1.5.54" }, + { name: "origin", hex: "F0B43", version: "2.8.94" }, + { name: "ornament", hex: "F03CF", version: "1.5.54" }, + { name: "ornament-variant", hex: "F03D0", version: "1.5.54" }, + { name: "outdoor-lamp", hex: "F1054", version: "4.1.95" }, + { name: "overscan", hex: "F1005", version: "4.0.96" }, + { name: "owl", hex: "F03D2", version: "1.5.54" }, + { name: "pac-man", hex: "F0BAF", version: "3.0.39" }, + { name: "package", hex: "F03D3", version: "1.5.54" }, + { name: "package-down", hex: "F03D4", version: "1.5.54" }, + { name: "package-up", hex: "F03D5", version: "1.5.54" }, + { name: "package-variant", hex: "F03D6", version: "1.5.54" }, + { name: "package-variant-closed", hex: "F03D7", version: "1.5.54" }, + { name: "page-first", hex: "F0600", version: "1.5.54" }, + { name: "page-last", hex: "F0601", version: "1.5.54" }, + { name: "page-layout-body", hex: "F06FA", version: "1.8.36" }, + { name: "page-layout-footer", hex: "F06FB", version: "1.8.36" }, + { name: "page-layout-header", hex: "F06FC", version: "1.8.36" }, + { name: "page-layout-header-footer", hex: "F0F7F", version: "3.9.97" }, + { name: "page-layout-sidebar-left", hex: "F06FD", version: "1.8.36" }, + { name: "page-layout-sidebar-right", hex: "F06FE", version: "1.8.36" }, + { name: "page-next", hex: "F0BB0", version: "3.0.39" }, + { name: "page-next-outline", hex: "F0BB1", version: "3.0.39" }, + { name: "page-previous", hex: "F0BB2", version: "3.0.39" }, + { name: "page-previous-outline", hex: "F0BB3", version: "3.0.39" }, + { name: "palette", hex: "F03D8", version: "1.5.54" }, + { name: "palette-advanced", hex: "F03D9", version: "1.5.54" }, + { name: "palette-outline", hex: "F0E0C", version: "3.5.95" }, + { name: "palette-swatch", hex: "F08B5", version: "2.2.43" }, + { name: "palette-swatch-outline", hex: "F135C", version: "4.9.95" }, + { name: "palm-tree", hex: "F1055", version: "4.1.95" }, + { name: "pan", hex: "F0BB4", version: "3.0.39" }, + { name: "pan-bottom-left", hex: "F0BB5", version: "3.0.39" }, + { name: "pan-bottom-right", hex: "F0BB6", version: "3.0.39" }, + { name: "pan-down", hex: "F0BB7", version: "3.0.39" }, + { name: "pan-horizontal", hex: "F0BB8", version: "3.0.39" }, + { name: "pan-left", hex: "F0BB9", version: "3.0.39" }, + { name: "pan-right", hex: "F0BBA", version: "3.0.39" }, + { name: "pan-top-left", hex: "F0BBB", version: "3.0.39" }, + { name: "pan-top-right", hex: "F0BBC", version: "3.0.39" }, + { name: "pan-up", hex: "F0BBD", version: "3.0.39" }, + { name: "pan-vertical", hex: "F0BBE", version: "3.0.39" }, + { name: "panda", hex: "F03DA", version: "1.5.54" }, + { name: "pandora", hex: "F03DB", version: "1.5.54" }, + { name: "panorama", hex: "F03DC", version: "1.5.54" }, + { name: "panorama-fisheye", hex: "F03DD", version: "1.5.54" }, + { name: "panorama-horizontal", hex: "F03DE", version: "1.5.54" }, + { name: "panorama-vertical", hex: "F03DF", version: "1.5.54" }, + { name: "panorama-wide-angle", hex: "F03E0", version: "1.5.54" }, + { name: "paper-cut-vertical", hex: "F03E1", version: "1.5.54" }, + { name: "paper-roll", hex: "F1157", version: "4.4.95" }, + { name: "paper-roll-outline", hex: "F1158", version: "4.4.95" }, + { name: "paperclip", hex: "F03E2", version: "1.5.54" }, + { name: "parachute", hex: "F0CB4", version: "3.2.89" }, + { name: "parachute-outline", hex: "F0CB5", version: "3.2.89" }, + { name: "parking", hex: "F03E3", version: "1.5.54" }, + { name: "party-popper", hex: "F1056", version: "4.1.95" }, + { name: "passport", hex: "F07E3", version: "2.0.46" }, + { name: "passport-biometric", hex: "F0DE1", version: "3.5.94" }, + { name: "pasta", hex: "F1160", version: "4.4.95" }, + { name: "patio-heater", hex: "F0F80", version: "3.9.97" }, + { name: "patreon", hex: "F0882", version: "2.1.99" }, + { name: "pause", hex: "F03E4", version: "1.5.54" }, + { name: "pause-circle", hex: "F03E5", version: "1.5.54" }, + { name: "pause-circle-outline", hex: "F03E6", version: "1.5.54" }, + { name: "pause-octagon", hex: "F03E7", version: "1.5.54" }, + { name: "pause-octagon-outline", hex: "F03E8", version: "1.5.54" }, + { name: "paw", hex: "F03E9", version: "1.5.54" }, + { name: "paw-off", hex: "F0657", version: "1.6.50" }, + { name: "pdf-box", hex: "F0E56", version: "3.6.95" }, + { name: "peace", hex: "F0884", version: "2.1.99" }, + { name: "peanut", hex: "F0FFC", version: "4.0.96" }, + { name: "peanut-off", hex: "F0FFD", version: "4.0.96" }, + { name: "peanut-off-outline", hex: "F0FFF", version: "4.0.96" }, + { name: "peanut-outline", hex: "F0FFE", version: "4.0.96" }, + { name: "pen", hex: "F03EA", version: "1.5.54" }, + { name: "pen-lock", hex: "F0DE2", version: "3.5.94" }, + { name: "pen-minus", hex: "F0DE3", version: "3.5.94" }, + { name: "pen-off", hex: "F0DE4", version: "3.5.94" }, + { name: "pen-plus", hex: "F0DE5", version: "3.5.94" }, + { name: "pen-remove", hex: "F0DE6", version: "3.5.94" }, + { name: "pencil", hex: "F03EB", version: "1.5.54" }, + { name: "pencil-box", hex: "F03EC", version: "1.5.54" }, + { name: "pencil-box-multiple", hex: "F1144", version: "4.4.95" }, + { name: "pencil-box-multiple-outline", hex: "F1145", version: "4.4.95" }, + { name: "pencil-box-outline", hex: "F03ED", version: "1.5.54" }, + { name: "pencil-circle", hex: "F06FF", version: "1.8.36" }, + { name: "pencil-circle-outline", hex: "F0776", version: "1.9.32" }, + { name: "pencil-lock", hex: "F03EE", version: "1.5.54" }, + { name: "pencil-lock-outline", hex: "F0DE7", version: "3.5.94" }, + { name: "pencil-minus", hex: "F0DE8", version: "3.5.94" }, + { name: "pencil-minus-outline", hex: "F0DE9", version: "3.5.94" }, + { name: "pencil-off", hex: "F03EF", version: "1.5.54" }, + { name: "pencil-off-outline", hex: "F0DEA", version: "3.5.94" }, + { name: "pencil-outline", hex: "F0CB6", version: "3.2.89" }, + { name: "pencil-plus", hex: "F0DEB", version: "3.5.94" }, + { name: "pencil-plus-outline", hex: "F0DEC", version: "3.5.94" }, + { name: "pencil-remove", hex: "F0DED", version: "3.5.94" }, + { name: "pencil-remove-outline", hex: "F0DEE", version: "3.5.94" }, + { name: "pencil-ruler", hex: "F1353", version: "4.9.95" }, + { name: "penguin", hex: "F0EC0", version: "3.7.94" }, + { name: "pentagon", hex: "F0701", version: "1.8.36" }, + { name: "pentagon-outline", hex: "F0700", version: "1.8.36" }, + { name: "percent", hex: "F03F0", version: "1.5.54" }, + { name: "percent-outline", hex: "F1278", version: "4.7.95" }, + { name: "periodic-table", hex: "F08B6", version: "2.2.43" }, + { name: "perspective-less", hex: "F0D23", version: "3.3.92" }, + { name: "perspective-more", hex: "F0D24", version: "3.3.92" }, + { name: "pharmacy", hex: "F03F1", version: "1.5.54" }, + { name: "phone", hex: "F03F2", version: "1.5.54" }, + { name: "phone-alert", hex: "F0F1A", version: "3.8.95" }, + { name: "phone-alert-outline", hex: "F118E", version: "4.5.95" }, + { name: "phone-bluetooth", hex: "F03F3", version: "1.5.54" }, + { name: "phone-bluetooth-outline", hex: "F118F", version: "4.5.95" }, + { name: "phone-cancel", hex: "F10BC", version: "4.2.95" }, + { name: "phone-cancel-outline", hex: "F1190", version: "4.5.95" }, + { name: "phone-check", hex: "F11A9", version: "4.5.95" }, + { name: "phone-check-outline", hex: "F11AA", version: "4.5.95" }, + { name: "phone-classic", hex: "F0602", version: "1.5.54" }, + { name: "phone-classic-off", hex: "F1279", version: "4.7.95" }, + { name: "phone-forward", hex: "F03F4", version: "1.5.54" }, + { name: "phone-forward-outline", hex: "F1191", version: "4.5.95" }, + { name: "phone-hangup", hex: "F03F5", version: "1.5.54" }, + { name: "phone-hangup-outline", hex: "F1192", version: "4.5.95" }, + { name: "phone-in-talk", hex: "F03F6", version: "1.5.54" }, + { name: "phone-in-talk-outline", hex: "F1182", version: "4.4.95" }, + { name: "phone-incoming", hex: "F03F7", version: "1.5.54" }, + { name: "phone-incoming-outline", hex: "F1193", version: "4.5.95" }, + { name: "phone-lock", hex: "F03F8", version: "1.5.54" }, + { name: "phone-lock-outline", hex: "F1194", version: "4.5.95" }, + { name: "phone-log", hex: "F03F9", version: "1.5.54" }, + { name: "phone-log-outline", hex: "F1195", version: "4.5.95" }, + { name: "phone-message", hex: "F1196", version: "4.5.95" }, + { name: "phone-message-outline", hex: "F1197", version: "4.5.95" }, + { name: "phone-minus", hex: "F0658", version: "1.6.50" }, + { name: "phone-minus-outline", hex: "F1198", version: "4.5.95" }, + { name: "phone-missed", hex: "F03FA", version: "1.5.54" }, + { name: "phone-missed-outline", hex: "F11A5", version: "4.5.95" }, + { name: "phone-off", hex: "F0DEF", version: "3.5.94" }, + { name: "phone-off-outline", hex: "F11A6", version: "4.5.95" }, + { name: "phone-outgoing", hex: "F03FB", version: "1.5.54" }, + { name: "phone-outgoing-outline", hex: "F1199", version: "4.5.95" }, + { name: "phone-outline", hex: "F0DF0", version: "3.5.94" }, + { name: "phone-paused", hex: "F03FC", version: "1.5.54" }, + { name: "phone-paused-outline", hex: "F119A", version: "4.5.95" }, + { name: "phone-plus", hex: "F0659", version: "1.6.50" }, + { name: "phone-plus-outline", hex: "F119B", version: "4.5.95" }, + { name: "phone-return", hex: "F082F", version: "2.1.19" }, + { name: "phone-return-outline", hex: "F119C", version: "4.5.95" }, + { name: "phone-ring", hex: "F11AB", version: "4.5.95" }, + { name: "phone-ring-outline", hex: "F11AC", version: "4.5.95" }, + { name: "phone-rotate-landscape", hex: "F0885", version: "2.1.99" }, + { name: "phone-rotate-portrait", hex: "F0886", version: "2.1.99" }, + { name: "phone-settings", hex: "F03FD", version: "1.5.54" }, + { name: "phone-settings-outline", hex: "F119D", version: "4.5.95" }, + { name: "phone-voip", hex: "F03FE", version: "1.5.54" }, + { name: "pi", hex: "F03FF", version: "1.5.54" }, + { name: "pi-box", hex: "F0400", version: "1.5.54" }, + { name: "pi-hole", hex: "F0DF1", version: "3.5.94" }, + { name: "piano", hex: "F067D", version: "1.7.12" }, + { name: "pickaxe", hex: "F08B7", version: "2.2.43" }, + { name: "picture-in-picture-bottom-right", hex: "F0E57", version: "3.6.95" }, + { name: "picture-in-picture-bottom-right-outline", hex: "F0E58", version: "3.6.95" }, + { name: "picture-in-picture-top-right", hex: "F0E59", version: "3.6.95" }, + { name: "picture-in-picture-top-right-outline", hex: "F0E5A", version: "3.6.95" }, + { name: "pier", hex: "F0887", version: "2.1.99" }, + { name: "pier-crane", hex: "F0888", version: "2.1.99" }, + { name: "pig", hex: "F0401", version: "1.5.54" }, + { name: "pig-variant", hex: "F1006", version: "4.0.96" }, + { name: "piggy-bank", hex: "F1007", version: "4.0.96" }, + { name: "pill", hex: "F0402", version: "1.5.54" }, + { name: "pillar", hex: "F0702", version: "1.8.36" }, + { name: "pin", hex: "F0403", version: "1.5.54" }, + { name: "pin-off", hex: "F0404", version: "1.5.54" }, + { name: "pin-off-outline", hex: "F0930", version: "2.3.54" }, + { name: "pin-outline", hex: "F0931", version: "2.3.54" }, + { name: "pine-tree", hex: "F0405", version: "1.5.54" }, + { name: "pine-tree-box", hex: "F0406", version: "1.5.54" }, + { name: "pinterest", hex: "F0407", version: "1.5.54" }, + { name: "pinwheel", hex: "F0AD5", version: "2.7.94" }, + { name: "pinwheel-outline", hex: "F0AD6", version: "2.7.94" }, + { name: "pipe", hex: "F07E5", version: "2.0.46" }, + { name: "pipe-disconnected", hex: "F07E6", version: "2.0.46" }, + { name: "pipe-leak", hex: "F0889", version: "2.1.99" }, + { name: "pipe-wrench", hex: "F1354", version: "4.9.95" }, + { name: "pirate", hex: "F0A08", version: "2.5.94" }, + { name: "pistol", hex: "F0703", version: "1.8.36" }, + { name: "piston", hex: "F088A", version: "2.1.99" }, + { name: "pizza", hex: "F0409", version: "1.5.54" }, + { name: "play", hex: "F040A", version: "1.5.54" }, + { name: "play-box", hex: "F127A", version: "4.7.95" }, + { name: "play-box-multiple", hex: "F0D19", version: "3.3.92" }, + { name: "play-box-outline", hex: "F040B", version: "1.5.54" }, + { name: "play-circle", hex: "F040C", version: "1.5.54" }, + { name: "play-circle-outline", hex: "F040D", version: "1.5.54" }, + { name: "play-network", hex: "F088B", version: "2.1.99" }, + { name: "play-network-outline", hex: "F0CB7", version: "3.2.89" }, + { name: "play-outline", hex: "F0F1B", version: "3.8.95" }, + { name: "play-pause", hex: "F040E", version: "1.5.54" }, + { name: "play-protected-content", hex: "F040F", version: "1.5.54" }, + { name: "play-speed", hex: "F08FF", version: "2.3.50" }, + { name: "playlist-check", hex: "F05C7", version: "1.5.54" }, + { name: "playlist-edit", hex: "F0900", version: "2.3.50" }, + { name: "playlist-minus", hex: "F0410", version: "1.5.54" }, + { name: "playlist-music", hex: "F0CB8", version: "3.2.89" }, + { name: "playlist-music-outline", hex: "F0CB9", version: "3.2.89" }, + { name: "playlist-play", hex: "F0411", version: "1.5.54" }, + { name: "playlist-plus", hex: "F0412", version: "1.5.54" }, + { name: "playlist-remove", hex: "F0413", version: "1.5.54" }, + { name: "playlist-star", hex: "F0DF2", version: "3.5.94" }, + { name: "plex", hex: "F06BA", version: "1.7.22" }, + { name: "plus", hex: "F0415", version: "1.5.54" }, + { name: "plus-box", hex: "F0416", version: "1.5.54" }, + { name: "plus-box-multiple", hex: "F0334", version: "1.5.54" }, + { name: "plus-box-multiple-outline", hex: "F1143", version: "4.4.95" }, + { name: "plus-box-outline", hex: "F0704", version: "1.8.36" }, + { name: "plus-circle", hex: "F0417", version: "1.5.54" }, + { name: "plus-circle-multiple", hex: "F034C", version: "1.5.54" }, + { name: "plus-circle-multiple-outline", hex: "F0418", version: "1.5.54" }, + { name: "plus-circle-outline", hex: "F0419", version: "1.5.54" }, + { name: "plus-minus", hex: "F0992", version: "2.4.85" }, + { name: "plus-minus-box", hex: "F0993", version: "2.4.85" }, + { name: "plus-network", hex: "F041A", version: "1.5.54" }, + { name: "plus-network-outline", hex: "F0CBA", version: "3.2.89" }, + { name: "plus-one", hex: "F041B", version: "1.5.54" }, + { name: "plus-outline", hex: "F0705", version: "1.8.36" }, + { name: "plus-thick", hex: "F11EC", version: "4.5.95" }, + { name: "podcast", hex: "F0994", version: "2.4.85" }, + { name: "podium", hex: "F0D25", version: "3.3.92" }, + { name: "podium-bronze", hex: "F0D26", version: "3.3.92" }, + { name: "podium-gold", hex: "F0D27", version: "3.3.92" }, + { name: "podium-silver", hex: "F0D28", version: "3.3.92" }, + { name: "point-of-sale", hex: "F0D92", version: "3.4.93" }, + { name: "pokeball", hex: "F041D", version: "1.5.54" }, + { name: "pokemon-go", hex: "F0A09", version: "2.5.94" }, + { name: "poker-chip", hex: "F0830", version: "2.1.19" }, + { name: "polaroid", hex: "F041E", version: "1.5.54" }, + { name: "police-badge", hex: "F1167", version: "4.4.95" }, + { name: "police-badge-outline", hex: "F1168", version: "4.4.95" }, + { name: "poll", hex: "F041F", version: "1.5.54" }, + { name: "poll-box", hex: "F0420", version: "1.5.54" }, + { name: "poll-box-outline", hex: "F127B", version: "4.7.95" }, + { name: "polymer", hex: "F0421", version: "1.5.54" }, + { name: "pool", hex: "F0606", version: "1.5.54" }, + { name: "popcorn", hex: "F0422", version: "1.5.54" }, + { name: "post", hex: "F1008", version: "4.0.96" }, + { name: "post-outline", hex: "F1009", version: "4.0.96" }, + { name: "postage-stamp", hex: "F0CBB", version: "3.2.89" }, + { name: "pot", hex: "F02E5", version: "1.5.54" }, + { name: "pot-mix", hex: "F065B", version: "1.6.50" }, + { name: "pot-mix-outline", hex: "F0677", version: "1.7.12" }, + { name: "pot-outline", hex: "F02FF", version: "1.5.54" }, + { name: "pot-steam", hex: "F065A", version: "1.6.50" }, + { name: "pot-steam-outline", hex: "F0326", version: "1.5.54" }, + { name: "pound", hex: "F0423", version: "1.5.54" }, + { name: "pound-box", hex: "F0424", version: "1.5.54" }, + { name: "pound-box-outline", hex: "F117F", version: "4.4.95" }, + { name: "power", hex: "F0425", version: "1.5.54" }, + { name: "power-cycle", hex: "F0901", version: "2.3.50" }, + { name: "power-off", hex: "F0902", version: "2.3.50" }, + { name: "power-on", hex: "F0903", version: "2.3.50" }, + { name: "power-plug", hex: "F06A5", version: "1.7.12" }, + { name: "power-plug-off", hex: "F06A6", version: "1.7.12" }, + { name: "power-settings", hex: "F0426", version: "1.5.54" }, + { name: "power-sleep", hex: "F0904", version: "2.3.50" }, + { name: "power-socket", hex: "F0427", version: "1.5.54" }, + { name: "power-socket-au", hex: "F0905", version: "2.3.50" }, + { name: "power-socket-de", hex: "F1107", version: "4.3.95" }, + { name: "power-socket-eu", hex: "F07E7", version: "2.0.46" }, + { name: "power-socket-fr", hex: "F1108", version: "4.3.95" }, + { name: "power-socket-jp", hex: "F1109", version: "4.3.95" }, + { name: "power-socket-uk", hex: "F07E8", version: "2.0.46" }, + { name: "power-socket-us", hex: "F07E9", version: "2.0.46" }, + { name: "power-standby", hex: "F0906", version: "2.3.50" }, + { name: "powershell", hex: "F0A0A", version: "2.5.94" }, + { name: "prescription", hex: "F0706", version: "1.8.36" }, + { name: "presentation", hex: "F0428", version: "1.5.54" }, + { name: "presentation-play", hex: "F0429", version: "1.5.54" }, + { name: "printer", hex: "F042A", version: "1.5.54" }, + { name: "printer-3d", hex: "F042B", version: "1.5.54" }, + { name: "printer-3d-nozzle", hex: "F0E5B", version: "3.6.95" }, + { name: "printer-3d-nozzle-alert", hex: "F11C0", version: "4.5.95" }, + { name: "printer-3d-nozzle-alert-outline", hex: "F11C1", version: "4.5.95" }, + { name: "printer-3d-nozzle-outline", hex: "F0E5C", version: "3.6.95" }, + { name: "printer-alert", hex: "F042C", version: "1.5.54" }, + { name: "printer-check", hex: "F1146", version: "4.4.95" }, + { name: "printer-off", hex: "F0E5D", version: "3.6.95" }, + { name: "printer-pos", hex: "F1057", version: "4.1.95" }, + { name: "printer-settings", hex: "F0707", version: "1.8.36" }, + { name: "printer-wireless", hex: "F0A0B", version: "2.5.94" }, + { name: "priority-high", hex: "F0603", version: "1.5.54" }, + { name: "priority-low", hex: "F0604", version: "1.5.54" }, + { name: "professional-hexagon", hex: "F042D", version: "1.5.54" }, + { name: "progress-alert", hex: "F0CBC", version: "3.2.89" }, + { name: "progress-check", hex: "F0995", version: "2.4.85" }, + { name: "progress-clock", hex: "F0996", version: "2.4.85" }, + { name: "progress-close", hex: "F110A", version: "4.3.95" }, + { name: "progress-download", hex: "F0997", version: "2.4.85" }, + { name: "progress-upload", hex: "F0998", version: "2.4.85" }, + { name: "progress-wrench", hex: "F0CBD", version: "3.2.89" }, + { name: "projector", hex: "F042E", version: "1.5.54" }, + { name: "projector-screen", hex: "F042F", version: "1.5.54" }, + { name: "propane-tank", hex: "F1357", version: "4.9.95" }, + { name: "propane-tank-outline", hex: "F1358", version: "4.9.95" }, + { name: "protocol", hex: "F0FD8", version: "4.0.96" }, + { name: "publish", hex: "F06A7", version: "1.7.12" }, + { name: "pulse", hex: "F0430", version: "1.5.54" }, + { name: "pumpkin", hex: "F0BBF", version: "3.0.39" }, + { name: "purse", hex: "F0F1C", version: "3.8.95" }, + { name: "purse-outline", hex: "F0F1D", version: "3.8.95" }, + { name: "puzzle", hex: "F0431", version: "1.5.54" }, + { name: "puzzle-outline", hex: "F0A66", version: "2.6.95" }, + { name: "qi", hex: "F0999", version: "2.4.85" }, + { name: "qqchat", hex: "F0605", version: "1.5.54" }, + { name: "qrcode", hex: "F0432", version: "1.5.54" }, + { name: "qrcode-edit", hex: "F08B8", version: "2.2.43" }, + { name: "qrcode-minus", hex: "F118C", version: "4.4.95" }, + { name: "qrcode-plus", hex: "F118B", version: "4.4.95" }, + { name: "qrcode-remove", hex: "F118D", version: "4.4.95" }, + { name: "qrcode-scan", hex: "F0433", version: "1.5.54" }, + { name: "quadcopter", hex: "F0434", version: "1.5.54" }, + { name: "quality-high", hex: "F0435", version: "1.5.54" }, + { name: "quality-low", hex: "F0A0C", version: "2.5.94" }, + { name: "quality-medium", hex: "F0A0D", version: "2.5.94" }, + { name: "quora", hex: "F0D29", version: "3.3.92" }, + { name: "rabbit", hex: "F0907", version: "2.3.50" }, + { name: "racing-helmet", hex: "F0D93", version: "3.4.93" }, + { name: "racquetball", hex: "F0D94", version: "3.4.93" }, + { name: "radar", hex: "F0437", version: "1.5.54" }, + { name: "radiator", hex: "F0438", version: "1.5.54" }, + { name: "radiator-disabled", hex: "F0AD7", version: "2.7.94" }, + { name: "radiator-off", hex: "F0AD8", version: "2.7.94" }, + { name: "radio", hex: "F0439", version: "1.5.54" }, + { name: "radio-am", hex: "F0CBE", version: "3.2.89" }, + { name: "radio-fm", hex: "F0CBF", version: "3.2.89" }, + { name: "radio-handheld", hex: "F043A", version: "1.5.54" }, + { name: "radio-off", hex: "F121C", version: "4.6.95" }, + { name: "radio-tower", hex: "F043B", version: "1.5.54" }, + { name: "radioactive", hex: "F043C", version: "1.5.54" }, + { name: "radioactive-off", hex: "F0EC1", version: "3.7.94" }, + { name: "radiobox-blank", hex: "F043D", version: "1.5.54" }, + { name: "radiobox-marked", hex: "F043E", version: "1.5.54" }, + { name: "radius", hex: "F0CC0", version: "3.2.89" }, + { name: "radius-outline", hex: "F0CC1", version: "3.2.89" }, + { name: "railroad-light", hex: "F0F1E", version: "3.8.95" }, + { name: "raspberry-pi", hex: "F043F", version: "1.5.54" }, + { name: "ray-end", hex: "F0440", version: "1.5.54" }, + { name: "ray-end-arrow", hex: "F0441", version: "1.5.54" }, + { name: "ray-start", hex: "F0442", version: "1.5.54" }, + { name: "ray-start-arrow", hex: "F0443", version: "1.5.54" }, + { name: "ray-start-end", hex: "F0444", version: "1.5.54" }, + { name: "ray-vertex", hex: "F0445", version: "1.5.54" }, + { name: "react", hex: "F0708", version: "1.8.36" }, + { name: "read", hex: "F0447", version: "1.5.54" }, + { name: "receipt", hex: "F0449", version: "1.5.54" }, + { name: "record", hex: "F044A", version: "1.5.54" }, + { name: "record-circle", hex: "F0EC2", version: "3.7.94" }, + { name: "record-circle-outline", hex: "F0EC3", version: "3.7.94" }, + { name: "record-player", hex: "F099A", version: "2.4.85" }, + { name: "record-rec", hex: "F044B", version: "1.5.54" }, + { name: "rectangle", hex: "F0E5E", version: "3.6.95" }, + { name: "rectangle-outline", hex: "F0E5F", version: "3.6.95" }, + { name: "recycle", hex: "F044C", version: "1.5.54" }, + { name: "recycle-variant", hex: "F139D", version: "5.0.45" }, + { name: "reddit", hex: "F044D", version: "1.5.54" }, + { name: "redhat", hex: "F111B", version: "4.3.95" }, + { name: "redo", hex: "F044E", version: "1.5.54" }, + { name: "redo-variant", hex: "F044F", version: "1.5.54" }, + { name: "reflect-horizontal", hex: "F0A0E", version: "2.5.94" }, + { name: "reflect-vertical", hex: "F0A0F", version: "2.5.94" }, + { name: "refresh", hex: "F0450", version: "1.5.54" }, + { name: "refresh-circle", hex: "F1377", version: "4.9.95" }, + { name: "regex", hex: "F0451", version: "1.5.54" }, + { name: "registered-trademark", hex: "F0A67", version: "2.6.95" }, + { name: "relative-scale", hex: "F0452", version: "1.5.54" }, + { name: "reload", hex: "F0453", version: "1.5.54" }, + { name: "reload-alert", hex: "F110B", version: "4.3.95" }, + { name: "reminder", hex: "F088C", version: "2.1.99" }, + { name: "remote", hex: "F0454", version: "1.5.54" }, + { name: "remote-desktop", hex: "F08B9", version: "2.2.43" }, + { name: "remote-off", hex: "F0EC4", version: "3.7.94" }, + { name: "remote-tv", hex: "F0EC5", version: "3.7.94" }, + { name: "remote-tv-off", hex: "F0EC6", version: "3.7.94" }, + { name: "rename-box", hex: "F0455", version: "1.5.54" }, + { name: "reorder-horizontal", hex: "F0688", version: "1.7.12" }, + { name: "reorder-vertical", hex: "F0689", version: "1.7.12" }, + { name: "repeat", hex: "F0456", version: "1.5.54" }, + { name: "repeat-off", hex: "F0457", version: "1.5.54" }, + { name: "repeat-once", hex: "F0458", version: "1.5.54" }, + { name: "replay", hex: "F0459", version: "1.5.54" }, + { name: "reply", hex: "F045A", version: "1.5.54" }, + { name: "reply-all", hex: "F045B", version: "1.5.54" }, + { name: "reply-all-outline", hex: "F0F1F", version: "3.8.95" }, + { name: "reply-circle", hex: "F11AE", version: "4.5.95" }, + { name: "reply-outline", hex: "F0F20", version: "3.8.95" }, + { name: "reproduction", hex: "F045C", version: "1.5.54" }, + { name: "resistor", hex: "F0B44", version: "2.8.94" }, + { name: "resistor-nodes", hex: "F0B45", version: "2.8.94" }, + { name: "resize", hex: "F0A68", version: "2.6.95" }, + { name: "resize-bottom-right", hex: "F045D", version: "1.5.54" }, + { name: "responsive", hex: "F045E", version: "1.5.54" }, + { name: "restart", hex: "F0709", version: "1.8.36" }, + { name: "restart-alert", hex: "F110C", version: "4.3.95" }, + { name: "restart-off", hex: "F0D95", version: "3.4.93" }, + { name: "restore", hex: "F099B", version: "2.4.85" }, + { name: "restore-alert", hex: "F110D", version: "4.3.95" }, + { name: "rewind", hex: "F045F", version: "1.5.54" }, + { name: "rewind-10", hex: "F0D2A", version: "3.3.92" }, + { name: "rewind-30", hex: "F0D96", version: "3.4.93" }, + { name: "rewind-5", hex: "F11F9", version: "4.6.95" }, + { name: "rewind-outline", hex: "F070A", version: "1.8.36" }, + { name: "rhombus", hex: "F070B", version: "1.8.36" }, + { name: "rhombus-medium", hex: "F0A10", version: "2.5.94" }, + { name: "rhombus-outline", hex: "F070C", version: "1.8.36" }, + { name: "rhombus-split", hex: "F0A11", version: "2.5.94" }, + { name: "ribbon", hex: "F0460", version: "1.5.54" }, + { name: "rice", hex: "F07EA", version: "2.0.46" }, + { name: "ring", hex: "F07EB", version: "2.0.46" }, + { name: "rivet", hex: "F0E60", version: "3.6.95" }, + { name: "road", hex: "F0461", version: "1.5.54" }, + { name: "road-variant", hex: "F0462", version: "1.5.54" }, + { name: "robber", hex: "F1058", version: "4.1.95" }, + { name: "robot", hex: "F06A9", version: "1.7.12" }, + { name: "robot-industrial", hex: "F0B46", version: "2.8.94" }, + { name: "robot-mower", hex: "F11F7", version: "4.6.95" }, + { name: "robot-mower-outline", hex: "F11F3", version: "4.5.95" }, + { name: "robot-vacuum", hex: "F070D", version: "1.8.36" }, + { name: "robot-vacuum-variant", hex: "F0908", version: "2.3.50" }, + { name: "rocket", hex: "F0463", version: "1.5.54" }, + { name: "rocket-outline", hex: "F13AF", version: "5.0.45" }, + { name: "rodent", hex: "F1327", version: "4.9.95" }, + { name: "roller-skate", hex: "F0D2B", version: "3.3.92" }, + { name: "roller-skate-off", hex: "F0145", version: "1.5.54" }, + { name: "rollerblade", hex: "F0D2C", version: "3.3.92" }, + { name: "rollerblade-off", hex: "F002E", version: "1.5.54" }, + { name: "rollupjs", hex: "F0BC0", version: "3.0.39" }, + { name: "roman-numeral-1", hex: "F1088", version: "4.2.95" }, + { name: "roman-numeral-10", hex: "F1091", version: "4.2.95" }, + { name: "roman-numeral-2", hex: "F1089", version: "4.2.95" }, + { name: "roman-numeral-3", hex: "F108A", version: "4.2.95" }, + { name: "roman-numeral-4", hex: "F108B", version: "4.2.95" }, + { name: "roman-numeral-5", hex: "F108C", version: "4.2.95" }, + { name: "roman-numeral-6", hex: "F108D", version: "4.2.95" }, + { name: "roman-numeral-7", hex: "F108E", version: "4.2.95" }, + { name: "roman-numeral-8", hex: "F108F", version: "4.2.95" }, + { name: "roman-numeral-9", hex: "F1090", version: "4.2.95" }, + { name: "room-service", hex: "F088D", version: "2.1.99" }, + { name: "room-service-outline", hex: "F0D97", version: "3.4.93" }, + { name: "rotate-3d", hex: "F0EC7", version: "3.7.94" }, + { name: "rotate-3d-variant", hex: "F0464", version: "1.5.54" }, + { name: "rotate-left", hex: "F0465", version: "1.5.54" }, + { name: "rotate-left-variant", hex: "F0466", version: "1.5.54" }, + { name: "rotate-orbit", hex: "F0D98", version: "3.4.93" }, + { name: "rotate-right", hex: "F0467", version: "1.5.54" }, + { name: "rotate-right-variant", hex: "F0468", version: "1.5.54" }, + { name: "rounded-corner", hex: "F0607", version: "1.5.54" }, + { name: "router", hex: "F11E2", version: "4.5.95" }, + { name: "router-network", hex: "F1087", version: "4.2.95" }, + { name: "router-wireless", hex: "F0469", version: "1.5.54" }, + { name: "router-wireless-settings", hex: "F0A69", version: "2.6.95" }, + { name: "routes", hex: "F046A", version: "1.5.54" }, + { name: "routes-clock", hex: "F1059", version: "4.1.95" }, + { name: "rowing", hex: "F0608", version: "1.5.54" }, + { name: "rss", hex: "F046B", version: "1.5.54" }, + { name: "rss-box", hex: "F046C", version: "1.5.54" }, + { name: "rss-off", hex: "F0F21", version: "3.8.95" }, + { name: "rugby", hex: "F0D99", version: "3.4.93" }, + { name: "ruler", hex: "F046D", version: "1.5.54" }, + { name: "ruler-square", hex: "F0CC2", version: "3.2.89" }, + { name: "ruler-square-compass", hex: "F0EBE", version: "3.7.94" }, + { name: "run", hex: "F070E", version: "1.8.36" }, + { name: "run-fast", hex: "F046E", version: "1.5.54" }, + { name: "rv-truck", hex: "F11D4", version: "4.5.95" }, + { name: "sack", hex: "F0D2E", version: "3.3.92" }, + { name: "sack-percent", hex: "F0D2F", version: "3.3.92" }, + { name: "safe", hex: "F0A6A", version: "2.6.95" }, + { name: "safe-square", hex: "F127C", version: "4.7.95" }, + { name: "safe-square-outline", hex: "F127D", version: "4.7.95" }, + { name: "safety-goggles", hex: "F0D30", version: "3.3.92" }, + { name: "sail-boat", hex: "F0EC8", version: "3.7.94" }, + { name: "sale", hex: "F046F", version: "1.5.54" }, + { name: "salesforce", hex: "F088E", version: "2.1.99" }, + { name: "sass", hex: "F07EC", version: "2.0.46" }, + { name: "satellite", hex: "F0470", version: "1.5.54" }, + { name: "satellite-uplink", hex: "F0909", version: "2.3.50" }, + { name: "satellite-variant", hex: "F0471", version: "1.5.54" }, + { name: "sausage", hex: "F08BA", version: "2.2.43" }, + { name: "saw-blade", hex: "F0E61", version: "3.6.95" }, + { name: "saxophone", hex: "F0609", version: "1.5.54" }, + { name: "scale", hex: "F0472", version: "1.5.54" }, + { name: "scale-balance", hex: "F05D1", version: "1.5.54" }, + { name: "scale-bathroom", hex: "F0473", version: "1.5.54" }, + { name: "scale-off", hex: "F105A", version: "4.1.95" }, + { name: "scanner", hex: "F06AB", version: "1.7.12" }, + { name: "scanner-off", hex: "F090A", version: "2.3.50" }, + { name: "scatter-plot", hex: "F0EC9", version: "3.7.94" }, + { name: "scatter-plot-outline", hex: "F0ECA", version: "3.7.94" }, + { name: "school", hex: "F0474", version: "1.5.54" }, + { name: "school-outline", hex: "F1180", version: "4.4.95" }, + { name: "scissors-cutting", hex: "F0A6B", version: "2.6.95" }, + { name: "scooter", hex: "F11E9", version: "4.5.95" }, + { name: "scoreboard", hex: "F127E", version: "4.7.95" }, + { name: "scoreboard-outline", hex: "F127F", version: "4.7.95" }, + { name: "screen-rotation", hex: "F0475", version: "1.5.54" }, + { name: "screen-rotation-lock", hex: "F0478", version: "1.5.54" }, + { name: "screw-flat-top", hex: "F0DF3", version: "3.5.94" }, + { name: "screw-lag", hex: "F0DF4", version: "3.5.94" }, + { name: "screw-machine-flat-top", hex: "F0DF5", version: "3.5.94" }, + { name: "screw-machine-round-top", hex: "F0DF6", version: "3.5.94" }, + { name: "screw-round-top", hex: "F0DF7", version: "3.5.94" }, + { name: "screwdriver", hex: "F0476", version: "1.5.54" }, + { name: "script", hex: "F0BC1", version: "3.0.39" }, + { name: "script-outline", hex: "F0477", version: "1.5.54" }, + { name: "script-text", hex: "F0BC2", version: "3.0.39" }, + { name: "script-text-outline", hex: "F0BC3", version: "3.0.39" }, + { name: "sd", hex: "F0479", version: "1.5.54" }, + { name: "seal", hex: "F047A", version: "1.5.54" }, + { name: "seal-variant", hex: "F0FD9", version: "4.0.96" }, + { name: "search-web", hex: "F070F", version: "1.8.36" }, + { name: "seat", hex: "F0CC3", version: "3.2.89" }, + { name: "seat-flat", hex: "F047B", version: "1.5.54" }, + { name: "seat-flat-angled", hex: "F047C", version: "1.5.54" }, + { name: "seat-individual-suite", hex: "F047D", version: "1.5.54" }, + { name: "seat-legroom-extra", hex: "F047E", version: "1.5.54" }, + { name: "seat-legroom-normal", hex: "F047F", version: "1.5.54" }, + { name: "seat-legroom-reduced", hex: "F0480", version: "1.5.54" }, + { name: "seat-outline", hex: "F0CC4", version: "3.2.89" }, + { name: "seat-passenger", hex: "F1249", version: "4.6.95" }, + { name: "seat-recline-extra", hex: "F0481", version: "1.5.54" }, + { name: "seat-recline-normal", hex: "F0482", version: "1.5.54" }, + { name: "seatbelt", hex: "F0CC5", version: "3.2.89" }, + { name: "security", hex: "F0483", version: "1.5.54" }, + { name: "security-network", hex: "F0484", version: "1.5.54" }, + { name: "seed", hex: "F0E62", version: "3.6.95" }, + { name: "seed-outline", hex: "F0E63", version: "3.6.95" }, + { name: "segment", hex: "F0ECB", version: "3.7.94" }, + { name: "select", hex: "F0485", version: "1.5.54" }, + { name: "select-all", hex: "F0486", version: "1.5.54" }, + { name: "select-color", hex: "F0D31", version: "3.3.92" }, + { name: "select-compare", hex: "F0AD9", version: "2.7.94" }, + { name: "select-drag", hex: "F0A6C", version: "2.6.95" }, + { name: "select-group", hex: "F0F82", version: "3.9.97" }, + { name: "select-inverse", hex: "F0487", version: "1.5.54" }, + { name: "select-marker", hex: "F1280", version: "4.7.95" }, + { name: "select-multiple", hex: "F1281", version: "4.7.95" }, + { name: "select-multiple-marker", hex: "F1282", version: "4.7.95" }, + { name: "select-off", hex: "F0488", version: "1.5.54" }, + { name: "select-place", hex: "F0FDA", version: "4.0.96" }, + { name: "select-search", hex: "F1204", version: "4.6.95" }, + { name: "selection", hex: "F0489", version: "1.5.54" }, + { name: "selection-drag", hex: "F0A6D", version: "2.6.95" }, + { name: "selection-ellipse", hex: "F0D32", version: "3.3.92" }, + { name: "selection-ellipse-arrow-inside", hex: "F0F22", version: "3.8.95" }, + { name: "selection-marker", hex: "F1283", version: "4.7.95" }, + { name: "selection-multiple-marker", hex: "F1284", version: "4.7.95" }, + { name: "selection-mutliple", hex: "F1285", version: "4.7.95" }, + { name: "selection-off", hex: "F0777", version: "1.9.32" }, + { name: "selection-search", hex: "F1205", version: "4.6.95" }, + { name: "semantic-web", hex: "F1316", version: "4.8.95" }, + { name: "send", hex: "F048A", version: "1.5.54" }, + { name: "send-check", hex: "F1161", version: "4.4.95" }, + { name: "send-check-outline", hex: "F1162", version: "4.4.95" }, + { name: "send-circle", hex: "F0DF8", version: "3.5.94" }, + { name: "send-circle-outline", hex: "F0DF9", version: "3.5.94" }, + { name: "send-clock", hex: "F1163", version: "4.4.95" }, + { name: "send-clock-outline", hex: "F1164", version: "4.4.95" }, + { name: "send-lock", hex: "F07ED", version: "2.0.46" }, + { name: "send-lock-outline", hex: "F1166", version: "4.4.95" }, + { name: "send-outline", hex: "F1165", version: "4.4.95" }, + { name: "serial-port", hex: "F065C", version: "1.6.50" }, + { name: "server", hex: "F048B", version: "1.5.54" }, + { name: "server-minus", hex: "F048C", version: "1.5.54" }, + { name: "server-network", hex: "F048D", version: "1.5.54" }, + { name: "server-network-off", hex: "F048E", version: "1.5.54" }, + { name: "server-off", hex: "F048F", version: "1.5.54" }, + { name: "server-plus", hex: "F0490", version: "1.5.54" }, + { name: "server-remove", hex: "F0491", version: "1.5.54" }, + { name: "server-security", hex: "F0492", version: "1.5.54" }, + { name: "set-all", hex: "F0778", version: "1.9.32" }, + { name: "set-center", hex: "F0779", version: "1.9.32" }, + { name: "set-center-right", hex: "F077A", version: "1.9.32" }, + { name: "set-left", hex: "F077B", version: "1.9.32" }, + { name: "set-left-center", hex: "F077C", version: "1.9.32" }, + { name: "set-left-right", hex: "F077D", version: "1.9.32" }, + { name: "set-none", hex: "F077E", version: "1.9.32" }, + { name: "set-right", hex: "F077F", version: "1.9.32" }, + { name: "set-top-box", hex: "F099F", version: "2.4.85" }, + { name: "settings-helper", hex: "F0A6E", version: "2.6.95" }, + { name: "shaker", hex: "F110E", version: "4.3.95" }, + { name: "shaker-outline", hex: "F110F", version: "4.3.95" }, + { name: "shape", hex: "F0831", version: "2.1.19" }, + { name: "shape-circle-plus", hex: "F065D", version: "1.6.50" }, + { name: "shape-outline", hex: "F0832", version: "2.1.19" }, + { name: "shape-oval-plus", hex: "F11FA", version: "4.6.95" }, + { name: "shape-plus", hex: "F0495", version: "1.5.54" }, + { name: "shape-polygon-plus", hex: "F065E", version: "1.6.50" }, + { name: "shape-rectangle-plus", hex: "F065F", version: "1.6.50" }, + { name: "shape-square-plus", hex: "F0660", version: "1.6.50" }, + { name: "share", hex: "F0496", version: "1.5.54" }, + { name: "share-all", hex: "F11F4", version: "4.6.95" }, + { name: "share-all-outline", hex: "F11F5", version: "4.6.95" }, + { name: "share-circle", hex: "F11AD", version: "4.5.95" }, + { name: "share-off", hex: "F0F23", version: "3.8.95" }, + { name: "share-off-outline", hex: "F0F24", version: "3.8.95" }, + { name: "share-outline", hex: "F0932", version: "2.3.54" }, + { name: "share-variant", hex: "F0497", version: "1.5.54" }, + { name: "sheep", hex: "F0CC6", version: "3.2.89" }, + { name: "shield", hex: "F0498", version: "1.5.54" }, + { name: "shield-account", hex: "F088F", version: "2.1.99" }, + { name: "shield-account-outline", hex: "F0A12", version: "2.5.94" }, + { name: "shield-airplane", hex: "F06BB", version: "1.7.22" }, + { name: "shield-airplane-outline", hex: "F0CC7", version: "3.2.89" }, + { name: "shield-alert", hex: "F0ECC", version: "3.7.94" }, + { name: "shield-alert-outline", hex: "F0ECD", version: "3.7.94" }, + { name: "shield-car", hex: "F0F83", version: "3.9.97" }, + { name: "shield-check", hex: "F0565", version: "1.5.54" }, + { name: "shield-check-outline", hex: "F0CC8", version: "3.2.89" }, + { name: "shield-cross", hex: "F0CC9", version: "3.2.89" }, + { name: "shield-cross-outline", hex: "F0CCA", version: "3.2.89" }, + { name: "shield-edit", hex: "F11A0", version: "4.5.95" }, + { name: "shield-edit-outline", hex: "F11A1", version: "4.5.95" }, + { name: "shield-half", hex: "F1360", version: "4.9.95" }, + { name: "shield-half-full", hex: "F0780", version: "1.9.32" }, + { name: "shield-home", hex: "F068A", version: "1.7.12" }, + { name: "shield-home-outline", hex: "F0CCB", version: "3.2.89" }, + { name: "shield-key", hex: "F0BC4", version: "3.0.39" }, + { name: "shield-key-outline", hex: "F0BC5", version: "3.0.39" }, + { name: "shield-link-variant", hex: "F0D33", version: "3.3.92" }, + { name: "shield-link-variant-outline", hex: "F0D34", version: "3.3.92" }, + { name: "shield-lock", hex: "F099D", version: "2.4.85" }, + { name: "shield-lock-outline", hex: "F0CCC", version: "3.2.89" }, + { name: "shield-off", hex: "F099E", version: "2.4.85" }, + { name: "shield-off-outline", hex: "F099C", version: "2.4.85" }, + { name: "shield-outline", hex: "F0499", version: "1.5.54" }, + { name: "shield-plus", hex: "F0ADA", version: "2.7.94" }, + { name: "shield-plus-outline", hex: "F0ADB", version: "2.7.94" }, + { name: "shield-refresh", hex: "F00AA", version: "1.5.54" }, + { name: "shield-refresh-outline", hex: "F01E0", version: "1.5.54" }, + { name: "shield-remove", hex: "F0ADC", version: "2.7.94" }, + { name: "shield-remove-outline", hex: "F0ADD", version: "2.7.94" }, + { name: "shield-search", hex: "F0D9A", version: "3.4.93" }, + { name: "shield-star", hex: "F113B", version: "4.4.95" }, + { name: "shield-star-outline", hex: "F113C", version: "4.4.95" }, + { name: "shield-sun", hex: "F105D", version: "4.1.95" }, + { name: "shield-sun-outline", hex: "F105E", version: "4.1.95" }, + { name: "shield-sync", hex: "F11A2", version: "4.5.95" }, + { name: "shield-sync-outline", hex: "F11A3", version: "4.5.95" }, + { name: "ship-wheel", hex: "F0833", version: "2.1.19" }, + { name: "shoe-formal", hex: "F0B47", version: "2.8.94" }, + { name: "shoe-heel", hex: "F0B48", version: "2.8.94" }, + { name: "shoe-print", hex: "F0DFA", version: "3.5.94" }, + { name: "shopping", hex: "F049A", version: "1.5.54" }, + { name: "shopping-music", hex: "F049B", version: "1.5.54" }, + { name: "shopping-outline", hex: "F11D5", version: "4.5.95" }, + { name: "shopping-search", hex: "F0F84", version: "3.9.97" }, + { name: "shovel", hex: "F0710", version: "1.8.36" }, + { name: "shovel-off", hex: "F0711", version: "1.8.36" }, + { name: "shower", hex: "F09A0", version: "2.4.85" }, + { name: "shower-head", hex: "F09A1", version: "2.4.85" }, + { name: "shredder", hex: "F049C", version: "1.5.54" }, + { name: "shuffle", hex: "F049D", version: "1.5.54" }, + { name: "shuffle-disabled", hex: "F049E", version: "1.5.54" }, + { name: "shuffle-variant", hex: "F049F", version: "1.5.54" }, + { name: "shuriken", hex: "F137F", version: "4.9.95" }, + { name: "sigma", hex: "F04A0", version: "1.5.54" }, + { name: "sigma-lower", hex: "F062B", version: "1.6.50" }, + { name: "sign-caution", hex: "F04A1", version: "1.5.54" }, + { name: "sign-direction", hex: "F0781", version: "1.9.32" }, + { name: "sign-direction-minus", hex: "F1000", version: "4.0.96" }, + { name: "sign-direction-plus", hex: "F0FDC", version: "4.0.96" }, + { name: "sign-direction-remove", hex: "F0FDD", version: "4.0.96" }, + { name: "sign-real-estate", hex: "F1118", version: "4.3.95" }, + { name: "sign-text", hex: "F0782", version: "1.9.32" }, + { name: "signal", hex: "F04A2", version: "1.5.54" }, + { name: "signal-2g", hex: "F0712", version: "1.8.36" }, + { name: "signal-3g", hex: "F0713", version: "1.8.36" }, + { name: "signal-4g", hex: "F0714", version: "1.8.36" }, + { name: "signal-5g", hex: "F0A6F", version: "2.6.95" }, + { name: "signal-cellular-1", hex: "F08BC", version: "2.2.43" }, + { name: "signal-cellular-2", hex: "F08BD", version: "2.2.43" }, + { name: "signal-cellular-3", hex: "F08BE", version: "2.2.43" }, + { name: "signal-cellular-outline", hex: "F08BF", version: "2.2.43" }, + { name: "signal-distance-variant", hex: "F0E64", version: "3.6.95" }, + { name: "signal-hspa", hex: "F0715", version: "1.8.36" }, + { name: "signal-hspa-plus", hex: "F0716", version: "1.8.36" }, + { name: "signal-off", hex: "F0783", version: "1.9.32" }, + { name: "signal-variant", hex: "F060A", version: "1.5.54" }, + { name: "signature", hex: "F0DFB", version: "3.5.94" }, + { name: "signature-freehand", hex: "F0DFC", version: "3.5.94" }, + { name: "signature-image", hex: "F0DFD", version: "3.5.94" }, + { name: "signature-text", hex: "F0DFE", version: "3.5.94" }, + { name: "silo", hex: "F0B49", version: "2.8.94" }, + { name: "silverware", hex: "F04A3", version: "1.5.54" }, + { name: "silverware-clean", hex: "F0FDE", version: "4.0.96" }, + { name: "silverware-fork", hex: "F04A4", version: "1.5.54" }, + { name: "silverware-fork-knife", hex: "F0A70", version: "2.6.95" }, + { name: "silverware-spoon", hex: "F04A5", version: "1.5.54" }, + { name: "silverware-variant", hex: "F04A6", version: "1.5.54" }, + { name: "sim", hex: "F04A7", version: "1.5.54" }, + { name: "sim-alert", hex: "F04A8", version: "1.5.54" }, + { name: "sim-off", hex: "F04A9", version: "1.5.54" }, + { name: "simple-icons", hex: "F131D", version: "4.8.95" }, + { name: "sina-weibo", hex: "F0ADF", version: "2.7.94" }, + { name: "sitemap", hex: "F04AA", version: "1.5.54" }, + { name: "size-l", hex: "F13A6", version: "5.0.45" }, + { name: "size-m", hex: "F13A5", version: "5.0.45" }, + { name: "size-s", hex: "F13A4", version: "5.0.45" }, + { name: "size-xl", hex: "F13A7", version: "5.0.45" }, + { name: "size-xs", hex: "F13A3", version: "5.0.45" }, + { name: "size-xxl", hex: "F13A8", version: "5.0.45" }, + { name: "size-xxs", hex: "F13A2", version: "5.0.45" }, + { name: "size-xxxl", hex: "F13A9", version: "5.0.45" }, + { name: "skate", hex: "F0D35", version: "3.3.92" }, + { name: "skew-less", hex: "F0D36", version: "3.3.92" }, + { name: "skew-more", hex: "F0D37", version: "3.3.92" }, + { name: "ski", hex: "F1304", version: "4.8.95" }, + { name: "ski-cross-country", hex: "F1305", version: "4.8.95" }, + { name: "ski-water", hex: "F1306", version: "4.8.95" }, + { name: "skip-backward", hex: "F04AB", version: "1.5.54" }, + { name: "skip-backward-outline", hex: "F0F25", version: "3.8.95" }, + { name: "skip-forward", hex: "F04AC", version: "1.5.54" }, + { name: "skip-forward-outline", hex: "F0F26", version: "3.8.95" }, + { name: "skip-next", hex: "F04AD", version: "1.5.54" }, + { name: "skip-next-circle", hex: "F0661", version: "1.6.50" }, + { name: "skip-next-circle-outline", hex: "F0662", version: "1.6.50" }, + { name: "skip-next-outline", hex: "F0F27", version: "3.8.95" }, + { name: "skip-previous", hex: "F04AE", version: "1.5.54" }, + { name: "skip-previous-circle", hex: "F0663", version: "1.6.50" }, + { name: "skip-previous-circle-outline", hex: "F0664", version: "1.6.50" }, + { name: "skip-previous-outline", hex: "F0F28", version: "3.8.95" }, + { name: "skull", hex: "F068C", version: "1.7.12" }, + { name: "skull-crossbones", hex: "F0BC6", version: "3.0.39" }, + { name: "skull-crossbones-outline", hex: "F0BC7", version: "3.0.39" }, + { name: "skull-outline", hex: "F0BC8", version: "3.0.39" }, + { name: "skype", hex: "F04AF", version: "1.5.54" }, + { name: "skype-business", hex: "F04B0", version: "1.5.54" }, + { name: "slack", hex: "F04B1", version: "1.5.54" }, + { name: "slash-forward", hex: "F0FDF", version: "4.0.96" }, + { name: "slash-forward-box", hex: "F0FE0", version: "4.0.96" }, + { name: "sleep", hex: "F04B2", version: "1.5.54" }, + { name: "sleep-off", hex: "F04B3", version: "1.5.54" }, + { name: "slope-downhill", hex: "F0DFF", version: "3.5.94" }, + { name: "slope-uphill", hex: "F0E00", version: "3.5.94" }, + { name: "slot-machine", hex: "F1114", version: "4.3.95" }, + { name: "slot-machine-outline", hex: "F1115", version: "4.3.95" }, + { name: "smart-card", hex: "F10BD", version: "4.2.95" }, + { name: "smart-card-outline", hex: "F10BE", version: "4.2.95" }, + { name: "smart-card-reader", hex: "F10BF", version: "4.2.95" }, + { name: "smart-card-reader-outline", hex: "F10C0", version: "4.2.95" }, + { name: "smog", hex: "F0A71", version: "2.6.95" }, + { name: "smoke-detector", hex: "F0392", version: "1.5.54" }, + { name: "smoking", hex: "F04B4", version: "1.5.54" }, + { name: "smoking-off", hex: "F04B5", version: "1.5.54" }, + { name: "snapchat", hex: "F04B6", version: "1.5.54" }, + { name: "snowboard", hex: "F1307", version: "4.8.95" }, + { name: "snowflake", hex: "F0717", version: "1.8.36" }, + { name: "snowflake-alert", hex: "F0F29", version: "3.8.95" }, + { name: "snowflake-melt", hex: "F12CB", version: "4.8.95" }, + { name: "snowflake-variant", hex: "F0F2A", version: "3.8.95" }, + { name: "snowman", hex: "F04B7", version: "1.5.54" }, + { name: "soccer", hex: "F04B8", version: "1.5.54" }, + { name: "soccer-field", hex: "F0834", version: "2.1.19" }, + { name: "sofa", hex: "F04B9", version: "1.5.54" }, + { name: "solar-panel", hex: "F0D9B", version: "3.4.93" }, + { name: "solar-panel-large", hex: "F0D9C", version: "3.4.93" }, + { name: "solar-power", hex: "F0A72", version: "2.6.95" }, + { name: "soldering-iron", hex: "F1092", version: "4.2.95" }, + { name: "solid", hex: "F068D", version: "1.7.12" }, + { name: "sony-playstation", hex: "F0414", version: "1.5.54" }, + { name: "sort", hex: "F04BA", version: "1.5.54" }, + { name: "sort-alphabetical-ascending", hex: "F05BD", version: "1.5.54" }, + { name: "sort-alphabetical-ascending-variant", hex: "F1148", version: "4.4.95" }, + { name: "sort-alphabetical-descending", hex: "F05BF", version: "1.5.54" }, + { name: "sort-alphabetical-descending-variant", hex: "F1149", version: "4.4.95" }, + { name: "sort-alphabetical-variant", hex: "F04BB", version: "1.5.54" }, + { name: "sort-ascending", hex: "F04BC", version: "1.5.54" }, + { name: "sort-bool-ascending", hex: "F1385", version: "5.0.45" }, + { name: "sort-bool-ascending-variant", hex: "F1386", version: "5.0.45" }, + { name: "sort-bool-descending", hex: "F1387", version: "5.0.45" }, + { name: "sort-bool-descending-variant", hex: "F1388", version: "5.0.45" }, + { name: "sort-descending", hex: "F04BD", version: "1.5.54" }, + { name: "sort-numeric-ascending", hex: "F1389", version: "5.0.45" }, + { name: "sort-numeric-ascending-variant", hex: "F090D", version: "2.3.50" }, + { name: "sort-numeric-descending", hex: "F138A", version: "5.0.45" }, + { name: "sort-numeric-descending-variant", hex: "F0AD2", version: "2.7.94" }, + { name: "sort-numeric-variant", hex: "F04BE", version: "1.5.54" }, + { name: "sort-reverse-variant", hex: "F033C", version: "1.5.54" }, + { name: "sort-variant", hex: "F04BF", version: "1.5.54" }, + { name: "sort-variant-lock", hex: "F0CCD", version: "3.2.89" }, + { name: "sort-variant-lock-open", hex: "F0CCE", version: "3.2.89" }, + { name: "sort-variant-remove", hex: "F1147", version: "4.4.95" }, + { name: "soundcloud", hex: "F04C0", version: "1.5.54" }, + { name: "source-branch", hex: "F062C", version: "1.6.50" }, + { name: "source-commit", hex: "F0718", version: "1.8.36" }, + { name: "source-commit-end", hex: "F0719", version: "1.8.36" }, + { name: "source-commit-end-local", hex: "F071A", version: "1.8.36" }, + { name: "source-commit-local", hex: "F071B", version: "1.8.36" }, + { name: "source-commit-next-local", hex: "F071C", version: "1.8.36" }, + { name: "source-commit-start", hex: "F071D", version: "1.8.36" }, + { name: "source-commit-start-next-local", hex: "F071E", version: "1.8.36" }, + { name: "source-fork", hex: "F04C1", version: "1.5.54" }, + { name: "source-merge", hex: "F062D", version: "1.6.50" }, + { name: "source-pull", hex: "F04C2", version: "1.5.54" }, + { name: "source-repository", hex: "F0CCF", version: "3.2.89" }, + { name: "source-repository-multiple", hex: "F0CD0", version: "3.2.89" }, + { name: "soy-sauce", hex: "F07EE", version: "2.0.46" }, + { name: "spa", hex: "F0CD1", version: "3.2.89" }, + { name: "spa-outline", hex: "F0CD2", version: "3.2.89" }, + { name: "space-invaders", hex: "F0BC9", version: "3.0.39" }, + { name: "space-station", hex: "F1383", version: "4.9.95" }, + { name: "spade", hex: "F0E65", version: "3.6.95" }, + { name: "speaker", hex: "F04C3", version: "1.5.54" }, + { name: "speaker-bluetooth", hex: "F09A2", version: "2.4.85" }, + { name: "speaker-multiple", hex: "F0D38", version: "3.3.92" }, + { name: "speaker-off", hex: "F04C4", version: "1.5.54" }, + { name: "speaker-wireless", hex: "F071F", version: "1.8.36" }, + { name: "speedometer", hex: "F04C5", version: "1.5.54" }, + { name: "speedometer-medium", hex: "F0F85", version: "3.9.97" }, + { name: "speedometer-slow", hex: "F0F86", version: "3.9.97" }, + { name: "spellcheck", hex: "F04C6", version: "1.5.54" }, + { name: "spider", hex: "F11EA", version: "4.5.95" }, + { name: "spider-thread", hex: "F11EB", version: "4.5.95" }, + { name: "spider-web", hex: "F0BCA", version: "3.0.39" }, + { name: "spotify", hex: "F04C7", version: "1.5.54" }, + { name: "spotlight", hex: "F04C8", version: "1.5.54" }, + { name: "spotlight-beam", hex: "F04C9", version: "1.5.54" }, + { name: "spray", hex: "F0665", version: "1.6.50" }, + { name: "spray-bottle", hex: "F0AE0", version: "2.7.94" }, + { name: "sprinkler", hex: "F105F", version: "4.1.95" }, + { name: "sprinkler-variant", hex: "F1060", version: "4.1.95" }, + { name: "sprout", hex: "F0E66", version: "3.6.95" }, + { name: "sprout-outline", hex: "F0E67", version: "3.6.95" }, + { name: "square", hex: "F0764", version: "1.9.32" }, + { name: "square-edit-outline", hex: "F090C", version: "2.3.50" }, + { name: "square-medium", hex: "F0A13", version: "2.5.94" }, + { name: "square-medium-outline", hex: "F0A14", version: "2.5.94" }, + { name: "square-off", hex: "F12EE", version: "4.8.95" }, + { name: "square-off-outline", hex: "F12EF", version: "4.8.95" }, + { name: "square-outline", hex: "F0763", version: "1.9.32" }, + { name: "square-root", hex: "F0784", version: "1.9.32" }, + { name: "square-root-box", hex: "F09A3", version: "2.4.85" }, + { name: "square-small", hex: "F0A15", version: "2.5.94" }, + { name: "squeegee", hex: "F0AE1", version: "2.7.94" }, + { name: "ssh", hex: "F08C0", version: "2.2.43" }, + { name: "stack-exchange", hex: "F060B", version: "1.5.54" }, + { name: "stack-overflow", hex: "F04CC", version: "1.5.54" }, + { name: "stackpath", hex: "F0359", version: "1.5.54" }, + { name: "stadium", hex: "F0FF9", version: "4.0.96" }, + { name: "stadium-variant", hex: "F0720", version: "1.8.36" }, + { name: "stairs", hex: "F04CD", version: "1.5.54" }, + { name: "stairs-box", hex: "F139E", version: "5.0.45" }, + { name: "stairs-down", hex: "F12BE", version: "4.8.95" }, + { name: "stairs-up", hex: "F12BD", version: "4.8.95" }, + { name: "stamper", hex: "F0D39", version: "3.3.92" }, + { name: "standard-definition", hex: "F07EF", version: "2.0.46" }, + { name: "star", hex: "F04CE", version: "1.5.54" }, + { name: "star-box", hex: "F0A73", version: "2.6.95" }, + { name: "star-box-multiple", hex: "F1286", version: "4.7.95" }, + { name: "star-box-multiple-outline", hex: "F1287", version: "4.7.95" }, + { name: "star-box-outline", hex: "F0A74", version: "2.6.95" }, + { name: "star-circle", hex: "F04CF", version: "1.5.54" }, + { name: "star-circle-outline", hex: "F09A4", version: "2.4.85" }, + { name: "star-face", hex: "F09A5", version: "2.4.85" }, + { name: "star-four-points", hex: "F0AE2", version: "2.7.94" }, + { name: "star-four-points-outline", hex: "F0AE3", version: "2.7.94" }, + { name: "star-half", hex: "F0246", version: "1.5.54" }, + { name: "star-half-full", hex: "F04D0", version: "1.5.54" }, + { name: "star-off", hex: "F04D1", version: "1.5.54" }, + { name: "star-outline", hex: "F04D2", version: "1.5.54" }, + { name: "star-three-points", hex: "F0AE4", version: "2.7.94" }, + { name: "star-three-points-outline", hex: "F0AE5", version: "2.7.94" }, + { name: "state-machine", hex: "F11EF", version: "4.5.95" }, + { name: "steam", hex: "F04D3", version: "1.5.54" }, + { name: "steering", hex: "F04D4", version: "1.5.54" }, + { name: "steering-off", hex: "F090E", version: "2.3.50" }, + { name: "step-backward", hex: "F04D5", version: "1.5.54" }, + { name: "step-backward-2", hex: "F04D6", version: "1.5.54" }, + { name: "step-forward", hex: "F04D7", version: "1.5.54" }, + { name: "step-forward-2", hex: "F04D8", version: "1.5.54" }, + { name: "stethoscope", hex: "F04D9", version: "1.5.54" }, + { name: "sticker", hex: "F1364", version: "4.9.95" }, + { name: "sticker-alert", hex: "F1365", version: "4.9.95" }, + { name: "sticker-alert-outline", hex: "F1366", version: "4.9.95" }, + { name: "sticker-check", hex: "F1367", version: "4.9.95" }, + { name: "sticker-check-outline", hex: "F1368", version: "4.9.95" }, + { name: "sticker-circle-outline", hex: "F05D0", version: "1.5.54" }, + { name: "sticker-emoji", hex: "F0785", version: "1.9.32" }, + { name: "sticker-minus", hex: "F1369", version: "4.9.95" }, + { name: "sticker-minus-outline", hex: "F136A", version: "4.9.95" }, + { name: "sticker-outline", hex: "F136B", version: "4.9.95" }, + { name: "sticker-plus", hex: "F136C", version: "4.9.95" }, + { name: "sticker-plus-outline", hex: "F136D", version: "4.9.95" }, + { name: "sticker-remove", hex: "F136E", version: "4.9.95" }, + { name: "sticker-remove-outline", hex: "F136F", version: "4.9.95" }, + { name: "stocking", hex: "F04DA", version: "1.5.54" }, + { name: "stomach", hex: "F1093", version: "4.2.95" }, + { name: "stop", hex: "F04DB", version: "1.5.54" }, + { name: "stop-circle", hex: "F0666", version: "1.6.50" }, + { name: "stop-circle-outline", hex: "F0667", version: "1.6.50" }, + { name: "store", hex: "F04DC", version: "1.5.54" }, + { name: "store-24-hour", hex: "F04DD", version: "1.5.54" }, + { name: "store-outline", hex: "F1361", version: "4.9.95" }, + { name: "storefront", hex: "F07C7", version: "2.0.46" }, + { name: "storefront-outline", hex: "F10C1", version: "4.2.95" }, + { name: "stove", hex: "F04DE", version: "1.5.54" }, + { name: "strategy", hex: "F11D6", version: "4.5.95" }, + { name: "stretch-to-page", hex: "F0F2B", version: "3.8.95" }, + { name: "stretch-to-page-outline", hex: "F0F2C", version: "3.8.95" }, + { name: "string-lights", hex: "F12BA", version: "4.7.95" }, + { name: "string-lights-off", hex: "F12BB", version: "4.7.95" }, + { name: "subdirectory-arrow-left", hex: "F060C", version: "1.5.54" }, + { name: "subdirectory-arrow-right", hex: "F060D", version: "1.5.54" }, + { name: "subtitles", hex: "F0A16", version: "2.5.94" }, + { name: "subtitles-outline", hex: "F0A17", version: "2.5.94" }, + { name: "subway", hex: "F06AC", version: "1.7.12" }, + { name: "subway-alert-variant", hex: "F0D9D", version: "3.4.93" }, + { name: "subway-variant", hex: "F04DF", version: "1.5.54" }, + { name: "summit", hex: "F0786", version: "1.9.32" }, + { name: "sunglasses", hex: "F04E0", version: "1.5.54" }, + { name: "surround-sound", hex: "F05C5", version: "1.5.54" }, + { name: "surround-sound-2-0", hex: "F07F0", version: "2.0.46" }, + { name: "surround-sound-3-1", hex: "F07F1", version: "2.0.46" }, + { name: "surround-sound-5-1", hex: "F07F2", version: "2.0.46" }, + { name: "surround-sound-7-1", hex: "F07F3", version: "2.0.46" }, + { name: "svg", hex: "F0721", version: "1.8.36" }, + { name: "swap-horizontal", hex: "F04E1", version: "1.5.54" }, + { name: "swap-horizontal-bold", hex: "F0BCD", version: "3.0.39" }, + { name: "swap-horizontal-circle", hex: "F0FE1", version: "4.0.96" }, + { name: "swap-horizontal-circle-outline", hex: "F0FE2", version: "4.0.96" }, + { name: "swap-horizontal-variant", hex: "F08C1", version: "2.2.43" }, + { name: "swap-vertical", hex: "F04E2", version: "1.5.54" }, + { name: "swap-vertical-bold", hex: "F0BCE", version: "3.0.39" }, + { name: "swap-vertical-circle", hex: "F0FE3", version: "4.0.96" }, + { name: "swap-vertical-circle-outline", hex: "F0FE4", version: "4.0.96" }, + { name: "swap-vertical-variant", hex: "F08C2", version: "2.2.43" }, + { name: "swim", hex: "F04E3", version: "1.5.54" }, + { name: "switch", hex: "F04E4", version: "1.5.54" }, + { name: "sword", hex: "F04E5", version: "1.5.54" }, + { name: "sword-cross", hex: "F0787", version: "1.9.32" }, + { name: "syllabary-hangul", hex: "F1333", version: "4.9.95" }, + { name: "syllabary-hiragana", hex: "F1334", version: "4.9.95" }, + { name: "syllabary-katakana", hex: "F1335", version: "4.9.95" }, + { name: "syllabary-katakana-half-width", hex: "F1336", version: "4.9.95" }, + { name: "symfony", hex: "F0AE6", version: "2.7.94" }, + { name: "sync", hex: "F04E6", version: "1.5.54" }, + { name: "sync-alert", hex: "F04E7", version: "1.5.54" }, + { name: "sync-circle", hex: "F1378", version: "4.9.95" }, + { name: "sync-off", hex: "F04E8", version: "1.5.54" }, + { name: "tab", hex: "F04E9", version: "1.5.54" }, + { name: "tab-minus", hex: "F0B4B", version: "2.8.94" }, + { name: "tab-plus", hex: "F075C", version: "1.9.32" }, + { name: "tab-remove", hex: "F0B4C", version: "2.8.94" }, + { name: "tab-unselected", hex: "F04EA", version: "1.5.54" }, + { name: "table", hex: "F04EB", version: "1.5.54" }, + { name: "table-border", hex: "F0A18", version: "2.5.94" }, + { name: "table-chair", hex: "F1061", version: "4.1.95" }, + { name: "table-column", hex: "F0835", version: "2.1.19" }, + { name: "table-column-plus-after", hex: "F04EC", version: "1.5.54" }, + { name: "table-column-plus-before", hex: "F04ED", version: "1.5.54" }, + { name: "table-column-remove", hex: "F04EE", version: "1.5.54" }, + { name: "table-column-width", hex: "F04EF", version: "1.5.54" }, + { name: "table-edit", hex: "F04F0", version: "1.5.54" }, + { name: "table-eye", hex: "F1094", version: "4.2.95" }, + { name: "table-furniture", hex: "F05BC", version: "1.5.54" }, + { name: "table-headers-eye", hex: "F121D", version: "4.6.95" }, + { name: "table-headers-eye-off", hex: "F121E", version: "4.6.95" }, + { name: "table-large", hex: "F04F1", version: "1.5.54" }, + { name: "table-large-plus", hex: "F0F87", version: "3.9.97" }, + { name: "table-large-remove", hex: "F0F88", version: "3.9.97" }, + { name: "table-merge-cells", hex: "F09A6", version: "2.4.85" }, + { name: "table-of-contents", hex: "F0836", version: "2.1.19" }, + { name: "table-plus", hex: "F0A75", version: "2.6.95" }, + { name: "table-refresh", hex: "F13A0", version: "5.0.45" }, + { name: "table-remove", hex: "F0A76", version: "2.6.95" }, + { name: "table-row", hex: "F0837", version: "2.1.19" }, + { name: "table-row-height", hex: "F04F2", version: "1.5.54" }, + { name: "table-row-plus-after", hex: "F04F3", version: "1.5.54" }, + { name: "table-row-plus-before", hex: "F04F4", version: "1.5.54" }, + { name: "table-row-remove", hex: "F04F5", version: "1.5.54" }, + { name: "table-search", hex: "F090F", version: "2.3.50" }, + { name: "table-settings", hex: "F0838", version: "2.1.19" }, + { name: "table-sync", hex: "F13A1", version: "5.0.45" }, + { name: "table-tennis", hex: "F0E68", version: "3.6.95" }, + { name: "tablet", hex: "F04F6", version: "1.5.54" }, + { name: "tablet-android", hex: "F04F7", version: "1.5.54" }, + { name: "tablet-cellphone", hex: "F09A7", version: "2.4.85" }, + { name: "tablet-dashboard", hex: "F0ECE", version: "3.7.94" }, + { name: "tablet-ipad", hex: "F04F8", version: "1.5.54" }, + { name: "taco", hex: "F0762", version: "1.9.32" }, + { name: "tag", hex: "F04F9", version: "1.5.54" }, + { name: "tag-faces", hex: "F04FA", version: "1.5.54" }, + { name: "tag-heart", hex: "F068B", version: "1.7.12" }, + { name: "tag-heart-outline", hex: "F0BCF", version: "3.0.39" }, + { name: "tag-minus", hex: "F0910", version: "2.3.50" }, + { name: "tag-minus-outline", hex: "F121F", version: "4.6.95" }, + { name: "tag-multiple", hex: "F04FB", version: "1.5.54" }, + { name: "tag-multiple-outline", hex: "F12F7", version: "4.8.95" }, + { name: "tag-off", hex: "F1220", version: "4.6.95" }, + { name: "tag-off-outline", hex: "F1221", version: "4.6.95" }, + { name: "tag-outline", hex: "F04FC", version: "1.5.54" }, + { name: "tag-plus", hex: "F0722", version: "1.8.36" }, + { name: "tag-plus-outline", hex: "F1222", version: "4.6.95" }, + { name: "tag-remove", hex: "F0723", version: "1.8.36" }, + { name: "tag-remove-outline", hex: "F1223", version: "4.6.95" }, + { name: "tag-text", hex: "F1224", version: "4.6.95" }, + { name: "tag-text-outline", hex: "F04FD", version: "1.5.54" }, + { name: "tank", hex: "F0D3A", version: "3.3.92" }, + { name: "tanker-truck", hex: "F0FE5", version: "4.0.96" }, + { name: "tape-measure", hex: "F0B4D", version: "2.8.94" }, + { name: "target", hex: "F04FE", version: "1.5.54" }, + { name: "target-account", hex: "F0BD0", version: "3.0.39" }, + { name: "target-variant", hex: "F0A77", version: "2.6.95" }, + { name: "taxi", hex: "F04FF", version: "1.5.54" }, + { name: "tea", hex: "F0D9E", version: "3.4.93" }, + { name: "tea-outline", hex: "F0D9F", version: "3.4.93" }, + { name: "teach", hex: "F0890", version: "2.1.99" }, + { name: "teamviewer", hex: "F0500", version: "1.5.54" }, + { name: "telegram", hex: "F0501", version: "1.5.54" }, + { name: "telescope", hex: "F0B4E", version: "2.8.94" }, + { name: "television", hex: "F0502", version: "1.5.54" }, + { name: "television-ambient-light", hex: "F1356", version: "4.9.95" }, + { name: "television-box", hex: "F0839", version: "2.1.19" }, + { name: "television-classic", hex: "F07F4", version: "2.0.46" }, + { name: "television-classic-off", hex: "F083A", version: "2.1.19" }, + { name: "television-clean", hex: "F1110", version: "4.3.95" }, + { name: "television-guide", hex: "F0503", version: "1.5.54" }, + { name: "television-off", hex: "F083B", version: "2.1.19" }, + { name: "television-pause", hex: "F0F89", version: "3.9.97" }, + { name: "television-play", hex: "F0ECF", version: "3.7.94" }, + { name: "television-stop", hex: "F0F8A", version: "3.9.97" }, + { name: "temperature-celsius", hex: "F0504", version: "1.5.54" }, + { name: "temperature-fahrenheit", hex: "F0505", version: "1.5.54" }, + { name: "temperature-kelvin", hex: "F0506", version: "1.5.54" }, + { name: "tennis", hex: "F0DA0", version: "3.4.93" }, + { name: "tennis-ball", hex: "F0507", version: "1.5.54" }, + { name: "tent", hex: "F0508", version: "1.5.54" }, + { name: "terraform", hex: "F1062", version: "4.1.95" }, + { name: "terrain", hex: "F0509", version: "1.5.54" }, + { name: "test-tube", hex: "F0668", version: "1.6.50" }, + { name: "test-tube-empty", hex: "F0911", version: "2.3.50" }, + { name: "test-tube-off", hex: "F0912", version: "2.3.50" }, + { name: "text", hex: "F09A8", version: "2.4.85" }, + { name: "text-box", hex: "F021A", version: "1.5.54" }, + { name: "text-box-check", hex: "F0EA6", version: "3.7.94" }, + { name: "text-box-check-outline", hex: "F0EA7", version: "3.7.94" }, + { name: "text-box-minus", hex: "F0EA8", version: "3.7.94" }, + { name: "text-box-minus-outline", hex: "F0EA9", version: "3.7.94" }, + { name: "text-box-multiple", hex: "F0AB7", version: "2.7.94" }, + { name: "text-box-multiple-outline", hex: "F0AB8", version: "2.7.94" }, + { name: "text-box-outline", hex: "F09ED", version: "2.5.94" }, + { name: "text-box-plus", hex: "F0EAA", version: "3.7.94" }, + { name: "text-box-plus-outline", hex: "F0EAB", version: "3.7.94" }, + { name: "text-box-remove", hex: "F0EAC", version: "3.7.94" }, + { name: "text-box-remove-outline", hex: "F0EAD", version: "3.7.94" }, + { name: "text-box-search", hex: "F0EAE", version: "3.7.94" }, + { name: "text-box-search-outline", hex: "F0EAF", version: "3.7.94" }, + { name: "text-recognition", hex: "F113D", version: "4.4.95" }, + { name: "text-shadow", hex: "F0669", version: "1.6.50" }, + { name: "text-short", hex: "F09A9", version: "2.4.85" }, + { name: "text-subject", hex: "F09AA", version: "2.4.85" }, + { name: "text-to-speech", hex: "F050A", version: "1.5.54" }, + { name: "text-to-speech-off", hex: "F050B", version: "1.5.54" }, + { name: "textarea", hex: "F1095", version: "4.2.95" }, + { name: "textbox", hex: "F060E", version: "1.5.54" }, + { name: "textbox-lock", hex: "F135D", version: "4.9.95" }, + { name: "textbox-password", hex: "F07F5", version: "2.0.46" }, + { name: "texture", hex: "F050C", version: "1.5.54" }, + { name: "texture-box", hex: "F0FE6", version: "4.0.96" }, + { name: "theater", hex: "F050D", version: "1.5.54" }, + { name: "theme-light-dark", hex: "F050E", version: "1.5.54" }, + { name: "thermometer", hex: "F050F", version: "1.5.54" }, + { name: "thermometer-alert", hex: "F0E01", version: "3.5.94" }, + { name: "thermometer-chevron-down", hex: "F0E02", version: "3.5.94" }, + { name: "thermometer-chevron-up", hex: "F0E03", version: "3.5.94" }, + { name: "thermometer-high", hex: "F10C2", version: "4.2.95" }, + { name: "thermometer-lines", hex: "F0510", version: "1.5.54" }, + { name: "thermometer-low", hex: "F10C3", version: "4.2.95" }, + { name: "thermometer-minus", hex: "F0E04", version: "3.5.94" }, + { name: "thermometer-plus", hex: "F0E05", version: "3.5.94" }, + { name: "thermostat", hex: "F0393", version: "1.5.54" }, + { name: "thermostat-box", hex: "F0891", version: "2.1.99" }, + { name: "thought-bubble", hex: "F07F6", version: "2.0.46" }, + { name: "thought-bubble-outline", hex: "F07F7", version: "2.0.46" }, + { name: "thumb-down", hex: "F0511", version: "1.5.54" }, + { name: "thumb-down-outline", hex: "F0512", version: "1.5.54" }, + { name: "thumb-up", hex: "F0513", version: "1.5.54" }, + { name: "thumb-up-outline", hex: "F0514", version: "1.5.54" }, + { name: "thumbs-up-down", hex: "F0515", version: "1.5.54" }, + { name: "ticket", hex: "F0516", version: "1.5.54" }, + { name: "ticket-account", hex: "F0517", version: "1.5.54" }, + { name: "ticket-confirmation", hex: "F0518", version: "1.5.54" }, + { name: "ticket-confirmation-outline", hex: "F13AA", version: "5.0.45" }, + { name: "ticket-outline", hex: "F0913", version: "2.3.50" }, + { name: "ticket-percent", hex: "F0724", version: "1.8.36" }, + { name: "tie", hex: "F0519", version: "1.5.54" }, + { name: "tilde", hex: "F0725", version: "1.8.36" }, + { name: "timelapse", hex: "F051A", version: "1.5.54" }, + { name: "timeline", hex: "F0BD1", version: "3.0.39" }, + { name: "timeline-alert", hex: "F0F95", version: "3.9.97" }, + { name: "timeline-alert-outline", hex: "F0F98", version: "3.9.97" }, + { name: "timeline-clock", hex: "F11FB", version: "4.6.95" }, + { name: "timeline-clock-outline", hex: "F11FC", version: "4.6.95" }, + { name: "timeline-help", hex: "F0F99", version: "3.9.97" }, + { name: "timeline-help-outline", hex: "F0F9A", version: "3.9.97" }, + { name: "timeline-outline", hex: "F0BD2", version: "3.0.39" }, + { name: "timeline-plus", hex: "F0F96", version: "3.9.97" }, + { name: "timeline-plus-outline", hex: "F0F97", version: "3.9.97" }, + { name: "timeline-text", hex: "F0BD3", version: "3.0.39" }, + { name: "timeline-text-outline", hex: "F0BD4", version: "3.0.39" }, + { name: "timer", hex: "F13AB", version: "5.0.45" }, + { name: "timer-10", hex: "F051C", version: "1.5.54" }, + { name: "timer-3", hex: "F051D", version: "1.5.54" }, + { name: "timer-off", hex: "F13AC", version: "5.0.45" }, + { name: "timer-off-outline", hex: "F051E", version: "1.5.54" }, + { name: "timer-outline", hex: "F051B", version: "1.5.54" }, + { name: "timer-sand", hex: "F051F", version: "1.5.54" }, + { name: "timer-sand-empty", hex: "F06AD", version: "1.7.12" }, + { name: "timer-sand-full", hex: "F078C", version: "1.9.32" }, + { name: "timetable", hex: "F0520", version: "1.5.54" }, + { name: "toaster", hex: "F1063", version: "4.1.95" }, + { name: "toaster-off", hex: "F11B7", version: "4.5.95" }, + { name: "toaster-oven", hex: "F0CD3", version: "3.2.89" }, + { name: "toggle-switch", hex: "F0521", version: "1.5.54" }, + { name: "toggle-switch-off", hex: "F0522", version: "1.5.54" }, + { name: "toggle-switch-off-outline", hex: "F0A19", version: "2.5.94" }, + { name: "toggle-switch-outline", hex: "F0A1A", version: "2.5.94" }, + { name: "toilet", hex: "F09AB", version: "2.4.85" }, + { name: "toolbox", hex: "F09AC", version: "2.4.85" }, + { name: "toolbox-outline", hex: "F09AD", version: "2.4.85" }, + { name: "tools", hex: "F1064", version: "4.1.95" }, + { name: "tooltip", hex: "F0523", version: "1.5.54" }, + { name: "tooltip-account", hex: "F000C", version: "1.5.54" }, + { name: "tooltip-edit", hex: "F0524", version: "1.5.54" }, + { name: "tooltip-edit-outline", hex: "F12C5", version: "4.8.95" }, + { name: "tooltip-image", hex: "F0525", version: "1.5.54" }, + { name: "tooltip-image-outline", hex: "F0BD5", version: "3.0.39" }, + { name: "tooltip-outline", hex: "F0526", version: "1.5.54" }, + { name: "tooltip-plus", hex: "F0BD6", version: "3.0.39" }, + { name: "tooltip-plus-outline", hex: "F0527", version: "1.5.54" }, + { name: "tooltip-text", hex: "F0528", version: "1.5.54" }, + { name: "tooltip-text-outline", hex: "F0BD7", version: "3.0.39" }, + { name: "tooth", hex: "F08C3", version: "2.2.43" }, + { name: "tooth-outline", hex: "F0529", version: "1.5.54" }, + { name: "toothbrush", hex: "F1129", version: "4.3.95" }, + { name: "toothbrush-electric", hex: "F112C", version: "4.4.95" }, + { name: "toothbrush-paste", hex: "F112A", version: "4.3.95" }, + { name: "tortoise", hex: "F0D3B", version: "3.3.92" }, + { name: "toslink", hex: "F12B8", version: "4.7.95" }, + { name: "tournament", hex: "F09AE", version: "2.4.85" }, + { name: "tow-truck", hex: "F083C", version: "2.1.19" }, + { name: "tower-beach", hex: "F0681", version: "1.7.12" }, + { name: "tower-fire", hex: "F0682", version: "1.7.12" }, + { name: "toy-brick", hex: "F1288", version: "4.7.95" }, + { name: "toy-brick-marker", hex: "F1289", version: "4.7.95" }, + { name: "toy-brick-marker-outline", hex: "F128A", version: "4.7.95" }, + { name: "toy-brick-minus", hex: "F128B", version: "4.7.95" }, + { name: "toy-brick-minus-outline", hex: "F128C", version: "4.7.95" }, + { name: "toy-brick-outline", hex: "F128D", version: "4.7.95" }, + { name: "toy-brick-plus", hex: "F128E", version: "4.7.95" }, + { name: "toy-brick-plus-outline", hex: "F128F", version: "4.7.95" }, + { name: "toy-brick-remove", hex: "F1290", version: "4.7.95" }, + { name: "toy-brick-remove-outline", hex: "F1291", version: "4.7.95" }, + { name: "toy-brick-search", hex: "F1292", version: "4.7.95" }, + { name: "toy-brick-search-outline", hex: "F1293", version: "4.7.95" }, + { name: "track-light", hex: "F0914", version: "2.3.50" }, + { name: "trackpad", hex: "F07F8", version: "2.0.46" }, + { name: "trackpad-lock", hex: "F0933", version: "2.3.54" }, + { name: "tractor", hex: "F0892", version: "2.1.99" }, + { name: "trademark", hex: "F0A78", version: "2.6.95" }, + { name: "traffic-cone", hex: "F137C", version: "4.9.95" }, + { name: "traffic-light", hex: "F052B", version: "1.5.54" }, + { name: "train", hex: "F052C", version: "1.5.54" }, + { name: "train-car", hex: "F0BD8", version: "3.0.39" }, + { name: "train-variant", hex: "F08C4", version: "2.2.43" }, + { name: "tram", hex: "F052D", version: "1.5.54" }, + { name: "tram-side", hex: "F0FE7", version: "4.0.96" }, + { name: "transcribe", hex: "F052E", version: "1.5.54" }, + { name: "transcribe-close", hex: "F052F", version: "1.5.54" }, + { name: "transfer", hex: "F1065", version: "4.1.95" }, + { name: "transfer-down", hex: "F0DA1", version: "3.4.93" }, + { name: "transfer-left", hex: "F0DA2", version: "3.4.93" }, + { name: "transfer-right", hex: "F0530", version: "1.5.54" }, + { name: "transfer-up", hex: "F0DA3", version: "3.4.93" }, + { name: "transit-connection", hex: "F0D3C", version: "3.3.92" }, + { name: "transit-connection-variant", hex: "F0D3D", version: "3.3.92" }, + { name: "transit-detour", hex: "F0F8B", version: "3.9.97" }, + { name: "transit-transfer", hex: "F06AE", version: "1.7.12" }, + { name: "transition", hex: "F0915", version: "2.3.50" }, + { name: "transition-masked", hex: "F0916", version: "2.3.50" }, + { name: "translate", hex: "F05CA", version: "1.5.54" }, + { name: "translate-off", hex: "F0E06", version: "3.5.94" }, + { name: "transmission-tower", hex: "F0D3E", version: "3.3.92" }, + { name: "trash-can", hex: "F0A79", version: "2.6.95" }, + { name: "trash-can-outline", hex: "F0A7A", version: "2.6.95" }, + { name: "tray", hex: "F1294", version: "4.7.95" }, + { name: "tray-alert", hex: "F1295", version: "4.7.95" }, + { name: "tray-full", hex: "F1296", version: "4.7.95" }, + { name: "tray-minus", hex: "F1297", version: "4.7.95" }, + { name: "tray-plus", hex: "F1298", version: "4.7.95" }, + { name: "tray-remove", hex: "F1299", version: "4.7.95" }, + { name: "treasure-chest", hex: "F0726", version: "1.8.36" }, + { name: "tree", hex: "F0531", version: "1.5.54" }, + { name: "tree-outline", hex: "F0E69", version: "3.6.95" }, + { name: "trello", hex: "F0532", version: "1.5.54" }, + { name: "trending-down", hex: "F0533", version: "1.5.54" }, + { name: "trending-neutral", hex: "F0534", version: "1.5.54" }, + { name: "trending-up", hex: "F0535", version: "1.5.54" }, + { name: "triangle", hex: "F0536", version: "1.5.54" }, + { name: "triangle-outline", hex: "F0537", version: "1.5.54" }, + { name: "triforce", hex: "F0BD9", version: "3.0.39" }, + { name: "trophy", hex: "F0538", version: "1.5.54" }, + { name: "trophy-award", hex: "F0539", version: "1.5.54" }, + { name: "trophy-broken", hex: "F0DA4", version: "3.4.93" }, + { name: "trophy-outline", hex: "F053A", version: "1.5.54" }, + { name: "trophy-variant", hex: "F053B", version: "1.5.54" }, + { name: "trophy-variant-outline", hex: "F053C", version: "1.5.54" }, + { name: "truck", hex: "F053D", version: "1.5.54" }, + { name: "truck-check", hex: "F0CD4", version: "3.2.89" }, + { name: "truck-check-outline", hex: "F129A", version: "4.7.95" }, + { name: "truck-delivery", hex: "F053E", version: "1.5.54" }, + { name: "truck-delivery-outline", hex: "F129B", version: "4.7.95" }, + { name: "truck-fast", hex: "F0788", version: "1.9.32" }, + { name: "truck-fast-outline", hex: "F129C", version: "4.7.95" }, + { name: "truck-outline", hex: "F129D", version: "4.7.95" }, + { name: "truck-trailer", hex: "F0727", version: "1.8.36" }, + { name: "trumpet", hex: "F1096", version: "4.2.95" }, + { name: "tshirt-crew", hex: "F0A7B", version: "2.6.95" }, + { name: "tshirt-crew-outline", hex: "F053F", version: "1.5.54" }, + { name: "tshirt-v", hex: "F0A7C", version: "2.6.95" }, + { name: "tshirt-v-outline", hex: "F0540", version: "1.5.54" }, + { name: "tumble-dryer", hex: "F0917", version: "2.3.50" }, + { name: "tumble-dryer-alert", hex: "F11BA", version: "4.5.95" }, + { name: "tumble-dryer-off", hex: "F11BB", version: "4.5.95" }, + { name: "tune", hex: "F062E", version: "1.6.50" }, + { name: "tune-vertical", hex: "F066A", version: "1.6.50" }, + { name: "turnstile", hex: "F0CD5", version: "3.2.89" }, + { name: "turnstile-outline", hex: "F0CD6", version: "3.2.89" }, + { name: "turtle", hex: "F0CD7", version: "3.2.89" }, + { name: "twitch", hex: "F0543", version: "1.5.54" }, + { name: "twitter", hex: "F0544", version: "1.5.54" }, + { name: "twitter-retweet", hex: "F0547", version: "1.5.54" }, + { name: "two-factor-authentication", hex: "F09AF", version: "2.4.85" }, + { name: "typewriter", hex: "F0F2D", version: "3.8.95" }, + { name: "ubisoft", hex: "F0BDA", version: "3.0.39" }, + { name: "ubuntu", hex: "F0548", version: "1.5.54" }, + { name: "ufo", hex: "F10C4", version: "4.2.95" }, + { name: "ufo-outline", hex: "F10C5", version: "4.2.95" }, + { name: "ultra-high-definition", hex: "F07F9", version: "2.0.46" }, + { name: "umbraco", hex: "F0549", version: "1.5.54" }, + { name: "umbrella", hex: "F054A", version: "1.5.54" }, + { name: "umbrella-closed", hex: "F09B0", version: "2.4.85" }, + { name: "umbrella-outline", hex: "F054B", version: "1.5.54" }, + { name: "undo", hex: "F054C", version: "1.5.54" }, + { name: "undo-variant", hex: "F054D", version: "1.5.54" }, + { name: "unfold-less-horizontal", hex: "F054E", version: "1.5.54" }, + { name: "unfold-less-vertical", hex: "F0760", version: "1.9.32" }, + { name: "unfold-more-horizontal", hex: "F054F", version: "1.5.54" }, + { name: "unfold-more-vertical", hex: "F0761", version: "1.9.32" }, + { name: "ungroup", hex: "F0550", version: "1.5.54" }, + { name: "unicode", hex: "F0ED0", version: "3.7.94" }, + { name: "unity", hex: "F06AF", version: "1.7.12" }, + { name: "unreal", hex: "F09B1", version: "2.4.85" }, + { name: "untappd", hex: "F0551", version: "1.5.54" }, + { name: "update", hex: "F06B0", version: "1.7.12" }, + { name: "upload", hex: "F0552", version: "1.5.54" }, + { name: "upload-lock", hex: "F1373", version: "4.9.95" }, + { name: "upload-lock-outline", hex: "F1374", version: "4.9.95" }, + { name: "upload-multiple", hex: "F083D", version: "2.1.19" }, + { name: "upload-network", hex: "F06F6", version: "1.8.36" }, + { name: "upload-network-outline", hex: "F0CD8", version: "3.2.89" }, + { name: "upload-off", hex: "F10C6", version: "4.2.95" }, + { name: "upload-off-outline", hex: "F10C7", version: "4.2.95" }, + { name: "upload-outline", hex: "F0E07", version: "3.5.94" }, + { name: "usb", hex: "F0553", version: "1.5.54" }, + { name: "usb-flash-drive", hex: "F129E", version: "4.7.95" }, + { name: "usb-flash-drive-outline", hex: "F129F", version: "4.7.95" }, + { name: "usb-port", hex: "F11F0", version: "4.5.95" }, + { name: "valve", hex: "F1066", version: "4.1.95" }, + { name: "valve-closed", hex: "F1067", version: "4.1.95" }, + { name: "valve-open", hex: "F1068", version: "4.1.95" }, + { name: "van-passenger", hex: "F07FA", version: "2.0.46" }, + { name: "van-utility", hex: "F07FB", version: "2.0.46" }, + { name: "vanish", hex: "F07FC", version: "2.0.46" }, + { name: "vanity-light", hex: "F11E1", version: "4.5.95" }, + { name: "variable", hex: "F0AE7", version: "2.7.94" }, + { name: "variable-box", hex: "F1111", version: "4.3.95" }, + { name: "vector-arrange-above", hex: "F0554", version: "1.5.54" }, + { name: "vector-arrange-below", hex: "F0555", version: "1.5.54" }, + { name: "vector-bezier", hex: "F0AE8", version: "2.7.94" }, + { name: "vector-circle", hex: "F0556", version: "1.5.54" }, + { name: "vector-circle-variant", hex: "F0557", version: "1.5.54" }, + { name: "vector-combine", hex: "F0558", version: "1.5.54" }, + { name: "vector-curve", hex: "F0559", version: "1.5.54" }, + { name: "vector-difference", hex: "F055A", version: "1.5.54" }, + { name: "vector-difference-ab", hex: "F055B", version: "1.5.54" }, + { name: "vector-difference-ba", hex: "F055C", version: "1.5.54" }, + { name: "vector-ellipse", hex: "F0893", version: "2.1.99" }, + { name: "vector-intersection", hex: "F055D", version: "1.5.54" }, + { name: "vector-line", hex: "F055E", version: "1.5.54" }, + { name: "vector-link", hex: "F0FE8", version: "4.0.96" }, + { name: "vector-point", hex: "F055F", version: "1.5.54" }, + { name: "vector-polygon", hex: "F0560", version: "1.5.54" }, + { name: "vector-polyline", hex: "F0561", version: "1.5.54" }, + { name: "vector-polyline-edit", hex: "F1225", version: "4.6.95" }, + { name: "vector-polyline-minus", hex: "F1226", version: "4.6.95" }, + { name: "vector-polyline-plus", hex: "F1227", version: "4.6.95" }, + { name: "vector-polyline-remove", hex: "F1228", version: "4.6.95" }, + { name: "vector-radius", hex: "F074A", version: "1.9.32" }, + { name: "vector-rectangle", hex: "F05C6", version: "1.5.54" }, + { name: "vector-selection", hex: "F0562", version: "1.5.54" }, + { name: "vector-square", hex: "F0001", version: "1.5.54" }, + { name: "vector-triangle", hex: "F0563", version: "1.5.54" }, + { name: "vector-union", hex: "F0564", version: "1.5.54" }, + { name: "vhs", hex: "F0A1B", version: "2.5.94" }, + { name: "vibrate", hex: "F0566", version: "1.5.54" }, + { name: "vibrate-off", hex: "F0CD9", version: "3.2.89" }, + { name: "video", hex: "F0567", version: "1.5.54" }, + { name: "video-3d", hex: "F07FD", version: "2.0.46" }, + { name: "video-3d-variant", hex: "F0ED1", version: "3.7.94" }, + { name: "video-4k-box", hex: "F083E", version: "2.1.19" }, + { name: "video-account", hex: "F0919", version: "2.3.50" }, + { name: "video-box", hex: "F00FD", version: "1.5.54" }, + { name: "video-box-off", hex: "F00FE", version: "1.5.54" }, + { name: "video-check", hex: "F1069", version: "4.1.95" }, + { name: "video-check-outline", hex: "F106A", version: "4.1.95" }, + { name: "video-image", hex: "F091A", version: "2.3.50" }, + { name: "video-input-antenna", hex: "F083F", version: "2.1.19" }, + { name: "video-input-component", hex: "F0840", version: "2.1.19" }, + { name: "video-input-hdmi", hex: "F0841", version: "2.1.19" }, + { name: "video-input-scart", hex: "F0F8C", version: "3.9.97" }, + { name: "video-input-svideo", hex: "F0842", version: "2.1.19" }, + { name: "video-minus", hex: "F09B2", version: "2.4.85" }, + { name: "video-minus-outline", hex: "F02BA", version: "1.5.54" }, + { name: "video-off", hex: "F0568", version: "1.5.54" }, + { name: "video-off-outline", hex: "F0BDB", version: "3.0.39" }, + { name: "video-outline", hex: "F0BDC", version: "3.0.39" }, + { name: "video-plus", hex: "F09B3", version: "2.4.85" }, + { name: "video-plus-outline", hex: "F01D3", version: "1.5.54" }, + { name: "video-stabilization", hex: "F091B", version: "2.3.50" }, + { name: "video-switch", hex: "F0569", version: "1.5.54" }, + { name: "video-switch-outline", hex: "F0790", version: "2.0.46" }, + { name: "video-vintage", hex: "F0A1C", version: "2.5.94" }, + { name: "video-wireless", hex: "F0ED2", version: "3.7.94" }, + { name: "video-wireless-outline", hex: "F0ED3", version: "3.7.94" }, + { name: "view-agenda", hex: "F056A", version: "1.5.54" }, + { name: "view-agenda-outline", hex: "F11D8", version: "4.5.95" }, + { name: "view-array", hex: "F056B", version: "1.5.54" }, + { name: "view-carousel", hex: "F056C", version: "1.5.54" }, + { name: "view-column", hex: "F056D", version: "1.5.54" }, + { name: "view-comfy", hex: "F0E6A", version: "3.6.95" }, + { name: "view-compact", hex: "F0E6B", version: "3.6.95" }, + { name: "view-compact-outline", hex: "F0E6C", version: "3.6.95" }, + { name: "view-dashboard", hex: "F056E", version: "1.5.54" }, + { name: "view-dashboard-outline", hex: "F0A1D", version: "2.5.94" }, + { name: "view-dashboard-variant", hex: "F0843", version: "2.1.19" }, + { name: "view-day", hex: "F056F", version: "1.5.54" }, + { name: "view-grid", hex: "F0570", version: "1.5.54" }, + { name: "view-grid-outline", hex: "F11D9", version: "4.5.95" }, + { name: "view-grid-plus", hex: "F0F8D", version: "3.9.97" }, + { name: "view-grid-plus-outline", hex: "F11DA", version: "4.5.95" }, + { name: "view-headline", hex: "F0571", version: "1.5.54" }, + { name: "view-list", hex: "F0572", version: "1.5.54" }, + { name: "view-module", hex: "F0573", version: "1.5.54" }, + { name: "view-parallel", hex: "F0728", version: "1.8.36" }, + { name: "view-quilt", hex: "F0574", version: "1.5.54" }, + { name: "view-sequential", hex: "F0729", version: "1.8.36" }, + { name: "view-split-horizontal", hex: "F0BCB", version: "3.0.39" }, + { name: "view-split-vertical", hex: "F0BCC", version: "3.0.39" }, + { name: "view-stream", hex: "F0575", version: "1.5.54" }, + { name: "view-week", hex: "F0576", version: "1.5.54" }, + { name: "vimeo", hex: "F0577", version: "1.5.54" }, + { name: "violin", hex: "F060F", version: "1.5.54" }, + { name: "virtual-reality", hex: "F0894", version: "2.1.99" }, + { name: "vk", hex: "F0579", version: "1.5.54" }, + { name: "vlc", hex: "F057C", version: "1.5.54" }, + { name: "voice-off", hex: "F0ED4", version: "3.7.95" }, + { name: "voicemail", hex: "F057D", version: "1.5.54" }, + { name: "volleyball", hex: "F09B4", version: "2.4.85" }, + { name: "volume-high", hex: "F057E", version: "1.5.54" }, + { name: "volume-low", hex: "F057F", version: "1.5.54" }, + { name: "volume-medium", hex: "F0580", version: "1.5.54" }, + { name: "volume-minus", hex: "F075E", version: "1.9.32" }, + { name: "volume-mute", hex: "F075F", version: "1.9.32" }, + { name: "volume-off", hex: "F0581", version: "1.5.54" }, + { name: "volume-plus", hex: "F075D", version: "1.9.32" }, + { name: "volume-source", hex: "F1120", version: "4.3.95" }, + { name: "volume-variant-off", hex: "F0E08", version: "3.5.94" }, + { name: "volume-vibrate", hex: "F1121", version: "4.3.95" }, + { name: "vote", hex: "F0A1F", version: "2.5.94" }, + { name: "vote-outline", hex: "F0A20", version: "2.5.94" }, + { name: "vpn", hex: "F0582", version: "1.5.54" }, + { name: "vuejs", hex: "F0844", version: "2.1.19" }, + { name: "vuetify", hex: "F0E6D", version: "3.6.95" }, + { name: "walk", hex: "F0583", version: "1.5.54" }, + { name: "wall", hex: "F07FE", version: "2.0.46" }, + { name: "wall-sconce", hex: "F091C", version: "2.3.50" }, + { name: "wall-sconce-flat", hex: "F091D", version: "2.3.50" }, + { name: "wall-sconce-flat-variant", hex: "F041C", version: "1.5.54" }, + { name: "wall-sconce-round", hex: "F0748", version: "1.9.32" }, + { name: "wall-sconce-round-variant", hex: "F091E", version: "2.3.50" }, + { name: "wallet", hex: "F0584", version: "1.5.54" }, + { name: "wallet-giftcard", hex: "F0585", version: "1.5.54" }, + { name: "wallet-membership", hex: "F0586", version: "1.5.54" }, + { name: "wallet-outline", hex: "F0BDD", version: "3.0.39" }, + { name: "wallet-plus", hex: "F0F8E", version: "3.9.97" }, + { name: "wallet-plus-outline", hex: "F0F8F", version: "3.9.97" }, + { name: "wallet-travel", hex: "F0587", version: "1.5.54" }, + { name: "wallpaper", hex: "F0E09", version: "3.5.94" }, + { name: "wan", hex: "F0588", version: "1.5.54" }, + { name: "wardrobe", hex: "F0F90", version: "3.9.97" }, + { name: "wardrobe-outline", hex: "F0F91", version: "3.9.97" }, + { name: "warehouse", hex: "F0F81", version: "3.9.97" }, + { name: "washing-machine", hex: "F072A", version: "1.8.36" }, + { name: "washing-machine-alert", hex: "F11BC", version: "4.5.95" }, + { name: "washing-machine-off", hex: "F11BD", version: "4.5.95" }, + { name: "watch", hex: "F0589", version: "1.5.54" }, + { name: "watch-export", hex: "F058A", version: "1.5.54" }, + { name: "watch-export-variant", hex: "F0895", version: "2.1.99" }, + { name: "watch-import", hex: "F058B", version: "1.5.54" }, + { name: "watch-import-variant", hex: "F0896", version: "2.1.99" }, + { name: "watch-variant", hex: "F0897", version: "2.1.99" }, + { name: "watch-vibrate", hex: "F06B1", version: "1.7.12" }, + { name: "watch-vibrate-off", hex: "F0CDA", version: "3.2.89" }, + { name: "water", hex: "F058C", version: "1.5.54" }, + { name: "water-boiler", hex: "F0F92", version: "3.9.97" }, + { name: "water-boiler-alert", hex: "F11B3", version: "4.5.95" }, + { name: "water-boiler-off", hex: "F11B4", version: "4.5.95" }, + { name: "water-off", hex: "F058D", version: "1.5.54" }, + { name: "water-outline", hex: "F0E0A", version: "3.5.94" }, + { name: "water-percent", hex: "F058E", version: "1.5.54" }, + { name: "water-polo", hex: "F12A0", version: "4.7.95" }, + { name: "water-pump", hex: "F058F", version: "1.5.54" }, + { name: "water-pump-off", hex: "F0F93", version: "3.9.97" }, + { name: "water-well", hex: "F106B", version: "4.1.95" }, + { name: "water-well-outline", hex: "F106C", version: "4.1.95" }, + { name: "watermark", hex: "F0612", version: "1.5.54" }, + { name: "wave", hex: "F0F2E", version: "3.8.95" }, + { name: "waves", hex: "F078D", version: "1.9.32" }, + { name: "waze", hex: "F0BDE", version: "3.0.39" }, + { name: "weather-cloudy", hex: "F0590", version: "1.5.54" }, + { name: "weather-cloudy-alert", hex: "F0F2F", version: "3.8.95" }, + { name: "weather-cloudy-arrow-right", hex: "F0E6E", version: "3.6.95" }, + { name: "weather-fog", hex: "F0591", version: "1.5.54" }, + { name: "weather-hail", hex: "F0592", version: "1.5.54" }, + { name: "weather-hazy", hex: "F0F30", version: "3.8.95" }, + { name: "weather-hurricane", hex: "F0898", version: "2.1.99" }, + { name: "weather-lightning", hex: "F0593", version: "1.5.54" }, + { name: "weather-lightning-rainy", hex: "F067E", version: "1.7.12" }, + { name: "weather-night", hex: "F0594", version: "1.5.54" }, + { name: "weather-night-partly-cloudy", hex: "F0F31", version: "3.8.95" }, + { name: "weather-partly-cloudy", hex: "F0595", version: "1.5.54" }, + { name: "weather-partly-lightning", hex: "F0F32", version: "3.8.95" }, + { name: "weather-partly-rainy", hex: "F0F33", version: "3.8.95" }, + { name: "weather-partly-snowy", hex: "F0F34", version: "3.8.95" }, + { name: "weather-partly-snowy-rainy", hex: "F0F35", version: "3.8.95" }, + { name: "weather-pouring", hex: "F0596", version: "1.5.54" }, + { name: "weather-rainy", hex: "F0597", version: "1.5.54" }, + { name: "weather-snowy", hex: "F0598", version: "1.5.54" }, + { name: "weather-snowy-heavy", hex: "F0F36", version: "3.8.95" }, + { name: "weather-snowy-rainy", hex: "F067F", version: "1.7.12" }, + { name: "weather-sunny", hex: "F0599", version: "1.5.54" }, + { name: "weather-sunny-alert", hex: "F0F37", version: "3.8.95" }, + { name: "weather-sunset", hex: "F059A", version: "1.5.54" }, + { name: "weather-sunset-down", hex: "F059B", version: "1.5.54" }, + { name: "weather-sunset-up", hex: "F059C", version: "1.5.54" }, + { name: "weather-tornado", hex: "F0F38", version: "3.8.95" }, + { name: "weather-windy", hex: "F059D", version: "1.5.54" }, + { name: "weather-windy-variant", hex: "F059E", version: "1.5.54" }, + { name: "web", hex: "F059F", version: "1.5.54" }, + { name: "web-box", hex: "F0F94", version: "3.9.97" }, + { name: "web-clock", hex: "F124A", version: "4.6.95" }, + { name: "webcam", hex: "F05A0", version: "1.5.54" }, + { name: "webhook", hex: "F062F", version: "1.6.50" }, + { name: "webpack", hex: "F072B", version: "1.8.36" }, + { name: "webrtc", hex: "F1248", version: "4.6.95" }, + { name: "wechat", hex: "F0611", version: "1.5.54" }, + { name: "weight", hex: "F05A1", version: "1.5.54" }, + { name: "weight-gram", hex: "F0D3F", version: "3.3.92" }, + { name: "weight-kilogram", hex: "F05A2", version: "1.5.54" }, + { name: "weight-lifter", hex: "F115D", version: "4.4.95" }, + { name: "weight-pound", hex: "F09B5", version: "2.4.85" }, + { name: "whatsapp", hex: "F05A3", version: "1.5.54" }, + { name: "wheelchair-accessibility", hex: "F05A4", version: "1.5.54" }, + { name: "whistle", hex: "F09B6", version: "2.4.85" }, + { name: "whistle-outline", hex: "F12BC", version: "4.8.95" }, + { name: "white-balance-auto", hex: "F05A5", version: "1.5.54" }, + { name: "white-balance-incandescent", hex: "F05A6", version: "1.5.54" }, + { name: "white-balance-iridescent", hex: "F05A7", version: "1.5.54" }, + { name: "white-balance-sunny", hex: "F05A8", version: "1.5.54" }, + { name: "widgets", hex: "F072C", version: "1.8.36" }, + { name: "widgets-outline", hex: "F1355", version: "4.9.95" }, + { name: "wifi", hex: "F05A9", version: "1.5.54" }, + { name: "wifi-off", hex: "F05AA", version: "1.5.54" }, + { name: "wifi-star", hex: "F0E0B", version: "3.5.94" }, + { name: "wifi-strength-1", hex: "F091F", version: "2.3.50" }, + { name: "wifi-strength-1-alert", hex: "F0920", version: "2.3.50" }, + { name: "wifi-strength-1-lock", hex: "F0921", version: "2.3.50" }, + { name: "wifi-strength-2", hex: "F0922", version: "2.3.50" }, + { name: "wifi-strength-2-alert", hex: "F0923", version: "2.3.50" }, + { name: "wifi-strength-2-lock", hex: "F0924", version: "2.3.50" }, + { name: "wifi-strength-3", hex: "F0925", version: "2.3.50" }, + { name: "wifi-strength-3-alert", hex: "F0926", version: "2.3.50" }, + { name: "wifi-strength-3-lock", hex: "F0927", version: "2.3.50" }, + { name: "wifi-strength-4", hex: "F0928", version: "2.3.50" }, + { name: "wifi-strength-4-alert", hex: "F0929", version: "2.3.50" }, + { name: "wifi-strength-4-lock", hex: "F092A", version: "2.3.50" }, + { name: "wifi-strength-alert-outline", hex: "F092B", version: "2.3.50" }, + { name: "wifi-strength-lock-outline", hex: "F092C", version: "2.3.50" }, + { name: "wifi-strength-off", hex: "F092D", version: "2.3.50" }, + { name: "wifi-strength-off-outline", hex: "F092E", version: "2.3.50" }, + { name: "wifi-strength-outline", hex: "F092F", version: "2.3.50" }, + { name: "wikipedia", hex: "F05AC", version: "1.5.54" }, + { name: "wind-turbine", hex: "F0DA5", version: "3.4.93" }, + { name: "window-close", hex: "F05AD", version: "1.5.54" }, + { name: "window-closed", hex: "F05AE", version: "1.5.54" }, + { name: "window-closed-variant", hex: "F11DB", version: "4.5.95" }, + { name: "window-maximize", hex: "F05AF", version: "1.5.54" }, + { name: "window-minimize", hex: "F05B0", version: "1.5.54" }, + { name: "window-open", hex: "F05B1", version: "1.5.54" }, + { name: "window-open-variant", hex: "F11DC", version: "4.5.95" }, + { name: "window-restore", hex: "F05B2", version: "1.5.54" }, + { name: "window-shutter", hex: "F111C", version: "4.3.95" }, + { name: "window-shutter-alert", hex: "F111D", version: "4.3.95" }, + { name: "window-shutter-open", hex: "F111E", version: "4.3.95" }, + { name: "wiper", hex: "F0AE9", version: "2.7.94" }, + { name: "wiper-wash", hex: "F0DA6", version: "3.4.93" }, + { name: "wordpress", hex: "F05B4", version: "1.5.54" }, + { name: "wrap", hex: "F05B6", version: "1.5.54" }, + { name: "wrap-disabled", hex: "F0BDF", version: "3.0.39" }, + { name: "wrench", hex: "F05B7", version: "1.5.54" }, + { name: "wrench-outline", hex: "F0BE0", version: "3.0.39" }, + { name: "xamarin", hex: "F0845", version: "2.1.19" }, + { name: "xamarin-outline", hex: "F0846", version: "2.1.19" }, + { name: "xing", hex: "F05BE", version: "1.5.54" }, + { name: "xml", hex: "F05C0", version: "1.5.54" }, + { name: "xmpp", hex: "F07FF", version: "2.0.46" }, + { name: "y-combinator", hex: "F0624", version: "1.6.50" }, + { name: "yahoo", hex: "F0B4F", version: "2.8.94" }, + { name: "yeast", hex: "F05C1", version: "1.5.54" }, + { name: "yin-yang", hex: "F0680", version: "1.7.12" }, + { name: "yoga", hex: "F117C", version: "4.4.95" }, + { name: "youtube", hex: "F05C3", version: "1.5.54" }, + { name: "youtube-gaming", hex: "F0848", version: "2.1.19" }, + { name: "youtube-studio", hex: "F0847", version: "2.1.19" }, + { name: "youtube-subscription", hex: "F0D40", version: "3.3.92" }, + { name: "youtube-tv", hex: "F0448", version: "1.5.54" }, + { name: "z-wave", hex: "F0AEA", version: "2.7.94" }, + { name: "zend", hex: "F0AEB", version: "2.7.94" }, + { name: "zigbee", hex: "F0D41", version: "3.3.92" }, + { name: "zip-box", hex: "F05C4", version: "1.5.54" }, + { name: "zip-box-outline", hex: "F0FFA", version: "4.0.96" }, + { name: "zip-disk", hex: "F0A23", version: "2.5.94" }, + { name: "zodiac-aquarius", hex: "F0A7D", version: "2.6.95" }, + { name: "zodiac-aries", hex: "F0A7E", version: "2.6.95" }, + { name: "zodiac-cancer", hex: "F0A7F", version: "2.6.95" }, + { name: "zodiac-capricorn", hex: "F0A80", version: "2.6.95" }, + { name: "zodiac-gemini", hex: "F0A81", version: "2.6.95" }, + { name: "zodiac-leo", hex: "F0A82", version: "2.6.95" }, + { name: "zodiac-libra", hex: "F0A83", version: "2.6.95" }, + { name: "zodiac-pisces", hex: "F0A84", version: "2.6.95" }, + { name: "zodiac-sagittarius", hex: "F0A85", version: "2.6.95" }, + { name: "zodiac-scorpio", hex: "F0A86", version: "2.6.95" }, + { name: "zodiac-taurus", hex: "F0A87", version: "2.6.95" }, + { name: "zodiac-virgo", hex: "F0A88", version: "2.6.95" }, +]; - -export { icons }; \ No newline at end of file +export { icons }; diff --git a/src/app/core/icons/materialdesign/materialdesign.component.html b/src/app/core/icons/materialdesign/materialdesign.component.html index 3376648..2745d78 100644 --- a/src/app/core/icons/materialdesign/materialdesign.component.html +++ b/src/app/core/icons/materialdesign/materialdesign.component.html @@ -4,48 +4,45 @@
-

New Icons

-

Use <i class="mdi mdi-speedometer-slow"></i> v 5.0.45.

+

+ Use <i class="mdi mdi-speedometer-slow"></i> v 5.0.45. +

-
-
+
+ +
+

All Icons

-
-
- - + + + + + + + +
-

Size

-
- mdi-18px -
+
mdi-18px
-
- mdi-24px -
+
mdi-24px
-
- mdi-36px -
+
mdi-36px
-
- mdi-48px -
+
mdi-48px
@@ -56,32 +53,17 @@

Size

-

Rotate

-
- mdi-rotate-45 -
-
- mdi-rotate-90 -
-
- mdi-rotate-135 -
-
- mdi-rotate-180 -
-
- mdi-rotate-225 -
-
- mdi-rotate-270 -
-
- mdi-rotate-315 -
+
mdi-rotate-45
+
mdi-rotate-90
+
mdi-rotate-135
+
mdi-rotate-180
+
mdi-rotate-225
+
mdi-rotate-270
+
mdi-rotate-315
@@ -92,21 +74,16 @@

Rotate

-

Spin

-
- mdi-spin -
-
- mdi-spin -
+
mdi-spin
+
mdi-spin
-
\ No newline at end of file +
diff --git a/src/app/core/icons/materialdesign/materialdesign.component.spec.ts b/src/app/core/icons/materialdesign/materialdesign.component.spec.ts index 9b71fb6..350a303 100644 --- a/src/app/core/icons/materialdesign/materialdesign.component.spec.ts +++ b/src/app/core/icons/materialdesign/materialdesign.component.spec.ts @@ -1,16 +1,15 @@ -import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; +import { ComponentFixture, TestBed, waitForAsync } from "@angular/core/testing"; -import { MaterialdesignComponent } from './materialdesign.component'; +import { MaterialdesignComponent } from "./materialdesign.component"; -describe('MaterialdesignComponent', () => { +describe("MaterialdesignComponent", () => { let component: MaterialdesignComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ - declarations: [ MaterialdesignComponent ] - }) - .compileComponents(); + declarations: [MaterialdesignComponent], + }).compileComponents(); })); beforeEach(() => { @@ -19,7 +18,7 @@ describe('MaterialdesignComponent', () => { fixture.detectChanges(); }); - it('should create', () => { + it("should create", () => { expect(component).toBeTruthy(); }); }); diff --git a/src/app/core/icons/materialdesign/materialdesign.component.ts b/src/app/core/icons/materialdesign/materialdesign.component.ts index 92dd942..ce45dbd 100644 --- a/src/app/core/icons/materialdesign/materialdesign.component.ts +++ b/src/app/core/icons/materialdesign/materialdesign.component.ts @@ -1,11 +1,11 @@ -import { Component, OnInit } from '@angular/core'; +import { Component, OnInit } from "@angular/core"; -import { icons } from './data'; +import { icons } from "./data"; @Component({ - selector: 'app-materialdesign', - templateUrl: './materialdesign.component.html', - styleUrls: ['./materialdesign.component.scss'] + selector: "app-materialdesign", + templateUrl: "./materialdesign.component.html", + styleUrls: ["./materialdesign.component.scss"], }) /** @@ -17,20 +17,20 @@ export class MaterialdesignComponent implements OnInit { icons: Array<{}>; iconsCount = 0; newIconsCount = 0; - constructor() { } + constructor() {} ngOnInit() { - this.breadCrumbItems = [{ label: 'Icons' }, { label: 'MD Icons', active: true }]; + this.breadCrumbItems = [{ label: "Icons" }, { label: "MD Icons", active: true }]; this.icons = icons; - this.icons.push({ name: 'blank', hex: 'f68c' }); + this.icons.push({ name: "blank", hex: "f68c" }); - this.icons.forEach(icon => { + this.icons.forEach((icon) => { const item = this.getIconItem(icon, this.isNew(icon)); - document.getElementById('icons').appendChild(item); + document.getElementById("icons").appendChild(item); if (this.isNew(icon)) { const newItem = this.getIconItem(icon, false); - document.getElementById('newIcons').appendChild(newItem); + document.getElementById("newIcons").appendChild(newItem); this.newIconsCount++; } this.iconsCount++; @@ -38,25 +38,23 @@ export class MaterialdesignComponent implements OnInit { } isNew(icon) { - return icon.version === '5.0.45'; + return icon.version === "5.0.45"; } getIconItem(icon, isNewIcon) { // tslint:disable-next-line: one-variable-per-declaration - const div = document.createElement('div'), - i = document.createElement('i'); - div.className = 'col-xl-3 col-lg-4 col-sm-6'; - i.className = 'mdi mdi-' + icon.name; + const div = document.createElement("div"), + i = document.createElement("i"); + div.className = "col-xl-3 col-lg-4 col-sm-6"; + i.className = "mdi mdi-" + icon.name; div.appendChild(i); - const span = document.createElement('span'); - span.appendChild(document.createTextNode('mdi-' + icon.name)); + const span = document.createElement("span"); + span.appendChild(document.createTextNode("mdi-" + icon.name)); div.appendChild(span); return div; } isDeprecated(icon) { - return typeof icon.deprecated === 'undefined' - ? false - : icon.deprecated; + return typeof icon.deprecated === "undefined" ? false : icon.deprecated; } } diff --git a/src/app/core/icons/remix/data.ts b/src/app/core/icons/remix/data.ts index 8deda4c..e2d2d2c 100644 --- a/src/app/core/icons/remix/data.ts +++ b/src/app/core/icons/remix/data.ts @@ -1,4 +1,5 @@ // tslint:disable-next-line: max-line-length -const icons = '{"Buildings":{"home":["house","房子","家","主页"],"home-2":["house","房子","家","主页"],"home-3":["house","房子","家","主页"],"home-4":["house","房子","家","主页"],"home-5":["house","房子","家","主页"],"home-6":["house","房子","家","主页"],"home-7":["house","房子","家","主页"],"home-8":["house","房子","家","主页"],"home-gear":["house","房子","工厂"],"home-wifi":["smart home","房子","家具","智能家居"],"home-smile":["house","smart home","smile","房子","智能家居","微笑"],"home-smile-2":["house","smart home","smile","房子","智能家居","微笑"],"home-heart":["house","心","房子","家","主页","孤儿院"],"building":["city","office","enterprise","建筑","城市","楼","办公楼","写字楼","企业"],"building-2":["city","office","construction","enterprise","城市","建筑","楼","企业"],"building-3":["factory","plant","enterprise","工厂","建筑","楼","企业"],"building-4":["city","office","enterprise","建筑","城市","楼","办公楼","写字楼","企业"],"hotel":["building","hotel","office","enterprise","tavern","建筑","酒店","楼","办公楼","写字楼","企业"],"community":["building","hotel","社区","建筑","酒店"],"government":["building","政府","建筑","大会堂"],"bank":["bank","finance","savings","banking","银行","交易所"],"store":["shop","mall","supermarket","商店","超市","店铺","商家"],"store-2":["shop","mall","supermarket","商店","超市","店铺","商家"],"store-3":["shop","mall","supermarket","商店","超市","店铺","商家"],"hospital":["medical","health","医院"],"ancient-gate":["historical","genre","scenic","trip","travel","旅行","旅游","城门","古代","历史","景区"],"ancient-pavilion":["historical","genre","scenic","trip","travel","旅行","旅游","凉亭","古代","历史","景区"]},"Business":{"mail":["envelope","email","inbox","信封","邮箱","邮件","收件箱"],"mail-open":["envelope","email","inbox","信封","邮箱","邮件","收件箱"],"mail-send":["envelope","email","inbox","信封","邮箱","邮件","发送","发件箱"],"mail-unread":["envelope","email","inbox","信封","邮箱","邮件","未读"],"mail-add":["envelope","email","inbox","add","信封","邮箱","邮件","新增","添加"],"mail-check":["envelope","email","inbox","read","信封","邮箱","邮件","已读"],"mail-close":["envelope","email","inbox","failed","x","信封","邮箱","邮件","失败"],"mail-download":["envelope","email","inbox","download","信封","邮箱","邮件","下载"],"mail-forbid":["envelope","email","inbox","privacy","信封","邮箱","邮件","禁止"],"mail-lock":["envelope","email","inbox","lock","信封","邮箱","邮件","加密"],"mail-settings":["envelope","email","inbox","settings","信封","邮箱","邮件","设置"],"mail-star":["envelope","email","inbox","favorite","信封","邮箱","邮件","收藏","喜欢"],"mail-volume":["envelope","email","inbox","promotional email","email campaign","subscription","信封","邮箱","邮件","收件箱","推广","订阅"],"inbox":["收件箱"],"inbox-archive":["收件箱","归档","收纳"],"inbox-unarchive":["unzip","unpack","extract","收件箱","取消归档","还原","解压缩"],"cloud":["weather","云端"],"cloud-off":["offline-mode","connection-fail","slash","weather","云端","断网","无信号","连接失败"],"attachment":["annex","paperclip","附件","曲别针"],"profile":["id","档案","资料","身份证","证件"],"archive":["box","收纳","归档","存档","盒子","纸箱"],"archive-drawer":["night table","收纳","抽屉","归档","存档","床头柜"],"at":["@","mention","提到","在"],"award":["medal","achievement","badge","成就","奖牌","金牌","勋章"],"medal":["award","achievement","badge","成就","奖牌","金牌","勋章"],"medal-2":["award","achievement","badge","成就","奖牌","金牌","勋章"],"bar-chart":["statistics","rhythm","柱状图","统计","韵律","节奏"],"bar-chart-horizontal":["statistics","rhythm","柱状图","统计","韵律","节奏"],"bar-chart-2":["statistics","rhythm","柱状图","统计","排行","节奏"],"bar-chart-box":["statistics","rhythm","柱状图","统计","节奏"],"bar-chart-grouped":["statistics","rhythm","柱状图","统计","分组"],"bubble-chart":["data","analysis","statistics","气泡图","统计"],"pie-chart":["data","analysis","饼图","饼状图","数据","分析"],"pie-chart-2":["data","analysis","饼图","饼状图","数据","分析"],"pie-chart-box":["data","analysis","饼图","饼状图","数据","分析"],"donut-chart":["data","analysis","环形图","数据","分析"],"line-chart":["data","analysis","stats","折线图","数据","分析"],"bookmark":["tag","书签","标记"],"bookmark-2":["tag","书签","标记"],"bookmark-3":["tag","书签","标记","荣誉"],"briefcase":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"briefcase-2":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"briefcase-3":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"briefcase-4":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"briefcase-5":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"calculator":["计算器","计算机"],"calendar":["date","plan","schedule","agenda","日历","日期","月份","计划","日程","时间表"],"calendar-2":["date","plan","schedule","agenda","日历","日期","月份","计划","日程","时间表"],"calendar-event":["date","plan","schedule","agenda","日历","日期","月份","计划","日程","时间表"],"calendar-todo":["date","plan","schedule","agenda","日历","日期","月份","计划","日程","时间表"],"calendar-check":["date","plan","schedule","agenda","check-in","punch","日历","日期","月份","计划","日程","时间表","签到","打卡"],"customer-service":["headset","客服","售后","耳机","耳麦"],"customer-service-2":["headset","客服","售后","耳机","耳麦"],"flag":["banner","pin","旗帜","旗子","国旗","标记"],"flag-2":["banner","pin","旗帜","旗子","国旗","标记"],"global":["earth","union","world","language","地球","联合","世界","全球","语言"],"honour":["honor","glory","锦旗","荣誉","荣耀","军衔"],"links":["connection","address","联系","链接","地址"],"printer":["打印机"],"printer-cloud":["打印机","云打印"],"record-mail":["voice mail","tape","录音","留言","语音信箱","磁带"],"reply":["forward","回复","答复","留言","转发"],"send-plane":["发送","纸飞机"],"send-plane-2":["发送","纸飞机"],"projector":["projection","meeting","投影仪","会议室"],"projector-2":["projection","meeting","投影仪","会议室","极米"],"slideshow":["presentation","meeting","PPT","keynote","投影","放映","演示","演讲","幻灯片","会议室"],"slideshow-2":["presentation","meeting","投影","放映","演示","演讲","幻灯片","会议室"],"slideshow-3":["presentation","meeting","投影","放映","演示","演讲","视频会议","幻灯片","会议室"],"slideshow-4":["presentation","meeting","投影","放映","演示","演讲","可视对讲","幻灯片","会议室"],"window":["browser","program","web","窗口","浏览器","程序","网站"],"window-2":["browser","program","web","窗口","浏览器","程序","网站"],"stack":["layers","图层","叠加","堆栈"],"service":["heart","handshake","cooperation","服务","握手","心","合作"],"registered":["注册","商标"],"trademark":["注册","商标"],"advertisement":["ad","广告","推广"],"copyright":["版权"],"creative-commons":["知识共享"],"creative-commons-by":["attribution","copyright","版权","知识共享","署名"],"creative-commons-nc":["noncommercial","copyright","版权","知识共享","非商业用途"],"creative-commons-nd":["no derivative works","copyright","版权","知识共享","禁止演绎"],"creative-commons-sa":["share alike","copyright","版权","知识共享","相同方式共享"],"creative-commons-zero":["cc0","copyright","版权","知识共享"]},"Communication":{"chat-1":["message","reply","comment","消息","聊天","回复","评论"],"chat-2":["message","reply","comment","消息","聊天","回复","评论"],"chat-3":["message","reply","comment","消息","聊天","回复","评论"],"chat-4":["message","reply","comment","消息","聊天","回复","评论"],"message":["chat","comment","reply","消息","聊天","回复","评论"],"message-2":["chat","reply","comment","消息","聊天","回复","评论"],"message-3":["chat","reply","comment","消息","聊天","回复","评论"],"chat-check":["message","reply","comment","消息","聊天","回复","评论","已阅"],"chat-delete":["message","comment","消息","聊天","回复","评论","清除","删除"],"chat-forward":["message","comment","消息","聊天","转发"],"chat-upload":["message","comment","消息","聊天","上传"],"chat-download":["message","comment","消息","下载"],"chat-new":["message","reply","comment","消息","聊天","回复","评论"],"chat-settings":["message","comment","消息","聊天","回复","评论","设置"],"chat-smile":["message","reply","comment","消息","聊天","回复","评论"],"chat-smile-2":["message","reply","comment","消息","聊天","回复","评论"],"chat-smile-3":["message","reply","comment","消息","聊天","回复","评论"],"chat-heart":["message","reply","comment","消息","聊天","回复","评论","心","点赞","收藏"],"chat-off":["message","reply","comment","slash","消息","聊天","回复","评论","禁止","关闭"],"feedback":["message","comment","消息","聊天","回复","评论","反馈"],"discuss":["message","reply","comment","消息","聊天","回复","评论","讨论","群聊"],"question-answer":["message","reply","comment","消息","聊天","回复","评论","讨论","群聊"],"questionnaire":["message","comment","help","消息","聊天","回复","评论","讨论","调查问卷","帮助"],"video-chat":["message","comment","消息","视频聊天"],"chat-voice":["message","comment","消息","语音消息"],"chat-quote":["message","reply","comment","消息","引用回复"],"chat-follow-up":["message","reply","comment","消息","+1","跟帖"],"chat-poll":["message","vote","questionnaire","消息","投票","问卷调查"],"chat-history":["message","历史消息","消息记录"],"chat-private":["message","私密消息","密聊"]},"Design":{"pencil":["edit","铅笔","编辑"],"edit":["pencil","铅笔","编辑"],"edit-2":["pencil","铅笔","编辑"],"ball-pen":["圆珠笔"],"quill-pen":["羽毛笔"],"mark-pen":["马克笔"],"markup":["标记","马克"],"pen-nib":["钢笔","笔尖"],"edit-box":["编辑"],"edit-circle":["编辑"],"sip":["吸管","取色器"],"brush":["笔刷","画笔","刷子"],"brush-2":["刷子"],"brush-3":["刷子"],"brush-4":["刷子"],"paint-brush":["填色","填充","刷子"],"contrast":["brightness","tonalit","对比度","亮度","色调"],"contrast-2":["moon","dark","brightness","tonalit","月亮","夜间","对比度","亮度","色调"],"drop":["water","blur","模糊","水","滴"],"blur-off":["water","drop","slash","模糊","水","滴","禁止","关闭"],"contrast-drop":["water","brightness","tonalit","水","对比度","亮度","色调","滴"],"contrast-drop-2":["water","brightness","tonalit","水","对比度","亮度","色调","滴"],"compasses":["圆规"],"compasses-2":["圆规"],"scissors":["剪刀","裁剪"],"scissors-cut":["剪刀","裁剪"],"scissors-2":["剪刀","裁剪","截屏"],"slice":["knife","切图","切片","刀"],"eraser":["remove formatting","橡皮","擦除","清除格式"],"ruler":["尺子"],"ruler-2":["尺子"],"pencil-ruler":["design","铅笔","尺子","文具","设计"],"pencil-ruler-2":["design","铅笔","尺子","文具","设计"],"t-box":["文字","字体","字号"],"input-method":["输入法","文字"],"artboard":["grid","crop","画板","裁切"],"artboard-2":["画板"],"crop":["裁切"],"crop-2":["裁切"],"screenshot":["capture","屏幕截图","截屏"],"screenshot-2":["capture","屏幕截图","截屏"],"drag-move":["arrow","拖拽","移动","箭头"],"drag-move-2":["arrow","拖拽","移动","箭头"],"focus":["aim","target","焦点","聚焦","目标","靶心"],"focus-2":["aim","target","bullseye","焦点","聚焦","目标","靶心"],"focus-3":["aim","target","bullseye","焦点","聚焦","目标","靶心"],"paint":["填色","填充","油漆桶"],"palette":["调色盘","色板"],"pantone":["色板","潘通色","色号"],"shape":["border","形状","描边","边框"],"shape-2":["border","形状","描边","边框"],"magic":["fantasy","magic stick","beautify","魔法棒","美化","幻想","魔幻"],"anticlockwise":["rotate","left","左翻转","左旋转"],"anticlockwise-2":["rotate","left","左翻转","左旋转"],"clockwise":["rotate","right","右翻转","右旋转"],"clockwise-2":["rotate","right","右翻转","右旋转"],"hammer":["锤子"],"tools":["settings","工具","设置"],"drag-drop":["drag and drop","mouse","拖拽","鼠标"],"table":["表格"],"table-alt":["表格"],"layout":["布局"],"layout-2":["collage","布局","拼贴画"],"layout-3":["collage","布局","拼贴画"],"layout-4":["collage","布局","拼贴画"],"layout-5":["collage","布局","拼贴画"],"layout-6":["collage","布局","拼贴画"],"layout-column":["左右布局"],"layout-row":["上下布局"],"layout-top":["顶部布局","顶部导航"],"layout-right":["右侧布局","右侧导航"],"layout-bottom":["底部布局","底部导航"],"layout-left":["左侧布局","左侧导航"],"layout-top-2":["顶部布局","顶部导航"],"layout-right-2":["右侧布局","右侧导航"],"layout-bottom-2":["底部布局","底部导航"],"layout-left-2":["左侧布局","左侧导航"],"layout-grid":["卡片布局","网格"],"layout-masonry":["瀑布流布局","拼贴画"],"grid":["table","网格","表格"]},"Development":{"bug":["虫子"],"bug-2":["虫子"],"code":["代码","编程"],"code-s":["代码","编程"],"code-s-slash":["代码","编程"],"code-box":["代码","编程"],"terminal-box":["code","command line","终端","代码","命令行"],"terminal":["code","command line","终端","代码","命令行"],"terminal-window":["code","command line","终端","代码","命令行"],"parentheses":["code","math","小括号"],"brackets":["code","math","中括号"],"braces":["code","math","大括号","花括号"],"command":["apple key","花键","苹果键"],"cursor":["mouse","指针","鼠标"],"git-commit":["node","提交"],"git-pull-request":["合并申请"],"git-merge":["合并"],"git-branch":["分支"],"git-repository":["仓库"],"git-repository-commits":["仓库","提交"],"git-repository-private":["私密仓库","私人仓库"],"html5":["html","h5"],"css3":["css"]},"Device":{"tv":["电视"],"tv-2":["monitor","电视","显示器"],"computer":["monitor","电脑","显示器"],"mac":["monitor","显示器"],"macbook":["laptop","笔记本"],"cellphone":["手机","电话"],"smartphone":["mobile","手机"],"tablet":["平板电脑"],"device":["设备"],"phone":["电话"],"database":["storage","数据库","存储"],"database-2":["storage","数据库","存储"],"server":["服务器"],"hard-drive":["disc","storage","硬盘","存储"],"hard-drive-2":["disc","server","storage","硬盘","服务器","存储"],"install":["安装"],"uninstall":["卸载"],"save":["floppy","保存","软盘"],"save-2":["floppy","保存","软盘"],"save-3":["floppy","保存","软盘"],"sd-card":["内存卡"],"sd-card-mini":["内存卡"],"sim-card":["电话卡"],"sim-card-2":["电话卡"],"dual-sim-1":["sim card","电话卡","卡槽","双卡双待"],"dual-sim-2":["sim card","电话卡","卡槽","双卡双待"],"u-disk":["U盘","优盘"],"battery":["电池"],"battery-charge":["电池","充电"],"battery-low":["电池","低电量"],"battery-2":["电池"],"battery-2-charge":["电池","充电"],"battery-saver":["电池","省电模式"],"battery-share":["电池共享","共享电量"],"cast":["mirroring","投屏","无线","广播"],"airplay":["mirroring","投屏","无线"],"cpu":["中央处理器"],"gradienter":["水平仪"],"keyboard":["input","键盘","输入"],"keyboard-box":["input","键盘","输入"],"mouse":["鼠标"],"sensor":["capacitor","传感器","电容器"],"router":["wifi","signal tower","radio","station","路由器","信号塔","广播","基站","流量"],"radar":["satellite receiver","雷达","卫星接收器","锅"],"gamepad":["consoles","controller","游戏手柄"],"remote-control":["controller","遥控器"],"remote-control-2":["controller","遥控器"],"device-recover":["恢复出厂设置"],"hotspot":["手机热点"],"phone-find":["找回手机"],"phone-lock":["锁定手机"],"rotate-lock":["锁定旋转屏幕"],"restart":["reload","refresh","重启"],"shut-down":["power off","关机"],"fingerprint":["指纹"],"fingerprint-2":["指纹"],"barcode":["scan","扫码","条形码","条码"],"barcode-box":["scan","扫码","条形码","条码"],"qr-code":["二维码"],"qr-scan":["二维码","扫描"],"qr-scan-2":["二维码","扫描"],"scan":["扫描"],"scan-2":["扫描"],"rss":["feed","subscribe","订阅"],"gps":["signal","定位","信号"],"base-station":["wifi","signal tower","router","cast","基站","信号塔","路由器","广播","流量"],"bluetooth":["wireless","蓝牙","无线"],"bluetooth-connect":["wireless","蓝牙","连接","无线"],"wifi":["无线网"],"wifi-off":["slash","offline","connection-fail","无线网","关闭","断网","链接失败"],"signal-wifi":["cellular","strength","无线网","信号"],"signal-wifi-1":["cellular","strength","无线网","信号"],"signal-wifi-2":["cellular","strength","无线网","信号"],"signal-wifi-3":["cellular","strength","无线网","信号"],"signal-wifi-error":["cellular","offline","connection-fail","无线网","断网","链接失败","无信号"],"signal-wifi-off":["cellular","slash","offline","connection-fail","无线网","关闭","断网","链接失败"],"wireless-charging":["power","flash","无线充电","闪充"]},"Document":{"file":["new","paper","文件","文档","新建"],"file-2":["new","paper","文件","文档","新建"],"file-3":["new","paper","文件","文档","新建"],"file-4":["new","paper","文件","文档","新建"],"sticky-note":["new","paper","文件","文档","新建","便签纸","便利贴"],"sticky-note-2":["new","paper","文件","文档","新建","便签纸","便利贴"],"file-edit":["文件","文档","编辑"],"file-paper":["文件","文档","纸","谱"],"file-paper-2":["文件","文档","纸","谱"],"file-text":["文件","文档","文本"],"file-list":["清单","列表"],"file-list-2":["清单","列表"],"file-list-3":["newspaper","清单","列表","报纸"],"bill":["账单"],"file-copy":["duplicate","clone","复制","克隆"],"file-copy-2":["duplicate","clone","复制","克隆"],"clipboard":["copy","复制","剪切板"],"survey":["research","questionnaire","调查","问卷","调研"],"article":["newspaper","文章","报纸"],"newspaper":["报纸"],"file-zip":["7z","rar","压缩包"],"file-mark":["文件","文档","标记"],"task":["todo","任务","待办"],"todo":["待办"],"book":["read","dictionary","booklet","书","阅读","字典","小册子"],"book-mark":["read","dictionary","booklet","书","阅读","字典","小册子","书签"],"book-2":["read","dictionary","booklet","书","阅读","字典","小册子"],"book-3":["read","dictionary","booklet","书","阅读","字典","小册子"],"book-open":["read","booklet","magazine","书","阅读","小册子","杂志"],"book-read":["booklet","magazine","书","阅读","小册子","杂志"],"contacts-book":["通讯录","联系人"],"contacts-book-2":["通讯录","联系人"],"contacts-book-upload":["upload","通讯录","联系人","上传"],"booklet":["notebook","手册","笔记本","小册子"],"file-code":["config","文件","文档","代码","脚本","配置文件"],"file-pdf":["文件","文档"],"file-word":["文档"],"file-ppt":["文件","文档"],"file-excel":["文档","表单"],"file-word-2":["文档"],"file-ppt-2":["文件","文档"],"file-excel-2":["文档","表单"],"file-hwp":["文件","文档","hangul word processor"],"keynote":["演示文稿","幻灯片","讲演"],"numbers":["表格"],"pages":["文稿"],"file-search":["文件","文档","搜索"],"file-add":["new","文件","文档","新建"],"file-reduce":["文件","文档","减"],"file-settings":["文件","文档","设置"],"file-upload":["文件","文档","上传"],"file-transfer":["文件","文档","传输"],"file-download":["文件","文档","下载"],"file-lock":["文件","文档","锁"],"file-chart":["report","文件","文档","柱状图","报表"],"file-chart-2":["report","文件","文档","饼图","报表"],"file-music":["文件","文档","音乐"],"file-gif":["文件","文档","动图"],"file-forbid":["文件","文档","禁用"],"file-info":["文件","文档","信息"],"file-warning":["alert","文件","文档","警告","提醒"],"file-unknow":["文件","文档","未知","问号"],"file-user":["文件","文档","用户"],"file-shield":["protected","secured","文件","文档","盾牌","保护","安全"],"file-shield-2":["protected","secured","文件","文档","盾牌","保护","安全"],"file-damage":["breakdown","broken","文件","文档","损坏","破损","破裂"],"file-history":["record","文件","文档","记录","历史"],"file-shred":["shredder","shred","destroy","cut","文档","销毁","碎纸机","破裂","粉碎"],"file-cloud":["文件","文档","云"],"folder":["directory","file","文件夹","目录","文档"],"folder-2":["directory","file","文件夹","目录","文档"],"folder-3":["directory","file","文件夹","目录","文档"],"folder-4":["directory","file","文件夹","目录","文档"],"folder-5":["directory","file","文件夹","目录","文档"],"folders":["directory","file","文件夹","目录","文档","批量"],"folder-add":["directory","file","文件夹","目录","文档","添加"],"folder-reduce":["directory","file","文件夹","目录","文档","减"],"folder-settings":["directory","file","文件夹","目录","文档","设置"],"folder-upload":["directory","file","文件夹","目录","文档","上传"],"folder-transfer":["directory","file","文件夹","目录","文档","传输"],"folder-download":["directory","file","文件夹","目录","文档","下载"],"folder-lock":["directory","file","文件夹","目录","文档","锁"],"folder-chart":["report","文件夹","目录","文档","柱状图","报表"],"folder-chart-2":["report","文件夹","目录","文档","饼图","报表"],"folder-music":["directory","file","文件夹","目录","文档","音乐"],"folder-forbid":["directory","file","文件夹","目录","文档","禁用"],"folder-info":["directory","file","文件夹","目录","文档","信息"],"folder-warning":["alert","directory","file","文件夹","目录","文档","警告","提醒"],"folder-unknow":["directory","file","文件夹","目录","文档","未知"],"folder-user":["directory","file","文件夹","目录","文档","用户"],"folder-shield":["directory","file","protected","secured","文件夹","目录","文档","保护","盾牌","安全"],"folder-shield-2":["directory","file","protected","secured","文件夹","目录","文档","保护","盾牌","安全"],"folder-shared":["directory","file","文件夹","目录","文档","分享"],"folder-received":["directory","file","文件夹","目录","文档","接收"],"folder-open":["directory","file","文件夹","目录","文档","打开"],"folder-keyhole":["directory","encryption","file","文件夹","目录","文档","打开","加密文档"],"folder-zip":["directory","file","文件夹","目录","文档","打开","压缩"],"folder-history":["directory","file","record","文件夹","目录","文档","记录","历史"],"markdown":["arrow","箭头","下"]},"Editor":{"bold":["加粗"],"italic":["斜体"],"heading":["标题"],"text":["字体"],"font-color":["文字色"],"font-size":["字号","字体大小"],"font-size-2":["字号","字体大小"],"underline":["下划线"],"emphasis":["着重号"],"emphasis-cn":["着重号"],"strikethrough":["remove formatting","删除线"],"strikethrough-2":["remove formatting","删除线"],"format-clear":["remove formatting","清除格式"],"align-left":["左对齐"],"align-center":["居中对齐"],"align-right":["右对齐"],"align-justify":["排列对齐"],"align-top":["顶部对齐"],"align-vertically":["垂直对齐"],"align-bottom":["底部对齐"],"list-check":["check list","清单列表"],"list-check-2":["check list","清单列表"],"list-ordered":["number list","有序列表"],"list-unordered":["bullet list","无序列表"],"indent-decrease":["indent more","缩进"],"indent-increase":["indent less","缩进"],"line-height":["行高"],"text-spacing":["字间距"],"text-wrap":["文本换行"],"attachment-2":["annex","paperclip","附件","曲别针"],"link":["connection","address","联系","链接","地址"],"link-unlink":["connection","remove address","去除链接"],"link-m":["connection","address","联系","链接","地址"],"link-unlink-m":["connection","remove address","去除链接"],"separator":["分割线"],"space":["空格"],"page-separator":["insert","分页符","插入"],"code-view":["代码视图"],"double-quotes-l":["left","quotaion marks","双引号"],"double-quotes-r":["right","quotaion marks","双引号"],"single-quotes-l":["left","quotaion marks","单引号"],"single-quotes-r":["right","quotaion marks","单引号"],"table-2":["表格"],"subscript":["角标","下标","脚注"],"subscript-2":["角标","下标","脚注"],"superscript":["角标","上标"],"superscript-2":["角标","上标"],"paragraph":["段落"],"text-direction-l":["文本左对齐"],"text-direction-r":["文本左对齐"],"functions":["功能"],"omega":["Ω","特殊符号"],"hashtag":["#","井号"],"asterisk":["*","星号"],"translate":["translator","翻译"],"translate-2":["translator","翻译"],"a-b":["a/b testing","ab testing","ab测试"],"english-input":["英文输入法"],"pinyin-input":["拼音输入法"],"wubi-input":["五笔输入法"],"input-cursor-move":["移动输入光标"],"number-1":["1","一","数字"],"number-2":["2","二","数字"],"number-3":["3","三","数字"],"number-4":["4","四","数字"],"number-5":["5","五","数字"],"number-6":["6","六","数字"],"number-7":["7","七","数字"],"number-8":["8","八","数字"],"number-9":["9","九","数字"],"number-0":["0","零","数字"],"sort-asc":["ranking","ordering","sorting","ascending","descending","升序排列","排序"],"sort-desc":["ranking","ordering","降序排列","排序"],"bring-forward":["arrange","层级","向上一层"],"send-backward":["arrange","层级","向下一层"],"bring-to-front":["arrange","层级","移到最前面"],"send-to-back":["arrange","层级","移到最后面"]},"Finance":{"wallet":["钱包","卡包"],"wallet-2":["钱包","卡包"],"wallet-3":["钱包","卡包"],"bank-card":["credit","purchase","payment","cc","银行卡","信用卡","购买","消费","支付"],"bank-card-2":["credit","purchase","payment","cc","银行卡","信用卡","购买","消费","支付"],"secure-payment":["credit","purchase","payment","cc","银行卡","信用卡","购买","消费","支付","安全"],"refund":["credit card","repayment","cc","银行卡","信用卡还款"],"refund-2":["credit card","repayment","cc","银行卡","信用卡还款"],"safe":["保险柜","保险箱"],"safe-2":["保险柜","保险箱"],"price-tag":["label","标签","价签"],"price-tag-2":["label","标签","价签"],"price-tag-3":["label","标签","价签"],"ticket":["coupon","票","优惠券","代金券"],"ticket-2":["coupon","票","优惠券","代金券"],"coupon":["ticket","票","优惠券","代金券"],"coupon-2":["ticket","票","优惠券","代金券"],"coupon-3":["ticket","票","优惠券","代金券"],"coupon-4":["优惠券","代金券"],"coupon-5":["优惠券","代金券"],"shopping-bag":["purse","购物袋","购买","消费","商城"],"shopping-bag-2":["购物袋","购买","消费","商城"],"shopping-bag-3":["购物袋","购买","消费","商城"],"shopping-basket":["购物篮","购买","消费","商城"],"shopping-basket-2":["购物篮","购买","消费","商城"],"shopping-cart":["购物车","购买","消费","商城"],"shopping-cart-2":["购物车","购买","消费","商城"],"vip":["会员"],"vip-crown":["king","queen","皇冠","会员","国王","女王","王后"],"vip-crown-2":["king","queen","皇冠","会员","国王","女王","王后"],"vip-diamond":["钻石","会员"],"trophy":["奖品","奖杯","金杯"],"exchange":["swap","交换","换算","兑换"],"exchange-box":["swap","交换","换算","兑换"],"swap":["exchange","交换","换算","兑换"],"swap-box":["exchange","交换","换算","兑换"],"exchange-dollar":["swap","transfer","交换","换算","兑换","美元","转账"],"exchange-cny":["swap","transfer","交换","换算","兑换","人民币","转账"],"exchange-funds":["swap","transfer","交换","换算","兑换","基金","股票","转账"],"increase-decrease":["计算器"],"percent":["百分之","百分比"],"copper-coin":["currency","payment","铜币","硬币","货币","钱","支付"],"copper-diamond":["currency","coins","金币","钻石","货币","钱","支付"],"money-cny-box":["currency","payment","货币","钱","支付","人民币"],"money-cny-circle":["currency","coins","金币","payment","货币","钱","支付","人民币"],"money-dollar-box":["currency","payment","货币","钱","支付","美元"],"money-dollar-circle":["currency","coins","金币","payment","cent","penny","货币","钱","支付","美元","美分","便士"],"money-euro-box":["currency","payment","货币","钱","支付","欧元"],"money-euro-circle":["currency","coins","金币","payment","货币","钱","支付","欧元"],"money-pound-box":["currency","payment","货币","钱","支付","英镑"],"money-pound-circle":["currency","coins","金币","payment","货币","钱","支付","英镑"],"bit-coin":["currency","payment","货币","钱","比特币"],"coin":["金币","硬币"],"coins":["金币","硬币"],"currency":["cash","payment","货币","钱"],"funds":["foundation","stock","基金","股票"],"funds-box":["foundation","stock","基金","股票"],"red-packet":["红包"],"water-flash":["水电费"],"stock":["股票"],"auction":["hammer","拍卖","锤子"],"gift":["present","礼物"],"gift-2":["present","礼物"],"hand-coin":["donate","business","捐赠"],"hand-heart":["help","donate","volunteer","welfare","帮助","爱心","捐赠","志愿者","公益"]},"Logos":{"alipay":["zhifubao","支付宝"],"amazon":["亚马逊"],"android":["applications","安卓","应用"],"angularjs":["angular","programing framework"],"app-store":["applications","苹果应用商店"],"apple":["苹果"],"baidu":["du","claw","百度","爪"],"behance":["behance"],"bilibili":["哔哩哔哩"],"centos":["linux","system","系统"],"chrome":["谷歌浏览器"],"codepen":["代码笔"],"coreos":["linux","system","系统"],"dingding":["钉钉"],"discord":["game","chat"],"disqus":["comments"],"douban":["豆瓣"],"dribbble":["追波"],"drive":["google drive","谷歌云端硬盘"],"dropbox":["多宝箱"],"edge":["microsoft edge","edge浏览器"],"evernote":["印象笔记"],"facebook":["脸书"],"facebook-circle":["脸书"],"facebook-box":["脸书"],"firefox":["火狐浏览器"],"flutter":["google"],"gatsby":["gatsby"],"github":["github"],"gitlab":["gitlab"],"google":["谷歌"],"google-play":["applications","谷歌应用商店"],"honor-of-kings":["game","王者荣耀"],"ie":["internet explorer","浏览器"],"instagram":["照片墙"],"invision":["invision"],"kakao-talk":["kakao talk","chat"],"line":["连我"],"linkedin":["领英"],"linkedin-box":["领英"],"mastercard":["bank card","银行卡"],"mastodon":["mastodon","长毛象"],"medium":["媒体"],"messenger":["facebook","脸书","信使"],"mini-program":["微信小程序"],"netease-cloud-music":["netease cloud music","网易云音乐"],"netflix":["网飞"],"npmjs":["npm","nodejs"],"open-source":["opensource","开源"],"opera":["欧朋浏览器"],"patreon":["donate","money","捐赠","打赏"],"paypal":["贝宝"],"pinterest":["拼趣"],"pixelfed":["photography","pixelfed"],"playstation":["ps"],"product-hunt":["product hunt"],"qq":["penguin","tencent","腾讯","企鹅"],"reactjs":["react","programing framework","facebook"],"reddit":["reddit"],"remixicon":["remix icon","图标"],"safari":["safari浏览器"],"skype":["skype"],"slack":["slack"],"snapchat":["ghost","色拉布","幽灵"],"soundcloud":["声云"],"spectrum":["spectrum"],"spotify":["music","音乐"],"stack-overflow":["stack overflow"],"stackshare":["share","分享","技术栈"],"steam":["game","store"],"switch":["nintendo","任天堂"],"taobao":["淘宝"],"telegram":["telegram"],"trello":["trello"],"tumblr":["汤博乐"],"twitch":["twitch"],"twitter":["推特"],"ubuntu":["linux","system","系统"],"unsplash":["photos"],"visa":["bank card","银行卡"],"vuejs":["vue","programing framework"],"wechat":["微信"],"wechat-2":["微信"],"wechat-pay":["微信支付"],"weibo":["新浪微博"],"whatsapp":["瓦次艾普"],"windows":["microsoft","窗户","微软"],"xbox":["xbox"],"xing":["xing"],"youtube":["优兔","油管"],"zcool":["zcool","站酷"],"zhihu":["知乎"]},"Map":{"map-pin":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-2":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-3":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-4":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-5":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-add":["location","navigation","地图","坐标","定位","导航","位置","新增","添加"],"map-pin-range":["location","navigation","地图","坐标","定位","导航","位置","范围"],"map-pin-time":["location","navigation","地图","坐标","定位","导航","位置","时间"],"map-pin-user":["location","navigation","地图","坐标","定位","导航","位置","用户"],"pin-distance":["坐标","距离"],"pushpin":["图钉"],"pushpin-2":["图钉"],"compass":["navigation","safari","direction","discover","指南针","导航","方向","发现","探索"],"compass-2":["navigation","direction","discover","指南针","导航","方向","发现","探索"],"compass-3":["navigation","safari","direction","discover","指南针","导航","方向","发现","探索"],"compass-4":["navigation","direction","discover","指南针","导航","方向","发现","探索"],"compass-discover":["navigation","direction","指南针","导航","方向","发现","探索"],"anchor":["锚"],"china-railway":["中铁","铁路","火车"],"space-ship":["太空飞船"],"rocket":["火箭"],"rocket-2":["space ship","火箭","太空飞船"],"map":["navigation","travel","地图","导航","旅行"],"map-2":["location","navigation","travel","地图","定位","导航","旅行"],"treasure-map":["thriller","adventure","地图","藏宝图"],"road-map":["navigation","travel","地图","导航","旅行"],"earth":["global","union","world","language","地球","全球","联合","世界","语言"],"globe":["earth","地球仪"],"parking":["停车场"],"parking-box":["停车场"],"route":["path","路线"],"guide":["path","指引","路线"],"gas-station":["加气站","加油站"],"charging-pile":["充电桩"],"charging-pile-2":["充电桩"],"car":["汽车"],"car-washing":["汽车","洗车"],"roadster":["car","汽车","跑车"],"taxi":["car","出租车","汽车"],"taxi-wifi":["car","出租车","汽车"],"police-car":["汽车","警车"],"bus":["大巴","巴士"],"bus-2":["大巴","巴士"],"bus-wifi":["大巴","巴士"],"truck":["van","delivery","卡车","货车","运输"],"train":["火车"],"train-wifi":["火车"],"subway":["地铁"],"subway-wifi":["地铁"],"flight-takeoff":["airplane","plane","origin","起飞","出发","始发","起点","飞机"],"flight-land":["airplane","plane","destination","着陆","到达","抵达","终点","飞机"],"plane":["fight","飞机","航班"],"sailboat":["帆船"],"ship":["轮船","航海","海运"],"ship-2":["轮船"],"bike":["自行车"],"e-bike":["take out","takeaway","电动车","外卖"],"e-bike-2":["take out","takeaway","电动车","外卖"],"takeaway":["take out","takeaway","电动车","外卖"],"motorbike":["摩托车"],"caravan":["房车"],"walk":["步行"],"run":["奔跑","跑步"],"riding":["bike","骑行","自行车"],"barricade":["路障"],"footprint":["脚印","足迹"],"traffic-light":["交通","信号灯"],"signal-tower":["base station","antenna","信号塔","基站","天线"],"restaurant":["餐厅","饭店"],"restaurant-2":["餐厅","饭店"],"cup":["tea","coffee","杯子","咖啡","茶"],"goblet":["cup","wine glass","高脚杯","酒杯"],"hotel-bed":["酒店","床"],"navigation":["gps","导航"],"oil":["汽油","机油"],"direction":["right","方向","右转"],"steering":["drive","方向盘","驾车"],"steering-2":["drive","方向盘","驾车"],"lifebuoy":["life ring","救生圈"],"passport":["passports","护照"],"suitcase":["travel","旅行","行李箱"],"suitcase-2":["travel","旅行","行李箱","拉杆箱"],"suitcase-3":["travel","旅行","boarding case","行李箱","拉杆箱","登机箱"],"luggage-deposit":["consignment","行李箱","行李寄存","托运"],"luggage-cart":["行李车"]},"Media":{"image":["picture","photo","图片","照片"],"image-2":["picture","photo","图片","照片"],"image-add":["picture","photo","图片","照片","添加"],"landscape":["picture","image","photo","图片","照片"],"gallery":["picture","image","图片","相册"],"gallery-upload":["picture","image","图片","相册","上传"],"video":["视频"],"movie":["film","video","电影","硬盘","视频"],"movie-2":["film","video","电影","硬盘","视频"],"film":["movie","video","影片","电影","视频"],"clapperboard":["movie","film","场记板","电影"],"vidicon":["video","camera","摄像机","摄影机","视频"],"vidicon-2":["camera","摄像机","摄影机"],"live":["video","camera","摄像机","摄影机","视频","直播"],"video-add":["camera","摄像机","摄影机","视频","添加"],"video-upload":["camera","摄像机","摄影机","视频","上传"],"video-download":["camera","摄像机","摄影机","视频","下载"],"dv":["vidicon","camera","摄像机","摄影机"],"camera":["photo","照相机","拍照","照片"],"camera-off":["photo","slash","照相机","拍照","照片","禁止","关闭"],"camera-2":["photo","照相机","拍照","照片"],"camera-3":["photo","照相机","拍照","照片"],"camera-lens":["aperture","photo","照相机","拍照","照片","朋友圈"],"camera-switch":["照相机","拍照","翻转"],"polaroid":["camera","相机","宝丽来"],"polaroid-2":["camera","相机","宝丽来"],"phone-camera":["手机相机","手机摄像头"],"webcam":["摄像头"],"mv":["music video","音乐"],"music":["音乐"],"music-2":["音乐"],"disc":["music","album","音乐","唱片"],"album":["music","唱片","音乐"],"dvd":["cd","dvd","record","光盘","刻录"],"headphone":["music","headset","耳机","音乐"],"radio":["收音机","电台"],"radio-2":["收音机","电台"],"tape":["录音","磁带"],"mic":["record","voice","话筒","语音","录音","声音"],"mic-2":["record","voice","话筒","语音","录音","声音"],"mic-off":["record","voice","slash","关闭话筒","关闭语音","录音","关闭声音","静音","禁止"],"volume-down":["trumpet","sound","speaker","音量低","喇叭","声音","扬声器"],"volume-mute":["trumpet","sound","off","音量低","喇叭","声音","静音"],"volume-up":["trumpet","sound","speaker","音量高","喇叭","声音","扬声器"],"volume-vibrate":["trumpet","sound","speaker","喇叭","声音","扬声器","震动模式"],"volume-off-vibrate":["trumpet","sound","speaker","静音","喇叭","声音","扬声器","静音模式"],"speaker":["音响"],"speaker-2":["音响"],"speaker-3":["音响"],"surround-sound":["环绕立体声"],"broadcast":["广播"],"notification":["bell","alarm","通知","铃铛","提醒"],"notification-2":["bell","alarm","通知","铃铛","提醒"],"notification-3":["bell","alarm","通知","铃铛","提醒"],"notification-4":["bell","alarm","通知","铃铛","提醒"],"notification-off":["bell","alarm","silent","slash","通知","铃铛","提醒","免打扰","静音","关闭","禁止"],"play-circle":["start","播放","开始"],"pause-circle":["暂停"],"record-circle":["录音"],"stop-circle":["停止"],"eject":["推出"],"play":["start","播放","开始"],"pause":["暂停"],"stop":["停止"],"rewind":["fast","快退"],"speed":["fast","快进"],"skip-back":["上一曲"],"skip-forward":["下一曲"],"play-mini":["播放"],"pause-mini":["暂停"],"stop-mini":["停止"],"rewind-mini":["fast","快退"],"speed-mini":["fast","快进"],"skip-back-mini":["上一曲"],"skip-forward-mini":["下一曲"],"repeat":["循环播放"],"repeat-2":["循环播放"],"repeat-one":["单曲循环"],"order-play":["顺序播放"],"shuffle":["随机播放"],"play-list":["播放列表"],"play-list-add":["列表","添加"],"fullscreen":["maximize","全屏","最大化"],"fullscreen-exit":["minimize","退出全屏","最小化"],"equalizer":["sliders","controls","settings","filter","均衡器","控制器","设置","筛选"],"sound-module":["sliders","controls","settings","filter","均衡器","控制器","设置","筛选"],"rhythm":["节奏","韵律"],"voiceprint":["声纹"],"hq":["high quality","高质量","高品质"],"hd":["high definition","高清晰度"],"4k":["high definition","high quality","高清晰度","高品质","超清"],"aspect-ratio":["宽高比","比例"],"picture-in-picture":["画中画","小窗"],"picture-in-picture-2":["画中画","小窗"],"picture-in-picture-exit":["退出画中画","退出小窗"]},"System":{"apps":["应用"],"apps-2":["应用"],"function":["layout","功能","应用","卡片布局"],"dashboard":["仪表盘"],"menu":["navigation","hamburger","导航","菜单","汉堡包"],"menu-2":["navigation","hamburger","导航","菜单","汉堡包"],"menu-3":["navigation","hamburger","导航","菜单","汉堡包"],"menu-4":["navigation","hamburger","导航","菜单","汉堡包"],"menu-5":["navigation","hamburger","导航","菜单","汉堡包"],"menu-add":["navigation","hamburger","导航","菜单","汉堡包","添加"],"more":["ellipsis","更多","省略"],"more-2":["ellipsis","更多","省略"],"heart":["like","love","favorite","心","喜欢","爱","收藏"],"heart-2":["public welfare","like","love","favorite","心","喜欢","爱","收藏"],"heart-add":["like","love","favorite","心","喜欢","爱","收藏"],"star":["favorite","like","mark","星星","星标","喜欢"],"star-s":["favorite","like","mark","星星","星标","喜欢","半星"],"star-half":["favorite","like","mark","星星","星标","喜欢"],"star-half-s":["favorite","like","mark","星星","星标","喜欢","半星"],"settings":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-2":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-3":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-4":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-5":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-6":["edit","gear","preferences","偏好设置","编辑","齿轮"],"list-settings":["列表","设置"],"forbid":["slash","ban","禁止","禁用"],"forbid-2":["slash","ban","禁止","禁用"],"information":["信息"],"error-warning":["alert","警告","错误"],"question":["help","问号","帮助"],"alert":["提醒","警告"],"spam":["alert","垃圾邮件","警告"],"spam-2":["alert","垃圾邮件","警告"],"spam-3":["alert","垃圾邮件","警告"],"checkbox-blank":["复选框","空"],"checkbox":["复选框"],"checkbox-indeterminate":["复选框"],"add-box":["plus","new","复选框","添加","加号","新增"],"checkbox-blank-circle":["复选框","空"],"checkbox-circle":["复选框"],"indeterminate-circle":["slash","ban","复选框","禁"],"add-circle":["plus","new","复选框","添加","加号","新增"],"close-circle":["cancel","remove","delete","empty","x","关闭","取消","移除","删除","清空"],"radio-button":["单选框"],"checkbox-multiple-blank":["复选框","空"],"checkbox-multiple":["复选框","空"],"check":["对勾"],"check-double":["read","done","double-tick","双对勾","已读"],"close":["cancel","remove","delete","empty","x","关闭","取消","移除","删除","清空"],"add":["plus","new","添加","新增","加号"],"subtract":["减"],"divide":["除以"],"arrow-left-up":["corner","左上"],"arrow-up":["箭头","向上"],"arrow-right-up":["corner","右上"],"arrow-right":["箭头","向右"],"arrow-right-down":["corner","右下"],"arrow-down":["箭头","向下"],"arrow-left-down":["corner","箭头","左下"],"arrow-left":["箭头","向左","返回"],"arrow-up-circle":["箭头","向上"],"arrow-right-circle":["箭头","向右"],"arrow-down-circle":["箭头","向下","下载"],"arrow-left-circle":["箭头","向左","返回"],"arrow-up-s":["箭头","向上"],"arrow-down-s":["箭头","向下"],"arrow-right-s":["箭头","向右"],"arrow-left-s":["箭头","向左","返回"],"arrow-drop-up":["箭头","向上"],"arrow-drop-right":["箭头","向右"],"arrow-drop-down":["箭头","向下"],"arrow-drop-left":["箭头","向左","返回"],"arrow-left-right":["exchange","swap","箭头","左右","交换","换算","兑换"],"arrow-up-down":["exchange","swap","箭头","上下","交换","换算","兑换"],"arrow-go-back":["undo","箭头","返回","撤销","撤回"],"arrow-go-forward":["redo","箭头","重做","撤回"],"download":["下载"],"upload":["上传"],"download-2":["下载"],"upload-2":["上传"],"download-cloud":["下载","云"],"download-cloud-2":["下载","云"],"upload-cloud":["上传","云"],"upload-cloud-2":["上传","云"],"login-box":["sign in","登录"],"logout-box":["sign out","登出","注销"],"logout-box-r":["sign out","登出","注销"],"login-circle":["sign in","登录"],"logout-circle":["sign out","登出","注销"],"logout-circle-r":["sign out","登出","注销"],"refresh":["synchronization","reload","restart","spinner","loader","ajax","update","刷新","同步"],"shield":["safety","protect","盾牌","卫士","安全","防御"],"shield-cross":["safety","protect","盾牌","卫士","安全","防御","闪电"],"shield-flash":["safety","protect","盾牌","卫士","安全","防御"],"shield-star":["safety","protect","盾牌","卫士","安全","防御","星星"],"shield-user":["safety","protect","user protected","guarantor","盾牌","卫士","安全","防御","用户"],"shield-keyhole":["safety","protect","guarantor","盾牌","卫士","安全","防御","钥匙孔"],"delete-back":["backspace","删除","退格"],"delete-back-2":["backspace","删除","退格"],"delete-bin":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-2":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-3":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-4":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-5":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-6":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-7":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"lock":["security","password","锁子","安全","密码"],"lock-2":["security","password","锁子","安全","密码"],"lock-password":["security","锁子","安全","密码"],"lock-unlock":["security","password","锁子","安全","密码"],"eye":["watch","view","眼睛","查看"],"eye-off":["slash","眼睛","不可见","关闭","禁止"],"eye-2":["watch","view","眼睛","查看"],"eye-close":["x","闭眼"],"search":["搜索","放大镜"],"search-2":["搜索","放大镜"],"search-eye":["搜索","放大镜","眼睛"],"zoom-in":["放大","放大镜"],"zoom-out":["缩小","放大镜"],"find-replace":["查找","搜索","替换"],"share":["分享","转发"],"share-box":["分享","转发"],"share-circle":["分享","转发"],"share-forward":["分享","转发"],"share-forward-2":["分享","转发"],"share-forward-box":["分享","转发"],"side-bar":["侧边栏"],"time":["clock","时间","时钟","钟表"],"timer":["chronograph","stopwatch","秒表","计时器"],"timer-2":["chronograph","stopwatch","秒表","计时器"],"timer-flash":["chronograph","stopwatch","秒表","计时器","闪电"],"alarm":["闹钟"],"history":["record","recent","time machine","历史记录","最近"],"thumb-down":["dislike","bad","不喜欢","不好"],"thumb-up":["like","good","喜欢","好"],"alarm-warning":["alert","report","police light","告警","举报","警灯"],"notification-badge":["red dot","通知","小红点"],"toggle":["switch","开关","触发器"],"filter":["filtration","筛选","过滤"],"filter-2":["filtration","筛选","过滤"],"filter-3":["filtration","筛选","过滤"],"loader":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"loader-2":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"loader-3":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"loader-4":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"loader-5":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"external-link":["外链"]},"User&Faces":{"user":["用户"],"user-2":["用户"],"user-3":["用户"],"user-4":["用户"],"user-5":["用户"],"user-6":["用户"],"user-smile":["用户","微笑"],"account-box":["用户","账户"],"account-circle":["用户","账户"],"account-pin-box":["用户","账户"],"account-pin-circle":["用户","账户"],"user-add":["用户","添加","新增"],"user-follow":["关注"],"user-unfollow":["用户","取消关注"],"user-shared":["transfer","用户","我分享的","发送"],"user-shared-2":["transfer","用户","我分享的","发送"],"user-received":["用户","我接收的","收取"],"user-received-2":["用户","我接收的","收取"],"user-location":["用户","定位"],"user-search":["用户","查找"],"user-settings":["admin","用户","设置","管理员"],"user-star":["用户","关注"],"user-heart":["用户","关注"],"admin":["admin","用户","管理员"],"contacts":["联系人"],"group":["team","团队","群组"],"group-2":["team","团队","群组"],"team":["团队","小组","群主"],"user-voice":["用户","录音","演讲"],"emotion":["表情","笑脸"],"emotion-2":["表情","笑脸"],"emotion-happy":["表情","开心"],"emotion-normal":["表情","一般"],"emotion-unhappy":["表情","不开心"],"emotion-laugh":["comedy","happy","表情","大笑","笑脸","开心","喜剧"],"emotion-sad":["drama","tears","悲剧","哭泣","泪"],"skull":["ghost","骷髅","鬼怪"],"skull-2":["ghost","horror","thriller","骷髅","鬼怪","恐惧","恐怖"],"men":["gender","male","man","男人","男性"],"women":["gender","female","woman","女人","女性"],"travesti":["女人","女性"],"genderless":["女人","女性"],"open-arm":["张开双臂"],"body-scan":["gesture recognition","body","扫描身体","体态识别","动作之别","手势识别"],"parent":["patriarch","父母","亲子","家长"],"robot":["mechanic","机器人"],"aliens":["science fiction","ET","外星人","科幻小说"],"bear-smile":["cartoon","anime","cartoon","小熊","微笑","儿童","动画片","卡通","动漫"],"mickey":["cartoon","disney","迪士尼","米老鼠","微笑","儿童","动画片"],"criminal":["horror","thriller","罪犯","犯罪","恐怖"],"ghost":["horror","thriller","鬼怪","恐怖","恐惧"],"ghost-2":["horror","鬼怪","恐怖","恐惧"],"ghost-smile":["鬼怪","笑"],"star-smile":["animation","动画","微笑","星星"],"spy":["incognito mode","detective","secret","间谍","侦探","无痕模式","隐私模式"]},"Weather":{"sun":["light mode","sunny","太阳","白天模式","晴天"],"moon":["dark mode","night","月亮","夜间模式","月牙"],"flashlight":["闪电"],"cloudy":["多云"],"cloudy-2":["多云"],"mist":["雾气","雾霾"],"foggy":["大雾"],"cloud-windy":["风"],"windy":["大风","刮风"],"rainy":["下雨","雨天"],"drizzle":["小雨"],"showers":["中雨"],"heavy-showers":["大雨"],"thunderstorms":["雷暴","雷阵雨"],"hail":["冰雹"],"snowy":["下雪","雪天"],"sun-cloudy":["晴转多云"],"moon-cloudy":["夜间多云"],"tornado":["龙卷风"],"typhoon":["cyclone","tornado","龙卷风","旋风","台风"],"haze":["阴霾","薄雾"],"haze-2":["阴霾","薄雾"],"sun-foggy":["薄雾"],"moon-foggy":["薄雾"],"moon-clear":["夜间模式","夜间无云"],"temp-hot":["temperature","温度","高温","热"],"temp-cold":["temperature","温度","低温","冷"],"celsius":["temperature","温度","摄氏度"],"fahrenheit":["temperature","温度","华氏度"],"fire":["hot","火","热门"],"blaze":["火灾"],"earthquake":["地震"],"flood":["洪水"],"meteor":["流星","陨石"],"rainbow":["彩虹"]},"Others":{"basketball":["sports","运动","篮球"],"bell":["cartoon","anime","doraemon","铃铛","哆啦A梦","卡通","动漫"],"billiards":["sports","运动","台球","8"],"boxing":["sports","运动","拳击"],"cake":["anniversary","蛋糕"],"cake-2":["anniversary","蛋糕"],"cake-3":["蛋糕"],"door-lock":["门锁"],"door-lock-box":["门锁"],"flask":["testing","experimental","experiment","烧瓶","实验","试验"],"football":["sports","运动","足球"],"game":["pac man","游戏","吃豆人"],"handbag":["fashion","时尚","手提包","女包"],"hearts":["romance","爱情","浪漫","心"],"key":["password","钥匙","密码"],"key-2":["password","钥匙","密码"],"knife":["刀"],"knife-blood":["crime","刀","犯罪","血","杀人"],"lightbulb":["energy","creativity","灯泡","能源"],"lightbulb-flash":["energy","creativity","灯泡","能源","闪电"],"outlet":["插座"],"outlet-2":["插座"],"ping-pong":["sports","table tennis","运动","乒乓球"],"plug":["二脚插头"],"plug-2":["三脚插头"],"reserved":["已预定"],"shirt":["clothes","衬衫","衣服"],"sword":["war","刀剑","战争","战斗","玄幻"],"t-shirt":["skin","theme","T恤","皮肤","主题"],"t-shirt-2":["skin","theme","T恤","皮肤","主题"],"t-shirt-air":["dry","T恤","风干","烘干"],"umbrella":["protect","雨伞","保护"],"character-recognition":["ocr","文字识别"],"voice-recognition":["asr","语音识别"],"leaf":["energy","ecology","树叶","节能","环保","语音识别"],"plant":["植物"],"recycle":["recyclable","可回收"],"scales":["balance","称","天平","天秤"],"scales-2":["厨房称"],"fridge":["refrigerator","电冰箱"],"wheelchair":["accessbility","轮椅","可访问性","辅助功能"]}}'; +const icons = + '{"Buildings":{"home":["house","房子","家","主页"],"home-2":["house","房子","家","主页"],"home-3":["house","房子","家","主页"],"home-4":["house","房子","家","主页"],"home-5":["house","房子","家","主页"],"home-6":["house","房子","家","主页"],"home-7":["house","房子","家","主页"],"home-8":["house","房子","家","主页"],"home-gear":["house","房子","工厂"],"home-wifi":["smart home","房子","家具","智能家居"],"home-smile":["house","smart home","smile","房子","智能家居","微笑"],"home-smile-2":["house","smart home","smile","房子","智能家居","微笑"],"home-heart":["house","心","房子","家","主页","孤儿院"],"building":["city","office","enterprise","建筑","城市","楼","办公楼","写字楼","企业"],"building-2":["city","office","construction","enterprise","城市","建筑","楼","企业"],"building-3":["factory","plant","enterprise","工厂","建筑","楼","企业"],"building-4":["city","office","enterprise","建筑","城市","楼","办公楼","写字楼","企业"],"hotel":["building","hotel","office","enterprise","tavern","建筑","酒店","楼","办公楼","写字楼","企业"],"community":["building","hotel","社区","建筑","酒店"],"government":["building","政府","建筑","大会堂"],"bank":["bank","finance","savings","banking","银行","交易所"],"store":["shop","mall","supermarket","商店","超市","店铺","商家"],"store-2":["shop","mall","supermarket","商店","超市","店铺","商家"],"store-3":["shop","mall","supermarket","商店","超市","店铺","商家"],"hospital":["medical","health","医院"],"ancient-gate":["historical","genre","scenic","trip","travel","旅行","旅游","城门","古代","历史","景区"],"ancient-pavilion":["historical","genre","scenic","trip","travel","旅行","旅游","凉亭","古代","历史","景区"]},"Business":{"mail":["envelope","email","inbox","信封","邮箱","邮件","收件箱"],"mail-open":["envelope","email","inbox","信封","邮箱","邮件","收件箱"],"mail-send":["envelope","email","inbox","信封","邮箱","邮件","发送","发件箱"],"mail-unread":["envelope","email","inbox","信封","邮箱","邮件","未读"],"mail-add":["envelope","email","inbox","add","信封","邮箱","邮件","新增","添加"],"mail-check":["envelope","email","inbox","read","信封","邮箱","邮件","已读"],"mail-close":["envelope","email","inbox","failed","x","信封","邮箱","邮件","失败"],"mail-download":["envelope","email","inbox","download","信封","邮箱","邮件","下载"],"mail-forbid":["envelope","email","inbox","privacy","信封","邮箱","邮件","禁止"],"mail-lock":["envelope","email","inbox","lock","信封","邮箱","邮件","加密"],"mail-settings":["envelope","email","inbox","settings","信封","邮箱","邮件","设置"],"mail-star":["envelope","email","inbox","favorite","信封","邮箱","邮件","收藏","喜欢"],"mail-volume":["envelope","email","inbox","promotional email","email campaign","subscription","信封","邮箱","邮件","收件箱","推广","订阅"],"inbox":["收件箱"],"inbox-archive":["收件箱","归档","收纳"],"inbox-unarchive":["unzip","unpack","extract","收件箱","取消归档","还原","解压缩"],"cloud":["weather","云端"],"cloud-off":["offline-mode","connection-fail","slash","weather","云端","断网","无信号","连接失败"],"attachment":["annex","paperclip","附件","曲别针"],"profile":["id","档案","资料","身份证","证件"],"archive":["box","收纳","归档","存档","盒子","纸箱"],"archive-drawer":["night table","收纳","抽屉","归档","存档","床头柜"],"at":["@","mention","提到","在"],"award":["medal","achievement","badge","成就","奖牌","金牌","勋章"],"medal":["award","achievement","badge","成就","奖牌","金牌","勋章"],"medal-2":["award","achievement","badge","成就","奖牌","金牌","勋章"],"bar-chart":["statistics","rhythm","柱状图","统计","韵律","节奏"],"bar-chart-horizontal":["statistics","rhythm","柱状图","统计","韵律","节奏"],"bar-chart-2":["statistics","rhythm","柱状图","统计","排行","节奏"],"bar-chart-box":["statistics","rhythm","柱状图","统计","节奏"],"bar-chart-grouped":["statistics","rhythm","柱状图","统计","分组"],"bubble-chart":["data","analysis","statistics","气泡图","统计"],"pie-chart":["data","analysis","饼图","饼状图","数据","分析"],"pie-chart-2":["data","analysis","饼图","饼状图","数据","分析"],"pie-chart-box":["data","analysis","饼图","饼状图","数据","分析"],"donut-chart":["data","analysis","环形图","数据","分析"],"line-chart":["data","analysis","stats","折线图","数据","分析"],"bookmark":["tag","书签","标记"],"bookmark-2":["tag","书签","标记"],"bookmark-3":["tag","书签","标记","荣誉"],"briefcase":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"briefcase-2":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"briefcase-3":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"briefcase-4":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"briefcase-5":["bag","baggage","公文包","行李箱","旅行箱","皮包"],"calculator":["计算器","计算机"],"calendar":["date","plan","schedule","agenda","日历","日期","月份","计划","日程","时间表"],"calendar-2":["date","plan","schedule","agenda","日历","日期","月份","计划","日程","时间表"],"calendar-event":["date","plan","schedule","agenda","日历","日期","月份","计划","日程","时间表"],"calendar-todo":["date","plan","schedule","agenda","日历","日期","月份","计划","日程","时间表"],"calendar-check":["date","plan","schedule","agenda","check-in","punch","日历","日期","月份","计划","日程","时间表","签到","打卡"],"customer-service":["headset","客服","售后","耳机","耳麦"],"customer-service-2":["headset","客服","售后","耳机","耳麦"],"flag":["banner","pin","旗帜","旗子","国旗","标记"],"flag-2":["banner","pin","旗帜","旗子","国旗","标记"],"global":["earth","union","world","language","地球","联合","世界","全球","语言"],"honour":["honor","glory","锦旗","荣誉","荣耀","军衔"],"links":["connection","address","联系","链接","地址"],"printer":["打印机"],"printer-cloud":["打印机","云打印"],"record-mail":["voice mail","tape","录音","留言","语音信箱","磁带"],"reply":["forward","回复","答复","留言","转发"],"send-plane":["发送","纸飞机"],"send-plane-2":["发送","纸飞机"],"projector":["projection","meeting","投影仪","会议室"],"projector-2":["projection","meeting","投影仪","会议室","极米"],"slideshow":["presentation","meeting","PPT","keynote","投影","放映","演示","演讲","幻灯片","会议室"],"slideshow-2":["presentation","meeting","投影","放映","演示","演讲","幻灯片","会议室"],"slideshow-3":["presentation","meeting","投影","放映","演示","演讲","视频会议","幻灯片","会议室"],"slideshow-4":["presentation","meeting","投影","放映","演示","演讲","可视对讲","幻灯片","会议室"],"window":["browser","program","web","窗口","浏览器","程序","网站"],"window-2":["browser","program","web","窗口","浏览器","程序","网站"],"stack":["layers","图层","叠加","堆栈"],"service":["heart","handshake","cooperation","服务","握手","心","合作"],"registered":["注册","商标"],"trademark":["注册","商标"],"advertisement":["ad","广告","推广"],"copyright":["版权"],"creative-commons":["知识共享"],"creative-commons-by":["attribution","copyright","版权","知识共享","署名"],"creative-commons-nc":["noncommercial","copyright","版权","知识共享","非商业用途"],"creative-commons-nd":["no derivative works","copyright","版权","知识共享","禁止演绎"],"creative-commons-sa":["share alike","copyright","版权","知识共享","相同方式共享"],"creative-commons-zero":["cc0","copyright","版权","知识共享"]},"Communication":{"chat-1":["message","reply","comment","消息","聊天","回复","评论"],"chat-2":["message","reply","comment","消息","聊天","回复","评论"],"chat-3":["message","reply","comment","消息","聊天","回复","评论"],"chat-4":["message","reply","comment","消息","聊天","回复","评论"],"message":["chat","comment","reply","消息","聊天","回复","评论"],"message-2":["chat","reply","comment","消息","聊天","回复","评论"],"message-3":["chat","reply","comment","消息","聊天","回复","评论"],"chat-check":["message","reply","comment","消息","聊天","回复","评论","已阅"],"chat-delete":["message","comment","消息","聊天","回复","评论","清除","删除"],"chat-forward":["message","comment","消息","聊天","转发"],"chat-upload":["message","comment","消息","聊天","上传"],"chat-download":["message","comment","消息","下载"],"chat-new":["message","reply","comment","消息","聊天","回复","评论"],"chat-settings":["message","comment","消息","聊天","回复","评论","设置"],"chat-smile":["message","reply","comment","消息","聊天","回复","评论"],"chat-smile-2":["message","reply","comment","消息","聊天","回复","评论"],"chat-smile-3":["message","reply","comment","消息","聊天","回复","评论"],"chat-heart":["message","reply","comment","消息","聊天","回复","评论","心","点赞","收藏"],"chat-off":["message","reply","comment","slash","消息","聊天","回复","评论","禁止","关闭"],"feedback":["message","comment","消息","聊天","回复","评论","反馈"],"discuss":["message","reply","comment","消息","聊天","回复","评论","讨论","群聊"],"question-answer":["message","reply","comment","消息","聊天","回复","评论","讨论","群聊"],"questionnaire":["message","comment","help","消息","聊天","回复","评论","讨论","调查问卷","帮助"],"video-chat":["message","comment","消息","视频聊天"],"chat-voice":["message","comment","消息","语音消息"],"chat-quote":["message","reply","comment","消息","引用回复"],"chat-follow-up":["message","reply","comment","消息","+1","跟帖"],"chat-poll":["message","vote","questionnaire","消息","投票","问卷调查"],"chat-history":["message","历史消息","消息记录"],"chat-private":["message","私密消息","密聊"]},"Design":{"pencil":["edit","铅笔","编辑"],"edit":["pencil","铅笔","编辑"],"edit-2":["pencil","铅笔","编辑"],"ball-pen":["圆珠笔"],"quill-pen":["羽毛笔"],"mark-pen":["马克笔"],"markup":["标记","马克"],"pen-nib":["钢笔","笔尖"],"edit-box":["编辑"],"edit-circle":["编辑"],"sip":["吸管","取色器"],"brush":["笔刷","画笔","刷子"],"brush-2":["刷子"],"brush-3":["刷子"],"brush-4":["刷子"],"paint-brush":["填色","填充","刷子"],"contrast":["brightness","tonalit","对比度","亮度","色调"],"contrast-2":["moon","dark","brightness","tonalit","月亮","夜间","对比度","亮度","色调"],"drop":["water","blur","模糊","水","滴"],"blur-off":["water","drop","slash","模糊","水","滴","禁止","关闭"],"contrast-drop":["water","brightness","tonalit","水","对比度","亮度","色调","滴"],"contrast-drop-2":["water","brightness","tonalit","水","对比度","亮度","色调","滴"],"compasses":["圆规"],"compasses-2":["圆规"],"scissors":["剪刀","裁剪"],"scissors-cut":["剪刀","裁剪"],"scissors-2":["剪刀","裁剪","截屏"],"slice":["knife","切图","切片","刀"],"eraser":["remove formatting","橡皮","擦除","清除格式"],"ruler":["尺子"],"ruler-2":["尺子"],"pencil-ruler":["design","铅笔","尺子","文具","设计"],"pencil-ruler-2":["design","铅笔","尺子","文具","设计"],"t-box":["文字","字体","字号"],"input-method":["输入法","文字"],"artboard":["grid","crop","画板","裁切"],"artboard-2":["画板"],"crop":["裁切"],"crop-2":["裁切"],"screenshot":["capture","屏幕截图","截屏"],"screenshot-2":["capture","屏幕截图","截屏"],"drag-move":["arrow","拖拽","移动","箭头"],"drag-move-2":["arrow","拖拽","移动","箭头"],"focus":["aim","target","焦点","聚焦","目标","靶心"],"focus-2":["aim","target","bullseye","焦点","聚焦","目标","靶心"],"focus-3":["aim","target","bullseye","焦点","聚焦","目标","靶心"],"paint":["填色","填充","油漆桶"],"palette":["调色盘","色板"],"pantone":["色板","潘通色","色号"],"shape":["border","形状","描边","边框"],"shape-2":["border","形状","描边","边框"],"magic":["fantasy","magic stick","beautify","魔法棒","美化","幻想","魔幻"],"anticlockwise":["rotate","left","左翻转","左旋转"],"anticlockwise-2":["rotate","left","左翻转","左旋转"],"clockwise":["rotate","right","右翻转","右旋转"],"clockwise-2":["rotate","right","右翻转","右旋转"],"hammer":["锤子"],"tools":["settings","工具","设置"],"drag-drop":["drag and drop","mouse","拖拽","鼠标"],"table":["表格"],"table-alt":["表格"],"layout":["布局"],"layout-2":["collage","布局","拼贴画"],"layout-3":["collage","布局","拼贴画"],"layout-4":["collage","布局","拼贴画"],"layout-5":["collage","布局","拼贴画"],"layout-6":["collage","布局","拼贴画"],"layout-column":["左右布局"],"layout-row":["上下布局"],"layout-top":["顶部布局","顶部导航"],"layout-right":["右侧布局","右侧导航"],"layout-bottom":["底部布局","底部导航"],"layout-left":["左侧布局","左侧导航"],"layout-top-2":["顶部布局","顶部导航"],"layout-right-2":["右侧布局","右侧导航"],"layout-bottom-2":["底部布局","底部导航"],"layout-left-2":["左侧布局","左侧导航"],"layout-grid":["卡片布局","网格"],"layout-masonry":["瀑布流布局","拼贴画"],"grid":["table","网格","表格"]},"Development":{"bug":["虫子"],"bug-2":["虫子"],"code":["代码","编程"],"code-s":["代码","编程"],"code-s-slash":["代码","编程"],"code-box":["代码","编程"],"terminal-box":["code","command line","终端","代码","命令行"],"terminal":["code","command line","终端","代码","命令行"],"terminal-window":["code","command line","终端","代码","命令行"],"parentheses":["code","math","小括号"],"brackets":["code","math","中括号"],"braces":["code","math","大括号","花括号"],"command":["apple key","花键","苹果键"],"cursor":["mouse","指针","鼠标"],"git-commit":["node","提交"],"git-pull-request":["合并申请"],"git-merge":["合并"],"git-branch":["分支"],"git-repository":["仓库"],"git-repository-commits":["仓库","提交"],"git-repository-private":["私密仓库","私人仓库"],"html5":["html","h5"],"css3":["css"]},"Device":{"tv":["电视"],"tv-2":["monitor","电视","显示器"],"computer":["monitor","电脑","显示器"],"mac":["monitor","显示器"],"macbook":["laptop","笔记本"],"cellphone":["手机","电话"],"smartphone":["mobile","手机"],"tablet":["平板电脑"],"device":["设备"],"phone":["电话"],"database":["storage","数据库","存储"],"database-2":["storage","数据库","存储"],"server":["服务器"],"hard-drive":["disc","storage","硬盘","存储"],"hard-drive-2":["disc","server","storage","硬盘","服务器","存储"],"install":["安装"],"uninstall":["卸载"],"save":["floppy","保存","软盘"],"save-2":["floppy","保存","软盘"],"save-3":["floppy","保存","软盘"],"sd-card":["内存卡"],"sd-card-mini":["内存卡"],"sim-card":["电话卡"],"sim-card-2":["电话卡"],"dual-sim-1":["sim card","电话卡","卡槽","双卡双待"],"dual-sim-2":["sim card","电话卡","卡槽","双卡双待"],"u-disk":["U盘","优盘"],"battery":["电池"],"battery-charge":["电池","充电"],"battery-low":["电池","低电量"],"battery-2":["电池"],"battery-2-charge":["电池","充电"],"battery-saver":["电池","省电模式"],"battery-share":["电池共享","共享电量"],"cast":["mirroring","投屏","无线","广播"],"airplay":["mirroring","投屏","无线"],"cpu":["中央处理器"],"gradienter":["水平仪"],"keyboard":["input","键盘","输入"],"keyboard-box":["input","键盘","输入"],"mouse":["鼠标"],"sensor":["capacitor","传感器","电容器"],"router":["wifi","signal tower","radio","station","路由器","信号塔","广播","基站","流量"],"radar":["satellite receiver","雷达","卫星接收器","锅"],"gamepad":["consoles","controller","游戏手柄"],"remote-control":["controller","遥控器"],"remote-control-2":["controller","遥控器"],"device-recover":["恢复出厂设置"],"hotspot":["手机热点"],"phone-find":["找回手机"],"phone-lock":["锁定手机"],"rotate-lock":["锁定旋转屏幕"],"restart":["reload","refresh","重启"],"shut-down":["power off","关机"],"fingerprint":["指纹"],"fingerprint-2":["指纹"],"barcode":["scan","扫码","条形码","条码"],"barcode-box":["scan","扫码","条形码","条码"],"qr-code":["二维码"],"qr-scan":["二维码","扫描"],"qr-scan-2":["二维码","扫描"],"scan":["扫描"],"scan-2":["扫描"],"rss":["feed","subscribe","订阅"],"gps":["signal","定位","信号"],"base-station":["wifi","signal tower","router","cast","基站","信号塔","路由器","广播","流量"],"bluetooth":["wireless","蓝牙","无线"],"bluetooth-connect":["wireless","蓝牙","连接","无线"],"wifi":["无线网"],"wifi-off":["slash","offline","connection-fail","无线网","关闭","断网","链接失败"],"signal-wifi":["cellular","strength","无线网","信号"],"signal-wifi-1":["cellular","strength","无线网","信号"],"signal-wifi-2":["cellular","strength","无线网","信号"],"signal-wifi-3":["cellular","strength","无线网","信号"],"signal-wifi-error":["cellular","offline","connection-fail","无线网","断网","链接失败","无信号"],"signal-wifi-off":["cellular","slash","offline","connection-fail","无线网","关闭","断网","链接失败"],"wireless-charging":["power","flash","无线充电","闪充"]},"Document":{"file":["new","paper","文件","文档","新建"],"file-2":["new","paper","文件","文档","新建"],"file-3":["new","paper","文件","文档","新建"],"file-4":["new","paper","文件","文档","新建"],"sticky-note":["new","paper","文件","文档","新建","便签纸","便利贴"],"sticky-note-2":["new","paper","文件","文档","新建","便签纸","便利贴"],"file-edit":["文件","文档","编辑"],"file-paper":["文件","文档","纸","谱"],"file-paper-2":["文件","文档","纸","谱"],"file-text":["文件","文档","文本"],"file-list":["清单","列表"],"file-list-2":["清单","列表"],"file-list-3":["newspaper","清单","列表","报纸"],"bill":["账单"],"file-copy":["duplicate","clone","复制","克隆"],"file-copy-2":["duplicate","clone","复制","克隆"],"clipboard":["copy","复制","剪切板"],"survey":["research","questionnaire","调查","问卷","调研"],"article":["newspaper","文章","报纸"],"newspaper":["报纸"],"file-zip":["7z","rar","压缩包"],"file-mark":["文件","文档","标记"],"task":["todo","任务","待办"],"todo":["待办"],"book":["read","dictionary","booklet","书","阅读","字典","小册子"],"book-mark":["read","dictionary","booklet","书","阅读","字典","小册子","书签"],"book-2":["read","dictionary","booklet","书","阅读","字典","小册子"],"book-3":["read","dictionary","booklet","书","阅读","字典","小册子"],"book-open":["read","booklet","magazine","书","阅读","小册子","杂志"],"book-read":["booklet","magazine","书","阅读","小册子","杂志"],"contacts-book":["通讯录","联系人"],"contacts-book-2":["通讯录","联系人"],"contacts-book-upload":["upload","通讯录","联系人","上传"],"booklet":["notebook","手册","笔记本","小册子"],"file-code":["config","文件","文档","代码","脚本","配置文件"],"file-pdf":["文件","文档"],"file-word":["文档"],"file-ppt":["文件","文档"],"file-excel":["文档","表单"],"file-word-2":["文档"],"file-ppt-2":["文件","文档"],"file-excel-2":["文档","表单"],"file-hwp":["文件","文档","hangul word processor"],"keynote":["演示文稿","幻灯片","讲演"],"numbers":["表格"],"pages":["文稿"],"file-search":["文件","文档","搜索"],"file-add":["new","文件","文档","新建"],"file-reduce":["文件","文档","减"],"file-settings":["文件","文档","设置"],"file-upload":["文件","文档","上传"],"file-transfer":["文件","文档","传输"],"file-download":["文件","文档","下载"],"file-lock":["文件","文档","锁"],"file-chart":["report","文件","文档","柱状图","报表"],"file-chart-2":["report","文件","文档","饼图","报表"],"file-music":["文件","文档","音乐"],"file-gif":["文件","文档","动图"],"file-forbid":["文件","文档","禁用"],"file-info":["文件","文档","信息"],"file-warning":["alert","文件","文档","警告","提醒"],"file-unknow":["文件","文档","未知","问号"],"file-user":["文件","文档","用户"],"file-shield":["protected","secured","文件","文档","盾牌","保护","安全"],"file-shield-2":["protected","secured","文件","文档","盾牌","保护","安全"],"file-damage":["breakdown","broken","文件","文档","损坏","破损","破裂"],"file-history":["record","文件","文档","记录","历史"],"file-shred":["shredder","shred","destroy","cut","文档","销毁","碎纸机","破裂","粉碎"],"file-cloud":["文件","文档","云"],"folder":["directory","file","文件夹","目录","文档"],"folder-2":["directory","file","文件夹","目录","文档"],"folder-3":["directory","file","文件夹","目录","文档"],"folder-4":["directory","file","文件夹","目录","文档"],"folder-5":["directory","file","文件夹","目录","文档"],"folders":["directory","file","文件夹","目录","文档","批量"],"folder-add":["directory","file","文件夹","目录","文档","添加"],"folder-reduce":["directory","file","文件夹","目录","文档","减"],"folder-settings":["directory","file","文件夹","目录","文档","设置"],"folder-upload":["directory","file","文件夹","目录","文档","上传"],"folder-transfer":["directory","file","文件夹","目录","文档","传输"],"folder-download":["directory","file","文件夹","目录","文档","下载"],"folder-lock":["directory","file","文件夹","目录","文档","锁"],"folder-chart":["report","文件夹","目录","文档","柱状图","报表"],"folder-chart-2":["report","文件夹","目录","文档","饼图","报表"],"folder-music":["directory","file","文件夹","目录","文档","音乐"],"folder-forbid":["directory","file","文件夹","目录","文档","禁用"],"folder-info":["directory","file","文件夹","目录","文档","信息"],"folder-warning":["alert","directory","file","文件夹","目录","文档","警告","提醒"],"folder-unknow":["directory","file","文件夹","目录","文档","未知"],"folder-user":["directory","file","文件夹","目录","文档","用户"],"folder-shield":["directory","file","protected","secured","文件夹","目录","文档","保护","盾牌","安全"],"folder-shield-2":["directory","file","protected","secured","文件夹","目录","文档","保护","盾牌","安全"],"folder-shared":["directory","file","文件夹","目录","文档","分享"],"folder-received":["directory","file","文件夹","目录","文档","接收"],"folder-open":["directory","file","文件夹","目录","文档","打开"],"folder-keyhole":["directory","encryption","file","文件夹","目录","文档","打开","加密文档"],"folder-zip":["directory","file","文件夹","目录","文档","打开","压缩"],"folder-history":["directory","file","record","文件夹","目录","文档","记录","历史"],"markdown":["arrow","箭头","下"]},"Editor":{"bold":["加粗"],"italic":["斜体"],"heading":["标题"],"text":["字体"],"font-color":["文字色"],"font-size":["字号","字体大小"],"font-size-2":["字号","字体大小"],"underline":["下划线"],"emphasis":["着重号"],"emphasis-cn":["着重号"],"strikethrough":["remove formatting","删除线"],"strikethrough-2":["remove formatting","删除线"],"format-clear":["remove formatting","清除格式"],"align-left":["左对齐"],"align-center":["居中对齐"],"align-right":["右对齐"],"align-justify":["排列对齐"],"align-top":["顶部对齐"],"align-vertically":["垂直对齐"],"align-bottom":["底部对齐"],"list-check":["check list","清单列表"],"list-check-2":["check list","清单列表"],"list-ordered":["number list","有序列表"],"list-unordered":["bullet list","无序列表"],"indent-decrease":["indent more","缩进"],"indent-increase":["indent less","缩进"],"line-height":["行高"],"text-spacing":["字间距"],"text-wrap":["文本换行"],"attachment-2":["annex","paperclip","附件","曲别针"],"link":["connection","address","联系","链接","地址"],"link-unlink":["connection","remove address","去除链接"],"link-m":["connection","address","联系","链接","地址"],"link-unlink-m":["connection","remove address","去除链接"],"separator":["分割线"],"space":["空格"],"page-separator":["insert","分页符","插入"],"code-view":["代码视图"],"double-quotes-l":["left","quotaion marks","双引号"],"double-quotes-r":["right","quotaion marks","双引号"],"single-quotes-l":["left","quotaion marks","单引号"],"single-quotes-r":["right","quotaion marks","单引号"],"table-2":["表格"],"subscript":["角标","下标","脚注"],"subscript-2":["角标","下标","脚注"],"superscript":["角标","上标"],"superscript-2":["角标","上标"],"paragraph":["段落"],"text-direction-l":["文本左对齐"],"text-direction-r":["文本左对齐"],"functions":["功能"],"omega":["Ω","特殊符号"],"hashtag":["#","井号"],"asterisk":["*","星号"],"translate":["translator","翻译"],"translate-2":["translator","翻译"],"a-b":["a/b testing","ab testing","ab测试"],"english-input":["英文输入法"],"pinyin-input":["拼音输入法"],"wubi-input":["五笔输入法"],"input-cursor-move":["移动输入光标"],"number-1":["1","一","数字"],"number-2":["2","二","数字"],"number-3":["3","三","数字"],"number-4":["4","四","数字"],"number-5":["5","五","数字"],"number-6":["6","六","数字"],"number-7":["7","七","数字"],"number-8":["8","八","数字"],"number-9":["9","九","数字"],"number-0":["0","零","数字"],"sort-asc":["ranking","ordering","sorting","ascending","descending","升序排列","排序"],"sort-desc":["ranking","ordering","降序排列","排序"],"bring-forward":["arrange","层级","向上一层"],"send-backward":["arrange","层级","向下一层"],"bring-to-front":["arrange","层级","移到最前面"],"send-to-back":["arrange","层级","移到最后面"]},"Finance":{"wallet":["钱包","卡包"],"wallet-2":["钱包","卡包"],"wallet-3":["钱包","卡包"],"bank-card":["credit","purchase","payment","cc","银行卡","信用卡","购买","消费","支付"],"bank-card-2":["credit","purchase","payment","cc","银行卡","信用卡","购买","消费","支付"],"secure-payment":["credit","purchase","payment","cc","银行卡","信用卡","购买","消费","支付","安全"],"refund":["credit card","repayment","cc","银行卡","信用卡还款"],"refund-2":["credit card","repayment","cc","银行卡","信用卡还款"],"safe":["保险柜","保险箱"],"safe-2":["保险柜","保险箱"],"price-tag":["label","标签","价签"],"price-tag-2":["label","标签","价签"],"price-tag-3":["label","标签","价签"],"ticket":["coupon","票","优惠券","代金券"],"ticket-2":["coupon","票","优惠券","代金券"],"coupon":["ticket","票","优惠券","代金券"],"coupon-2":["ticket","票","优惠券","代金券"],"coupon-3":["ticket","票","优惠券","代金券"],"coupon-4":["优惠券","代金券"],"coupon-5":["优惠券","代金券"],"shopping-bag":["purse","购物袋","购买","消费","商城"],"shopping-bag-2":["购物袋","购买","消费","商城"],"shopping-bag-3":["购物袋","购买","消费","商城"],"shopping-basket":["购物篮","购买","消费","商城"],"shopping-basket-2":["购物篮","购买","消费","商城"],"shopping-cart":["购物车","购买","消费","商城"],"shopping-cart-2":["购物车","购买","消费","商城"],"vip":["会员"],"vip-crown":["king","queen","皇冠","会员","国王","女王","王后"],"vip-crown-2":["king","queen","皇冠","会员","国王","女王","王后"],"vip-diamond":["钻石","会员"],"trophy":["奖品","奖杯","金杯"],"exchange":["swap","交换","换算","兑换"],"exchange-box":["swap","交换","换算","兑换"],"swap":["exchange","交换","换算","兑换"],"swap-box":["exchange","交换","换算","兑换"],"exchange-dollar":["swap","transfer","交换","换算","兑换","美元","转账"],"exchange-cny":["swap","transfer","交换","换算","兑换","人民币","转账"],"exchange-funds":["swap","transfer","交换","换算","兑换","基金","股票","转账"],"increase-decrease":["计算器"],"percent":["百分之","百分比"],"copper-coin":["currency","payment","铜币","硬币","货币","钱","支付"],"copper-diamond":["currency","coins","金币","钻石","货币","钱","支付"],"money-cny-box":["currency","payment","货币","钱","支付","人民币"],"money-cny-circle":["currency","coins","金币","payment","货币","钱","支付","人民币"],"money-dollar-box":["currency","payment","货币","钱","支付","美元"],"money-dollar-circle":["currency","coins","金币","payment","cent","penny","货币","钱","支付","美元","美分","便士"],"money-euro-box":["currency","payment","货币","钱","支付","欧元"],"money-euro-circle":["currency","coins","金币","payment","货币","钱","支付","欧元"],"money-pound-box":["currency","payment","货币","钱","支付","英镑"],"money-pound-circle":["currency","coins","金币","payment","货币","钱","支付","英镑"],"bit-coin":["currency","payment","货币","钱","比特币"],"coin":["金币","硬币"],"coins":["金币","硬币"],"currency":["cash","payment","货币","钱"],"funds":["foundation","stock","基金","股票"],"funds-box":["foundation","stock","基金","股票"],"red-packet":["红包"],"water-flash":["水电费"],"stock":["股票"],"auction":["hammer","拍卖","锤子"],"gift":["present","礼物"],"gift-2":["present","礼物"],"hand-coin":["donate","business","捐赠"],"hand-heart":["help","donate","volunteer","welfare","帮助","爱心","捐赠","志愿者","公益"]},"Logos":{"alipay":["zhifubao","支付宝"],"amazon":["亚马逊"],"android":["applications","安卓","应用"],"angularjs":["angular","programing framework"],"app-store":["applications","苹果应用商店"],"apple":["苹果"],"baidu":["du","claw","百度","爪"],"behance":["behance"],"bilibili":["哔哩哔哩"],"centos":["linux","system","系统"],"chrome":["谷歌浏览器"],"codepen":["代码笔"],"coreos":["linux","system","系统"],"dingding":["钉钉"],"discord":["game","chat"],"disqus":["comments"],"douban":["豆瓣"],"dribbble":["追波"],"drive":["google drive","谷歌云端硬盘"],"dropbox":["多宝箱"],"edge":["microsoft edge","edge浏览器"],"evernote":["印象笔记"],"facebook":["脸书"],"facebook-circle":["脸书"],"facebook-box":["脸书"],"firefox":["火狐浏览器"],"flutter":["google"],"gatsby":["gatsby"],"github":["github"],"gitlab":["gitlab"],"google":["谷歌"],"google-play":["applications","谷歌应用商店"],"honor-of-kings":["game","王者荣耀"],"ie":["internet explorer","浏览器"],"instagram":["照片墙"],"invision":["invision"],"kakao-talk":["kakao talk","chat"],"line":["连我"],"linkedin":["领英"],"linkedin-box":["领英"],"mastercard":["bank card","银行卡"],"mastodon":["mastodon","长毛象"],"medium":["媒体"],"messenger":["facebook","脸书","信使"],"mini-program":["微信小程序"],"netease-cloud-music":["netease cloud music","网易云音乐"],"netflix":["网飞"],"npmjs":["npm","nodejs"],"open-source":["opensource","开源"],"opera":["欧朋浏览器"],"patreon":["donate","money","捐赠","打赏"],"paypal":["贝宝"],"pinterest":["拼趣"],"pixelfed":["photography","pixelfed"],"playstation":["ps"],"product-hunt":["product hunt"],"qq":["penguin","tencent","腾讯","企鹅"],"reactjs":["react","programing framework","facebook"],"reddit":["reddit"],"remixicon":["remix icon","图标"],"safari":["safari浏览器"],"skype":["skype"],"slack":["slack"],"snapchat":["ghost","色拉布","幽灵"],"soundcloud":["声云"],"spectrum":["spectrum"],"spotify":["music","音乐"],"stack-overflow":["stack overflow"],"stackshare":["share","分享","技术栈"],"steam":["game","store"],"switch":["nintendo","任天堂"],"taobao":["淘宝"],"telegram":["telegram"],"trello":["trello"],"tumblr":["汤博乐"],"twitch":["twitch"],"twitter":["推特"],"ubuntu":["linux","system","系统"],"unsplash":["photos"],"visa":["bank card","银行卡"],"vuejs":["vue","programing framework"],"wechat":["微信"],"wechat-2":["微信"],"wechat-pay":["微信支付"],"weibo":["新浪微博"],"whatsapp":["瓦次艾普"],"windows":["microsoft","窗户","微软"],"xbox":["xbox"],"xing":["xing"],"youtube":["优兔","油管"],"zcool":["zcool","站酷"],"zhihu":["知乎"]},"Map":{"map-pin":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-2":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-3":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-4":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-5":["location","navigation","地图","坐标","定位","导航","位置"],"map-pin-add":["location","navigation","地图","坐标","定位","导航","位置","新增","添加"],"map-pin-range":["location","navigation","地图","坐标","定位","导航","位置","范围"],"map-pin-time":["location","navigation","地图","坐标","定位","导航","位置","时间"],"map-pin-user":["location","navigation","地图","坐标","定位","导航","位置","用户"],"pin-distance":["坐标","距离"],"pushpin":["图钉"],"pushpin-2":["图钉"],"compass":["navigation","safari","direction","discover","指南针","导航","方向","发现","探索"],"compass-2":["navigation","direction","discover","指南针","导航","方向","发现","探索"],"compass-3":["navigation","safari","direction","discover","指南针","导航","方向","发现","探索"],"compass-4":["navigation","direction","discover","指南针","导航","方向","发现","探索"],"compass-discover":["navigation","direction","指南针","导航","方向","发现","探索"],"anchor":["锚"],"china-railway":["中铁","铁路","火车"],"space-ship":["太空飞船"],"rocket":["火箭"],"rocket-2":["space ship","火箭","太空飞船"],"map":["navigation","travel","地图","导航","旅行"],"map-2":["location","navigation","travel","地图","定位","导航","旅行"],"treasure-map":["thriller","adventure","地图","藏宝图"],"road-map":["navigation","travel","地图","导航","旅行"],"earth":["global","union","world","language","地球","全球","联合","世界","语言"],"globe":["earth","地球仪"],"parking":["停车场"],"parking-box":["停车场"],"route":["path","路线"],"guide":["path","指引","路线"],"gas-station":["加气站","加油站"],"charging-pile":["充电桩"],"charging-pile-2":["充电桩"],"car":["汽车"],"car-washing":["汽车","洗车"],"roadster":["car","汽车","跑车"],"taxi":["car","出租车","汽车"],"taxi-wifi":["car","出租车","汽车"],"police-car":["汽车","警车"],"bus":["大巴","巴士"],"bus-2":["大巴","巴士"],"bus-wifi":["大巴","巴士"],"truck":["van","delivery","卡车","货车","运输"],"train":["火车"],"train-wifi":["火车"],"subway":["地铁"],"subway-wifi":["地铁"],"flight-takeoff":["airplane","plane","origin","起飞","出发","始发","起点","飞机"],"flight-land":["airplane","plane","destination","着陆","到达","抵达","终点","飞机"],"plane":["fight","飞机","航班"],"sailboat":["帆船"],"ship":["轮船","航海","海运"],"ship-2":["轮船"],"bike":["自行车"],"e-bike":["take out","takeaway","电动车","外卖"],"e-bike-2":["take out","takeaway","电动车","外卖"],"takeaway":["take out","takeaway","电动车","外卖"],"motorbike":["摩托车"],"caravan":["房车"],"walk":["步行"],"run":["奔跑","跑步"],"riding":["bike","骑行","自行车"],"barricade":["路障"],"footprint":["脚印","足迹"],"traffic-light":["交通","信号灯"],"signal-tower":["base station","antenna","信号塔","基站","天线"],"restaurant":["餐厅","饭店"],"restaurant-2":["餐厅","饭店"],"cup":["tea","coffee","杯子","咖啡","茶"],"goblet":["cup","wine glass","高脚杯","酒杯"],"hotel-bed":["酒店","床"],"navigation":["gps","导航"],"oil":["汽油","机油"],"direction":["right","方向","右转"],"steering":["drive","方向盘","驾车"],"steering-2":["drive","方向盘","驾车"],"lifebuoy":["life ring","救生圈"],"passport":["passports","护照"],"suitcase":["travel","旅行","行李箱"],"suitcase-2":["travel","旅行","行李箱","拉杆箱"],"suitcase-3":["travel","旅行","boarding case","行李箱","拉杆箱","登机箱"],"luggage-deposit":["consignment","行李箱","行李寄存","托运"],"luggage-cart":["行李车"]},"Media":{"image":["picture","photo","图片","照片"],"image-2":["picture","photo","图片","照片"],"image-add":["picture","photo","图片","照片","添加"],"landscape":["picture","image","photo","图片","照片"],"gallery":["picture","image","图片","相册"],"gallery-upload":["picture","image","图片","相册","上传"],"video":["视频"],"movie":["film","video","电影","硬盘","视频"],"movie-2":["film","video","电影","硬盘","视频"],"film":["movie","video","影片","电影","视频"],"clapperboard":["movie","film","场记板","电影"],"vidicon":["video","camera","摄像机","摄影机","视频"],"vidicon-2":["camera","摄像机","摄影机"],"live":["video","camera","摄像机","摄影机","视频","直播"],"video-add":["camera","摄像机","摄影机","视频","添加"],"video-upload":["camera","摄像机","摄影机","视频","上传"],"video-download":["camera","摄像机","摄影机","视频","下载"],"dv":["vidicon","camera","摄像机","摄影机"],"camera":["photo","照相机","拍照","照片"],"camera-off":["photo","slash","照相机","拍照","照片","禁止","关闭"],"camera-2":["photo","照相机","拍照","照片"],"camera-3":["photo","照相机","拍照","照片"],"camera-lens":["aperture","photo","照相机","拍照","照片","朋友圈"],"camera-switch":["照相机","拍照","翻转"],"polaroid":["camera","相机","宝丽来"],"polaroid-2":["camera","相机","宝丽来"],"phone-camera":["手机相机","手机摄像头"],"webcam":["摄像头"],"mv":["music video","音乐"],"music":["音乐"],"music-2":["音乐"],"disc":["music","album","音乐","唱片"],"album":["music","唱片","音乐"],"dvd":["cd","dvd","record","光盘","刻录"],"headphone":["music","headset","耳机","音乐"],"radio":["收音机","电台"],"radio-2":["收音机","电台"],"tape":["录音","磁带"],"mic":["record","voice","话筒","语音","录音","声音"],"mic-2":["record","voice","话筒","语音","录音","声音"],"mic-off":["record","voice","slash","关闭话筒","关闭语音","录音","关闭声音","静音","禁止"],"volume-down":["trumpet","sound","speaker","音量低","喇叭","声音","扬声器"],"volume-mute":["trumpet","sound","off","音量低","喇叭","声音","静音"],"volume-up":["trumpet","sound","speaker","音量高","喇叭","声音","扬声器"],"volume-vibrate":["trumpet","sound","speaker","喇叭","声音","扬声器","震动模式"],"volume-off-vibrate":["trumpet","sound","speaker","静音","喇叭","声音","扬声器","静音模式"],"speaker":["音响"],"speaker-2":["音响"],"speaker-3":["音响"],"surround-sound":["环绕立体声"],"broadcast":["广播"],"notification":["bell","alarm","通知","铃铛","提醒"],"notification-2":["bell","alarm","通知","铃铛","提醒"],"notification-3":["bell","alarm","通知","铃铛","提醒"],"notification-4":["bell","alarm","通知","铃铛","提醒"],"notification-off":["bell","alarm","silent","slash","通知","铃铛","提醒","免打扰","静音","关闭","禁止"],"play-circle":["start","播放","开始"],"pause-circle":["暂停"],"record-circle":["录音"],"stop-circle":["停止"],"eject":["推出"],"play":["start","播放","开始"],"pause":["暂停"],"stop":["停止"],"rewind":["fast","快退"],"speed":["fast","快进"],"skip-back":["上一曲"],"skip-forward":["下一曲"],"play-mini":["播放"],"pause-mini":["暂停"],"stop-mini":["停止"],"rewind-mini":["fast","快退"],"speed-mini":["fast","快进"],"skip-back-mini":["上一曲"],"skip-forward-mini":["下一曲"],"repeat":["循环播放"],"repeat-2":["循环播放"],"repeat-one":["单曲循环"],"order-play":["顺序播放"],"shuffle":["随机播放"],"play-list":["播放列表"],"play-list-add":["列表","添加"],"fullscreen":["maximize","全屏","最大化"],"fullscreen-exit":["minimize","退出全屏","最小化"],"equalizer":["sliders","controls","settings","filter","均衡器","控制器","设置","筛选"],"sound-module":["sliders","controls","settings","filter","均衡器","控制器","设置","筛选"],"rhythm":["节奏","韵律"],"voiceprint":["声纹"],"hq":["high quality","高质量","高品质"],"hd":["high definition","高清晰度"],"4k":["high definition","high quality","高清晰度","高品质","超清"],"aspect-ratio":["宽高比","比例"],"picture-in-picture":["画中画","小窗"],"picture-in-picture-2":["画中画","小窗"],"picture-in-picture-exit":["退出画中画","退出小窗"]},"System":{"apps":["应用"],"apps-2":["应用"],"function":["layout","功能","应用","卡片布局"],"dashboard":["仪表盘"],"menu":["navigation","hamburger","导航","菜单","汉堡包"],"menu-2":["navigation","hamburger","导航","菜单","汉堡包"],"menu-3":["navigation","hamburger","导航","菜单","汉堡包"],"menu-4":["navigation","hamburger","导航","菜单","汉堡包"],"menu-5":["navigation","hamburger","导航","菜单","汉堡包"],"menu-add":["navigation","hamburger","导航","菜单","汉堡包","添加"],"more":["ellipsis","更多","省略"],"more-2":["ellipsis","更多","省略"],"heart":["like","love","favorite","心","喜欢","爱","收藏"],"heart-2":["public welfare","like","love","favorite","心","喜欢","爱","收藏"],"heart-add":["like","love","favorite","心","喜欢","爱","收藏"],"star":["favorite","like","mark","星星","星标","喜欢"],"star-s":["favorite","like","mark","星星","星标","喜欢","半星"],"star-half":["favorite","like","mark","星星","星标","喜欢"],"star-half-s":["favorite","like","mark","星星","星标","喜欢","半星"],"settings":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-2":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-3":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-4":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-5":["edit","gear","preferences","偏好设置","编辑","齿轮"],"settings-6":["edit","gear","preferences","偏好设置","编辑","齿轮"],"list-settings":["列表","设置"],"forbid":["slash","ban","禁止","禁用"],"forbid-2":["slash","ban","禁止","禁用"],"information":["信息"],"error-warning":["alert","警告","错误"],"question":["help","问号","帮助"],"alert":["提醒","警告"],"spam":["alert","垃圾邮件","警告"],"spam-2":["alert","垃圾邮件","警告"],"spam-3":["alert","垃圾邮件","警告"],"checkbox-blank":["复选框","空"],"checkbox":["复选框"],"checkbox-indeterminate":["复选框"],"add-box":["plus","new","复选框","添加","加号","新增"],"checkbox-blank-circle":["复选框","空"],"checkbox-circle":["复选框"],"indeterminate-circle":["slash","ban","复选框","禁"],"add-circle":["plus","new","复选框","添加","加号","新增"],"close-circle":["cancel","remove","delete","empty","x","关闭","取消","移除","删除","清空"],"radio-button":["单选框"],"checkbox-multiple-blank":["复选框","空"],"checkbox-multiple":["复选框","空"],"check":["对勾"],"check-double":["read","done","double-tick","双对勾","已读"],"close":["cancel","remove","delete","empty","x","关闭","取消","移除","删除","清空"],"add":["plus","new","添加","新增","加号"],"subtract":["减"],"divide":["除以"],"arrow-left-up":["corner","左上"],"arrow-up":["箭头","向上"],"arrow-right-up":["corner","右上"],"arrow-right":["箭头","向右"],"arrow-right-down":["corner","右下"],"arrow-down":["箭头","向下"],"arrow-left-down":["corner","箭头","左下"],"arrow-left":["箭头","向左","返回"],"arrow-up-circle":["箭头","向上"],"arrow-right-circle":["箭头","向右"],"arrow-down-circle":["箭头","向下","下载"],"arrow-left-circle":["箭头","向左","返回"],"arrow-up-s":["箭头","向上"],"arrow-down-s":["箭头","向下"],"arrow-right-s":["箭头","向右"],"arrow-left-s":["箭头","向左","返回"],"arrow-drop-up":["箭头","向上"],"arrow-drop-right":["箭头","向右"],"arrow-drop-down":["箭头","向下"],"arrow-drop-left":["箭头","向左","返回"],"arrow-left-right":["exchange","swap","箭头","左右","交换","换算","兑换"],"arrow-up-down":["exchange","swap","箭头","上下","交换","换算","兑换"],"arrow-go-back":["undo","箭头","返回","撤销","撤回"],"arrow-go-forward":["redo","箭头","重做","撤回"],"download":["下载"],"upload":["上传"],"download-2":["下载"],"upload-2":["上传"],"download-cloud":["下载","云"],"download-cloud-2":["下载","云"],"upload-cloud":["上传","云"],"upload-cloud-2":["上传","云"],"login-box":["sign in","登录"],"logout-box":["sign out","登出","注销"],"logout-box-r":["sign out","登出","注销"],"login-circle":["sign in","登录"],"logout-circle":["sign out","登出","注销"],"logout-circle-r":["sign out","登出","注销"],"refresh":["synchronization","reload","restart","spinner","loader","ajax","update","刷新","同步"],"shield":["safety","protect","盾牌","卫士","安全","防御"],"shield-cross":["safety","protect","盾牌","卫士","安全","防御","闪电"],"shield-flash":["safety","protect","盾牌","卫士","安全","防御"],"shield-star":["safety","protect","盾牌","卫士","安全","防御","星星"],"shield-user":["safety","protect","user protected","guarantor","盾牌","卫士","安全","防御","用户"],"shield-keyhole":["safety","protect","guarantor","盾牌","卫士","安全","防御","钥匙孔"],"delete-back":["backspace","删除","退格"],"delete-back-2":["backspace","删除","退格"],"delete-bin":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-2":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-3":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-4":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-5":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-6":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"delete-bin-7":["trash","remove","ash-bin","garbage","dustbin","uninstall","卸载","删除","垃圾桶"],"lock":["security","password","锁子","安全","密码"],"lock-2":["security","password","锁子","安全","密码"],"lock-password":["security","锁子","安全","密码"],"lock-unlock":["security","password","锁子","安全","密码"],"eye":["watch","view","眼睛","查看"],"eye-off":["slash","眼睛","不可见","关闭","禁止"],"eye-2":["watch","view","眼睛","查看"],"eye-close":["x","闭眼"],"search":["搜索","放大镜"],"search-2":["搜索","放大镜"],"search-eye":["搜索","放大镜","眼睛"],"zoom-in":["放大","放大镜"],"zoom-out":["缩小","放大镜"],"find-replace":["查找","搜索","替换"],"share":["分享","转发"],"share-box":["分享","转发"],"share-circle":["分享","转发"],"share-forward":["分享","转发"],"share-forward-2":["分享","转发"],"share-forward-box":["分享","转发"],"side-bar":["侧边栏"],"time":["clock","时间","时钟","钟表"],"timer":["chronograph","stopwatch","秒表","计时器"],"timer-2":["chronograph","stopwatch","秒表","计时器"],"timer-flash":["chronograph","stopwatch","秒表","计时器","闪电"],"alarm":["闹钟"],"history":["record","recent","time machine","历史记录","最近"],"thumb-down":["dislike","bad","不喜欢","不好"],"thumb-up":["like","good","喜欢","好"],"alarm-warning":["alert","report","police light","告警","举报","警灯"],"notification-badge":["red dot","通知","小红点"],"toggle":["switch","开关","触发器"],"filter":["filtration","筛选","过滤"],"filter-2":["filtration","筛选","过滤"],"filter-3":["filtration","筛选","过滤"],"loader":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"loader-2":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"loader-3":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"loader-4":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"loader-5":["loader","spinner","ajax","waiting","delay","加载中","载入中","正在加载"],"external-link":["外链"]},"User&Faces":{"user":["用户"],"user-2":["用户"],"user-3":["用户"],"user-4":["用户"],"user-5":["用户"],"user-6":["用户"],"user-smile":["用户","微笑"],"account-box":["用户","账户"],"account-circle":["用户","账户"],"account-pin-box":["用户","账户"],"account-pin-circle":["用户","账户"],"user-add":["用户","添加","新增"],"user-follow":["关注"],"user-unfollow":["用户","取消关注"],"user-shared":["transfer","用户","我分享的","发送"],"user-shared-2":["transfer","用户","我分享的","发送"],"user-received":["用户","我接收的","收取"],"user-received-2":["用户","我接收的","收取"],"user-location":["用户","定位"],"user-search":["用户","查找"],"user-settings":["admin","用户","设置","管理员"],"user-star":["用户","关注"],"user-heart":["用户","关注"],"admin":["admin","用户","管理员"],"contacts":["联系人"],"group":["team","团队","群组"],"group-2":["team","团队","群组"],"team":["团队","小组","群主"],"user-voice":["用户","录音","演讲"],"emotion":["表情","笑脸"],"emotion-2":["表情","笑脸"],"emotion-happy":["表情","开心"],"emotion-normal":["表情","一般"],"emotion-unhappy":["表情","不开心"],"emotion-laugh":["comedy","happy","表情","大笑","笑脸","开心","喜剧"],"emotion-sad":["drama","tears","悲剧","哭泣","泪"],"skull":["ghost","骷髅","鬼怪"],"skull-2":["ghost","horror","thriller","骷髅","鬼怪","恐惧","恐怖"],"men":["gender","male","man","男人","男性"],"women":["gender","female","woman","女人","女性"],"travesti":["女人","女性"],"genderless":["女人","女性"],"open-arm":["张开双臂"],"body-scan":["gesture recognition","body","扫描身体","体态识别","动作之别","手势识别"],"parent":["patriarch","父母","亲子","家长"],"robot":["mechanic","机器人"],"aliens":["science fiction","ET","外星人","科幻小说"],"bear-smile":["cartoon","anime","cartoon","小熊","微笑","儿童","动画片","卡通","动漫"],"mickey":["cartoon","disney","迪士尼","米老鼠","微笑","儿童","动画片"],"criminal":["horror","thriller","罪犯","犯罪","恐怖"],"ghost":["horror","thriller","鬼怪","恐怖","恐惧"],"ghost-2":["horror","鬼怪","恐怖","恐惧"],"ghost-smile":["鬼怪","笑"],"star-smile":["animation","动画","微笑","星星"],"spy":["incognito mode","detective","secret","间谍","侦探","无痕模式","隐私模式"]},"Weather":{"sun":["light mode","sunny","太阳","白天模式","晴天"],"moon":["dark mode","night","月亮","夜间模式","月牙"],"flashlight":["闪电"],"cloudy":["多云"],"cloudy-2":["多云"],"mist":["雾气","雾霾"],"foggy":["大雾"],"cloud-windy":["风"],"windy":["大风","刮风"],"rainy":["下雨","雨天"],"drizzle":["小雨"],"showers":["中雨"],"heavy-showers":["大雨"],"thunderstorms":["雷暴","雷阵雨"],"hail":["冰雹"],"snowy":["下雪","雪天"],"sun-cloudy":["晴转多云"],"moon-cloudy":["夜间多云"],"tornado":["龙卷风"],"typhoon":["cyclone","tornado","龙卷风","旋风","台风"],"haze":["阴霾","薄雾"],"haze-2":["阴霾","薄雾"],"sun-foggy":["薄雾"],"moon-foggy":["薄雾"],"moon-clear":["夜间模式","夜间无云"],"temp-hot":["temperature","温度","高温","热"],"temp-cold":["temperature","温度","低温","冷"],"celsius":["temperature","温度","摄氏度"],"fahrenheit":["temperature","温度","华氏度"],"fire":["hot","火","热门"],"blaze":["火灾"],"earthquake":["地震"],"flood":["洪水"],"meteor":["流星","陨石"],"rainbow":["彩虹"]},"Others":{"basketball":["sports","运动","篮球"],"bell":["cartoon","anime","doraemon","铃铛","哆啦A梦","卡通","动漫"],"billiards":["sports","运动","台球","8"],"boxing":["sports","运动","拳击"],"cake":["anniversary","蛋糕"],"cake-2":["anniversary","蛋糕"],"cake-3":["蛋糕"],"door-lock":["门锁"],"door-lock-box":["门锁"],"flask":["testing","experimental","experiment","烧瓶","实验","试验"],"football":["sports","运动","足球"],"game":["pac man","游戏","吃豆人"],"handbag":["fashion","时尚","手提包","女包"],"hearts":["romance","爱情","浪漫","心"],"key":["password","钥匙","密码"],"key-2":["password","钥匙","密码"],"knife":["刀"],"knife-blood":["crime","刀","犯罪","血","杀人"],"lightbulb":["energy","creativity","灯泡","能源"],"lightbulb-flash":["energy","creativity","灯泡","能源","闪电"],"outlet":["插座"],"outlet-2":["插座"],"ping-pong":["sports","table tennis","运动","乒乓球"],"plug":["二脚插头"],"plug-2":["三脚插头"],"reserved":["已预定"],"shirt":["clothes","衬衫","衣服"],"sword":["war","刀剑","战争","战斗","玄幻"],"t-shirt":["skin","theme","T恤","皮肤","主题"],"t-shirt-2":["skin","theme","T恤","皮肤","主题"],"t-shirt-air":["dry","T恤","风干","烘干"],"umbrella":["protect","雨伞","保护"],"character-recognition":["ocr","文字识别"],"voice-recognition":["asr","语音识别"],"leaf":["energy","ecology","树叶","节能","环保","语音识别"],"plant":["植物"],"recycle":["recyclable","可回收"],"scales":["balance","称","天平","天秤"],"scales-2":["厨房称"],"fridge":["refrigerator","电冰箱"],"wheelchair":["accessbility","轮椅","可访问性","辅助功能"]}}'; export { icons }; diff --git a/src/app/core/icons/remix/remix.component.spec.ts b/src/app/core/icons/remix/remix.component.spec.ts index eea5424..cdc319b 100644 --- a/src/app/core/icons/remix/remix.component.spec.ts +++ b/src/app/core/icons/remix/remix.component.spec.ts @@ -1,16 +1,15 @@ -import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; +import { ComponentFixture, TestBed, waitForAsync } from "@angular/core/testing"; -import { RemixComponent } from './remix.component'; +import { RemixComponent } from "./remix.component"; -describe('RemixComponent', () => { +describe("RemixComponent", () => { let component: RemixComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ - declarations: [ RemixComponent ] - }) - .compileComponents(); + declarations: [RemixComponent], + }).compileComponents(); })); beforeEach(() => { @@ -19,7 +18,7 @@ describe('RemixComponent', () => { fixture.detectChanges(); }); - it('should create', () => { + it("should create", () => { expect(component).toBeTruthy(); }); }); diff --git a/src/app/core/icons/remix/remix.component.ts b/src/app/core/icons/remix/remix.component.ts index 52f15f5..3ff7194 100644 --- a/src/app/core/icons/remix/remix.component.ts +++ b/src/app/core/icons/remix/remix.component.ts @@ -1,11 +1,11 @@ -import { Component, OnInit } from '@angular/core'; +import { Component, OnInit } from "@angular/core"; -import { icons } from './data'; +import { icons } from "./data"; @Component({ - selector: 'app-remix', - templateUrl: './remix.component.html', - styleUrls: ['./remix.component.scss'] + selector: "app-remix", + templateUrl: "./remix.component.html", + styleUrls: ["./remix.component.scss"], }) export class RemixComponent implements OnInit { // bread crumb items @@ -14,16 +14,20 @@ export class RemixComponent implements OnInit { icons: any; iconData: any; - constructor() { } + constructor() {} ngOnInit(): void { - this.breadCrumbItems = [{ label: 'Icons' }, { label: 'Remix Icons', active: true }]; + this.breadCrumbItems = [{ label: "Icons" }, { label: "Remix Icons", active: true }]; this.icons = JSON.parse(icons); - this.iconData = ''; + this.iconData = ""; for (const [key, value] of Object.entries(this.icons)) { - if (`${key}` === 'Editor') { + if (`${key}` === "Editor") { // tslint:disable-next-line: max-line-length - this.iconData = this.iconData + '

' + key + '

Use <i class="ri-bold"></i> v 2.4.1.

'; + this.iconData = + this.iconData + + '

' + + key + + '

Use <i class="ri-bold"></i> v 2.4.1.

'; for (const k of Object.entries(value)) { this.iconData += '
\ @@ -31,22 +35,34 @@ export class RemixComponent implements OnInit { k[0] + '"> ri-' + k[0] + - '
'; + "
"; } } else { // tslint:disable-next-line: max-line-length - this.iconData = this.iconData + '

' + key + '

Use <i class="ri-home-line"></i> or <i class="ri-home-fill"></i> v 2.4.1.

'; + this.iconData = + this.iconData + + '

' + + key + + '

Use <i class="ri-home-line"></i> or <i class="ri-home-fill"></i> v 2.4.1.

'; for (const k of Object.entries(value)) { - this.iconData += '
\ - ri-' + k[0] + '-line\ + this.iconData += + '
\ + ri-' + + k[0] + + '-line\
\ - ri-' + k[0] + '-fill\ -
'; + ri-' + + k[0] + + "-fill\ +
"; } } - this.iconData += '
'; + this.iconData += "
"; } - document.getElementById('icons').innerHTML = this.iconData; + document.getElementById("icons").innerHTML = this.iconData; } } - diff --git a/src/app/core/models/audioUser.ts b/src/app/core/models/audioUser.ts index 376037a..4fb28f5 100644 --- a/src/app/core/models/audioUser.ts +++ b/src/app/core/models/audioUser.ts @@ -2,160 +2,160 @@ import { Publisher, StreamManager } from "openvidu-browser"; import { VideoType } from "./video-type"; export class AudioUser { - /** - * The Connection ID that is publishing the stream - */ - connectionId: string; - - /** - * The user nickname - */ - nickname: string; - - /** - * StreamManager object ([[Publisher]] or [[Subscriber]]) - */ - streamManager: StreamManager; - - /** - * @hidden - */ - avatar: string; - - /** - * @hidden - */ - local: boolean; - - /** - * @hidden - */ - // private randomAvatar: string; - - /** - * @hidden - */ - videoSizeBig: boolean; - - /** - * @hidden - */ - constructor(connectionId?: string, streamManager?: StreamManager, nickname?: string) { - this.connectionId = connectionId || ''; - this.nickname = nickname || 'OpenVidu'; - this.streamManager = streamManager || null; - } - - /** - * Return `true` if audio track is active and `false` if audio track is muted - */ - public isAudioActive(): boolean { - // console.log("isAudioActive"); - return (this.streamManager)?.stream?.audioActive; - } - - /** - * Return `true` if video track is active and `false` if video track is muted - */ - public isVideoActive(): boolean { - // console.log("isVideoActive"); - return (this.streamManager)?.stream?.videoActive; - } - - /** - * Return the connection ID - */ - public getConnectionId(): string { - return this.streamManager?.stream?.connection?.connectionId || this.connectionId; - } - - /** - * Return the user nickname - */ - public getNickname(): string { - return this.nickname; - } - - /** - * Return the [[streamManger]] object - */ - public getStreamManager(): StreamManager { - return this.streamManager; - } - - /** - * Return the user avatar - */ - public getAvatar(): string { - return this.avatar; - } - - public setAvatar(avatar: string) { - this.avatar = avatar; - } - - /** - * Return `true` if user has a local role and `false` if not - */ - public isLocal(): boolean { - return this.local; - } - - /** - * Return `true` if user has a remote role and `false` if not - */ - public isRemote(): boolean { - return (this.streamManager)?.remote; - } - - /** - * Return `true` if user has a screen role and `false` if not - */ - public isScreen(): boolean { - // console.log("isScreen"); - return (this.streamManager)?.stream?.typeOfVideo === VideoType.SCREEN; - } - - /** - * Return `true` if user has a camera role and `false` if not - */ - public isCamera(): boolean { - // console.log("CCC"); - return (this.streamManager)?.stream?.typeOfVideo === VideoType.CAMERA || (this.isLocal() && !this.isScreen()); - } - - /** - * Set the streamManager value object - * @param streamManager value of streamManager - */ - public setStreamManager(streamManager: StreamManager) { - this.streamManager = streamManager; - } - - /** - * Set the user nickname value - * @param nickname value of user nickname - */ - public setNickname(nickname: string) { - this.nickname = nickname; - } - - public isVideoSizeBig(): boolean { - return this.videoSizeBig; - } - - /** - * @hidden - */ - public setVideoSizeBig(big: boolean) { - this.videoSizeBig = big; - } - - /** - * @hidden - */ - // Used when the streamManager is null (users without devices) - public setLocal(local: boolean) { - this.local = local; - } -} \ No newline at end of file + /** + * The Connection ID that is publishing the stream + */ + connectionId: string; + + /** + * The user nickname + */ + nickname: string; + + /** + * StreamManager object ([[Publisher]] or [[Subscriber]]) + */ + streamManager: StreamManager; + + /** + * @hidden + */ + avatar: string; + + /** + * @hidden + */ + local: boolean; + + /** + * @hidden + */ + // private randomAvatar: string; + + /** + * @hidden + */ + videoSizeBig: boolean; + + /** + * @hidden + */ + constructor(connectionId?: string, streamManager?: StreamManager, nickname?: string) { + this.connectionId = connectionId || ""; + this.nickname = nickname || "OpenVidu"; + this.streamManager = streamManager || null; + } + + /** + * Return `true` if audio track is active and `false` if audio track is muted + */ + public isAudioActive(): boolean { + // console.log("isAudioActive"); + return (this.streamManager)?.stream?.audioActive; + } + + /** + * Return `true` if video track is active and `false` if video track is muted + */ + public isVideoActive(): boolean { + // console.log("isVideoActive"); + return (this.streamManager)?.stream?.videoActive; + } + + /** + * Return the connection ID + */ + public getConnectionId(): string { + return this.streamManager?.stream?.connection?.connectionId || this.connectionId; + } + + /** + * Return the user nickname + */ + public getNickname(): string { + return this.nickname; + } + + /** + * Return the [[streamManger]] object + */ + public getStreamManager(): StreamManager { + return this.streamManager; + } + + /** + * Return the user avatar + */ + public getAvatar(): string { + return this.avatar; + } + + public setAvatar(avatar: string) { + this.avatar = avatar; + } + + /** + * Return `true` if user has a local role and `false` if not + */ + public isLocal(): boolean { + return this.local; + } + + /** + * Return `true` if user has a remote role and `false` if not + */ + public isRemote(): boolean { + return (this.streamManager)?.remote; + } + + /** + * Return `true` if user has a screen role and `false` if not + */ + public isScreen(): boolean { + // console.log("isScreen"); + return (this.streamManager)?.stream?.typeOfVideo === VideoType.SCREEN; + } + + /** + * Return `true` if user has a camera role and `false` if not + */ + public isCamera(): boolean { + // console.log("CCC"); + return (this.streamManager)?.stream?.typeOfVideo === VideoType.CAMERA || (this.isLocal() && !this.isScreen()); + } + + /** + * Set the streamManager value object + * @param streamManager value of streamManager + */ + public setStreamManager(streamManager: StreamManager) { + this.streamManager = streamManager; + } + + /** + * Set the user nickname value + * @param nickname value of user nickname + */ + public setNickname(nickname: string) { + this.nickname = nickname; + } + + public isVideoSizeBig(): boolean { + return this.videoSizeBig; + } + + /** + * @hidden + */ + public setVideoSizeBig(big: boolean) { + this.videoSizeBig = big; + } + + /** + * @hidden + */ + // Used when the streamManager is null (users without devices) + public setLocal(local: boolean) { + this.local = local; + } +} diff --git a/src/app/core/models/call.ts b/src/app/core/models/call.ts index 809b0e1..57cd05e 100644 --- a/src/app/core/models/call.ts +++ b/src/app/core/models/call.ts @@ -1,21 +1,21 @@ -export class Call { - public Id: string = ""; - public Priority: number = 0; - public Name: string = ""; - public Nature: string = ""; - public DispatchOn: string = ""; - public Note: string = ""; - public Address: string = ""; - public Latitude: number = 0; - public Longitude: number = 0; - public ExternalId: string = ""; - public IncidentId: string = ""; - public ReferenceId: string = ""; - public ContactName: string = ""; - public ContactInfo: string = ""; - public w3w: string = ""; - public Type: string = "No Type"; - public DispatchList: string = ""; - public FormData: string = ""; - public Redispatch: boolean = false; +export class Call { + public Id: string = ""; + public Priority: number = 0; + public Name: string = ""; + public Nature: string = ""; + public DispatchOn: string = ""; + public Note: string = ""; + public Address: string = ""; + public Latitude: number = 0; + public Longitude: number = 0; + public ExternalId: string = ""; + public IncidentId: string = ""; + public ReferenceId: string = ""; + public ContactName: string = ""; + public ContactInfo: string = ""; + public w3w: string = ""; + public Type: string = "No Type"; + public DispatchList: string = ""; + public FormData: string = ""; + public Redispatch: boolean = false; } diff --git a/src/app/core/models/callLocalResult.ts b/src/app/core/models/callLocalResult.ts index d7d83b6..79c83c5 100644 --- a/src/app/core/models/callLocalResult.ts +++ b/src/app/core/models/callLocalResult.ts @@ -1,7 +1,7 @@ -import { CallResultData } from '@resgrid/ngx-resgridlib'; +import { CallResultData } from "@resgrid/ngx-resgridlib"; export class CallLocalResult extends CallResultData { - public PriorityColor: string = ''; - public PriorityText: string = ''; - public Selected: boolean = false; + public PriorityColor: string = ""; + public PriorityText: string = ""; + public Selected: boolean = false; } diff --git a/src/app/core/models/deviceType.ts b/src/app/core/models/deviceType.ts index 2d7aa08..df5e034 100644 --- a/src/app/core/models/deviceType.ts +++ b/src/app/core/models/deviceType.ts @@ -1,10 +1,10 @@ export interface IDevice { - label: string; - device: string; - type?: CameraType; + label: string; + device: string; + type?: CameraType; } export enum CameraType { - FRONT = 'FRONT', - BACK = 'BACK' + FRONT = "FRONT", + BACK = "BACK", } diff --git a/src/app/core/models/groupsForCallResult.ts b/src/app/core/models/groupsForCallResult.ts index ca0318a..eba3cad 100644 --- a/src/app/core/models/groupsForCallResult.ts +++ b/src/app/core/models/groupsForCallResult.ts @@ -1,5 +1,5 @@ -import { GroupsForCallGridData } from '@resgrid/ngx-resgridlib'; +import { GroupsForCallGridData } from "@resgrid/ngx-resgridlib"; export class GroupsForCallResult extends GroupsForCallGridData { - public Selected: boolean = false; -} \ No newline at end of file + public Selected: boolean = false; +} diff --git a/src/app/core/models/loginResult.ts b/src/app/core/models/loginResult.ts index e296e20..4156acb 100644 --- a/src/app/core/models/loginResult.ts +++ b/src/app/core/models/loginResult.ts @@ -1,16 +1,16 @@ -import { DepartmentRightsResultData, ProfileModel } from '@resgrid/ngx-resgridlib'; +import { DepartmentRightsResultData, ProfileModel } from "@resgrid/ngx-resgridlib"; export class LoginResult implements ProfileModel { - public sub: string = ''; - public jti: string = ''; - public useage: string = ''; - public at_hash: string = ''; - public nbf: number = 0; - public exp: number = 0; - public iat: number = 0; - public iss: string = ''; - public name: string = ''; - public oi_au_id: string = ''; - public oi_tkn_id: string = ''; - public Rights: DepartmentRightsResultData = new DepartmentRightsResultData(); -} \ No newline at end of file + public sub: string = ""; + public jti: string = ""; + public useage: string = ""; + public at_hash: string = ""; + public nbf: number = 0; + public exp: number = 0; + public iat: number = 0; + public iss: string = ""; + public name: string = ""; + public oi_au_id: string = ""; + public oi_tkn_id: string = ""; + public Rights: DepartmentRightsResultData = new DepartmentRightsResultData(); +} diff --git a/src/app/core/models/personnelForCallResult.ts b/src/app/core/models/personnelForCallResult.ts index 48554a3..5be2c6b 100644 --- a/src/app/core/models/personnelForCallResult.ts +++ b/src/app/core/models/personnelForCallResult.ts @@ -1,6 +1,6 @@ -import { GetPersonnelForCallGridResultData } from '@resgrid/ngx-resgridlib'; +import { GetPersonnelForCallGridResultData } from "@resgrid/ngx-resgridlib"; export class PersonnelForCallResult extends GetPersonnelForCallGridResultData { - public Selected: boolean = false; - public Distance: number = 0; + public Selected: boolean = false; + public Distance: number = 0; } diff --git a/src/app/core/models/rolesForCallResult.ts b/src/app/core/models/rolesForCallResult.ts index 5342a7e..df5ca43 100644 --- a/src/app/core/models/rolesForCallResult.ts +++ b/src/app/core/models/rolesForCallResult.ts @@ -1,5 +1,5 @@ -import { GetRolesForCallGridResultData } from '@resgrid/ngx-resgridlib'; +import { GetRolesForCallGridResultData } from "@resgrid/ngx-resgridlib"; export class RolesForCallResult extends GetRolesForCallGridResultData { - public Selected: boolean = false; + public Selected: boolean = false; } diff --git a/src/app/core/models/unitStatusResult.ts b/src/app/core/models/unitStatusResult.ts index 6e57519..5e39314 100644 --- a/src/app/core/models/unitStatusResult.ts +++ b/src/app/core/models/unitStatusResult.ts @@ -1,7 +1,7 @@ -import { UnitStatusResultData } from '@resgrid/ngx-resgridlib'; +import { UnitStatusResultData } from "@resgrid/ngx-resgridlib"; export class UnitStatusResult extends UnitStatusResultData { - public Selected: boolean = false; - public SelectedForDispatch: boolean = false; - public Distance: number = 0; + public Selected: boolean = false; + public SelectedForDispatch: boolean = false; + public Distance: number = 0; } diff --git a/src/app/core/models/userInfo.ts b/src/app/core/models/userInfo.ts index ac910cd..75da3b7 100644 --- a/src/app/core/models/userInfo.ts +++ b/src/app/core/models/userInfo.ts @@ -1,10 +1,10 @@ -export class UserInfo { - userId: string = ''; - emailAddress: string = ''; - fullName: string = ''; - departmentId: string = ''; - authToken: string = ''; - authTokenExpiry: string = ''; - departmentName: string = ''; - departmentCreatedOn: string = ''; +export class UserInfo { + userId: string = ""; + emailAddress: string = ""; + fullName: string = ""; + departmentId: string = ""; + authToken: string = ""; + authTokenExpiry: string = ""; + departmentName: string = ""; + departmentCreatedOn: string = ""; } diff --git a/src/app/core/models/video-type.ts b/src/app/core/models/video-type.ts index 3162b70..e4b85b5 100644 --- a/src/app/core/models/video-type.ts +++ b/src/app/core/models/video-type.ts @@ -1,10 +1,10 @@ export enum VideoType { - CAMERA = 'CAMERA', - SCREEN = 'SCREEN', - CUSTOM = 'CUSTOM' + CAMERA = "CAMERA", + SCREEN = "SCREEN", + CUSTOM = "CUSTOM", } export enum ScreenType { - WINDOW = 'window', - SCREEN = 'screen' -} \ No newline at end of file + WINDOW = "window", + SCREEN = "screen", +} diff --git a/src/app/core/services/event.service.ts b/src/app/core/services/event.service.ts index 224a73a..6fb0e5e 100644 --- a/src/app/core/services/event.service.ts +++ b/src/app/core/services/event.service.ts @@ -1,40 +1,40 @@ -import { Injectable } from '@angular/core'; +import { Injectable } from "@angular/core"; -import { Subject, Subscription } from 'rxjs'; -import { map, filter } from 'rxjs/operators'; +import { Subject, Subscription } from "rxjs"; +import { map, filter } from "rxjs/operators"; interface Event { - type: string; - payload?: any; + type: string; + payload?: any; } type EventCallback = (payload: any) => void; @Injectable({ - providedIn: 'root' + providedIn: "root", }) export class EventService { - private handler = new Subject(); - constructor() { } + private handler = new Subject(); + constructor() {} - /** - * Broadcast the event - * @param type type of event - * @param payload payload - */ - broadcast(type: string, payload = {}) { - this.handler.next({ type, payload }); - } + /** + * Broadcast the event + * @param type type of event + * @param payload payload + */ + broadcast(type: string, payload = {}) { + this.handler.next({ type, payload }); + } - /** - * Subscribe to event - * @param type type of event - * @param callback call back function - */ - subscribe(type: string, callback: EventCallback): Subscription { - return this.handler.pipe( - filter(event => event.type === type)).pipe( - map(event => event.payload)) - .subscribe(callback); - } + /** + * Subscribe to event + * @param type type of event + * @param callback call back function + */ + subscribe(type: string, callback: EventCallback): Subscription { + return this.handler + .pipe(filter((event) => event.type === type)) + .pipe(map((event) => event.payload)) + .subscribe(callback); + } } diff --git a/src/app/core/services/language.service.spec.ts b/src/app/core/services/language.service.spec.ts index 299455e..616c390 100644 --- a/src/app/core/services/language.service.spec.ts +++ b/src/app/core/services/language.service.spec.ts @@ -1,8 +1,8 @@ -import { TestBed } from '@angular/core/testing'; +import { TestBed } from "@angular/core/testing"; -import { LanguageService } from './language.service'; +import { LanguageService } from "./language.service"; -describe('LanguageService', () => { +describe("LanguageService", () => { let service: LanguageService; beforeEach(() => { @@ -10,7 +10,7 @@ describe('LanguageService', () => { service = TestBed.inject(LanguageService); }); - it('should be created', () => { + it("should be created", () => { expect(service).toBeTruthy(); }); }); diff --git a/src/app/core/services/language.service.ts b/src/app/core/services/language.service.ts index 9f44729..7cbdc59 100644 --- a/src/app/core/services/language.service.ts +++ b/src/app/core/services/language.service.ts @@ -1,26 +1,29 @@ -import { Injectable } from '@angular/core'; -import { TranslateService } from '@ngx-translate/core'; -import { CookieService } from 'ngx-cookie-service'; +import { Injectable } from "@angular/core"; +import { TranslateService } from "@ngx-translate/core"; +import { CookieService } from "ngx-cookie-service"; @Injectable({ - providedIn: 'root' + providedIn: "root", }) export class LanguageService { - public languages: string[] = ['en', 'es', 'de', 'it', 'ru']; + public languages: string[] = ["en", "es", "de", "it", "ru"]; - constructor(public translate: TranslateService, private cookieService: CookieService) { + constructor( + public translate: TranslateService, + private cookieService: CookieService, + ) { let browserLang; this.translate.addLangs(this.languages); - if (this.cookieService.check('lang')) { - browserLang = this.cookieService.get('lang'); + if (this.cookieService.check("lang")) { + browserLang = this.cookieService.get("lang"); } else { browserLang = translate.getBrowserLang(); } - translate.use(browserLang.match(/en|es|de|it|ru/) ? browserLang : 'en'); + translate.use(browserLang.match(/en|es|de|it|ru/) ? browserLang : "en"); } public setLanguage(lang) { this.translate.use(lang); - this.cookieService.set('lang', lang); + this.cookieService.set("lang", lang); } } diff --git a/src/app/directives/conversation.directive.ts b/src/app/directives/conversation.directive.ts index ed42b1f..11f20a8 100644 --- a/src/app/directives/conversation.directive.ts +++ b/src/app/directives/conversation.directive.ts @@ -1,7 +1,7 @@ -import { Injectable, Pipe, PipeTransform } from '@angular/core'; +import { Injectable, Pipe, PipeTransform } from "@angular/core"; @Pipe({ - name: 'conversationFilter' + name: "conversationFilter", }) @Injectable() export class ConversationPipe implements PipeTransform { @@ -14,7 +14,10 @@ export class ConversationPipe implements PipeTransform { return conversations; } else { let term = search.toLowerCase(); - return conversations.filter(conversation => conversation.friend.name.toLowerCase().indexOf(term) > -1 || conversation.friend.username.toLowerCase().indexOf(term) > -1); + return conversations.filter( + (conversation) => + conversation.friend.name.toLowerCase().indexOf(term) > -1 || conversation.friend.username.toLowerCase().indexOf(term) > -1, + ); } } -} \ No newline at end of file +} diff --git a/src/app/directives/directives.module.ts b/src/app/directives/directives.module.ts index 27569f5..f206f8a 100644 --- a/src/app/directives/directives.module.ts +++ b/src/app/directives/directives.module.ts @@ -1,15 +1,15 @@ -import { NgModule } from '@angular/core'; +import { NgModule } from "@angular/core"; -import { OrderByPipe } from './orderBy.directive'; -import { GroupByPipe } from './groupBy.directive'; -import { TruncatePipe } from './truncate.directive'; -import { RGTimeAgoPipe } from './rgTimeAgo.directive'; -import { RGTimeAgoUTCPipe } from './rgTimeAgoUtc.directive'; -import { ConversationPipe } from './conversation.directive'; +import { OrderByPipe } from "./orderBy.directive"; +import { GroupByPipe } from "./groupBy.directive"; +import { TruncatePipe } from "./truncate.directive"; +import { RGTimeAgoPipe } from "./rgTimeAgo.directive"; +import { RGTimeAgoUTCPipe } from "./rgTimeAgoUtc.directive"; +import { ConversationPipe } from "./conversation.directive"; @NgModule({ declarations: [OrderByPipe, GroupByPipe, TruncatePipe, RGTimeAgoPipe, RGTimeAgoUTCPipe, ConversationPipe], imports: [], - exports: [OrderByPipe, GroupByPipe, TruncatePipe, RGTimeAgoPipe, RGTimeAgoUTCPipe, ConversationPipe] + exports: [OrderByPipe, GroupByPipe, TruncatePipe, RGTimeAgoPipe, RGTimeAgoUTCPipe, ConversationPipe], }) -export class DirectivesModule { } +export class DirectivesModule {} diff --git a/src/app/directives/groupBy.directive.ts b/src/app/directives/groupBy.directive.ts index 639a4e4..d052c5d 100644 --- a/src/app/directives/groupBy.directive.ts +++ b/src/app/directives/groupBy.directive.ts @@ -1,6 +1,6 @@ -import { Pipe, PipeTransform } from '@angular/core'; +import { Pipe, PipeTransform } from "@angular/core"; -@Pipe({ name: 'groupBy' }) +@Pipe({ name: "groupBy" }) export class GroupByPipe implements PipeTransform { transform(value: Array, field: string): Array { if (value && value.length > 0) { @@ -13,9 +13,9 @@ export class GroupByPipe implements PipeTransform { return prev; }, {}); - return Object.keys(groupedObj).map(key => ({ key, value: groupedObj[key] })); + return Object.keys(groupedObj).map((key) => ({ key, value: groupedObj[key] })); } return value; } -} \ No newline at end of file +} diff --git a/src/app/directives/orderBy.directive.ts b/src/app/directives/orderBy.directive.ts index a595581..1c66bb5 100644 --- a/src/app/directives/orderBy.directive.ts +++ b/src/app/directives/orderBy.directive.ts @@ -6,114 +6,99 @@ */ // https://github.com/FuelInteractive/fuel-ui/tree/master/src/pipes/OrderBy -import {Pipe, PipeTransform} from '@angular/core'; +import { Pipe, PipeTransform } from "@angular/core"; -@Pipe({name: 'orderBy', pure: false}) +@Pipe({ name: "orderBy", pure: false }) export class OrderByPipe implements PipeTransform { + value: string[] = []; + + static _orderByComparator(a: any, b: any): number { + if (a === null || typeof a === "undefined") a = 0; + if (b === null || typeof b === "undefined") b = 0; + + if (isNaN(parseFloat(a)) || !isFinite(a) || isNaN(parseFloat(b)) || !isFinite(b)) { + //Isn't a number so lowercase the string to properly compare + if (a.toLowerCase() < b.toLowerCase()) return -1; + if (a.toLowerCase() > b.toLowerCase()) return 1; + } else { + //Parse strings as numbers to compare properly + if (parseFloat(a) < parseFloat(b)) return -1; + if (parseFloat(a) > parseFloat(b)) return 1; + } + + return 0; //equal each other + } + + transform(input: any, config: string = "+"): any { + //invalid input given + if (!input) return input; + + //make a copy of the input's reference + this.value = [...input]; + let value = this.value; + + if (!Array.isArray(value)) return value; + + if (!Array.isArray(config) || (Array.isArray(config) && config.length == 1)) { + let propertyToCheck: string = !Array.isArray(config) ? config : config[0]; + let desc = propertyToCheck.substr(0, 1) == "-"; + + //Basic array + if (!propertyToCheck || propertyToCheck == "-" || propertyToCheck == "+") { + return !desc ? value.sort() : value.sort().reverse(); + } else { + let property: string = + propertyToCheck.substr(0, 1) == "+" || propertyToCheck.substr(0, 1) == "-" ? propertyToCheck.substr(1) : propertyToCheck; - value:string[] =[]; - - static _orderByComparator(a:any, b:any):number{ - - if(a === null || typeof a === 'undefined') a = 0; - if(b === null || typeof b === 'undefined') b = 0; - - if((isNaN(parseFloat(a)) || !isFinite(a)) || (isNaN(parseFloat(b)) || !isFinite(b))){ - //Isn't a number so lowercase the string to properly compare - if(a.toLowerCase() < b.toLowerCase()) return -1; - if(a.toLowerCase() > b.toLowerCase()) return 1; - } - else{ - //Parse strings as numbers to compare properly - if(parseFloat(a) < parseFloat(b)) return -1; - if(parseFloat(a) > parseFloat(b)) return 1; - } - - return 0; //equal each other - } - - transform(input:any, config:string = '+'): any { - - //invalid input given - if(!input) return input; - - //make a copy of the input's reference - this.value = [...input]; - let value = this.value; - - if(!Array.isArray(value)) return value; - - if(!Array.isArray(config) || (Array.isArray(config) && config.length == 1)){ - let propertyToCheck:string = !Array.isArray(config) ? config : config[0]; - let desc = propertyToCheck.substr(0, 1) == '-'; - - //Basic array - if(!propertyToCheck || propertyToCheck == '-' || propertyToCheck == '+'){ - return !desc ? value.sort() : value.sort().reverse(); + return value.sort(function (a: any, b: any) { + let aValue = a[property]; + let bValue = b[property]; + + let propertySplit = property.split("."); + + if (typeof aValue === "undefined" && typeof bValue === "undefined" && propertySplit.length > 1) { + aValue = a; + bValue = b; + for (let j = 0; j < propertySplit.length; j++) { + aValue = aValue[propertySplit[j]]; + bValue = bValue[propertySplit[j]]; } - else { - let property:string = propertyToCheck.substr(0, 1) == '+' || propertyToCheck.substr(0, 1) == '-' - ? propertyToCheck.substr(1) - : propertyToCheck; - - return value.sort(function(a:any,b:any){ - let aValue = a[property]; - let bValue = b[property]; - - let propertySplit = property.split('.'); - - if(typeof aValue === 'undefined' && typeof bValue === 'undefined' && propertySplit.length > 1){ - aValue = a; - bValue = b; - for(let j = 0; j < propertySplit.length; j++) { - aValue = aValue[propertySplit[j]]; - bValue = bValue[propertySplit[j]]; - } - } - - return !desc - ? OrderByPipe._orderByComparator(aValue, bValue) - : -OrderByPipe._orderByComparator(aValue, bValue); - }); + } + + return !desc ? OrderByPipe._orderByComparator(aValue, bValue) : -OrderByPipe._orderByComparator(aValue, bValue); + }); + } + } else { + //Loop over property of the array in order and sort + return value.sort(function (a: any, b: any) { + for (let i: number = 0; i < config.length; i++) { + let desc = config[i].substr(0, 1) == "-"; + let property = config[i].substr(0, 1) == "+" || config[i].substr(0, 1) == "-" ? config[i].substr(1) : config[i]; + + let aValue = a[property]; + let bValue = b[property]; + + let propertySplit = property.split("."); + + if (typeof aValue === "undefined" && typeof bValue === "undefined" && propertySplit.length > 1) { + aValue = a; + bValue = b; + for (let j = 0; j < propertySplit.length; j++) { + aValue = aValue[propertySplit[j]]; + bValue = bValue[propertySplit[j]]; } + } + + let comparison = !desc ? OrderByPipe._orderByComparator(aValue, bValue) : -OrderByPipe._orderByComparator(aValue, bValue); + + //Don't return 0 yet in case of needing to sort by next property + if (comparison != 0) return comparison; } - else { - //Loop over property of the array in order and sort - return value.sort(function(a:any,b:any){ - for(let i:number = 0; i < config.length; i++){ - let desc = config[i].substr(0, 1) == '-'; - let property = config[i].substr(0, 1) == '+' || config[i].substr(0, 1) == '-' - ? config[i].substr(1) - : config[i]; - - let aValue = a[property]; - let bValue = b[property]; - - let propertySplit = property.split('.'); - - if(typeof aValue === 'undefined' && typeof bValue === 'undefined' && propertySplit.length > 1){ - aValue = a; - bValue = b; - for(let j = 0; j < propertySplit.length; j++) { - aValue = aValue[propertySplit[j]]; - bValue = bValue[propertySplit[j]]; - } - } - - let comparison = !desc - ? OrderByPipe._orderByComparator(aValue, bValue) - : -OrderByPipe._orderByComparator(aValue, bValue); - - //Don't return 0 yet in case of needing to sort by next property - if(comparison != 0) return comparison; - } - - return 0; //equal each other - }); - } + + return 0; //equal each other + }); } + } } -export let ORDERBY_PROVIDERS = [ - OrderByPipe -]; +export let ORDERBY_PROVIDERS = [OrderByPipe]; diff --git a/src/app/directives/rgTimeAgo.directive.ts b/src/app/directives/rgTimeAgo.directive.ts index 5865418..e472634 100644 --- a/src/app/directives/rgTimeAgo.directive.ts +++ b/src/app/directives/rgTimeAgo.directive.ts @@ -1,16 +1,13 @@ -import {Pipe} from '@angular/core'; -import { UtilsProvider } from '../providers/utils'; +import { Pipe } from "@angular/core"; +import { UtilsProvider } from "../providers/utils"; @Pipe({ - name: 'rgTimeAgo' + name: "rgTimeAgo", }) export class RGTimeAgoPipe { + constructor(private utilsProvider: UtilsProvider) {} - constructor(private utilsProvider: UtilsProvider) { - - } - - transform(value: string, args: string[]) : string { + transform(value: string, args: string[]): string { return this.utilsProvider.getTimeAgo(value); } } diff --git a/src/app/directives/rgTimeAgoUtc.directive.ts b/src/app/directives/rgTimeAgoUtc.directive.ts index 6dc5083..d0b9cc2 100644 --- a/src/app/directives/rgTimeAgoUtc.directive.ts +++ b/src/app/directives/rgTimeAgoUtc.directive.ts @@ -1,16 +1,13 @@ -import {Pipe} from '@angular/core'; -import { UtilsProvider } from '../providers/utils'; +import { Pipe } from "@angular/core"; +import { UtilsProvider } from "../providers/utils"; @Pipe({ - name: 'rgTimeAgoUtc' + name: "rgTimeAgoUtc", }) export class RGTimeAgoUTCPipe { + constructor(private utilsProvider: UtilsProvider) {} - constructor(private utilsProvider: UtilsProvider) { - - } - - transform(value: string) : string { + transform(value: string): string { return this.utilsProvider.getTimeAgoUtc(value); } -} \ No newline at end of file +} diff --git a/src/app/directives/truncate.directive.ts b/src/app/directives/truncate.directive.ts index daf733d..c93ec38 100644 --- a/src/app/directives/truncate.directive.ts +++ b/src/app/directives/truncate.directive.ts @@ -1,13 +1,13 @@ -import {Pipe} from '@angular/core'; +import { Pipe } from "@angular/core"; @Pipe({ - name: 'truncate' + name: "truncate", }) export class TruncatePipe { - transform(value: string, args: string[]) : string { + transform(value: string, args: string[]): string { let limit = args.length > 0 ? parseInt(args[0], 10) : 10; - let trail = args.length > 1 ? args[1] : '...'; + let trail = args.length > 1 ? args[1] : "..."; return value.length > limit ? value.substring(0, limit) + trail : value; } -} \ No newline at end of file +} diff --git a/src/app/features/auth/actions/auth.actions.ts b/src/app/features/auth/actions/auth.actions.ts index fe5db6e..451e28a 100644 --- a/src/app/features/auth/actions/auth.actions.ts +++ b/src/app/features/auth/actions/auth.actions.ts @@ -1,14 +1,14 @@ -import {Action} from '@ngrx/store'; -import { LoginPayload } from '../models/loginPayload'; -import { UserInfo } from 'src/app/core/models/userInfo'; +import { Action } from "@ngrx/store"; +import { LoginPayload } from "../models/loginPayload"; +import { UserInfo } from "src/app/core/models/userInfo"; // [AUTH] Auth module export enum LoginActionTypes { - LOGIN = '[AUTH] LOGIN', - LOGIN_SUCCESS = '[AUTH] LOGIN_SUCCESS', - LOGIN_FAIL = '[AUTH] LOGIN_FAIL', - IS_LOGIN = '[AUTH] IS_LOGIN', - LOGIN_DONE = '[AUTH] LOGIN_DONE' + LOGIN = "[AUTH] LOGIN", + LOGIN_SUCCESS = "[AUTH] LOGIN_SUCCESS", + LOGIN_FAIL = "[AUTH] LOGIN_FAIL", + IS_LOGIN = "[AUTH] IS_LOGIN", + LOGIN_DONE = "[AUTH] LOGIN_DONE", } export class Login implements Action { diff --git a/src/app/features/auth/auth-routing.module.ts b/src/app/features/auth/auth-routing.module.ts index 387f4f8..74ebcb5 100644 --- a/src/app/features/auth/auth-routing.module.ts +++ b/src/app/features/auth/auth-routing.module.ts @@ -1,20 +1,20 @@ -import { NgModule } from '@angular/core'; -import { PreloadAllModules, RouterModule, Routes } from '@angular/router'; +import { NgModule } from "@angular/core"; +import { PreloadAllModules, RouterModule, Routes } from "@angular/router"; const routes: Routes = [ { - path: '', - redirectTo: 'login', - pathMatch: 'full' + path: "", + redirectTo: "login", + pathMatch: "full", }, { - path: 'login', - loadChildren: () => import('./pages/login/login.module').then(m => m.LoginPageModule) - } + path: "login", + loadChildren: () => import("./pages/login/login.module").then((m) => m.LoginPageModule), + }, ]; @NgModule({ imports: [RouterModule.forChild(routes)], - exports: [RouterModule] + exports: [RouterModule], }) export class AuthRoutingModule {} diff --git a/src/app/features/auth/auth.module.ts b/src/app/features/auth/auth.module.ts index 84f0785..cbe074a 100644 --- a/src/app/features/auth/auth.module.ts +++ b/src/app/features/auth/auth.module.ts @@ -1,11 +1,11 @@ -import { NgModule } from '@angular/core'; -import { StoreModule } from '@ngrx/store'; -import { EffectsModule } from '@ngrx/effects'; -import { AuthEffects } from './effects/auth.effect'; -import { reducer } from './reducers/auth.reducer'; -import { CommonModule } from '@angular/common'; -import { ReactiveFormsModule, FormsModule } from '@angular/forms'; -import { AuthRoutingModule } from './auth-routing.module'; +import { NgModule } from "@angular/core"; +import { StoreModule } from "@ngrx/store"; +import { EffectsModule } from "@ngrx/effects"; +import { AuthEffects } from "./effects/auth.effect"; +import { reducer } from "./reducers/auth.reducer"; +import { CommonModule } from "@angular/common"; +import { ReactiveFormsModule, FormsModule } from "@angular/forms"; +import { AuthRoutingModule } from "./auth-routing.module"; @NgModule({ declarations: [], @@ -14,9 +14,9 @@ import { AuthRoutingModule } from './auth-routing.module'; FormsModule, ReactiveFormsModule, AuthRoutingModule, - StoreModule.forFeature('authModule', reducer), + StoreModule.forFeature("authModule", reducer), EffectsModule.forFeature([AuthEffects]), ], - providers: [] + providers: [], }) -export class AuthModule { } +export class AuthModule {} diff --git a/src/app/features/auth/effects/auth.effect.ts b/src/app/features/auth/effects/auth.effect.ts index 21ece45..95d0612 100644 --- a/src/app/features/auth/effects/auth.effect.ts +++ b/src/app/features/auth/effects/auth.effect.ts @@ -1,25 +1,25 @@ -import * as authAction from '../actions/auth.actions'; -import { Action } from '@ngrx/store'; -import { Actions, Effect, ofType } from '@ngrx/effects'; -import { AuthProvider } from '../providers/auth'; -import { catchError, map, mergeMap, tap } from 'rxjs/operators'; -import { HttpClient } from '@angular/common/http'; -import { Injectable } from '@angular/core'; -import { Observable, of } from 'rxjs'; -import { Router } from '@angular/router'; -import { LoadingProvider } from 'src/app/providers/loading'; -import { AlertProvider } from 'src/app/providers/alert'; +import * as authAction from "../actions/auth.actions"; +import { Action } from "@ngrx/store"; +import { Actions, Effect, ofType } from "@ngrx/effects"; +import { AuthProvider } from "../providers/auth"; +import { catchError, map, mergeMap, tap } from "rxjs/operators"; +import { HttpClient } from "@angular/common/http"; +import { Injectable } from "@angular/core"; +import { Observable, of } from "rxjs"; +import { Router } from "@angular/router"; +import { LoadingProvider } from "src/app/providers/loading"; +import { AlertProvider } from "src/app/providers/alert"; @Injectable() export class AuthEffects { // Listen for the 'LOGIN' action @Effect() - login$: Observable = this - .actions$ - .pipe(ofType(authAction.LoginActionTypes.LOGIN), - mergeMap(action => this.authProvider.login(action.payload.username, action.payload.password).pipe( + login$: Observable = this.actions$.pipe( + ofType(authAction.LoginActionTypes.LOGIN), + mergeMap((action) => + this.authProvider.login(action.payload.username, action.payload.password).pipe( // If successful, dispatch success action with result - map(data => ({ + map((data) => ({ type: authAction.LoginActionTypes.LOGIN_SUCCESS, user: { userId: data.sub, @@ -27,49 +27,65 @@ export class AuthEffects { fullName: data.Rights.FullName, departmentId: data.Rights.DepartmentId, departmentName: data.Rights.DepartmentName, - } + }, })), - tap(data => { + tap((data) => { this.authProvider.startTrackingRefreshToken(); }), // If request fails, dispatch failed action - catchError(() => of({ type: authAction.LoginActionTypes.LOGIN_FAIL }))))); + catchError(() => of({ type: authAction.LoginActionTypes.LOGIN_FAIL })), + ), + ), + ); /* Pass { dispatch: false } to the decorator to prevent dispatching. Sometimes you don't want effects to dispatch an action, for example when you only want to log or navigate. But when an effect does not dispatch another action, the browser will crash because the effect is both 'subscribing' to and 'dispatching' the exact same action, causing an infinite loop. To prevent this, add { dispatch: false } to the decorator. */ @Effect({ dispatch: false }) - loginSuccess$ = this - .actions$ - .pipe(ofType(authAction.LoginActionTypes.LOGIN_SUCCESS), tap(() => { + loginSuccess$ = this.actions$.pipe( + ofType(authAction.LoginActionTypes.LOGIN_SUCCESS), + tap(() => { this.loadingProvider.hide(); - this.router.navigate(['/home']); - })); + this.router.navigate(["/home"]); + }), + ); @Effect({ dispatch: false }) - loginDone$ = this - .actions$ - .pipe(ofType(authAction.LoginActionTypes.LOGIN_DONE), tap(action => { + loginDone$ = this.actions$.pipe( + ofType(authAction.LoginActionTypes.LOGIN_DONE), + tap((action) => { console.log(action); - })); + }), + ); @Effect({ dispatch: false }) - loginFail$ = this - .actions$ - .pipe(ofType(authAction.LoginActionTypes.LOGIN_FAIL), tap(async action => { + loginFail$ = this.actions$.pipe( + ofType(authAction.LoginActionTypes.LOGIN_FAIL), + tap(async (action) => { console.log(action); this.loadingProvider.hide(); - await this.alertProvider.showErrorAlert('Login Error', '', 'There was an issue trying to log you in, please check your username and password and try again.'); - })); + await this.alertProvider.showErrorAlert( + "Login Error", + "", + "There was an issue trying to log you in, please check your username and password and try again.", + ); + }), + ); @Effect({ dispatch: false }) - loggingIn$ = this - .actions$ - .pipe(ofType(authAction.LoginActionTypes.IS_LOGIN), tap(action => { + loggingIn$ = this.actions$.pipe( + ofType(authAction.LoginActionTypes.IS_LOGIN), + tap((action) => { this.loadingProvider.show(); - })); + }), + ); - constructor(private actions$: Actions, private authProvider: AuthProvider, - private router: Router, private loadingProvider: LoadingProvider, private alertProvider: AlertProvider) { } + constructor( + private actions$: Actions, + private authProvider: AuthProvider, + private router: Router, + private loadingProvider: LoadingProvider, + private alertProvider: AlertProvider, + ) {} } diff --git a/src/app/features/auth/models/authValidateResult.ts b/src/app/features/auth/models/authValidateResult.ts index f6801ee..1957883 100644 --- a/src/app/features/auth/models/authValidateResult.ts +++ b/src/app/features/auth/models/authValidateResult.ts @@ -1,10 +1,10 @@ -export class AuthValidateResult { - public Tkn: string = ''; - public Txd: string = ''; - public Nme: string = ''; - public Eml: string = ''; - public Uid: string = ''; - public Dcd: string = ''; - public Dnm: string = ''; - public Did: number = 0; +export class AuthValidateResult { + public Tkn: string = ""; + public Txd: string = ""; + public Nme: string = ""; + public Eml: string = ""; + public Uid: string = ""; + public Dcd: string = ""; + public Dnm: string = ""; + public Did: number = 0; } diff --git a/src/app/features/auth/models/loginPayload.ts b/src/app/features/auth/models/loginPayload.ts index de64ba9..fe080c4 100644 --- a/src/app/features/auth/models/loginPayload.ts +++ b/src/app/features/auth/models/loginPayload.ts @@ -1,4 +1,4 @@ -export class LoginPayload { - public username: string = ''; - public password: string = ''; +export class LoginPayload { + public username: string = ""; + public password: string = ""; } diff --git a/src/app/features/auth/pages/lockscreen/lockscreen.component.html b/src/app/features/auth/pages/lockscreen/lockscreen.component.html index f1302a9..3ff6dd5 100644 --- a/src/app/features/auth/pages/lockscreen/lockscreen.component.html +++ b/src/app/features/auth/pages/lockscreen/lockscreen.component.html @@ -12,7 +12,7 @@
- +

Lock screen

@@ -21,17 +21,15 @@

Lock screen

-
- thumbnail + thumbnail
Jacob Lopez
- +
@@ -41,13 +39,10 @@
Jacob Lopez
-

Not you ? return Log in - -

+

Not you ? return Log in

© 2021 Resgrid, LLC. Crafted with in Nevada

-
diff --git a/src/app/features/auth/pages/lockscreen/lockscreen.component.spec.ts b/src/app/features/auth/pages/lockscreen/lockscreen.component.spec.ts index a749ea6..a047e91 100644 --- a/src/app/features/auth/pages/lockscreen/lockscreen.component.spec.ts +++ b/src/app/features/auth/pages/lockscreen/lockscreen.component.spec.ts @@ -1,16 +1,15 @@ -import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; +import { ComponentFixture, TestBed, waitForAsync } from "@angular/core/testing"; -import { LockscreenComponent } from './lockscreen.component'; +import { LockscreenComponent } from "./lockscreen.component"; -describe('LockscreenComponent', () => { +describe("LockscreenComponent", () => { let component: LockscreenComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ - declarations: [ LockscreenComponent ] - }) - .compileComponents(); + declarations: [LockscreenComponent], + }).compileComponents(); })); beforeEach(() => { @@ -19,7 +18,7 @@ describe('LockscreenComponent', () => { fixture.detectChanges(); }); - it('should create', () => { + it("should create", () => { expect(component).toBeTruthy(); }); }); diff --git a/src/app/features/auth/pages/lockscreen/lockscreen.component.ts b/src/app/features/auth/pages/lockscreen/lockscreen.component.ts index a8d234b..199dc85 100644 --- a/src/app/features/auth/pages/lockscreen/lockscreen.component.ts +++ b/src/app/features/auth/pages/lockscreen/lockscreen.component.ts @@ -1,23 +1,21 @@ -import { Component, OnInit } from '@angular/core'; +import { Component, OnInit } from "@angular/core"; @Component({ - selector: 'app-lockscreen', - templateUrl: './lockscreen.component.html', - styleUrls: ['./lockscreen.component.scss'] + selector: "app-lockscreen", + templateUrl: "./lockscreen.component.html", + styleUrls: ["./lockscreen.component.scss"], }) /** * Lock-screen component */ export class LockscreenComponent implements OnInit { - // set the currenr year year: number = new Date().getFullYear(); - constructor() { } + constructor() {} ngOnInit(): void { - document.body.removeAttribute('data-layout'); + document.body.removeAttribute("data-layout"); } - } diff --git a/src/app/features/auth/pages/login/login.module.ts b/src/app/features/auth/pages/login/login.module.ts index 678fcdc..24f79f2 100644 --- a/src/app/features/auth/pages/login/login.module.ts +++ b/src/app/features/auth/pages/login/login.module.ts @@ -1,10 +1,10 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { FormsModule, ReactiveFormsModule } from '@angular/forms'; -import { RouterModule } from '@angular/router'; -import { NgbAlertModule } from '@ng-bootstrap/ng-bootstrap'; -import { LoginPage } from './login.page'; -import { BrowserModule } from '@angular/platform-browser'; +import { NgModule } from "@angular/core"; +import { CommonModule } from "@angular/common"; +import { FormsModule, ReactiveFormsModule } from "@angular/forms"; +import { RouterModule } from "@angular/router"; +import { NgbAlertModule } from "@ng-bootstrap/ng-bootstrap"; +import { LoginPage } from "./login.page"; +import { BrowserModule } from "@angular/platform-browser"; @NgModule({ imports: [ @@ -14,11 +14,11 @@ import { BrowserModule } from '@angular/platform-browser'; ReactiveFormsModule, RouterModule.forChild([ { - path: '', - component: LoginPage - } - ]) + path: "", + component: LoginPage, + }, + ]), ], - declarations: [LoginPage] + declarations: [LoginPage], }) -export class LoginPageModule { } +export class LoginPageModule {} diff --git a/src/app/features/auth/pages/login/login.page.html b/src/app/features/auth/pages/login/login.page.html index 158074e..7b5edd2 100644 --- a/src/app/features/auth/pages/login/login.page.html +++ b/src/app/features/auth/pages/login/login.page.html @@ -12,8 +12,7 @@
- +

Resgrid Dispatch

@@ -26,8 +25,14 @@

Resgrid Dispatch

- +
Username is required
@@ -36,42 +41,55 @@

Resgrid Dispatch

- +
Password is required
- +
- - +
-

Don't have an account? - Register

+

+ Don't have an account? + Register +

© {{currentYear()}} Resgrid, LLC. Created with in Nevada

v{{version}}

-
@@ -85,4 +103,4 @@

Resgrid Dispatch

- \ No newline at end of file + diff --git a/src/app/features/auth/pages/login/login.page.ts b/src/app/features/auth/pages/login/login.page.ts index e099543..c856428 100644 --- a/src/app/features/auth/pages/login/login.page.ts +++ b/src/app/features/auth/pages/login/login.page.ts @@ -5,7 +5,7 @@ import { selectAuthState, selectIsLoginState, selectLoginState } from "src/app/s import * as AuthActions from "../../actions/auth.actions"; import { LoadingProvider } from "src/app/providers/loading"; import { AuthState } from "../../store/auth.store"; -import { environment } from '../../../../../environments/environment'; +import { environment } from "../../../../../environments/environment"; import { Observable } from "rxjs"; @Component({ @@ -23,7 +23,7 @@ export class LoginPage implements OnInit { constructor( private fb: FormBuilder, - private store: Store + private store: Store, ) { this.authState$ = this.store.select(selectAuthState); } @@ -35,8 +35,8 @@ export class LoginPage implements OnInit { ngOnInit() { this.version = environment.version; - document.body.removeAttribute('data-layout'); - document.body.classList.add('auth-body-bg'); + document.body.removeAttribute("data-layout"); + document.body.classList.add("auth-body-bg"); this.store.select(selectIsLoginState).subscribe((res) => { this.isLogging$ = res; diff --git a/src/app/features/auth/pages/maintenance/maintenance.component.html b/src/app/features/auth/pages/maintenance/maintenance.component.html index dfa267c..6e4d2d5 100644 --- a/src/app/features/auth/pages/maintenance/maintenance.component.html +++ b/src/app/features/auth/pages/maintenance/maintenance.component.html @@ -16,7 +16,7 @@
- +
@@ -34,8 +34,9 @@

Site is Under Maintenance

Why is the Site Down?
-

There are many variations of passages of - Lorem Ipsum available, but the majority have suffered alteration.

+

+ There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration. +

@@ -47,10 +48,10 @@
Why is the Site Down?
-
- What is the Downtime?
-

Contrary to popular belief, Lorem Ipsum is not - simply random text. It has roots in a piece of classical.

+
What is the Downtime?
+

+ Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical. +

@@ -62,11 +63,11 @@
-
- Do you need Support?
-

If you are going to use a passage of Lorem - Ipsum, you need to be sure there isn't anything embar.. no-reply@domain.com

+
Do you need Support?
+

+ If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embar.. + no-reply@domain.com +

diff --git a/src/app/features/auth/pages/maintenance/maintenance.component.spec.ts b/src/app/features/auth/pages/maintenance/maintenance.component.spec.ts index a09514b..f3ed0fb 100644 --- a/src/app/features/auth/pages/maintenance/maintenance.component.spec.ts +++ b/src/app/features/auth/pages/maintenance/maintenance.component.spec.ts @@ -1,16 +1,15 @@ -import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; +import { ComponentFixture, TestBed, waitForAsync } from "@angular/core/testing"; -import { MaintenanceComponent } from './maintenance.component'; +import { MaintenanceComponent } from "./maintenance.component"; -describe('MaintenanceComponent', () => { +describe("MaintenanceComponent", () => { let component: MaintenanceComponent; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ - declarations: [ MaintenanceComponent ] - }) - .compileComponents(); + declarations: [MaintenanceComponent], + }).compileComponents(); })); beforeEach(() => { @@ -19,7 +18,7 @@ describe('MaintenanceComponent', () => { fixture.detectChanges(); }); - it('should create', () => { + it("should create", () => { expect(component).toBeTruthy(); }); }); diff --git a/src/app/features/auth/pages/maintenance/maintenance.component.ts b/src/app/features/auth/pages/maintenance/maintenance.component.ts index aeccc00..88a58b2 100644 --- a/src/app/features/auth/pages/maintenance/maintenance.component.ts +++ b/src/app/features/auth/pages/maintenance/maintenance.component.ts @@ -1,19 +1,16 @@ -import { Component, OnInit } from '@angular/core'; +import { Component, OnInit } from "@angular/core"; @Component({ - selector: 'app-maintenance', - templateUrl: './maintenance.component.html', - styleUrls: ['./maintenance.component.scss'] + selector: "app-maintenance", + templateUrl: "./maintenance.component.html", + styleUrls: ["./maintenance.component.scss"], }) /** * Maintenance page component */ export class MaintenanceComponent implements OnInit { + constructor() {} - constructor() { } - - ngOnInit(): void { - } - + ngOnInit(): void {} } diff --git a/src/app/features/auth/providers/auth.ts b/src/app/features/auth/providers/auth.ts index 9970b66..e89d061 100644 --- a/src/app/features/auth/providers/auth.ts +++ b/src/app/features/auth/providers/auth.ts @@ -1,10 +1,6 @@ import { Injectable, Inject } from "@angular/core"; import { combineLatest, concat, Observable, of } from "rxjs"; -import { - AuthService, - ProfileModel, - SecurityService, -} from '@resgrid/ngx-resgridlib'; +import { AuthService, ProfileModel, SecurityService } from "@resgrid/ngx-resgridlib"; import { concatMap, flatMap, map, mergeMap } from "rxjs/operators"; import { LoginResult } from "src/app/core/models/loginResult"; @@ -14,7 +10,7 @@ import { LoginResult } from "src/app/core/models/loginResult"; export class AuthProvider { constructor( private authProvider: AuthService, - private securityService: SecurityService + private securityService: SecurityService, ) {} //public login(username: string, password: string): Observable { @@ -38,7 +34,7 @@ export class AuthProvider { result.Rights = rightsResult.Data; return result; - }) + }), ); } diff --git a/src/app/features/auth/reducers/auth.reducer.ts b/src/app/features/auth/reducers/auth.reducer.ts index 9897fd7..9850df6 100644 --- a/src/app/features/auth/reducers/auth.reducer.ts +++ b/src/app/features/auth/reducers/auth.reducer.ts @@ -1,5 +1,5 @@ -import {LoginActionsUnion, LoginActionTypes} from '../actions/auth.actions'; -import { AuthState, initialState } from '../store/auth.store'; +import { LoginActionsUnion, LoginActionTypes } from "../actions/auth.actions"; +import { AuthState, initialState } from "../store/auth.store"; export function reducer(state: AuthState = initialState, action: LoginActionsUnion): AuthState { switch (action.type) { @@ -13,23 +13,23 @@ export function reducer(state: AuthState = initialState, action: LoginActionsUni ...state, isLogging: false, loggedIn: true, - user: action.user + user: action.user, }; case LoginActionTypes.LOGIN_FAIL: return { ...state, - errorMsg: 'Invalid user credentials', - isLogging: false + errorMsg: "Invalid user credentials", + isLogging: false, }; case LoginActionTypes.IS_LOGIN: return { ...state, - isLogging: true + isLogging: true, }; case LoginActionTypes.LOGIN_DONE: return { ...state, - isLogging: false + isLogging: false, }; default: return state; diff --git a/src/app/features/auth/store/auth.store.ts b/src/app/features/auth/store/auth.store.ts index ee622f1..669d424 100644 --- a/src/app/features/auth/store/auth.store.ts +++ b/src/app/features/auth/store/auth.store.ts @@ -1,15 +1,15 @@ -import { UserInfo } from 'src/app/core/models/userInfo'; +import { UserInfo } from "src/app/core/models/userInfo"; export interface AuthState { - loggedIn: boolean; - errorMsg: string; - isLogging: boolean; - user: UserInfo; + loggedIn: boolean; + errorMsg: string; + isLogging: boolean; + user: UserInfo; } export const initialState: AuthState = { - loggedIn: false, - errorMsg: null, - isLogging: false, - user: null + loggedIn: false, + errorMsg: null, + isLogging: false, + user: null, }; diff --git a/src/app/features/calls/actions/calls.actions.ts b/src/app/features/calls/actions/calls.actions.ts index b6bf00d..b9104f6 100644 --- a/src/app/features/calls/actions/calls.actions.ts +++ b/src/app/features/calls/actions/calls.actions.ts @@ -1,5 +1,5 @@ import { Action } from "@ngrx/store"; -import { CallExtraDataResultData, CallResultData, GpsLocation, MapDataAndMarkersData, UnitStatusResultData } from '@resgrid/ngx-resgridlib'; +import { CallExtraDataResultData, CallResultData, GpsLocation, MapDataAndMarkersData, UnitStatusResultData } from "@resgrid/ngx-resgridlib"; import { GroupsForCallGridData } from "@resgrid/ngx-resgridlib"; import { Call } from "src/app/core/models/call"; import { GroupsForCallResult } from "src/app/core/models/groupsForCallResult"; @@ -16,19 +16,19 @@ export enum CallsActionTypes { UPDATE_SELECTEDDISPATCHROLE = "[CALLS] UPDATE_SELECTEDDISPATCHROLE", UPDATE_SELECTEDDISPATCHUNIT = "[CALLS] UPDATE_SELECTEDDISPATCHUNIT", UPDATE_EDITCALLDATA_FROMHOME = "[CALLS] UPDATE_EDITCALLDATA_FROMHOME", - GET_UPDATEDPERSONANDUNITS_DISTANCE = '[CALLS] GET_UPDATEDPERSONANDUNITS_DISTANCE', - UPDATE_PERSONANDUNITS_DISTANCE = '[CALLS] UPDATE_PERSONANDUNITS_DISTANCE', - GET_CALL_BYID = '[CALLS] GET_CALL_BYID', + GET_UPDATEDPERSONANDUNITS_DISTANCE = "[CALLS] GET_UPDATEDPERSONANDUNITS_DISTANCE", + UPDATE_PERSONANDUNITS_DISTANCE = "[CALLS] UPDATE_PERSONANDUNITS_DISTANCE", + GET_CALL_BYID = "[CALLS] GET_CALL_BYID", GET_CALL_BYID_SUCCESS = "[CALLS] GET_CALL_BYID_SUCCESS", GET_CALL_BYID_FAIL = "[CALLS] GET_CALL_BYID_FAIL", - UPDATE_CALL = '[CALLS] UPDATE_CALL', + UPDATE_CALL = "[CALLS] UPDATE_CALL", UPDATE_CALL_SUCCESS = "[CALLS] UPDATE_CALL_SUCCESS", UPDATE_CALL_FAIL = "[CALLS] UPDATE_CALL_FAIL", - SHOW_CALLDISPATCHTIMEMODAL = '[CALLS] SHOW_CALLDISPATCHTIMEMODAL', - UPDATE_CALL_DISPATCHTIME = '[CALLS] UPDATE_CALL_DISPATCHTIME', + SHOW_CALLDISPATCHTIMEMODAL = "[CALLS] SHOW_CALLDISPATCHTIMEMODAL", + UPDATE_CALL_DISPATCHTIME = "[CALLS] UPDATE_CALL_DISPATCHTIME", UPDATE_CALL_DISPATCHTIME_SUCCESS = "[CALLS] UPDATE_CALL_DISPATCHTIME_SUCCESS", UPDATE_CALL_DISPATCHTIME_FAIL = "[CALLS] UPDATE_CALL_DISPATCHTIME_FAIL", - UPDATE_CALL_DISPATCHTIME_START = '[CALLS] UPDATE_CALL_DISPATCHTIME_START', + UPDATE_CALL_DISPATCHTIME_START = "[CALLS] UPDATE_CALL_DISPATCHTIME_START", } export class GetScheduledCalls implements Action { @@ -48,39 +48,62 @@ export class GetScheduledCallsFail implements Action { export class UpdateSelectedDispatchPerson implements Action { readonly type = CallsActionTypes.UPDATE_SELECTEDDISPATCHPERSON; - constructor(public userId: string, public checked: boolean) {} + constructor( + public userId: string, + public checked: boolean, + ) {} } export class UpdateSelectedDispatchGroup implements Action { readonly type = CallsActionTypes.UPDATE_SELECTEDDISPATCHGROUP; - constructor(public groupId: string, public checked: boolean) {} + constructor( + public groupId: string, + public checked: boolean, + ) {} } export class UpdateSelectedDispatchRole implements Action { readonly type = CallsActionTypes.UPDATE_SELECTEDDISPATCHROLE; - constructor(public roleId: string, public checked: boolean) {} + constructor( + public roleId: string, + public checked: boolean, + ) {} } export class UpdateSelectedDispatchRoleUnit implements Action { readonly type = CallsActionTypes.UPDATE_SELECTEDDISPATCHUNIT; - constructor(public unitId: string, public checked: boolean) {} + constructor( + public unitId: string, + public checked: boolean, + ) {} } export class UpdateEditCallDataFromHomeState implements Action { readonly type = CallsActionTypes.UPDATE_EDITCALLDATA_FROMHOME; - constructor(public unitStatuses: UnitStatusResult[], public rolesForGrid: RolesForCallResult[], - public groupsForGrid: GroupsForCallResult[], public personnelForGrid: PersonnelForCallResult[], - public mapData: MapDataAndMarkersData) {} + constructor( + public unitStatuses: UnitStatusResult[], + public rolesForGrid: RolesForCallResult[], + public groupsForGrid: GroupsForCallResult[], + public personnelForGrid: PersonnelForCallResult[], + public mapData: MapDataAndMarkersData, + ) {} } export class GetUpdatedPersonnelandUnitsDistancesToCall implements Action { readonly type = CallsActionTypes.GET_UPDATEDPERSONANDUNITS_DISTANCE; - constructor(public callLocation: GpsLocation, public personnel: PersonnelForCallResult[], public units: UnitStatusResult[]) {} + constructor( + public callLocation: GpsLocation, + public personnel: PersonnelForCallResult[], + public units: UnitStatusResult[], + ) {} } export class UpdatePersonnelandUnitsDistancesToCall implements Action { readonly type = CallsActionTypes.UPDATE_PERSONANDUNITS_DISTANCE; - constructor(public personnel: PersonnelForCallResult[], public units: UnitStatusResultData[]) {} + constructor( + public personnel: PersonnelForCallResult[], + public units: UnitStatusResultData[], + ) {} } export class GetCallById implements Action { @@ -90,10 +113,13 @@ export class GetCallById implements Action { export class GetCallByIdSuccess implements Action { readonly type = CallsActionTypes.GET_CALL_BYID_SUCCESS; - constructor(public call: CallResultData, public data: CallExtraDataResultData, public mapData: MapDataAndMarkersData) {} + constructor( + public call: CallResultData, + public data: CallExtraDataResultData, + public mapData: MapDataAndMarkersData, + ) {} } - export class GetCallByIdFailure implements Action { readonly type = CallsActionTypes.GET_CALL_BYID_FAIL; constructor(public payload: string) {} @@ -101,7 +127,10 @@ export class GetCallByIdFailure implements Action { export class UpdateCall implements Action { readonly type = CallsActionTypes.UPDATE_CALL; - constructor(public call: Call, public source: number) {} + constructor( + public call: Call, + public source: number, + ) {} } export class UpdateCallSuccess implements Action { @@ -116,7 +145,10 @@ export class UpdateCallFail implements Action { export class UpdateCallDispatchTime implements Action { readonly type = CallsActionTypes.UPDATE_CALL_DISPATCHTIME; - constructor(public callId: string, public date: string) {} + constructor( + public callId: string, + public date: string, + ) {} } export class UpdateCallDispatchTimeSuccess implements Action { diff --git a/src/app/features/calls/calls-routing.module.ts b/src/app/features/calls/calls-routing.module.ts index 654e596..3d2ff3f 100644 --- a/src/app/features/calls/calls-routing.module.ts +++ b/src/app/features/calls/calls-routing.module.ts @@ -1,30 +1,30 @@ -import { NgModule } from '@angular/core'; -import { PreloadAllModules, RouterModule, Routes } from '@angular/router'; -import { AuthGuard } from 'src/app/core/guards/auth.guard'; -import { LayoutComponent } from 'src/app/layouts/layout/layout.component'; +import { NgModule } from "@angular/core"; +import { PreloadAllModules, RouterModule, Routes } from "@angular/router"; +import { AuthGuard } from "src/app/core/guards/auth.guard"; +import { LayoutComponent } from "src/app/layouts/layout/layout.component"; const routes: Routes = [ { - path: '', - redirectTo: 'scheduled', - pathMatch: 'full' + path: "", + redirectTo: "scheduled", + pathMatch: "full", }, { - path: 'scheduled', - component: LayoutComponent, - loadChildren: () => import('./pages/scheduled/scheduled.module').then(m => m.ScheduledPageModule), - canActivate: [ AuthGuard ] + path: "scheduled", + component: LayoutComponent, + loadChildren: () => import("./pages/scheduled/scheduled.module").then((m) => m.ScheduledPageModule), + canActivate: [AuthGuard], }, { - path: 'edit-call/:id/:source', - component: LayoutComponent, - loadChildren: () => import('./pages/edit-call/edit-call.module').then(m => m.EditCallPageModule), - canActivate: [ AuthGuard ] - } + path: "edit-call/:id/:source", + component: LayoutComponent, + loadChildren: () => import("./pages/edit-call/edit-call.module").then((m) => m.EditCallPageModule), + canActivate: [AuthGuard], + }, ]; @NgModule({ imports: [RouterModule.forChild(routes)], - exports: [RouterModule] + exports: [RouterModule], }) export class CallsRoutingModule {} diff --git a/src/app/features/calls/calls.module.ts b/src/app/features/calls/calls.module.ts index 324edf3..2239d28 100644 --- a/src/app/features/calls/calls.module.ts +++ b/src/app/features/calls/calls.module.ts @@ -1,24 +1,29 @@ -import { NgModule } from '@angular/core'; -import { StoreModule } from '@ngrx/store'; -import { EffectsModule } from '@ngrx/effects'; -import { CommonModule } from '@angular/common'; -import { ReactiveFormsModule, FormsModule } from '@angular/forms'; -import { CallsRoutingModule } from './calls-routing.module'; -import { reducer } from './reducers/calls.reducer'; -import { CallsEffects } from './effects/calls.effect'; -import { NgbAlertModule, NgbDropdownModule, NgbNavModule, NgbPaginationModule, NgbTooltipModule, NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap'; -import { Ng2SearchPipeModule } from 'ng2-search-filter'; -import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar'; -import { LeafletModule } from '@asymmetrik/ngx-leaflet'; -import { UiModule } from 'src/app/shared/ui/ui.module'; -import { GalleryModule } from 'ng-gallery'; -import { UpdateDispatchTimeModalComponent } from './modals/updateDispatchTime/updateDispatchTime.modal'; -import { NgxResgridLibModule } from '@resgrid/ngx-resgridlib'; +import { NgModule } from "@angular/core"; +import { StoreModule } from "@ngrx/store"; +import { EffectsModule } from "@ngrx/effects"; +import { CommonModule } from "@angular/common"; +import { ReactiveFormsModule, FormsModule } from "@angular/forms"; +import { CallsRoutingModule } from "./calls-routing.module"; +import { reducer } from "./reducers/calls.reducer"; +import { CallsEffects } from "./effects/calls.effect"; +import { + NgbAlertModule, + NgbDropdownModule, + NgbNavModule, + NgbPaginationModule, + NgbTooltipModule, + NgbTypeaheadModule, +} from "@ng-bootstrap/ng-bootstrap"; +import { Ng2SearchPipeModule } from "ng2-search-filter"; +import { PerfectScrollbarModule } from "ngx-perfect-scrollbar"; +import { LeafletModule } from "@asymmetrik/ngx-leaflet"; +import { UiModule } from "src/app/shared/ui/ui.module"; +import { GalleryModule } from "ng-gallery"; +import { UpdateDispatchTimeModalComponent } from "./modals/updateDispatchTime/updateDispatchTime.modal"; +import { NgxResgridLibModule } from "@resgrid/ngx-resgridlib"; @NgModule({ - declarations: [ - UpdateDispatchTimeModalComponent - ], + declarations: [UpdateDispatchTimeModalComponent], imports: [ CommonModule, FormsModule, @@ -33,18 +38,14 @@ import { NgxResgridLibModule } from '@resgrid/ngx-resgridlib'; PerfectScrollbarModule, LeafletModule, UiModule, - StoreModule.forFeature('callsModule', reducer), + StoreModule.forFeature("callsModule", reducer), EffectsModule.forFeature([CallsEffects]), GalleryModule, NgbPaginationModule, - NgbTypeaheadModule + NgbTypeaheadModule, ], providers: [], - exports: [ - - ], - entryComponents: [ - UpdateDispatchTimeModalComponent - ] + exports: [], + entryComponents: [UpdateDispatchTimeModalComponent], }) -export class CallsModule { } +export class CallsModule {} diff --git a/src/app/features/calls/directives/calls-sortable.directive.ts b/src/app/features/calls/directives/calls-sortable.directive.ts index 3715a29..a1612f2 100644 --- a/src/app/features/calls/directives/calls-sortable.directive.ts +++ b/src/app/features/calls/directives/calls-sortable.directive.ts @@ -1,6 +1,6 @@ -import { Directive, EventEmitter, Input, Output } from '@angular/core'; -export type SortDirection = 'asc' | 'desc' | ''; -const rotate: { [key: string]: SortDirection } = { asc: 'desc', desc: '', '': 'asc' }; +import { Directive, EventEmitter, Input, Output } from "@angular/core"; +export type SortDirection = "asc" | "desc" | ""; +const rotate: { [key: string]: SortDirection } = { asc: "desc", desc: "", "": "asc" }; export interface SortEvent { column: string; @@ -9,21 +9,19 @@ export interface SortEvent { @Directive({ // tslint:disable-next-line: directive-selector - selector: 'th[sortable]', + selector: "th[sortable]", // tslint:disable-next-line: no-host-metadata-property host: { - '[class.asc]': 'direction === "asc"', - '[class.desc]': 'direction === "desc"', - '(click)': 'rotate()' - } + "[class.asc]": 'direction === "asc"', + "[class.desc]": 'direction === "desc"', + "(click)": "rotate()", + }, }) - export class CallsSortableDirective { - - constructor() { } + constructor() {} @Input() sortable: string; - @Input() direction: SortDirection = ''; + @Input() direction: SortDirection = ""; @Output() sort = new EventEmitter(); rotate() { diff --git a/src/app/features/calls/effects/calls.effect.ts b/src/app/features/calls/effects/calls.effect.ts index 32ba070..bcfdb94 100644 --- a/src/app/features/calls/effects/calls.effect.ts +++ b/src/app/features/calls/effects/calls.effect.ts @@ -6,7 +6,7 @@ import { Injectable } from "@angular/core"; import { forkJoin, from, Observable, of } from "rxjs"; import { NgbModal, NgbModalRef } from "@ng-bootstrap/ng-bootstrap"; import { CallsState } from "../store/calls.store"; -import { CallsService, GpsLocation, LocationService, MappingService } from '@resgrid/ngx-resgridlib'; +import { CallsService, GpsLocation, LocationService, MappingService } from "@resgrid/ngx-resgridlib"; import * as _ from "lodash"; import { AlertProvider } from "src/app/providers/alert"; import { LoadChildren, Router } from "@angular/router"; @@ -20,9 +20,7 @@ export class CallsEffects { @Effect() getScheduledCalls$: Observable = this.actions$.pipe( - ofType( - callsAction.CallsActionTypes.GET_SCHEDULED_CALLS - ), + ofType(callsAction.CallsActionTypes.GET_SCHEDULED_CALLS), mergeMap((action) => this.callsProvider.getAllPendingScheduledCalls().pipe( // If successful, dispatch success action with result @@ -32,43 +30,35 @@ export class CallsEffects { })), tap((data) => {}), // If request fails, dispatch failed action - catchError(() => - of({ type: callsAction.CallsActionTypes.GET_SCHEDULED_CALLS_FAIL }) - ) - ) - ) + catchError(() => of({ type: callsAction.CallsActionTypes.GET_SCHEDULED_CALLS_FAIL })), + ), + ), ); @Effect({ dispatch: false }) getScheduledCallsFail$ = this.actions$.pipe( - ofType( - callsAction.CallsActionTypes.GET_SCHEDULED_CALLS_FAIL - ), + ofType(callsAction.CallsActionTypes.GET_SCHEDULED_CALLS_FAIL), tap(async (action) => { this.loadingProvider.hide(); this.alertProvider.showErrorAlert( "Get Scheduled Calls Error", "", - "There was an issue trying to get scheduled calls, please try again." + "There was an issue trying to get scheduled calls, please try again.", ); - }) + }), ); @Effect({ dispatch: false }) getScheduledCallsSuccess$: Observable = this.actions$.pipe( - ofType( - callsAction.CallsActionTypes.GET_SCHEDULED_CALLS_SUCCESS - ), + ofType(callsAction.CallsActionTypes.GET_SCHEDULED_CALLS_SUCCESS), tap((data) => { this.loadingProvider.hide(); - }) + }), ); @Effect({ dispatch: false }) getUpdatedPersonnelandUnitsDistancesToCall$: Observable = this.actions$.pipe( - ofType( - callsAction.CallsActionTypes.GET_UPDATEDPERSONANDUNITS_DISTANCE - ), + ofType(callsAction.CallsActionTypes.GET_UPDATEDPERSONANDUNITS_DISTANCE), map((action) => { let personnel = _.cloneDeep(action.personnel); let units = _.cloneDeep(action.units); @@ -87,10 +77,7 @@ export class CallsEffects { const locationParts = person.Location.split(","); const distance = this.locationProvider.getDistanceBetweenTwoPoints( action.callLocation, - new GpsLocation( - Number(locationParts[0]), - Number(locationParts[1]) - ) + new GpsLocation(Number(locationParts[0]), Number(locationParts[1])), ); if (distance && distance > 0) { @@ -107,7 +94,7 @@ export class CallsEffects { if (unit.Latitude && unit.Longitude) { const distance = this.locationProvider.getDistanceBetweenTwoPoints( action.callLocation, - new GpsLocation(Number(unit.Latitude), Number(unit.Longitude)) + new GpsLocation(Number(unit.Latitude), Number(unit.Longitude)), ); if (distance && distance > 0) { @@ -125,7 +112,7 @@ export class CallsEffects { personnel: personnel, units: units, }; - }) + }), ); @Effect() @@ -147,37 +134,26 @@ export class CallsEffects { })), tap((data) => {}), // If request fails, dispatch failed action - catchError(() => - of({ type: callsAction.CallsActionTypes.GET_CALL_BYID_FAIL }) - ) - ) - ) + catchError(() => of({ type: callsAction.CallsActionTypes.GET_CALL_BYID_FAIL })), + ), + ), ); - @Effect({ dispatch: false }) getCallByIdFail$ = this.actions$.pipe( - ofType( - callsAction.CallsActionTypes.GET_CALL_BYID_FAIL - ), + ofType(callsAction.CallsActionTypes.GET_CALL_BYID_FAIL), tap(async (action) => { this.loadingProvider.hide(); - this.alertProvider.showErrorAlert( - "Get Call Error", - "", - "There was an issue trying to get this call, please try again." - ); - }) + this.alertProvider.showErrorAlert("Get Call Error", "", "There was an issue trying to get this call, please try again."); + }), ); @Effect({ dispatch: false }) getCallByIdSuccess$: Observable = this.actions$.pipe( - ofType( - callsAction.CallsActionTypes.GET_CALL_BYID_SUCCESS - ), + ofType(callsAction.CallsActionTypes.GET_CALL_BYID_SUCCESS), tap((data) => { this.loadingProvider.hide(); - }) + }), ); @Effect() @@ -204,7 +180,7 @@ export class CallsEffects { action.call.DispatchList, action.call.DispatchOn, action.call.FormData, - action.call.Redispatch + action.call.Redispatch, ) .pipe( // If successful, dispatch success action with result @@ -212,95 +188,69 @@ export class CallsEffects { type: callsAction.CallsActionTypes.UPDATE_CALL_SUCCESS, })), // If request fails, dispatch failed action - catchError(() => - of({ type: callsAction.CallsActionTypes.UPDATE_CALL_FAIL }) - ) - ) - ) + catchError(() => of({ type: callsAction.CallsActionTypes.UPDATE_CALL_FAIL })), + ), + ), ); @Effect({ dispatch: false }) saveCallFail$ = this.actions$.pipe( - ofType( - callsAction.CallsActionTypes.UPDATE_CALL_FAIL - ), + ofType(callsAction.CallsActionTypes.UPDATE_CALL_FAIL), tap(async (action) => { this.closeModal(); - this.alertProvider.showErrorAlert( - "Update Save Error", - "", - "There was an issue trying to save the call, please try again." - ); - }) + this.alertProvider.showErrorAlert("Update Save Error", "", "There was an issue trying to save the call, please try again."); + }), ); @Effect({ dispatch: false }) saveCallSuccess$: Observable = this.actions$.pipe( - ofType( - callsAction.CallsActionTypes.UPDATE_CALL_SUCCESS - ), + ofType(callsAction.CallsActionTypes.UPDATE_CALL_SUCCESS), tap((data) => { this.loadingProvider.hide(); this.router.navigate(["/home"]); this.alertProvider.showAutoCloseSuccessAlert("Call has been updated."); - }) + }), ); @Effect({ dispatch: false }) showUpdateCallDispatchTimeModal$: Observable = this.actions$.pipe( - ofType( - callsAction.CallsActionTypes.SHOW_CALLDISPATCHTIMEMODAL - ), - exhaustMap((data) => this.runModal(UpdateDispatchTimeModalComponent, "md")) + ofType(callsAction.CallsActionTypes.SHOW_CALLDISPATCHTIMEMODAL), + exhaustMap((data) => this.runModal(UpdateDispatchTimeModalComponent, "md")), ); @Effect() updateCallDispatchTime$: Observable = this.actions$.pipe( ofType(callsAction.CallsActionTypes.UPDATE_CALL_DISPATCHTIME), mergeMap((action) => - this.callsProvider - .updateCallDisptachTime( - action.callId, - action.date, - ).pipe( - // If successful, dispatch success action with result - map((data) => ({ - type: callsAction.CallsActionTypes.UPDATE_CALL_DISPATCHTIME_SUCCESS, - })), - tap((data) => { - this.closeModal(); - }), - // If request fails, dispatch failed action - catchError(() => - of({ type: callsAction.CallsActionTypes.UPDATE_CALL_DISPATCHTIME_FAIL }) - ) - ) - ) + this.callsProvider.updateCallDisptachTime(action.callId, action.date).pipe( + // If successful, dispatch success action with result + map((data) => ({ + type: callsAction.CallsActionTypes.UPDATE_CALL_DISPATCHTIME_SUCCESS, + })), + tap((data) => { + this.closeModal(); + }), + // If request fails, dispatch failed action + catchError(() => of({ type: callsAction.CallsActionTypes.UPDATE_CALL_DISPATCHTIME_FAIL })), + ), + ), ); @Effect({ dispatch: false }) updateCallDispatchTimeFail$ = this.actions$.pipe( - ofType( - callsAction.CallsActionTypes.UPDATE_CALL_DISPATCHTIME_FAIL - ), + ofType(callsAction.CallsActionTypes.UPDATE_CALL_DISPATCHTIME_FAIL), tap(async (action) => { this.closeModal(); - this.alertProvider.showErrorAlert( - "Update Save Error", - "", - "There was an issue trying to save the call, please try again." - ); - }) + this.alertProvider.showErrorAlert("Update Save Error", "", "There was an issue trying to save the call, please try again."); + }), ); @Effect({ dispatch: false }) updateCallDispatchTimeSuccess$: Observable = this.actions$.pipe( - ofType( - callsAction.CallsActionTypes.UPDATE_CALL_DISPATCHTIME_SUCCESS - ), + ofType(callsAction.CallsActionTypes.UPDATE_CALL_DISPATCHTIME_SUCCESS), tap((data) => { this.alertProvider.showAutoCloseSuccessAlert("Call has been updated."); - }) + }), ); constructor( diff --git a/src/app/features/calls/modals/updateDispatchTime/updateDispatchTime.modal.html b/src/app/features/calls/modals/updateDispatchTime/updateDispatchTime.modal.html index 88ecffe..37bde6e 100644 --- a/src/app/features/calls/modals/updateDispatchTime/updateDispatchTime.modal.html +++ b/src/app/features/calls/modals/updateDispatchTime/updateDispatchTime.modal.html @@ -11,21 +11,26 @@
- Enter a date/time to dispatch in the future. If you supply a date/time that is now - or - in the past the call won't be dispatched. + Enter a date/time to dispatch in the future. If you supply a date/time that is now or in the past the call won't be + dispatched.
- \ No newline at end of file + diff --git a/src/app/features/calls/modals/updateDispatchTime/updateDispatchTime.modal.ts b/src/app/features/calls/modals/updateDispatchTime/updateDispatchTime.modal.ts index 557308d..45ee992 100644 --- a/src/app/features/calls/modals/updateDispatchTime/updateDispatchTime.modal.ts +++ b/src/app/features/calls/modals/updateDispatchTime/updateDispatchTime.modal.ts @@ -5,7 +5,7 @@ import { Observable } from "rxjs"; import { selectCallsState } from "src/app/store"; import { take } from "rxjs/operators"; import { Actions, ofType } from "@ngrx/effects"; -import * as _ from 'lodash'; +import * as _ from "lodash"; import { CallsState } from "../../store/calls.store"; import * as CallsActions from "../../actions/calls.actions"; import { FormBuilder, FormGroup, Validators } from "@angular/forms"; @@ -23,18 +23,16 @@ export class UpdateDispatchTimeModalComponent implements OnInit { public activeModal: NgbActiveModal, private store: Store, private actions$: Actions, - public formBuilder: FormBuilder + public formBuilder: FormBuilder, ) { this.callsState$ = this.store.select(selectCallsState); this.updateCallForm = this.formBuilder.group({ - dispatchOn: ["", Validators.required] + dispatchOn: ["", Validators.required], }); } - ngOnInit() { - - } + ngOnInit() {} public dismiss() { this.activeModal.close(); @@ -45,11 +43,14 @@ export class UpdateDispatchTimeModalComponent implements OnInit { } public save() { - this.store.select(selectCallsState).pipe(take(1)).subscribe((state) => { - this.store.dispatch(new CallsActions.IsUpdatingCallDispatchTime()); - - const call = this.form; - this.store.dispatch(new CallsActions.UpdateCallDispatchTime(state.callIdToUpdateDispatchTime, call["dispatchOn"].value)); - }); + this.store + .select(selectCallsState) + .pipe(take(1)) + .subscribe((state) => { + this.store.dispatch(new CallsActions.IsUpdatingCallDispatchTime()); + + const call = this.form; + this.store.dispatch(new CallsActions.UpdateCallDispatchTime(state.callIdToUpdateDispatchTime, call["dispatchOn"].value)); + }); } } diff --git a/src/app/features/calls/pages/edit-call/edit-call.module.ts b/src/app/features/calls/pages/edit-call/edit-call.module.ts index 988dcbb..ce36d75 100644 --- a/src/app/features/calls/pages/edit-call/edit-call.module.ts +++ b/src/app/features/calls/pages/edit-call/edit-call.module.ts @@ -1,18 +1,25 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { FormsModule, ReactiveFormsModule } from '@angular/forms'; -import { RouterModule } from '@angular/router'; -import { Ng2SearchPipeModule } from 'ng2-search-filter'; -import { EditCallPage } from './edit-call.page'; -import { NgbAlertModule, NgbDropdownModule, NgbNavModule, NgbPaginationModule, NgbTooltipModule, NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap'; -import { PerfectScrollbarConfigInterface, PerfectScrollbarModule, PERFECT_SCROLLBAR_CONFIG } from 'ngx-perfect-scrollbar'; -import { LeafletModule } from '@asymmetrik/ngx-leaflet'; -import { UiModule } from 'src/app/shared/ui/ui.module'; -import { NgxResgridLibModule } from '@resgrid/ngx-resgridlib'; +import { NgModule } from "@angular/core"; +import { CommonModule } from "@angular/common"; +import { FormsModule, ReactiveFormsModule } from "@angular/forms"; +import { RouterModule } from "@angular/router"; +import { Ng2SearchPipeModule } from "ng2-search-filter"; +import { EditCallPage } from "./edit-call.page"; +import { + NgbAlertModule, + NgbDropdownModule, + NgbNavModule, + NgbPaginationModule, + NgbTooltipModule, + NgbTypeaheadModule, +} from "@ng-bootstrap/ng-bootstrap"; +import { PerfectScrollbarConfigInterface, PerfectScrollbarModule, PERFECT_SCROLLBAR_CONFIG } from "ngx-perfect-scrollbar"; +import { LeafletModule } from "@asymmetrik/ngx-leaflet"; +import { UiModule } from "src/app/shared/ui/ui.module"; +import { NgxResgridLibModule } from "@resgrid/ngx-resgridlib"; const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = { suppressScrollX: true, - wheelSpeed: 0.3 + wheelSpeed: 0.3, }; @NgModule({ @@ -33,17 +40,17 @@ const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = { NgbTypeaheadModule, RouterModule.forChild([ { - path: '', - component: EditCallPage - } - ]) + path: "", + component: EditCallPage, + }, + ]), ], providers: [ { provide: PERFECT_SCROLLBAR_CONFIG, - useValue: DEFAULT_PERFECT_SCROLLBAR_CONFIG - } + useValue: DEFAULT_PERFECT_SCROLLBAR_CONFIG, + }, ], - declarations: [EditCallPage] + declarations: [EditCallPage], }) export class EditCallPageModule {} diff --git a/src/app/features/calls/pages/edit-call/edit-call.page.html b/src/app/features/calls/pages/edit-call/edit-call.page.html index 2c3c38f..1de2a37 100644 --- a/src/app/features/calls/pages/edit-call/edit-call.page.html +++ b/src/app/features/calls/pages/edit-call/edit-call.page.html @@ -16,17 +16,16 @@
- Leave this blank to disptach the call immediately, enter a date/time - to - dispatch in the future + Leave this blank to disptach the call immediately, enter a date/time to dispatch in the future
@@ -34,23 +33,30 @@
- +
- +
@@ -64,14 +70,12 @@
- +
- +
@@ -80,15 +84,19 @@
- +
- +
@@ -97,54 +105,57 @@
-
+
- This is a what3words address. Learn More. + This is a what3words address. Learn More.
- +
Latitude (Decimal Notation: i.e. 39.1517)
Longitude (Decimal Notation: i.e. -119.4571)
-
-
+
-
- -
+
diff --git a/src/app/features/calls/pages/edit-call/edit-call.page.ts b/src/app/features/calls/pages/edit-call/edit-call.page.ts index 2707139..76efe7d 100644 --- a/src/app/features/calls/pages/edit-call/edit-call.page.ts +++ b/src/app/features/calls/pages/edit-call/edit-call.page.ts @@ -1,35 +1,19 @@ -import { - AfterViewInit, - ChangeDetectorRef, - Component, - OnInit, - QueryList, - ViewChild, - ViewChildren, -} from "@angular/core"; +import { AfterViewInit, ChangeDetectorRef, Component, OnInit, QueryList, ViewChild, ViewChildren } from "@angular/core"; import { Store } from "@ngrx/store"; import * as _ from "lodash"; import { CallsState } from "../../store/calls.store"; import * as CallsActions from "../../actions/calls.actions"; -import { - CallsSortableDirective, - SortEvent, -} from "../../directives/calls-sortable.directive"; +import { CallsSortableDirective, SortEvent } from "../../directives/calls-sortable.directive"; import { UtilsProvider } from "src/app/providers/utils"; import { ActivatedRoute, Router } from "@angular/router"; import { FormBuilder, FormGroup, Validators } from "@angular/forms"; import { Observable } from "rxjs"; import { HomeState } from "src/app/features/home/store/home.store"; -import { - selectCallsState, - selectEditCallData, - selectEditCallState, - selectHomeState, -} from "src/app/store"; +import { selectCallsState, selectEditCallData, selectEditCallState, selectHomeState } from "src/app/store"; import * as L from "leaflet"; import { environment } from "../../../../../environments/environment"; import { take } from "rxjs/operators"; -import { CallResult, CallResultData, GetMapDataAndMarkersResult, GpsLocation, MapDataAndMarkersData } from '@resgrid/ngx-resgridlib'; +import { CallResult, CallResultData, GetMapDataAndMarkersResult, GpsLocation, MapDataAndMarkersData } from "@resgrid/ngx-resgridlib"; import { Call } from "src/app/core/models/call"; @Component({ @@ -68,7 +52,7 @@ export class EditCallPage implements AfterViewInit { public utilsProvider: UtilsProvider, private activatedroute: ActivatedRoute, private router: Router, - private cdr: ChangeDetectorRef + private cdr: ChangeDetectorRef, ) { this.callsState$ = this.store.select(selectCallsState); this.homeState$ = this.store.select(selectHomeState); @@ -95,23 +79,18 @@ export class EditCallPage implements AfterViewInit { } ngAfterViewInit(): void { - this.breadCrumbItems = [ - { label: "Resgrid Dispatch" }, - { label: "Edit Call", active: true }, - ]; + this.breadCrumbItems = [{ label: "Resgrid Dispatch" }, { label: "Edit Call", active: true }]; this.unitGroups = new Array(); - this.activatedRouteSub = this.activatedroute.paramMap.subscribe( - (params) => { - if (params) { - this.id = params.get("id"); - this.source = parseInt(params.get("source"), 10); + this.activatedRouteSub = this.activatedroute.paramMap.subscribe((params) => { + if (params) { + this.id = params.get("id"); + this.source = parseInt(params.get("source"), 10); - this.store.dispatch(new CallsActions.GetCallById(this.id)); - } + this.store.dispatch(new CallsActions.GetCallById(this.id)); } - ); + }); this.store.select(selectHomeState).subscribe((state) => { this.store.dispatch( @@ -120,8 +99,8 @@ export class EditCallPage implements AfterViewInit { state.rolesForGrid, state.groupsForGrid, state.personnelForGrid, - state.mapData - ) + state.mapData, + ), ); if (state.unitStatuses) { @@ -144,9 +123,7 @@ export class EditCallPage implements AfterViewInit { if (!this.unitGroups || this.unitGroups.length == 0) { this.unitGroups.push("No Group"); - const groups = _.uniqBy(state.unitStatuses, "GroupName").map( - (item) => item.GroupName - ); + const groups = _.uniqBy(state.unitStatuses, "GroupName").map((item) => item.GroupName); groups.forEach((group) => { if (group && group.length > 0) { @@ -226,7 +203,11 @@ export class EditCallPage implements AfterViewInit { this.setupNewCallMap(parseInt(editCallData.Latitude), parseInt(editCallData.Longitude), 13); this.addPinToMap(editCallData.Latitude, editCallData.Longitude); } else { - this.setupNewCallMap(parseInt(callsState.mapData.CenterLat), parseInt(callsState.mapData.CenterLon), parseInt(callsState.mapData.ZoomLevel)); + this.setupNewCallMap( + parseInt(callsState.mapData.CenterLat), + parseInt(callsState.mapData.CenterLon), + parseInt(callsState.mapData.ZoomLevel), + ); } this.cdr.detectChanges(); @@ -238,36 +219,28 @@ export class EditCallPage implements AfterViewInit { var id = event.target.name; var checked = event.target.checked; - this.store.dispatch( - new CallsActions.UpdateSelectedDispatchPerson(id, checked) - ); + this.store.dispatch(new CallsActions.UpdateSelectedDispatchPerson(id, checked)); } public changeCheckedGroupDispatch(event) { var id = event.target.name; var checked = event.target.checked; - this.store.dispatch( - new CallsActions.UpdateSelectedDispatchGroup(id, checked) - ); + this.store.dispatch(new CallsActions.UpdateSelectedDispatchGroup(id, checked)); } public changeCheckedRoleDispatch(event) { var id = event.target.name; var checked = event.target.checked; - this.store.dispatch( - new CallsActions.UpdateSelectedDispatchRole(id, checked) - ); + this.store.dispatch(new CallsActions.UpdateSelectedDispatchRole(id, checked)); } public changeCheckedUnitDispatch(event) { var id = event.target.name; var checked = event.target.checked; - this.store.dispatch( - new CallsActions.UpdateSelectedDispatchRoleUnit(id, checked) - ); + this.store.dispatch(new CallsActions.UpdateSelectedDispatchRoleUnit(id, checked)); event.stopPropagation(); } @@ -297,7 +270,7 @@ export class EditCallPage implements AfterViewInit { if (call["latitude"]) { let latitude = call["latitude"].value; - if (latitude && latitude !== 'null') { + if (latitude && latitude !== "null") { editCall.Latitude = call["latitude"].value; } } @@ -305,7 +278,7 @@ export class EditCallPage implements AfterViewInit { if (call["longitude"]) { let longitude = call["longitude"].value; - if (longitude && longitude !== 'null') { + if (longitude && longitude !== "null") { editCall.Longitude = call["longitude"].value; } } @@ -319,69 +292,64 @@ export class EditCallPage implements AfterViewInit { editCall.DispatchOn = call["dispatchOn"].value; } - this.store.select(selectCallsState).pipe(take(1)).subscribe((state) => { - if (state.callToEdit) { - editCall.Id = state.callToEdit.CallId; - } + this.store + .select(selectCallsState) + .pipe(take(1)) + .subscribe((state) => { + if (state.callToEdit) { + editCall.Id = state.callToEdit.CallId; + } - if (state && state.personnelForGrid) { - state.personnelForGrid.forEach((person) => { - if (person && person.Selected) { - if (editCall.DispatchList.length > 0) { - editCall.DispatchList = editCall.DispatchList.concat( - `|P:${person.UserId}` - ); - } else { - editCall.DispatchList = `P:${person.UserId}`; + if (state && state.personnelForGrid) { + state.personnelForGrid.forEach((person) => { + if (person && person.Selected) { + if (editCall.DispatchList.length > 0) { + editCall.DispatchList = editCall.DispatchList.concat(`|P:${person.UserId}`); + } else { + editCall.DispatchList = `P:${person.UserId}`; + } } - } - }); - } + }); + } - if (state && state.groupsForGrid) { - state.groupsForGrid.forEach((group) => { - if (group && group.Selected) { - if (editCall.DispatchList.length > 0) { - editCall.DispatchList = editCall.DispatchList.concat( - `|G:${group.GroupId}` - ); - } else { - editCall.DispatchList = `G:${group.GroupId}`; + if (state && state.groupsForGrid) { + state.groupsForGrid.forEach((group) => { + if (group && group.Selected) { + if (editCall.DispatchList.length > 0) { + editCall.DispatchList = editCall.DispatchList.concat(`|G:${group.GroupId}`); + } else { + editCall.DispatchList = `G:${group.GroupId}`; + } } - } - }); - } + }); + } - if (state && state.rolesForGrid) { - state.rolesForGrid.forEach((role) => { - if (role && role.Selected) { - if (editCall.DispatchList.length > 0) { - editCall.DispatchList = editCall.DispatchList.concat( - `|R:${role.RoleId}` - ); - } else { - editCall.DispatchList = `R:${role.RoleId}`; + if (state && state.rolesForGrid) { + state.rolesForGrid.forEach((role) => { + if (role && role.Selected) { + if (editCall.DispatchList.length > 0) { + editCall.DispatchList = editCall.DispatchList.concat(`|R:${role.RoleId}`); + } else { + editCall.DispatchList = `R:${role.RoleId}`; + } } - } - }); - } + }); + } - if (state && state.unitStatuses) { - state.unitStatuses.forEach((unit) => { - if (unit && unit.Selected) { - if (editCall.DispatchList.length > 0) { - editCall.DispatchList = editCall.DispatchList.concat( - `|U:${unit.UnitId}` - ); - } else { - editCall.DispatchList = `U:${unit.UnitId}`; + if (state && state.unitStatuses) { + state.unitStatuses.forEach((unit) => { + if (unit && unit.Selected) { + if (editCall.DispatchList.length > 0) { + editCall.DispatchList = editCall.DispatchList.concat(`|U:${unit.UnitId}`); + } else { + editCall.DispatchList = `U:${unit.UnitId}`; + } } - } - }); - } + }); + } - this.store.dispatch(new CallsActions.UpdateCall(editCall, this.source)); - }); + this.store.dispatch(new CallsActions.UpdateCall(editCall, this.source)); + }); } public getCoordinatesForAddress() {} @@ -395,14 +363,10 @@ export class EditCallPage implements AfterViewInit { scrollWheelZoom: false, }); - L.tileLayer( - "https://api.maptiler.com/maps/streets/{z}/{x}/{y}.png?key=" + - environment.osmMapKey, - { - attribution: - '© OpenStreetMap contributors CC-BY-SA', - } - ).addTo(this.newCallMap); + L.tileLayer("https://api.maptiler.com/maps/streets/{z}/{x}/{y}.png?key=" + environment.osmMapKey, { + attribution: + '© OpenStreetMap contributors CC-BY-SA', + }).addTo(this.newCallMap); this.newCallMap.scrollWheelZoom.disable(); this.newCallMap.setView([latitude, longitude], zoom); @@ -423,9 +387,7 @@ export class EditCallPage implements AfterViewInit { this.newCallMarker = null; } //console.log('You clicked the map at latitude: ' + lat + ' and longitude: ' + lng); - this.newCallMarker = new L.Marker([lat, lng], { draggable: true }).addTo( - this.newCallMap - ); + this.newCallMarker = new L.Marker([lat, lng], { draggable: true }).addTo(this.newCallMap); const that = this; this.newCallMarker.on("dragend", function (event) { var marker = event.target; @@ -439,9 +401,7 @@ export class EditCallPage implements AfterViewInit { this.form["longitude"].setValue(position.lng); this.form["longitude"].patchValue(position.lng); - this.updatePersonnelDistances( - new GpsLocation(position.lat, position.lng) - ); + this.updatePersonnelDistances(new GpsLocation(position.lat, position.lng)); //that.store.dispatch( // new HomeActions.UpdateNewCallLocation(position.lat, position.lng) @@ -474,11 +434,7 @@ export class EditCallPage implements AfterViewInit { this.store.select(selectHomeState).subscribe((state) => { if (state && state.personnelForGrid) { this.store.dispatch( - new CallsActions.GetUpdatedPersonnelandUnitsDistancesToCall( - location, - state.personnelForGrid, - state.unitStatuses - ) + new CallsActions.GetUpdatedPersonnelandUnitsDistancesToCall(location, state.personnelForGrid, state.unitStatuses), ); } }); diff --git a/src/app/features/calls/pages/scheduled/scheduled.module.ts b/src/app/features/calls/pages/scheduled/scheduled.module.ts index 8029a9f..50e52f4 100644 --- a/src/app/features/calls/pages/scheduled/scheduled.module.ts +++ b/src/app/features/calls/pages/scheduled/scheduled.module.ts @@ -1,17 +1,24 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { FormsModule, ReactiveFormsModule } from '@angular/forms'; -import { RouterModule } from '@angular/router'; -import { Ng2SearchPipeModule } from 'ng2-search-filter'; -import { ScheduledPage } from './scheduled.page'; -import { NgbAlertModule, NgbDropdownModule, NgbNavModule, NgbPaginationModule, NgbTooltipModule, NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap'; -import { PerfectScrollbarConfigInterface, PerfectScrollbarModule, PERFECT_SCROLLBAR_CONFIG } from 'ngx-perfect-scrollbar'; -import { LeafletModule } from '@asymmetrik/ngx-leaflet'; -import { UiModule } from 'src/app/shared/ui/ui.module'; +import { NgModule } from "@angular/core"; +import { CommonModule } from "@angular/common"; +import { FormsModule, ReactiveFormsModule } from "@angular/forms"; +import { RouterModule } from "@angular/router"; +import { Ng2SearchPipeModule } from "ng2-search-filter"; +import { ScheduledPage } from "./scheduled.page"; +import { + NgbAlertModule, + NgbDropdownModule, + NgbNavModule, + NgbPaginationModule, + NgbTooltipModule, + NgbTypeaheadModule, +} from "@ng-bootstrap/ng-bootstrap"; +import { PerfectScrollbarConfigInterface, PerfectScrollbarModule, PERFECT_SCROLLBAR_CONFIG } from "ngx-perfect-scrollbar"; +import { LeafletModule } from "@asymmetrik/ngx-leaflet"; +import { UiModule } from "src/app/shared/ui/ui.module"; const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = { suppressScrollX: true, - wheelSpeed: 0.3 + wheelSpeed: 0.3, }; @NgModule({ @@ -31,17 +38,17 @@ const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = { NgbTypeaheadModule, RouterModule.forChild([ { - path: '', - component: ScheduledPage - } - ]) + path: "", + component: ScheduledPage, + }, + ]), ], providers: [ { provide: PERFECT_SCROLLBAR_CONFIG, - useValue: DEFAULT_PERFECT_SCROLLBAR_CONFIG - } + useValue: DEFAULT_PERFECT_SCROLLBAR_CONFIG, + }, ], - declarations: [ScheduledPage] + declarations: [ScheduledPage], }) export class ScheduledPageModule {} diff --git a/src/app/features/calls/pages/scheduled/scheduled.page.html b/src/app/features/calls/pages/scheduled/scheduled.page.html index 9147fcc..3ac25cd 100644 --- a/src/app/features/calls/pages/scheduled/scheduled.page.html +++ b/src/app/features/calls/pages/scheduled/scheduled.page.html @@ -4,33 +4,46 @@
-
-
+ + entries +
-
+
+ +
- + @@ -42,7 +55,6 @@ - @@ -74,17 +99,14 @@
-
Showing - {{service.startIndex}} to - {{service.endIndex}} of {{service.totalRecords}} - entries +
+ Showing {{service.startIndex}} to {{service.endIndex}} of {{service.totalRecords}} entries
- +
@@ -94,4 +116,4 @@
- \ No newline at end of file + diff --git a/src/app/features/calls/pages/scheduled/scheduled.page.service.ts b/src/app/features/calls/pages/scheduled/scheduled.page.service.ts index 7eecb6e..53ab22c 100644 --- a/src/app/features/calls/pages/scheduled/scheduled.page.service.ts +++ b/src/app/features/calls/pages/scheduled/scheduled.page.service.ts @@ -8,7 +8,7 @@ import { SortDirection } from "../../directives/calls-sortable.directive"; import { Store } from "@ngrx/store"; import { CallsState } from "../../store/calls.store"; import { selectCallsState } from "src/app/store"; -import { CallResultData } from '@resgrid/ngx-resgridlib'; +import { CallResultData } from "@resgrid/ngx-resgridlib"; import { CallLocalResult } from "src/app/core/models/callLocalResult"; // Search Data @@ -38,11 +38,7 @@ function compare(v1, v2) { * @param column Fetch the column * @param direction Sort direction Ascending or Descending */ -function sort( - calls: CallLocalResult[], - column: string, - direction: string -): CallLocalResult[] { +function sort(calls: CallLocalResult[], column: string, direction: string): CallLocalResult[] { if (direction === "") { return calls; } else { @@ -108,7 +104,7 @@ export class ScheduledCallsPageService { debounceTime(200), switchMap(() => this._search()), delay(200), - tap(() => this._loading$.next(false)) + tap(() => this._loading$.next(false)), ) .subscribe((result) => { this._calls$.next(result.calls); @@ -194,8 +190,7 @@ export class ScheduledCallsPageService { * Search Method */ private _search(): Observable { - const { sortColumn, sortDirection, pageSize, page, searchTerm } = - this._state; + const { sortColumn, sortDirection, pageSize, page, searchTerm } = this._state; // 1. sort let calls = sort(this._pendingCalls, sortColumn, sortDirection); diff --git a/src/app/features/calls/pages/scheduled/scheduled.page.ts b/src/app/features/calls/pages/scheduled/scheduled.page.ts index dd0fb30..9743611 100644 --- a/src/app/features/calls/pages/scheduled/scheduled.page.ts +++ b/src/app/features/calls/pages/scheduled/scheduled.page.ts @@ -1,11 +1,4 @@ -import { - AfterViewInit, - ChangeDetectorRef, - Component, - OnInit, - QueryList, - ViewChildren, -} from "@angular/core"; +import { AfterViewInit, ChangeDetectorRef, Component, OnInit, QueryList, ViewChildren } from "@angular/core"; import { Store } from "@ngrx/store"; import * as _ from "lodash"; import { CallsState } from "../../store/calls.store"; @@ -29,26 +22,22 @@ export class ScheduledPage implements AfterViewInit { public service: ScheduledCallsPageService, public utilsProvider: UtilsProvider, private router: Router, - private cdr: ChangeDetectorRef) { - - } + private cdr: ChangeDetectorRef, + ) {} ngAfterViewInit(): void { this.store.dispatch(new CallsActions.GetScheduledCalls()); - this.breadCrumbItems = [ - { label: "Resgrid Dispatch" }, - { label: "Scheduled Calls", active: true }, - ]; + this.breadCrumbItems = [{ label: "Resgrid Dispatch" }, { label: "Scheduled Calls", active: true }]; this.cdr.detectChanges(); } onSort({ column, direction }: SortEvent) { // resetting other headers - this.headers.forEach(header => { + this.headers.forEach((header) => { if (header.sortable !== column) { - header.direction = ''; + header.direction = ""; } }); this.service.sortColumn = column; @@ -56,17 +45,14 @@ export class ScheduledPage implements AfterViewInit { } public editCall(callId: string) { - this.router.navigate(['/calls/edit-call', callId, "1"]); + this.router.navigate(["/calls/edit-call", callId, "1"]); } public updateDispatchTime(callId: string) { - this.store.dispatch( - new CallsActions.ShowUpdateCallDispatchTimeModal(callId) - ); + this.store.dispatch(new CallsActions.ShowUpdateCallDispatchTimeModal(callId)); } } function SortableDirective(CallsSortableDirective: any) { throw new Error("Function not implemented."); } - diff --git a/src/app/features/calls/reducers/calls.reducer.ts b/src/app/features/calls/reducers/calls.reducer.ts index 5d9dcad..928aff4 100644 --- a/src/app/features/calls/reducers/calls.reducer.ts +++ b/src/app/features/calls/reducers/calls.reducer.ts @@ -4,10 +4,7 @@ import { CallsActionsUnion, CallsActionTypes } from "../actions/calls.actions"; import * as _ from "lodash"; import { CallLocalResult } from "src/app/core/models/callLocalResult"; -export function reducer( - state: CallsState = initialState, - action: CallsActionsUnion -): CallsState { +export function reducer(state: CallsState = initialState, action: CallsActionsUnion): CallsState { switch (action.type) { case CallsActionTypes.GET_SCHEDULED_CALLS_SUCCESS: return { @@ -134,7 +131,6 @@ export function reducer( unitStatuses: units, rolesForGrid: roles, groupsForGrid: groups, - }; case CallsActionTypes.SHOW_CALLDISPATCHTIMEMODAL: return { @@ -163,7 +159,6 @@ export function reducer( } } -export const getPendingScheduledCalls = (state: CallsState) => - state.pendingScheduledCalls; +export const getPendingScheduledCalls = (state: CallsState) => state.pendingScheduledCalls; export const getEditCall = (state: CallsState) => state.callToEdit; -export const getEditCallData = (state: CallsState) => state.callEditData; \ No newline at end of file +export const getEditCallData = (state: CallsState) => state.callEditData; diff --git a/src/app/features/calls/store/calls.store.ts b/src/app/features/calls/store/calls.store.ts index a322002..478f5fd 100644 --- a/src/app/features/calls/store/calls.store.ts +++ b/src/app/features/calls/store/calls.store.ts @@ -1,39 +1,44 @@ -import { CallExtraDataResultData, CallResultData, GetRolesForCallGridResultData, MapDataAndMarkersData, UnitStatusResultData } from '@resgrid/ngx-resgridlib'; +import { + CallExtraDataResultData, + CallResultData, + GetRolesForCallGridResultData, + MapDataAndMarkersData, + UnitStatusResultData, +} from "@resgrid/ngx-resgridlib"; import { CallLocalResult } from "src/app/core/models/callLocalResult"; import { GroupsForCallResult } from "src/app/core/models/groupsForCallResult"; import { PersonnelForCallResult } from "src/app/core/models/personnelForCallResult"; import { RolesForCallResult } from "src/app/core/models/rolesForCallResult"; import { UnitStatusResult } from "src/app/core/models/unitStatusResult"; - export interface CallsState { - pendingScheduledCalls: CallLocalResult[]; + pendingScheduledCalls: CallLocalResult[]; - // For Edit Call - callToEdit: CallResultData; - callEditData: CallExtraDataResultData; - mapData: MapDataAndMarkersData; - unitStatuses: UnitStatusResult[]; - rolesForGrid: RolesForCallResult[]; - groupsForGrid: GroupsForCallResult[]; - personnelForGrid: PersonnelForCallResult[]; + // For Edit Call + callToEdit: CallResultData; + callEditData: CallExtraDataResultData; + mapData: MapDataAndMarkersData; + unitStatuses: UnitStatusResult[]; + rolesForGrid: RolesForCallResult[]; + groupsForGrid: GroupsForCallResult[]; + personnelForGrid: PersonnelForCallResult[]; - // For Update Dispatch Time - callIdToUpdateDispatchTime: string; - updatedDispatchTime: string; - isUpdatingDispatchTime: boolean; + // For Update Dispatch Time + callIdToUpdateDispatchTime: string; + updatedDispatchTime: string; + isUpdatingDispatchTime: boolean; } export const initialState: CallsState = { - pendingScheduledCalls: null, - unitStatuses: null, - rolesForGrid: null, - groupsForGrid: null, - personnelForGrid: null, - callToEdit: null, - callEditData: null, - mapData: null, - callIdToUpdateDispatchTime: null, - updatedDispatchTime: null, - isUpdatingDispatchTime: false -}; \ No newline at end of file + pendingScheduledCalls: null, + unitStatuses: null, + rolesForGrid: null, + groupsForGrid: null, + personnelForGrid: null, + callToEdit: null, + callEditData: null, + mapData: null, + callIdToUpdateDispatchTime: null, + updatedDispatchTime: null, + isUpdatingDispatchTime: false, +}; diff --git a/src/app/features/home/actions/home.actions.ts b/src/app/features/home/actions/home.actions.ts index ed99b1b..337dab0 100644 --- a/src/app/features/home/actions/home.actions.ts +++ b/src/app/features/home/actions/home.actions.ts @@ -1,94 +1,104 @@ -import { Action } from '@ngrx/store'; -import { CallExtraDataResultData, CallFileResultData, CallNoteResultData, CallResultData, DepartmentVoiceResultData, GetCallTemplatesResultData, GpsLocation, MapDataAndMarkersData, UnitStatusResultData } from '@resgrid/ngx-resgridlib'; -import { Call } from 'src/app/core/models/call'; -import { PersonnelForCallResult } from 'src/app/core/models/personnelForCallResult'; -import { UnitStatusResult } from 'src/app/core/models/unitStatusResult'; -import { DashboardPayload } from '../models/dashboardPayload'; -import { SaveCloseCallPayload } from '../models/saveCloseCallPayload'; -import { SetPersonStatffingPayload } from '../models/setPersonStatffingPayload'; -import { SetPersonStatusesPayload } from '../models/setPersonStatusesPayload'; -import { SetUnitStateModalData } from '../models/setUnitStateModalData'; -import { SetUnitStatePayload } from '../models/setUnitStatePayload'; +import { Action } from "@ngrx/store"; +import { + CallExtraDataResultData, + CallFileResultData, + CallNoteResultData, + CallResultData, + DepartmentVoiceResultData, + GetCallTemplatesResultData, + GpsLocation, + MapDataAndMarkersData, + UnitStatusResultData, +} from "@resgrid/ngx-resgridlib"; +import { Call } from "src/app/core/models/call"; +import { PersonnelForCallResult } from "src/app/core/models/personnelForCallResult"; +import { UnitStatusResult } from "src/app/core/models/unitStatusResult"; +import { DashboardPayload } from "../models/dashboardPayload"; +import { SaveCloseCallPayload } from "../models/saveCloseCallPayload"; +import { SetPersonStatffingPayload } from "../models/setPersonStatffingPayload"; +import { SetPersonStatusesPayload } from "../models/setPersonStatusesPayload"; +import { SetUnitStateModalData } from "../models/setUnitStateModalData"; +import { SetUnitStatePayload } from "../models/setUnitStatePayload"; // [AUTH] Auth module export enum HomeActionTypes { - LOADING = '[HOME] LOADING', - LOADING_SUCCESS = '[HOME] LOADING_SUCCESS', - LOADING_FAIL = '[HOME] LOADING_FAIL', - LOADING_MAP = '[HOME] LOADING MAP', - LOADING_MAP_SUCCESS = '[HOME] LOADING_MAP_SUCCESS', - LOADING_MAP_FAIL = '[HOME] LOADING_MAP_FAIL', - SHOW_SETUNITSTATUSMODAL = '[HOME] SHOW_SETUNITSTATUSMODAL', - OPEN_SETUNITSTATUSMODAL = '[HOME] OPEN_SETUNITSTATUSMODAL', - SAVING_SETUNITSTATUSMODAL = '[HOME] SAVING_SETUNITSTATUSMODAL', - SAVE_UNITSTATE = '[HOME] SAVE_UNITSTATE', - SAVE_UNITSTATE_SUCCESS = '[HOME] SAVE_UNITSTATE_SUCCESS', - SAVE_UNITSTATE_FAIL = '[HOME] SAVE_UNITSTATE_FAIL', - GET_LATESTUNITSTATES = '[HOME] GET_LATESTUNITSTATES', - UPDATE_UNITSTATES = '[HOME] UPDATE_UNITSTATES', - UPDATE_SELECTUNIT = '[HOME] UPDATE_SELECTUNIT', - UPDATE_SELECTEDCALL = '[HOME] UPDATE_SELECTEDCALL', - SAVE_CLOSECALL = '[HOME] SAVE_CLOSECALL', - SAVE_CLOSECALL_SUCCESS = '[HOME] SAVE_CLOSECALL_SUCCESS', - SAVE_CLOSECALL_FAIL = '[HOME] SAVE_CLOSECALL_FAIL', - SHOW_CLOSECALLMODAL = '[HOME] SHOW_CLOSECALLMODAL', - UPDATE_CALLS = '[HOME] UPDATE_CALLS', - UPDATE_SELECTEDDISPATCHPERSON = '[HOME] UPDATE_SELECTEDDISPATCHPERSON', - UPDATE_SELECTEDDISPATCHGROUP = '[HOME] UPDATE_SELECTEDDISPATCHGROUP', - UPDATE_SELECTEDDISPATCHROLE = '[HOME] UPDATE_SELECTEDDISPATCHROLE', - UPDATE_SELECTEDDISPATCHUNIT = '[HOME] UPDATE_SELECTEDDISPATCHUNIT', - UPDATE_NEWCALLLOCATION = '[HOME] UPDATE_NEWCALLLOCATION', - SHOW_SELECTCALLTEMPLATEMODAL = '[HOME] SHOW_SELECTCALLTEMPLATEMODAL', - OPEN_SELECTCALLTEMPLATEMODAL = '[HOME] OPEN_SELECTCALLTEMPLATEMODAL', - UPDATE_APPLYCALLTEMPLATE = '[HOME] UPDATE_APPLYCALLTEMPLATE', - GET_COORDINATESFORADDRESS = '[HOME] GET_COORDINATESFORADDRESS', - GET_COORDINATESFORADDRESS_SUCCESS = '[HOME] GET_COORDINATESFORADDRESS_SUCCESS', - GET_COORDINATESFORADDRESS_FAIL = '[HOME] GET_COORDINATESFORADDRESS_FAIL', - GET_ADDRESSFORCOORDINATES = '[HOME] GET_ADDRESSFORCOORDINATES', - GET_ADDRESSFORCOORDINATES_SUCCESS = '[HOME] GET_ADDRESSFORCOORDINATES_SUCCESS', - GET_ADDRESSFORCOORDINATES_FAIL = '[HOME] GET_ADDRESSFORCOORDINATES_FAIL', - SAVE_CALL = '[HOME] SAVE_CALL', - SAVE_CALL_START = '[HOME] SAVE_CALL_START', - SAVE_CALL_SUCCESS = '[HOME] SAVE_CALL_SUCCESS', - SAVE_CALL_FAIL = '[HOME] SAVE_CALL_FAIL', - GENERAL_FAILURE = '[HOME] GENERAL_FAILURE', - GET_LATESTPERSONNELDATA = '[HOME] GET_LATESTPERSONNELDATA', - UPDATE_PERSONNELDATA = '[HOME] UPDATE_PERSONNELDATA', - GET_LATESTCALLS = '[HOME] GET_LATESTCALLS', - SHOW_CALLNOTESMODAL = '[HOME] SHOW_CALLNOTESMODAL', - OPEN_CALLNOTESMODAL = '[HOME] OPEN_CALLNOTESMODAL', - SAVE_CALLNOTE = '[HOME] SAVE_CALLNOTE', - SAVE_CALLNOTE_SUCCESS = '[HOME] SAVE_CALLNOTE_SUCCESS', - SAVE_CALLNOTE_FAIL = '[HOME] SAVE_CALLNOTE_FAIL', - SHOW_CALLIMAGESMODAL = '[HOME] SHOW_CALLIMAGESMODAL', - OPEN_CALLIMAGESMODAL = '[HOME] OPEN_CALLIMAGESMODAL', - UPLOAD_CALLIMAGE = '[HOME] UPLOAD_CALLIMAGE', - UPLOAD_CALLIMAGE_SUCCESS = '[HOME] UPLOAD_CALLIMAGE_SUCCESS', - UPLOAD_CALLIMAGE_FAIL = '[HOME] UPLOAD_CALLIMAGE_FAIL', - SHOW_CALLFILESMODAL = '[HOME] SHOW_CALLFILESMODAL', - OPEN_CALLFILESMODAL = '[HOME] OPEN_CALLFILESMODAL', - UPLOAD_CALLFILE = '[HOME] UPLOAD_CALLFILE', - UPLOAD_CALLFILE_SUCCESS = '[HOME] UPLOAD_CALLFILE_SUCCESS', - UPLOAD_CALLFILE_FAIL = '[HOME] UPLOAD_CALLFILE_FAIL', - UPDATE_PERSONANDUNITS_DISTANCE = '[HOME] UPDATE_PERSONANDUNITS_DISTANCE', - GET_UPDATEDPERSONANDUNITS_DISTANCE = '[HOME] GET_UPDATEDPERSONANDUNITS_DISTANCE', - OPEN_CALLFORMMODAL = '[HOME] OPEN_CALLFORMMODAL', - SET_NEWCALLFORMDATA = '[HOME] SET_NEWCALLFORMDATA', - DONE = '[HOME] DONE', - OPEN_SETPERSONSTATUSMODAL = '[HOME] OPEN_SETPERSONSTATUSMODAL', - UPDATE_SELECTPERSON = '[HOME] UPDATE_SELECTPERSON', - OPEN_SETPERSONSTAFFINGMODAL = '[HOME] OPEN_SETPERSONSTAFFINGMODAL', - SAVE_PERSONSTATUSES = '[HOME] SAVE_PERSONSTATUSES', - SAVE_PERSONSTATUSES_SUCCESS = '[HOME] SAVE_PERSONSTATUSES_SUCCESS', - SAVE_PERSONSTATUSES_FAIL = '[HOME] SAVE_PERSONSTATUSES_FAIL', - UPDATE_PERSONSTATUSES = '[HOME] UPDATE_PERSONSTATUSES', - SAVE_PERSONSTAFFING = '[HOME] SAVE_PERSONSTAFFING', - SAVE_PERSONSTAFFING_SUCCESS = '[HOME] SAVE_PERSONSTAFFING_SUCCESS', - SAVE_PERSONSTAFFING_FAIL = '[HOME] SAVE_PERSONSTAFFING_FAIL', - UPDATE_PERSONSTAFFING = '[HOME] UPDATE_PERSONSTAFFING', - SHOW_VIEW_CALL_FORM = '[HOME] SHOW_VIEW_CALL_FORM', - OPEN_VIEW_CALL_FORM = '[HOME] OPEN_VIEW_CALL_FORM', - SAVE_CALL_FORM_INVALID = '[HOME] SAVE_CALL_FORM_INVALID', + LOADING = "[HOME] LOADING", + LOADING_SUCCESS = "[HOME] LOADING_SUCCESS", + LOADING_FAIL = "[HOME] LOADING_FAIL", + LOADING_MAP = "[HOME] LOADING MAP", + LOADING_MAP_SUCCESS = "[HOME] LOADING_MAP_SUCCESS", + LOADING_MAP_FAIL = "[HOME] LOADING_MAP_FAIL", + SHOW_SETUNITSTATUSMODAL = "[HOME] SHOW_SETUNITSTATUSMODAL", + OPEN_SETUNITSTATUSMODAL = "[HOME] OPEN_SETUNITSTATUSMODAL", + SAVING_SETUNITSTATUSMODAL = "[HOME] SAVING_SETUNITSTATUSMODAL", + SAVE_UNITSTATE = "[HOME] SAVE_UNITSTATE", + SAVE_UNITSTATE_SUCCESS = "[HOME] SAVE_UNITSTATE_SUCCESS", + SAVE_UNITSTATE_FAIL = "[HOME] SAVE_UNITSTATE_FAIL", + GET_LATESTUNITSTATES = "[HOME] GET_LATESTUNITSTATES", + UPDATE_UNITSTATES = "[HOME] UPDATE_UNITSTATES", + UPDATE_SELECTUNIT = "[HOME] UPDATE_SELECTUNIT", + UPDATE_SELECTEDCALL = "[HOME] UPDATE_SELECTEDCALL", + SAVE_CLOSECALL = "[HOME] SAVE_CLOSECALL", + SAVE_CLOSECALL_SUCCESS = "[HOME] SAVE_CLOSECALL_SUCCESS", + SAVE_CLOSECALL_FAIL = "[HOME] SAVE_CLOSECALL_FAIL", + SHOW_CLOSECALLMODAL = "[HOME] SHOW_CLOSECALLMODAL", + UPDATE_CALLS = "[HOME] UPDATE_CALLS", + UPDATE_SELECTEDDISPATCHPERSON = "[HOME] UPDATE_SELECTEDDISPATCHPERSON", + UPDATE_SELECTEDDISPATCHGROUP = "[HOME] UPDATE_SELECTEDDISPATCHGROUP", + UPDATE_SELECTEDDISPATCHROLE = "[HOME] UPDATE_SELECTEDDISPATCHROLE", + UPDATE_SELECTEDDISPATCHUNIT = "[HOME] UPDATE_SELECTEDDISPATCHUNIT", + UPDATE_NEWCALLLOCATION = "[HOME] UPDATE_NEWCALLLOCATION", + SHOW_SELECTCALLTEMPLATEMODAL = "[HOME] SHOW_SELECTCALLTEMPLATEMODAL", + OPEN_SELECTCALLTEMPLATEMODAL = "[HOME] OPEN_SELECTCALLTEMPLATEMODAL", + UPDATE_APPLYCALLTEMPLATE = "[HOME] UPDATE_APPLYCALLTEMPLATE", + GET_COORDINATESFORADDRESS = "[HOME] GET_COORDINATESFORADDRESS", + GET_COORDINATESFORADDRESS_SUCCESS = "[HOME] GET_COORDINATESFORADDRESS_SUCCESS", + GET_COORDINATESFORADDRESS_FAIL = "[HOME] GET_COORDINATESFORADDRESS_FAIL", + GET_ADDRESSFORCOORDINATES = "[HOME] GET_ADDRESSFORCOORDINATES", + GET_ADDRESSFORCOORDINATES_SUCCESS = "[HOME] GET_ADDRESSFORCOORDINATES_SUCCESS", + GET_ADDRESSFORCOORDINATES_FAIL = "[HOME] GET_ADDRESSFORCOORDINATES_FAIL", + SAVE_CALL = "[HOME] SAVE_CALL", + SAVE_CALL_START = "[HOME] SAVE_CALL_START", + SAVE_CALL_SUCCESS = "[HOME] SAVE_CALL_SUCCESS", + SAVE_CALL_FAIL = "[HOME] SAVE_CALL_FAIL", + GENERAL_FAILURE = "[HOME] GENERAL_FAILURE", + GET_LATESTPERSONNELDATA = "[HOME] GET_LATESTPERSONNELDATA", + UPDATE_PERSONNELDATA = "[HOME] UPDATE_PERSONNELDATA", + GET_LATESTCALLS = "[HOME] GET_LATESTCALLS", + SHOW_CALLNOTESMODAL = "[HOME] SHOW_CALLNOTESMODAL", + OPEN_CALLNOTESMODAL = "[HOME] OPEN_CALLNOTESMODAL", + SAVE_CALLNOTE = "[HOME] SAVE_CALLNOTE", + SAVE_CALLNOTE_SUCCESS = "[HOME] SAVE_CALLNOTE_SUCCESS", + SAVE_CALLNOTE_FAIL = "[HOME] SAVE_CALLNOTE_FAIL", + SHOW_CALLIMAGESMODAL = "[HOME] SHOW_CALLIMAGESMODAL", + OPEN_CALLIMAGESMODAL = "[HOME] OPEN_CALLIMAGESMODAL", + UPLOAD_CALLIMAGE = "[HOME] UPLOAD_CALLIMAGE", + UPLOAD_CALLIMAGE_SUCCESS = "[HOME] UPLOAD_CALLIMAGE_SUCCESS", + UPLOAD_CALLIMAGE_FAIL = "[HOME] UPLOAD_CALLIMAGE_FAIL", + SHOW_CALLFILESMODAL = "[HOME] SHOW_CALLFILESMODAL", + OPEN_CALLFILESMODAL = "[HOME] OPEN_CALLFILESMODAL", + UPLOAD_CALLFILE = "[HOME] UPLOAD_CALLFILE", + UPLOAD_CALLFILE_SUCCESS = "[HOME] UPLOAD_CALLFILE_SUCCESS", + UPLOAD_CALLFILE_FAIL = "[HOME] UPLOAD_CALLFILE_FAIL", + UPDATE_PERSONANDUNITS_DISTANCE = "[HOME] UPDATE_PERSONANDUNITS_DISTANCE", + GET_UPDATEDPERSONANDUNITS_DISTANCE = "[HOME] GET_UPDATEDPERSONANDUNITS_DISTANCE", + OPEN_CALLFORMMODAL = "[HOME] OPEN_CALLFORMMODAL", + SET_NEWCALLFORMDATA = "[HOME] SET_NEWCALLFORMDATA", + DONE = "[HOME] DONE", + OPEN_SETPERSONSTATUSMODAL = "[HOME] OPEN_SETPERSONSTATUSMODAL", + UPDATE_SELECTPERSON = "[HOME] UPDATE_SELECTPERSON", + OPEN_SETPERSONSTAFFINGMODAL = "[HOME] OPEN_SETPERSONSTAFFINGMODAL", + SAVE_PERSONSTATUSES = "[HOME] SAVE_PERSONSTATUSES", + SAVE_PERSONSTATUSES_SUCCESS = "[HOME] SAVE_PERSONSTATUSES_SUCCESS", + SAVE_PERSONSTATUSES_FAIL = "[HOME] SAVE_PERSONSTATUSES_FAIL", + UPDATE_PERSONSTATUSES = "[HOME] UPDATE_PERSONSTATUSES", + SAVE_PERSONSTAFFING = "[HOME] SAVE_PERSONSTAFFING", + SAVE_PERSONSTAFFING_SUCCESS = "[HOME] SAVE_PERSONSTAFFING_SUCCESS", + SAVE_PERSONSTAFFING_FAIL = "[HOME] SAVE_PERSONSTAFFING_FAIL", + UPDATE_PERSONSTAFFING = "[HOME] UPDATE_PERSONSTAFFING", + SHOW_VIEW_CALL_FORM = "[HOME] SHOW_VIEW_CALL_FORM", + OPEN_VIEW_CALL_FORM = "[HOME] OPEN_VIEW_CALL_FORM", + SAVE_CALL_FORM_INVALID = "[HOME] SAVE_CALL_FORM_INVALID", } // Home @@ -107,7 +117,6 @@ export class LoadingFail implements Action { constructor(public payload: string) {} } - // Map export class LoadingMap implements Action { readonly type = HomeActionTypes.LOADING_MAP; @@ -167,17 +176,26 @@ export class UpdateUnitStates implements Action { export class UpdateSelectUnit implements Action { readonly type = HomeActionTypes.UPDATE_SELECTUNIT; - constructor(public unitId: string, public checked: boolean) {} + constructor( + public unitId: string, + public checked: boolean, + ) {} } export class UpdateSelectPerson implements Action { readonly type = HomeActionTypes.UPDATE_SELECTPERSON; - constructor(public userId: string, public checked: boolean) {} + constructor( + public userId: string, + public checked: boolean, + ) {} } export class UpdateSelectedCall implements Action { readonly type = HomeActionTypes.UPDATE_SELECTEDCALL; - constructor(public callId: string, public checked: boolean) {} + constructor( + public callId: string, + public checked: boolean, + ) {} } export class SavingCloseCall implements Action { @@ -207,27 +225,42 @@ export class UpdateCalls implements Action { export class UpdateSelectedDispatchPerson implements Action { readonly type = HomeActionTypes.UPDATE_SELECTEDDISPATCHPERSON; - constructor(public userId: string, public checked: boolean) {} + constructor( + public userId: string, + public checked: boolean, + ) {} } export class UpdateSelectedDispatchGroup implements Action { readonly type = HomeActionTypes.UPDATE_SELECTEDDISPATCHGROUP; - constructor(public groupId: string, public checked: boolean) {} + constructor( + public groupId: string, + public checked: boolean, + ) {} } export class UpdateSelectedDispatchRole implements Action { readonly type = HomeActionTypes.UPDATE_SELECTEDDISPATCHROLE; - constructor(public roleId: string, public checked: boolean) {} + constructor( + public roleId: string, + public checked: boolean, + ) {} } export class UpdateSelectedDispatchRoleUnit implements Action { readonly type = HomeActionTypes.UPDATE_SELECTEDDISPATCHUNIT; - constructor(public unitId: string, public checked: boolean) {} + constructor( + public unitId: string, + public checked: boolean, + ) {} } export class UpdateNewCallLocation implements Action { readonly type = HomeActionTypes.UPDATE_NEWCALLLOCATION; - constructor(public latitude: number, public longitude: number) {} + constructor( + public latitude: number, + public longitude: number, + ) {} } export class ShowSelectCallTemplateModal implements Action { @@ -262,7 +295,10 @@ export class GetCoordinatesForAddressFail implements Action { export class GetAddressForCoordinates implements Action { readonly type = HomeActionTypes.GET_ADDRESSFORCOORDINATES; - constructor(public latitude: string, public longitude: string) {} + constructor( + public latitude: string, + public longitude: string, + ) {} } export class GetAddressForCoordinatesSuccess implements Action { @@ -327,7 +363,11 @@ export class OpenCallNotesModal implements Action { export class SaveCallNote implements Action { readonly type = HomeActionTypes.SAVE_CALLNOTE; - constructor(public callId: string, public callNote: string, public userId: string) {} + constructor( + public callId: string, + public callNote: string, + public userId: string, + ) {} } export class SaveCallNoteSuccess implements Action { @@ -352,7 +392,12 @@ export class OpenCallImagesModal implements Action { export class UploadCallImage implements Action { readonly type = HomeActionTypes.UPLOAD_CALLIMAGE; - constructor(public callId: string, public userId: string, public name: string, public image: string) {} + constructor( + public callId: string, + public userId: string, + public name: string, + public image: string, + ) {} } export class UploadCallImageSuccess implements Action { @@ -377,7 +422,12 @@ export class OpenCallFilesModal implements Action { export class UploadCallFile implements Action { readonly type = HomeActionTypes.UPLOAD_CALLFILE; - constructor(public callId: string, public userId: string, public name: string, public image: string) {} + constructor( + public callId: string, + public userId: string, + public name: string, + public image: string, + ) {} } export class UploadCallFileSuccess implements Action { @@ -392,12 +442,19 @@ export class UploadCallFileFail implements Action { export class UpdatePersonnelandUnitsDistancesToCall implements Action { readonly type = HomeActionTypes.UPDATE_PERSONANDUNITS_DISTANCE; - constructor(public personnel: PersonnelForCallResult[], public units: UnitStatusResult[]) {} + constructor( + public personnel: PersonnelForCallResult[], + public units: UnitStatusResult[], + ) {} } export class GetUpdatedPersonnelandUnitsDistancesToCall implements Action { readonly type = HomeActionTypes.GET_UPDATEDPERSONANDUNITS_DISTANCE; - constructor(public callLocation: GpsLocation, public personnel: PersonnelForCallResult[], public units: UnitStatusResult[]) {} + constructor( + public callLocation: GpsLocation, + public personnel: PersonnelForCallResult[], + public units: UnitStatusResult[], + ) {} } export class OpenCallFormModal implements Action { @@ -480,19 +537,77 @@ export class Done implements Action { constructor() {} } -export type HomeActionsUnion = Loading | LoadingSuccess | LoadingFail | LoadingMap | LoadingMapSuccess | LoadingMapFail | - ShowSetUnitStateModal | OpenSetUnitStateModal | SavingSetUnitState | SavingUnitState | SavingUnitStateSuccess | - SavingUnitStateFail | UpdateUnitStates | UpdateSelectUnit | UpdateSelectedCall | SavingCloseCall | - SavingCloseCallSuccess | SavingCloseCallFail | ShowCloseCallModal | UpdateCalls | UpdateSelectedDispatchPerson | - UpdateSelectedDispatchGroup | UpdateSelectedDispatchRole | UpdateSelectedDispatchRoleUnit | UpdateNewCallLocation | - ShowSelectCallTemplateModal | OpenSelectCallTemplateModal | ApplyCallTemplate | GetCoordinatesForAddress | - GetCoordinatesForAddressSuccess | GetCoordinatesForAddressFail | SaveCall | SaveCallSuccess | SaveCallFail | - GetLatestUnitStates | GeneralNetworkFailure | GetLatestPersonnelData | UpdatePersonnelData | GetLatestCalls | - ShowCallNotesModal | OpenCallNotesModal | SaveCallNote | SaveCallNoteSuccess | SaveCallNoteFail | ShowCallImagesModal | - OpenCallImagesModal | UploadCallImage | UploadCallImageSuccess | UploadCallImageFail | ShowCallFilesModal | - OpenCallFilesModal | UpdatePersonnelandUnitsDistancesToCall | GetUpdatedPersonnelandUnitsDistancesToCall | - OpenCallFormModal | SetNewCallFormData | IsSavingCall | Done | UpdateSelectPerson | OpenSetPersonStatusModal | - OpenSetPersonStaffingModal | SavingPersonStatuses | UpdatePersonStatuses | SavingPersonStaffing | SavingPersonStaffing | - SavingPersonStaffingSuccess | SavingPersonStaffingFail | UpdatePersonStaffings | GetAddressForCoordinates | - GetAddressForCoordinatesSuccess | GetAddressForCoordinatesFail | ShowViewCallForm | OpenViewCallForm | SaveCallFormInvalid - ; +export type HomeActionsUnion = + | Loading + | LoadingSuccess + | LoadingFail + | LoadingMap + | LoadingMapSuccess + | LoadingMapFail + | ShowSetUnitStateModal + | OpenSetUnitStateModal + | SavingSetUnitState + | SavingUnitState + | SavingUnitStateSuccess + | SavingUnitStateFail + | UpdateUnitStates + | UpdateSelectUnit + | UpdateSelectedCall + | SavingCloseCall + | SavingCloseCallSuccess + | SavingCloseCallFail + | ShowCloseCallModal + | UpdateCalls + | UpdateSelectedDispatchPerson + | UpdateSelectedDispatchGroup + | UpdateSelectedDispatchRole + | UpdateSelectedDispatchRoleUnit + | UpdateNewCallLocation + | ShowSelectCallTemplateModal + | OpenSelectCallTemplateModal + | ApplyCallTemplate + | GetCoordinatesForAddress + | GetCoordinatesForAddressSuccess + | GetCoordinatesForAddressFail + | SaveCall + | SaveCallSuccess + | SaveCallFail + | GetLatestUnitStates + | GeneralNetworkFailure + | GetLatestPersonnelData + | UpdatePersonnelData + | GetLatestCalls + | ShowCallNotesModal + | OpenCallNotesModal + | SaveCallNote + | SaveCallNoteSuccess + | SaveCallNoteFail + | ShowCallImagesModal + | OpenCallImagesModal + | UploadCallImage + | UploadCallImageSuccess + | UploadCallImageFail + | ShowCallFilesModal + | OpenCallFilesModal + | UpdatePersonnelandUnitsDistancesToCall + | GetUpdatedPersonnelandUnitsDistancesToCall + | OpenCallFormModal + | SetNewCallFormData + | IsSavingCall + | Done + | UpdateSelectPerson + | OpenSetPersonStatusModal + | OpenSetPersonStaffingModal + | SavingPersonStatuses + | UpdatePersonStatuses + | SavingPersonStaffing + | SavingPersonStaffing + | SavingPersonStaffingSuccess + | SavingPersonStaffingFail + | UpdatePersonStaffings + | GetAddressForCoordinates + | GetAddressForCoordinatesSuccess + | GetAddressForCoordinatesFail + | ShowViewCallForm + | OpenViewCallForm + | SaveCallFormInvalid; diff --git a/src/app/features/home/components/calls-list/calls-list.html b/src/app/features/home/components/calls-list/calls-list.html index 281c686..7c89b54 100644 --- a/src/app/features/home/components/calls-list/calls-list.html +++ b/src/app/features/home/components/calls-list/calls-list.html @@ -1 +1 @@ -
\ No newline at end of file +
diff --git a/src/app/features/home/components/calls-list/calls-list.ts b/src/app/features/home/components/calls-list/calls-list.ts index 7401409..702dc47 100644 --- a/src/app/features/home/components/calls-list/calls-list.ts +++ b/src/app/features/home/components/calls-list/calls-list.ts @@ -1,18 +1,15 @@ -import { Component, OnInit, Input } from '@angular/core'; -import { HomeState } from '../../store/home.store'; +import { Component, OnInit, Input } from "@angular/core"; +import { HomeState } from "../../store/home.store"; @Component({ - selector: 'app-calls-list', - templateUrl: './calls-list.html', - styleUrls: ['./calls-list.scss'], + selector: "app-calls-list", + templateUrl: "./calls-list.html", + styleUrls: ["./calls-list.scss"], }) export class CallsListComponent implements OnInit { @Input() state: HomeState; constructor() {} - ngOnInit() { - - } - + ngOnInit() {} } diff --git a/src/app/features/home/components/digital-clock/calendar.constants.ts b/src/app/features/home/components/digital-clock/calendar.constants.ts index 9e2b303..9962105 100644 --- a/src/app/features/home/components/digital-clock/calendar.constants.ts +++ b/src/app/features/home/components/digital-clock/calendar.constants.ts @@ -1,45 +1,29 @@ -const DAYS_SHORT = [ - 'MON' - , 'TUE' - , 'WED' - , 'THU' - , 'FRI' - , 'SAT' - , 'SUN' -]; +const DAYS_SHORT = ["MON", "TUE", "WED", "THU", "FRI", "SAT", "SUN"]; /** -* @constant -*/ -const DAYS_LONG = [ - 'MONDAY' - , 'TUESDAY' - , 'WEDNESDAY' - , 'THURSDAY' - , 'FRIDAY' - , 'SATURDAY' - , 'SUNDAY' -]; + * @constant + */ +const DAYS_LONG = ["MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"]; /** -* @constant -*/ + * @constant + */ const CLASS_LIST = { - 0 : 'zero' - , 1 : 'one' - , 2 : 'two' - , 3 : 'three' - , 4 : 'four' - , 5 : 'five' - , 6 : 'six' - , 7 : 'seven' - , 8 : 'eight' - , 9 : 'nine' - , ':' : 'dots' - , 'dots': ':' + 0: "zero", + 1: "one", + 2: "two", + 3: "three", + 4: "four", + 5: "five", + 6: "six", + 7: "seven", + 8: "eight", + 9: "nine", + ":": "dots", + dots: ":", }; /** -* @exports -*/ + * @exports + */ export { CLASS_LIST, DAYS_LONG, DAYS_SHORT }; diff --git a/src/app/features/home/components/digital-clock/digital-clock.component.html b/src/app/features/home/components/digital-clock/digital-clock.component.html index 4dee03e..6e46fc0 100644 --- a/src/app/features/home/components/digital-clock/digital-clock.component.html +++ b/src/app/features/home/components/digital-clock/digital-clock.component.html @@ -1,26 +1,26 @@
-
-
-
    -
  • {{day}}
  • -
-
-
-
- -
-
- -
-
-
-
    -
  • {{m}}
  • -
-
-
-
-
{{monthYear}}
+
+
+
    +
  • {{ day }}
  • +
+
+
+
+ +
+
+
+
+
+
    +
  • {{ m }}
  • +
+
+
+
+
{{ monthYear }}
-
\ No newline at end of file +
+
diff --git a/src/app/features/home/components/digital-clock/digital-clock.component.scss b/src/app/features/home/components/digital-clock/digital-clock.component.scss index 651c376..c3586f4 100644 --- a/src/app/features/home/components/digital-clock/digital-clock.component.scss +++ b/src/app/features/home/components/digital-clock/digital-clock.component.scss @@ -1,191 +1,276 @@ .clock-display { - .clock-meridian, - .clock-weekdays-block .day-block { - opacity: 0.3; - list-style-type: none; - - &.active { - opacity: 1; - font-weight: bold; - } + .clock-meridian, + .clock-weekdays-block .day-block { + opacity: 0.3; + list-style-type: none; + + &.active { + opacity: 1; + font-weight: bold; } + } - .clock-weekdays-block { - >.day-block { - padding: 0 10px; - display: inline-block; - } + .clock-weekdays-block { + > .day-block { + padding: 0 10px; + display: inline-block; } + } - .small { - font-family: cursive; - font-size: 10px !important; - } + .small { + font-family: cursive; + font-size: 10px !important; + } } -#clock{ - width:370px; - height: 140px; - position:relative; +#clock { + width: 370px; + height: 140px; + position: relative; } -#clock:after{ - content:''; - position:absolute; - width:400px; - height:20px; - border-radius:100%; - left:50%; - margin-left:-200px; - bottom:2px; - z-index:-1; +#clock:after { + content: ""; + position: absolute; + width: 400px; + height: 20px; + border-radius: 100%; + left: 50%; + margin-left: -200px; + bottom: 2px; + z-index: -1; } - -#clock .display{ - text-align:center; - padding: 40px 20px 20px; - border-radius:6px; - position:relative; - height: 75px; +#clock .display { + text-align: center; + padding: 40px 20px 20px; + border-radius: 6px; + position: relative; + height: 75px; } - /*------------------------- Light color theme --------------------------*/ - -#clock.light{ - //background-color:#f3f3f3; - color:#272e38; +#clock.light { + //background-color:#f3f3f3; + color: #272e38; } -#clock.light:after{ - box-shadow:0 4px 10px rgba(0,0,0,0.15); +#clock.light:after { + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); } -#clock.light .digits div span{ - background-color:#272e38; - border-color:#272e38; +#clock.light .digits div span { + background-color: #272e38; + border-color: #272e38; } #clock.light .digits div.dots:before, -#clock.light .digits div.dots:after{ - background-color:#272e38; +#clock.light .digits div.dots:after { + background-color: #272e38; } -#clock.light .alarm{ - // background:url('../img/alarm_light.jpg'); +#clock.light .alarm { + // background:url('../img/alarm_light.jpg'); } -#clock.light .display{ - //background-color:#dddddd; - //box-shadow:0 1px 1px rgba(0,0,0,0.08) inset, 0 1px 1px #fafafa; +#clock.light .display { + //background-color:#dddddd; + //box-shadow:0 1px 1px rgba(0,0,0,0.08) inset, 0 1px 1px #fafafa; } - /*------------------------- Dark color theme --------------------------*/ - -#clock.dark{ - background-color:#272e38; - color:#cacaca; +#clock.dark { + background-color: #272e38; + color: #cacaca; } -#clock.dark:after{ - box-shadow:0 4px 10px rgba(0,0,0,0.3); +#clock.dark:after { + box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); } -#clock.dark .digits div span{ - background-color:#cacaca; - border-color:#cacaca; +#clock.dark .digits div span { + background-color: #cacaca; + border-color: #cacaca; } -#clock.dark .alarm{ - // background:url('../img/alarm_dark.jpg'); +#clock.dark .alarm { + // background:url('../img/alarm_dark.jpg'); } -#clock.dark .display{ - background-color:#0f1620; - box-shadow:0 1px 1px rgba(0,0,0,0.08) inset, 0 1px 1px #2d3642; +#clock.dark .display { + background-color: #0f1620; + box-shadow: + 0 1px 1px rgba(0, 0, 0, 0.08) inset, + 0 1px 1px #2d3642; } #clock.dark .digits div.dots:before, -#clock.dark .digits div.dots:after{ - background-color:#cacaca; +#clock.dark .digits div.dots:after { + background-color: #cacaca; } - /*------------------------- The Digits --------------------------*/ - -#clock .digits div{ - text-align:left; - position:relative; - width: 28px; - height:50px; - display:inline-block; - margin:0 4px; - left: 8px; +#clock .digits div { + text-align: left; + position: relative; + width: 28px; + height: 50px; + display: inline-block; + margin: 0 4px; + left: 8px; } -#clock .digits div span{ - opacity:0; - position:absolute; +#clock .digits div span { + opacity: 0; + position: absolute; - -webkit-transition:0.25s; - -moz-transition:0.25s; - transition:0.25s; + -webkit-transition: 0.25s; + -moz-transition: 0.25s; + transition: 0.25s; } #clock .digits div span:before, -#clock .digits div span:after{ - content:''; - position:absolute; - width:0; - height:0; - border:5px solid transparent; +#clock .digits div span:after { + content: ""; + position: absolute; + width: 0; + height: 0; + border: 5px solid transparent; +} + +#clock .digits .d1 { + height: 5px; + width: 16px; + top: 0; + left: 6px; +} +#clock .digits .d1:before { + border-width: 0 5px 5px 0; + border-right-color: inherit; + left: -5px; +} +#clock .digits .d1:after { + border-width: 0 0 5px 5px; + border-left-color: inherit; + right: -5px; +} + +#clock .digits .d2 { + height: 5px; + width: 16px; + top: 24px; + left: 6px; +} +#clock .digits .d2:before { + border-width: 3px 4px 2px; + border-right-color: inherit; + left: -8px; +} +#clock .digits .d2:after { + border-width: 3px 4px 2px; + border-left-color: inherit; + right: -8px; +} + +#clock .digits .d3 { + height: 5px; + width: 16px; + top: 48px; + left: 6px; +} +#clock .digits .d3:before { + border-width: 5px 5px 0 0; + border-right-color: inherit; + left: -5px; +} +#clock .digits .d3:after { + border-width: 5px 0 0 5px; + border-left-color: inherit; + right: -5px; +} + +#clock .digits .d4 { + width: 5px; + height: 14px; + top: 7px; + left: 0; +} +#clock .digits .d4:before { + border-width: 0 5px 5px 0; + border-bottom-color: inherit; + top: -5px; +} +#clock .digits .d4:after { + border-width: 0 0 5px 5px; + border-left-color: inherit; + bottom: -5px; +} + +#clock .digits .d5 { + width: 5px; + height: 14px; + top: 7px; + right: 0; +} +#clock .digits .d5:before { + border-width: 0 0 5px 5px; + border-bottom-color: inherit; + top: -5px; +} +#clock .digits .d5:after { + border-width: 5px 0 0 5px; + border-top-color: inherit; + bottom: -5px; +} + +#clock .digits .d6 { + width: 5px; + height: 14px; + top: 32px; + left: 0; +} +#clock .digits .d6:before { + border-width: 0 5px 5px 0; + border-bottom-color: inherit; + top: -5px; +} +#clock .digits .d6:after { + border-width: 0 0 5px 5px; + border-left-color: inherit; + bottom: -5px; +} + +#clock .digits .d7 { + width: 5px; + height: 14px; + top: 32px; + right: 0; +} +#clock .digits .d7:before { + border-width: 0 0 5px 5px; + border-bottom-color: inherit; + top: -5px; +} +#clock .digits .d7:after { + border-width: 5px 0 0 5px; + border-top-color: inherit; + bottom: -5px; } - -#clock .digits .d1{ height:5px;width:16px;top:0;left:6px;} -#clock .digits .d1:before{ border-width:0 5px 5px 0;border-right-color:inherit;left:-5px;} -#clock .digits .d1:after{ border-width:0 0 5px 5px;border-left-color:inherit;right:-5px;} - -#clock .digits .d2{ height:5px;width:16px;top:24px;left:6px;} -#clock .digits .d2:before{ border-width:3px 4px 2px;border-right-color:inherit;left:-8px;} -#clock .digits .d2:after{ border-width:3px 4px 2px;border-left-color:inherit;right:-8px;} - -#clock .digits .d3{ height:5px;width:16px;top:48px;left:6px;} -#clock .digits .d3:before{ border-width:5px 5px 0 0;border-right-color:inherit;left:-5px;} -#clock .digits .d3:after{ border-width:5px 0 0 5px;border-left-color:inherit;right:-5px;} - -#clock .digits .d4{ width:5px;height:14px;top:7px;left:0;} -#clock .digits .d4:before{ border-width:0 5px 5px 0;border-bottom-color:inherit;top:-5px;} -#clock .digits .d4:after{ border-width:0 0 5px 5px;border-left-color:inherit;bottom:-5px;} - -#clock .digits .d5{ width:5px;height:14px;top:7px;right:0;} -#clock .digits .d5:before{ border-width:0 0 5px 5px;border-bottom-color:inherit;top:-5px;} -#clock .digits .d5:after{ border-width:5px 0 0 5px;border-top-color:inherit;bottom:-5px;} - -#clock .digits .d6{ width:5px;height:14px;top:32px;left:0;} -#clock .digits .d6:before{ border-width:0 5px 5px 0;border-bottom-color:inherit;top:-5px;} -#clock .digits .d6:after{ border-width:0 0 5px 5px;border-left-color:inherit;bottom:-5px;} - -#clock .digits .d7{ width:5px;height:14px;top:32px;right:0;} -#clock .digits .d7:before{ border-width:0 0 5px 5px;border-bottom-color:inherit;top:-5px;} -#clock .digits .d7:after{ border-width:5px 0 0 5px;border-top-color:inherit;bottom:-5px;} - /* 1 */ #clock .digits div.one .d5, -#clock .digits div.one .d7{ - opacity:1; +#clock .digits div.one .d7 { + opacity: 1; } /* 2 */ @@ -194,8 +279,8 @@ #clock .digits div.two .d5, #clock .digits div.two .d2, #clock .digits div.two .d6, -#clock .digits div.two .d3{ - opacity:1; +#clock .digits div.two .d3 { + opacity: 1; } /* 3 */ @@ -204,8 +289,8 @@ #clock .digits div.three .d5, #clock .digits div.three .d2, #clock .digits div.three .d7, -#clock .digits div.three .d3{ - opacity:1; +#clock .digits div.three .d3 { + opacity: 1; } /* 4 */ @@ -213,8 +298,8 @@ #clock .digits div.four .d5, #clock .digits div.four .d2, #clock .digits div.four .d4, -#clock .digits div.four .d7{ - opacity:1; +#clock .digits div.four .d7 { + opacity: 1; } /* 5 */ @@ -223,8 +308,8 @@ #clock .digits div.five .d2, #clock .digits div.five .d4, #clock .digits div.five .d3, -#clock .digits div.five .d7{ - opacity:1; +#clock .digits div.five .d7 { + opacity: 1; } /* 6 */ @@ -234,17 +319,16 @@ #clock .digits div.six .d4, #clock .digits div.six .d3, #clock .digits div.six .d6, -#clock .digits div.six .d7{ - opacity:1; +#clock .digits div.six .d7 { + opacity: 1; } - /* 7 */ #clock .digits div.seven .d1, #clock .digits div.seven .d5, -#clock .digits div.seven .d7{ - opacity:1; +#clock .digits div.seven .d7 { + opacity: 1; } /* 8 */ @@ -255,8 +339,8 @@ #clock .digits div.eight .d4, #clock .digits div.eight .d5, #clock .digits div.eight .d6, -#clock .digits div.eight .d7{ - opacity:1; +#clock .digits div.eight .d7 { + opacity: 1; } /* 9 */ @@ -266,8 +350,8 @@ #clock .digits div.nine .d3, #clock .digits div.nine .d4, #clock .digits div.nine .d5, -#clock .digits div.nine .d7{ - opacity:1; +#clock .digits div.nine .d7 { + opacity: 1; } /* 0 */ @@ -277,81 +361,73 @@ #clock .digits div.zero .d4, #clock .digits div.zero .d5, #clock .digits div.zero .d6, -#clock .digits div.zero .d7{ - opacity:1; +#clock .digits div.zero .d7 { + opacity: 1; } - /* The dots */ -#clock .digits div.dots{ - width:5px; +#clock .digits div.dots { + width: 5px; } #clock .digits div.dots:before, -#clock .digits div.dots:after{ - width:5px; - height:5px; - content:''; - position:absolute; - left:0; - top:14px; +#clock .digits div.dots:after { + width: 5px; + height: 5px; + content: ""; + position: absolute; + left: 0; + top: 14px; } -#clock .digits div.dots:after{ - top:34px; +#clock .digits div.dots:after { + top: 34px; } - /*------------------------- The Alarm --------------------------*/ - -#clock .alarm{ - width:16px; - height:16px; - bottom:20px; - //background:url('../img/alarm_light.jpg'); - position:absolute; - opacity:0.2; +#clock .alarm { + width: 16px; + height: 16px; + bottom: 20px; + //background:url('../img/alarm_light.jpg'); + position: absolute; + opacity: 0.2; } -#clock .alarm.active{ - opacity:1; +#clock .alarm.active { + opacity: 1; } - /*------------------------- Weekdays --------------------------*/ - -#clock .weekdays{ - font-size:12px; - position:absolute; - width:100%; - top:10px; - left:0; - text-align:center; +#clock .weekdays { + font-size: 12px; + position: absolute; + width: 100%; + top: 10px; + left: 0; + text-align: center; } - -#clock .weekdays span{ - opacity:0.2; - padding:0 10px; +#clock .weekdays span { + opacity: 0.2; + padding: 0 10px; } -#clock .weekdays span.active{ - opacity:1; +#clock .weekdays span.active { + opacity: 1; } - /*------------------------- AM/PM --------------------------*/ - #clock .ampm { - font-size:12px; + font-size: 12px; } diff --git a/src/app/features/home/components/digital-clock/digital-clock.component.ts b/src/app/features/home/components/digital-clock/digital-clock.component.ts index d1534dd..55eff91 100644 --- a/src/app/features/home/components/digital-clock/digital-clock.component.ts +++ b/src/app/features/home/components/digital-clock/digital-clock.component.ts @@ -1,14 +1,14 @@ // From https://github.com/Mohammed9531/ngx-digital-clock -import { Subscription, timer } from 'rxjs'; -import { Component, OnInit, OnDestroy, Input } from '@angular/core'; -import { DAYS_SHORT, CLASS_LIST } from './calendar.constants'; -import { UtilsProvider } from 'src/app/providers/utils'; +import { Subscription, timer } from "rxjs"; +import { Component, OnInit, OnDestroy, Input } from "@angular/core"; +import { DAYS_SHORT, CLASS_LIST } from "./calendar.constants"; +import { UtilsProvider } from "src/app/providers/utils"; @Component({ - selector: 'app-digital-clock', - templateUrl: './digital-clock.component.html', - styleUrls: ['./digital-clock.component.scss'] + selector: "app-digital-clock", + templateUrl: "./digital-clock.component.html", + styleUrls: ["./digital-clock.component.scss"], }) export class DigitalClockComponent implements OnInit, OnDestroy { /** @@ -58,7 +58,7 @@ export class DigitalClockComponent implements OnInit, OnDestroy { * @param: {util} */ constructor(private util: UtilsProvider) { - this.borders = 'd1 d2 d3 d4 d5 d6 d7'.split(' '); + this.borders = "d1 d2 d3 d4 d5 d6 d7".split(" "); this._init(); } @@ -70,10 +70,9 @@ export class DigitalClockComponent implements OnInit, OnDestroy { */ public ngOnInit(): void { this.subscriptions.push( - timer(0, 1000) - .subscribe((t) => { - this._init(); - }) + timer(0, 1000).subscribe((t) => { + this._init(); + }), ); } @@ -85,14 +84,14 @@ export class DigitalClockComponent implements OnInit, OnDestroy { */ private _init(): void { const now: Date = new Date(); - const t: string[] = now.toLocaleTimeString().split(' '); + const t: string[] = now.toLocaleTimeString().split(" "); if (Array.isArray(t) && t[0]) { let digits: any = t[0] - .split(':') - .map(v => this.util.to2Digit(v)) - .join(':') - .split(''); + .split(":") + .map((v) => this.util.to2Digit(v)) + .join(":") + .split(""); this.timeFormatList = []; for (const i of digits) { @@ -111,21 +110,19 @@ export class DigitalClockComponent implements OnInit, OnDestroy { * the calendar. */ private _run(_meridian: string): void { - const d: string[] = (new Date()) - .toDateString() - .split(' '); + const d: string[] = new Date().toDateString().split(" "); // toggles the dots this.displayDots = !this.displayDots; // sets the day today - this.today = (d[0] || '').toUpperCase(); + this.today = (d[0] || "").toUpperCase(); // sets the month & year this.monthYear = `${d[1]} ${d[2]}, ${d[3]}`; // sets am/pm - this.meridian = (_meridian || '').toUpperCase(); + this.meridian = (_meridian || "").toUpperCase(); } /** diff --git a/src/app/features/home/components/unitsList/units-list.html b/src/app/features/home/components/unitsList/units-list.html index 281c686..7c89b54 100644 --- a/src/app/features/home/components/unitsList/units-list.html +++ b/src/app/features/home/components/unitsList/units-list.html @@ -1 +1 @@ -
\ No newline at end of file +
diff --git a/src/app/features/home/components/unitsList/units-list.ts b/src/app/features/home/components/unitsList/units-list.ts index 7549ca3..33789c4 100644 --- a/src/app/features/home/components/unitsList/units-list.ts +++ b/src/app/features/home/components/unitsList/units-list.ts @@ -1,18 +1,16 @@ -import { Component, OnInit, Input } from '@angular/core'; -import { HomeState } from '../../store/home.store'; +import { Component, OnInit, Input } from "@angular/core"; +import { HomeState } from "../../store/home.store"; @Component({ - selector: 'app-units-list', - templateUrl: './units-list.html', - styleUrls: ['./units-list.scss'], + selector: "app-units-list", + templateUrl: "./units-list.html", + styleUrls: ["./units-list.scss"], }) export class UnitListComponent implements OnInit { @Input() state: HomeState; data: any; - constructor() { } + constructor() {} - ngOnInit() { - - } + ngOnInit() {} } diff --git a/src/app/features/home/effects/home.effect.ts b/src/app/features/home/effects/home.effect.ts index a816420..911f627 100644 --- a/src/app/features/home/effects/home.effect.ts +++ b/src/app/features/home/effects/home.effect.ts @@ -55,9 +55,9 @@ export class HomeEffects { payload: data, })), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.LOADING_FAIL })) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.LOADING_FAIL })), + ), + ), ); @Effect() @@ -65,7 +65,7 @@ export class HomeEffects { ofType(homeAction.HomeActionTypes.LOADING_SUCCESS), map((data) => ({ type: homeAction.HomeActionTypes.LOADING_MAP, - })) + })), ); @Effect({ dispatch: false }) @@ -76,9 +76,9 @@ export class HomeEffects { this.alertProvider.showErrorAlert( "Unable to load data", "", - "There was an issue trying to fetch the dashboard data, please try again." + "There was an issue trying to fetch the dashboard data, please try again.", ); - }) + }), ); @Effect() @@ -89,15 +89,15 @@ export class HomeEffects { map((data) => ({ type: homeAction.HomeActionTypes.OPEN_SETUNITSTATUSMODAL, payload: data.Data, - })) - ) - ) + })), + ), + ), ); @Effect({ dispatch: false }) openSetUnitStatusModal$: Observable = this.actions$.pipe( ofType(homeAction.HomeActionTypes.OPEN_SETUNITSTATUSMODAL), - exhaustMap((data) => this.runModal(SetUnitStatusModalComponent, "md")) + exhaustMap((data) => this.runModal(SetUnitStatusModalComponent, "md")), ); @Effect() @@ -131,9 +131,9 @@ export class HomeEffects { this.closeModal(); }), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_UNITSTATE_FAIL })) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_UNITSTATE_FAIL })), + ), + ), ); @Effect({ dispatch: false }) @@ -142,7 +142,7 @@ export class HomeEffects { tap(async (action) => { this.closeModal(); this.alertProvider.showErrorAlert("Unit Status Error", "", "There was an issue trying to set the unit status, please try again."); - }) + }), ); @Effect() @@ -159,9 +159,9 @@ export class HomeEffects { this.alertProvider.showAutoCloseSuccessAlert("Unit State has been saved."); }), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_UNITSTATE_FAIL })) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_UNITSTATE_FAIL })), + ), + ), ); @Effect() @@ -175,9 +175,9 @@ export class HomeEffects { payload: data.Data, })), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.GENERAL_FAILURE })) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.GENERAL_FAILURE })), + ), + ), ); @Effect() @@ -193,15 +193,15 @@ export class HomeEffects { type: homeAction.HomeActionTypes.SAVE_CLOSECALL_SUCCESS, })), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_CLOSECALL_FAIL })) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_CLOSECALL_FAIL })), + ), + ), ); @Effect({ dispatch: false }) openCloseCallModal$: Observable = this.actions$.pipe( ofType(homeAction.HomeActionTypes.SHOW_CLOSECALLMODAL), - exhaustMap((data) => this.runModal(CloseCallModalComponent, "md")) + exhaustMap((data) => this.runModal(CloseCallModalComponent, "md")), ); @Effect({ dispatch: false }) @@ -210,7 +210,7 @@ export class HomeEffects { tap(async (action) => { this.closeModal(); this.alertProvider.showErrorAlert("Close Call Error", "", "There was an issue trying to close the call, please try again."); - }) + }), ); @Effect() @@ -227,9 +227,9 @@ export class HomeEffects { this.alertProvider.showAutoCloseSuccessAlert("Call has been closed."); }), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_CLOSECALL_FAIL })) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_CLOSECALL_FAIL })), + ), + ), ); @Effect() @@ -243,9 +243,9 @@ export class HomeEffects { payload: data.Data, })), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.LOADING_MAP_FAIL })) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.LOADING_MAP_FAIL })), + ), + ), ); @Effect({ dispatch: false }) @@ -253,7 +253,7 @@ export class HomeEffects { ofType(homeAction.HomeActionTypes.LOADING_MAP_SUCCESS), tap((action) => { this.loadingProvider.hide(); - }) + }), ); @Effect({ dispatch: false }) @@ -264,9 +264,9 @@ export class HomeEffects { this.alertProvider.showErrorAlert( "Unable to load map data", "", - "There was an issue trying to fetch the map data, please try again." + "There was an issue trying to fetch the map data, please try again.", ); - }) + }), ); @Effect() @@ -277,15 +277,15 @@ export class HomeEffects { map((data) => ({ type: homeAction.HomeActionTypes.OPEN_SELECTCALLTEMPLATEMODAL, payload: data.Data, - })) - ) - ) + })), + ), + ), ); @Effect({ dispatch: false }) openSelectCallTemplateModal$: Observable = this.actions$.pipe( ofType(homeAction.HomeActionTypes.OPEN_SELECTCALLTEMPLATEMODAL), - exhaustMap((data) => this.runModal(SelectTemplateModalComponent, "md")) + exhaustMap((data) => this.runModal(SelectTemplateModalComponent, "md")), ); @Effect({ dispatch: false }) @@ -293,7 +293,7 @@ export class HomeEffects { ofType(homeAction.HomeActionTypes.UPDATE_APPLYCALLTEMPLATE), tap(async (action) => { this.closeModal(); - }) + }), ); @Effect() @@ -311,10 +311,10 @@ export class HomeEffects { catchError(() => of({ type: homeAction.HomeActionTypes.GET_COORDINATESFORADDRESS_FAIL, - }) - ) - ) - ) + }), + ), + ), + ), ); @Effect() @@ -332,10 +332,10 @@ export class HomeEffects { catchError(() => of({ type: homeAction.HomeActionTypes.GET_ADDRESSFORCOORDINATES_FAIL, - }) - ) - ) - ) + }), + ), + ), + ), ); @Effect() @@ -360,7 +360,7 @@ export class HomeEffects { action.call.Longitude, action.call.DispatchList, action.call.DispatchOn, - action.call.FormData + action.call.FormData, ) .pipe( // If successful, dispatch success action with result @@ -368,9 +368,9 @@ export class HomeEffects { type: homeAction.HomeActionTypes.SAVE_CALL_SUCCESS, })), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_CALL_FAIL })) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_CALL_FAIL })), + ), + ), ); @Effect({ dispatch: false }) @@ -379,7 +379,7 @@ export class HomeEffects { tap(async (action) => { this.closeModal(); this.alertProvider.showErrorAlert("Call Save Error", "", "There was an issue trying to save the call, please try again."); - }) + }), ); saveCallSuccess$ = createEffect(() => @@ -396,10 +396,10 @@ export class HomeEffects { this.alertProvider.showAutoCloseSuccessAlert("Call has been saved and dispatched."); }), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_CALL_FAIL })) - ) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_CALL_FAIL })), + ), + ), + ), ); @Effect() @@ -413,9 +413,9 @@ export class HomeEffects { payload: data.Data, })), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.GENERAL_FAILURE })) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.GENERAL_FAILURE })), + ), + ), ); @Effect() @@ -429,9 +429,9 @@ export class HomeEffects { payload: data.Data, })), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.GENERAL_FAILURE })) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.GENERAL_FAILURE })), + ), + ), ); @Effect() @@ -442,15 +442,15 @@ export class HomeEffects { map((data) => ({ type: homeAction.HomeActionTypes.OPEN_CALLNOTESMODAL, payload: data.Data, - })) - ) - ) + })), + ), + ), ); @Effect({ dispatch: false }) openCallNotesModal$: Observable = this.actions$.pipe( ofType(homeAction.HomeActionTypes.OPEN_CALLNOTESMODAL), - exhaustMap((data) => this.runModal(CallNotesModalComponent, "lg")) + exhaustMap((data) => this.runModal(CallNotesModalComponent, "lg")), ); @Effect() @@ -466,9 +466,9 @@ export class HomeEffects { this.closeModal(); }), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_CALLNOTE_FAIL })) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_CALLNOTE_FAIL })), + ), + ), ); @Effect() @@ -479,15 +479,15 @@ export class HomeEffects { map((data) => ({ type: homeAction.HomeActionTypes.OPEN_CALLIMAGESMODAL, payload: data.Data, - })) - ) - ) + })), + ), + ), ); @Effect({ dispatch: false }) openCallImagesModal$: Observable = this.actions$.pipe( ofType(homeAction.HomeActionTypes.OPEN_CALLIMAGESMODAL), - exhaustMap((data) => this.runModal(CallImagesModalComponent, "xl")) + exhaustMap((data) => this.runModal(CallImagesModalComponent, "xl")), ); @Effect() @@ -503,9 +503,9 @@ export class HomeEffects { this.closeModal(); }), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.UPLOAD_CALLIMAGE_FAIL })) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.UPLOAD_CALLIMAGE_FAIL })), + ), + ), ); @Effect() @@ -516,15 +516,15 @@ export class HomeEffects { map((data) => ({ type: homeAction.HomeActionTypes.OPEN_CALLFILESMODAL, payload: data.Data, - })) - ) - ) + })), + ), + ), ); @Effect({ dispatch: false }) openCallFilesModal$: Observable = this.actions$.pipe( ofType(homeAction.HomeActionTypes.OPEN_CALLFILESMODAL), - exhaustMap((data) => this.runModal(CallFilesModalComponent, "lg")) + exhaustMap((data) => this.runModal(CallFilesModalComponent, "lg")), ); @Effect() @@ -540,9 +540,9 @@ export class HomeEffects { this.closeModal(); }), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.UPLOAD_CALLFILE_FAIL })) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.UPLOAD_CALLFILE_FAIL })), + ), + ), ); getUpdatedPersonnelandUnitsDistancesToCall$ = createEffect(() => @@ -566,7 +566,7 @@ export class HomeEffects { const locationParts = person.Location.split(","); const distance = this.locationProvider.getDistanceBetweenTwoPoints( action.callLocation, - new GpsLocation(Number(locationParts[0]), Number(locationParts[1])) + new GpsLocation(Number(locationParts[0]), Number(locationParts[1])), ); if (distance && distance > 0) { @@ -583,7 +583,7 @@ export class HomeEffects { if (unit.Latitude && unit.Longitude) { const distance = this.locationProvider.getDistanceBetweenTwoPoints( action.callLocation, - new GpsLocation(Number(unit.Latitude), Number(unit.Longitude)) + new GpsLocation(Number(unit.Latitude), Number(unit.Longitude)), ); if (distance && distance > 0) { @@ -601,29 +601,29 @@ export class HomeEffects { personnel: personnel, units: units, }; - }) - ) + }), + ), ); @Effect({ dispatch: false }) openCallFormModal$: Observable = this.actions$.pipe( ofType(homeAction.HomeActionTypes.OPEN_CALLFORMMODAL), - exhaustMap((data) => this.runModal(CallFormModalComponent, "xl")) + exhaustMap((data) => this.runModal(CallFormModalComponent, "xl")), ); @Effect({ dispatch: false }) setCallFormData$: Observable = this.actions$.pipe( ofType(homeAction.HomeActionTypes.SET_NEWCALLFORMDATA), - tap((data) => this.closeModal()) + tap((data) => this.closeModal()), ); showSetPersonStatusModal$ = createEffect( () => this.actions$.pipe( ofType(homeAction.HomeActionTypes.OPEN_SETPERSONSTATUSMODAL), - exhaustMap((data) => this.runModal(SetPersonStatusModalComponent, "md")) + exhaustMap((data) => this.runModal(SetPersonStatusModalComponent, "md")), ), - { dispatch: false } + { dispatch: false }, ); savePersonnelStatus$ = createEffect(() => @@ -656,10 +656,10 @@ export class HomeEffects { this.closeModal(); }), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_PERSONSTATUSES_FAIL })) - ) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_PERSONSTATUSES_FAIL })), + ), + ), + ), ); savePersonnelStatusFail$ = createEffect( @@ -671,11 +671,11 @@ export class HomeEffects { this.alertProvider.showErrorAlert( "Personnel Status Error", "", - "There was an issue trying to set the personnel statuses, please try again." + "There was an issue trying to set the personnel statuses, please try again.", ); - }) + }), ), - { dispatch: false } + { dispatch: false }, ); savePersonnelStatusSuccess$ = createEffect(() => @@ -692,19 +692,19 @@ export class HomeEffects { this.alertProvider.showAutoCloseSuccessAlert("Personnel Status have been updated."); }), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_PERSONSTATUSES_FAIL })) - ) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_PERSONSTATUSES_FAIL })), + ), + ), + ), ); showSetPersonStaffingModal$ = createEffect( () => this.actions$.pipe( ofType(homeAction.HomeActionTypes.OPEN_SETPERSONSTAFFINGMODAL), - exhaustMap((data) => this.runModal(SetPersonStaffingModalComponent, "md")) + exhaustMap((data) => this.runModal(SetPersonStaffingModalComponent, "md")), ), - { dispatch: false } + { dispatch: false }, ); savePersonnelStaffing$ = createEffect(() => @@ -729,10 +729,10 @@ export class HomeEffects { this.closeModal(); }), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_PERSONSTAFFING_FAIL })) - ) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_PERSONSTAFFING_FAIL })), + ), + ), + ), ); savePersonnelStaffingSuccess$ = createEffect(() => @@ -749,10 +749,10 @@ export class HomeEffects { this.alertProvider.showAutoCloseSuccessAlert("Personnel Staffings have been updated."); }), // If request fails, dispatch failed action - catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_PERSONSTAFFING_FAIL })) - ) - ) - ) + catchError(() => of({ type: homeAction.HomeActionTypes.SAVE_PERSONSTAFFING_FAIL })), + ), + ), + ), ); showViewCallFormModal$ = createEffect(() => @@ -763,10 +763,10 @@ export class HomeEffects { map((data) => ({ type: homeAction.HomeActionTypes.OPEN_VIEW_CALL_FORM, payload: data.Data, - })) - ) - ) - ) + })), + ), + ), + ), ); openViewCallFormModal$ = createEffect(() => @@ -774,9 +774,9 @@ export class HomeEffects { ofType(homeAction.HomeActionTypes.OPEN_VIEW_CALL_FORM), exhaustMap((data) => this.runModal(ViewCallFormModalComponent, "md")), map((data) => ({ - type: homeAction.HomeActionTypes.DONE - })) - ) + type: homeAction.HomeActionTypes.DONE, + })), + ), ); saveCallFormInvalid$ = createEffect( @@ -784,22 +784,18 @@ export class HomeEffects { this.actions$.pipe( ofType(homeAction.HomeActionTypes.SAVE_CALL_FORM_INVALID), switchMap((action) => this.loadingProvider.hide()), - tap((action) => this.alertProvider.showErrorAlert( - 'Missing Fields', - '', - 'There are fields missing to submit this call.' - )) + tap((action) => this.alertProvider.showErrorAlert("Missing Fields", "", "There are fields missing to submit this call.")), ), - { dispatch: false } + { dispatch: false }, ); done$ = createEffect( () => this.actions$.pipe( ofType(homeAction.HomeActionTypes.DONE), - tap((action) => {}) + tap((action) => {}), ), - { dispatch: false } + { dispatch: false }, ); constructor( @@ -820,7 +816,7 @@ export class HomeEffects { private loadingProvider: LoadingProvider, private personnelStatusesProvider: PersonnelStatusesService, private personnelStaffingProvider: PersonnelStaffingService, - private geocodingProvider: GeocodingProvider + private geocodingProvider: GeocodingProvider, ) {} runModal = (component, size) => { diff --git a/src/app/features/home/home-routing.module.ts b/src/app/features/home/home-routing.module.ts index b854e5f..ebbbf58 100644 --- a/src/app/features/home/home-routing.module.ts +++ b/src/app/features/home/home-routing.module.ts @@ -1,24 +1,24 @@ -import { NgModule } from '@angular/core'; -import { PreloadAllModules, RouterModule, Routes } from '@angular/router'; -import { AuthGuard } from 'src/app/core/guards/auth.guard'; -import { LayoutComponent } from 'src/app/layouts/layout/layout.component'; +import { NgModule } from "@angular/core"; +import { PreloadAllModules, RouterModule, Routes } from "@angular/router"; +import { AuthGuard } from "src/app/core/guards/auth.guard"; +import { LayoutComponent } from "src/app/layouts/layout/layout.component"; const routes: Routes = [ { - path: '', - redirectTo: 'dashboard', - pathMatch: 'full' + path: "", + redirectTo: "dashboard", + pathMatch: "full", }, { - path: 'dashboard', - component: LayoutComponent, - loadChildren: () => import('./pages/dashboard/dashboard.module').then(m => m.DashboardPageModule), - canActivate: [ AuthGuard ] - } + path: "dashboard", + component: LayoutComponent, + loadChildren: () => import("./pages/dashboard/dashboard.module").then((m) => m.DashboardPageModule), + canActivate: [AuthGuard], + }, ]; @NgModule({ imports: [RouterModule.forChild(routes)], - exports: [RouterModule] + exports: [RouterModule], }) export class HomeRoutingModule {} diff --git a/src/app/features/home/home.module.ts b/src/app/features/home/home.module.ts index 5fdf68a..c4632fe 100644 --- a/src/app/features/home/home.module.ts +++ b/src/app/features/home/home.module.ts @@ -1,29 +1,36 @@ -import { NgModule } from '@angular/core'; -import { StoreModule } from '@ngrx/store'; -import { EffectsModule } from '@ngrx/effects'; -import { CommonModule } from '@angular/common'; -import { ReactiveFormsModule, FormsModule } from '@angular/forms'; -import { HomeRoutingModule } from './home-routing.module'; -import { reducer } from './reducers/home.reducer'; -import { HomeEffects } from './effects/home.effect'; -import { NgbAlertModule, NgbDropdownModule, NgbNavModule, NgbPaginationModule, NgbTooltipModule, NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap'; -import { Ng2SearchPipeModule } from 'ng2-search-filter'; -import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar'; -import { LeafletModule } from '@asymmetrik/ngx-leaflet'; -import { UiModule } from 'src/app/shared/ui/ui.module'; -import { SetUnitStatusModalComponent } from './modals/setUnitStatus/setUnitStatus.modal'; -import { CloseCallModalComponent } from './modals/closeCall/closeCall.modal'; -import { SelectTemplateModalComponent } from './modals/selectTemplate/selectTemplate.modal'; -import { CallNotesModalComponent } from './modals/callNotes/callNotes.modal'; -import { GalleryModule } from 'ng-gallery'; -import { CallImagesModalComponent } from './modals/callImages/callImages.modal'; -import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; -import { CallFilesModalComponent } from './modals/callFiles/callFiles.modal'; -import { CallFormModalComponent } from './modals/callForm/callForm.modal'; -import { NgxResgridLibModule } from '@resgrid/ngx-resgridlib'; -import { SetPersonStatusModalComponent } from './modals/setPersonStatus/setPersonStatus.modal'; -import { SetPersonStaffingModalComponent } from './modals/setPersonStaffing/setPersonStaffing.modal'; -import { ViewCallFormModalComponent } from './modals/viewCallForm/view-callForm.modal'; +import { NgModule } from "@angular/core"; +import { StoreModule } from "@ngrx/store"; +import { EffectsModule } from "@ngrx/effects"; +import { CommonModule } from "@angular/common"; +import { ReactiveFormsModule, FormsModule } from "@angular/forms"; +import { HomeRoutingModule } from "./home-routing.module"; +import { reducer } from "./reducers/home.reducer"; +import { HomeEffects } from "./effects/home.effect"; +import { + NgbAlertModule, + NgbDropdownModule, + NgbNavModule, + NgbPaginationModule, + NgbTooltipModule, + NgbTypeaheadModule, +} from "@ng-bootstrap/ng-bootstrap"; +import { Ng2SearchPipeModule } from "ng2-search-filter"; +import { PerfectScrollbarModule } from "ngx-perfect-scrollbar"; +import { LeafletModule } from "@asymmetrik/ngx-leaflet"; +import { UiModule } from "src/app/shared/ui/ui.module"; +import { SetUnitStatusModalComponent } from "./modals/setUnitStatus/setUnitStatus.modal"; +import { CloseCallModalComponent } from "./modals/closeCall/closeCall.modal"; +import { SelectTemplateModalComponent } from "./modals/selectTemplate/selectTemplate.modal"; +import { CallNotesModalComponent } from "./modals/callNotes/callNotes.modal"; +import { GalleryModule } from "ng-gallery"; +import { CallImagesModalComponent } from "./modals/callImages/callImages.modal"; +import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; +import { CallFilesModalComponent } from "./modals/callFiles/callFiles.modal"; +import { CallFormModalComponent } from "./modals/callForm/callForm.modal"; +import { NgxResgridLibModule } from "@resgrid/ngx-resgridlib"; +import { SetPersonStatusModalComponent } from "./modals/setPersonStatus/setPersonStatus.modal"; +import { SetPersonStaffingModalComponent } from "./modals/setPersonStaffing/setPersonStaffing.modal"; +import { ViewCallFormModalComponent } from "./modals/viewCallForm/view-callForm.modal"; @NgModule({ declarations: [ @@ -36,7 +43,7 @@ import { ViewCallFormModalComponent } from './modals/viewCallForm/view-callForm. CallFormModalComponent, SetPersonStatusModalComponent, SetPersonStaffingModalComponent, - ViewCallFormModalComponent + ViewCallFormModalComponent, ], imports: [ CommonModule, @@ -52,11 +59,11 @@ import { ViewCallFormModalComponent } from './modals/viewCallForm/view-callForm. PerfectScrollbarModule, LeafletModule, UiModule, - StoreModule.forFeature('homeModule', reducer), + StoreModule.forFeature("homeModule", reducer), EffectsModule.forFeature([HomeEffects]), GalleryModule, NgbPaginationModule, - NgbTypeaheadModule + NgbTypeaheadModule, ], providers: [], entryComponents: [ @@ -69,7 +76,7 @@ import { ViewCallFormModalComponent } from './modals/viewCallForm/view-callForm. CallFormModalComponent, SetPersonStatusModalComponent, SetPersonStaffingModalComponent, - ViewCallFormModalComponent - ] + ViewCallFormModalComponent, + ], }) -export class HomeModule { } +export class HomeModule {} diff --git a/src/app/features/home/modals/callFiles/callFiles.modal.html b/src/app/features/home/modals/callFiles/callFiles.modal.html index a9229cf..a01e5b5 100644 --- a/src/app/features/home/modals/callFiles/callFiles.modal.html +++ b/src/app/features/home/modals/callFiles/callFiles.modal.html @@ -6,7 +6,7 @@
- +
@@ -43,17 +43,17 @@ - \ No newline at end of file + diff --git a/src/app/features/home/modals/callFiles/callFiles.modal.ts b/src/app/features/home/modals/callFiles/callFiles.modal.ts index 1517165..8c8c919 100644 --- a/src/app/features/home/modals/callFiles/callFiles.modal.ts +++ b/src/app/features/home/modals/callFiles/callFiles.modal.ts @@ -2,11 +2,7 @@ import { Component, Input, OnInit } from "@angular/core"; import { NgbModal, NgbActiveModal } from "@ng-bootstrap/ng-bootstrap"; import { Store } from "@ngrx/store"; import { Observable, Subscription } from "rxjs"; -import { - selectAuthState, - selectHomeState, - selectIsSavingUnitState, -} from "src/app/store"; +import { selectAuthState, selectHomeState, selectIsSavingUnitState } from "src/app/store"; import { HomeState } from "../../store/home.store"; import * as HomeActions from "../../actions/home.actions"; import { take } from "rxjs/operators"; @@ -16,7 +12,7 @@ import { FormBuilder, FormGroup, Validators } from "@angular/forms"; import { environment } from "../../../../../environments/environment"; import { AuthState } from "src/app/features/auth/store/auth.store"; import { encode } from "base64-arraybuffer"; -import { CallResultData } from '@resgrid/ngx-resgridlib'; +import { CallResultData } from "@resgrid/ngx-resgridlib"; @Component({ selector: "app-resgrid-modal-callFiles", @@ -41,7 +37,7 @@ export class CallFilesModalComponent implements OnInit { private store: Store, private actions$: Actions, public formBuilder: FormBuilder, - private authStore: Store + private authStore: Store, ) { this.homeState$ = this.store.select(selectHomeState); @@ -69,12 +65,7 @@ export class CallFilesModalComponent implements OnInit { } public getAvatarUrl(userId) { - return ( - environment.baseApiUrl + - environment.resgridApiUrl + - "/Avatars/Get?id=" + - userId - ); + return environment.baseApiUrl + environment.resgridApiUrl + "/Avatars/Get?id=" + userId; } public dismiss() { @@ -91,14 +82,7 @@ export class CallFilesModalComponent implements OnInit { this.isSaving = true; this.getBase64EncodedFileData(file).subscribe((base64Encoded) => { - this.store.dispatch( - new HomeActions.UploadCallFile( - this.selectedCall.CallId, - this.auth.user.userId, - this.fileName, - base64Encoded - ) - ); + this.store.dispatch(new HomeActions.UploadCallFile(this.selectedCall.CallId, this.auth.user.userId, this.fileName, base64Encoded)); }); } } diff --git a/src/app/features/home/modals/callForm/callForm.modal.html b/src/app/features/home/modals/callForm/callForm.modal.html index b063242..1823d66 100644 --- a/src/app/features/home/modals/callForm/callForm.modal.html +++ b/src/app/features/home/modals/callForm/callForm.modal.html @@ -7,7 +7,7 @@
diff --git a/src/app/features/home/modals/callForm/callForm.modal.ts b/src/app/features/home/modals/callForm/callForm.modal.ts index 62048e3..8c0bf02 100644 --- a/src/app/features/home/modals/callForm/callForm.modal.ts +++ b/src/app/features/home/modals/callForm/callForm.modal.ts @@ -2,11 +2,7 @@ import { Component, Input, OnInit } from "@angular/core"; import { NgbModal, NgbActiveModal } from "@ng-bootstrap/ng-bootstrap"; import { Store } from "@ngrx/store"; import { Observable, Subscription } from "rxjs"; -import { - selectAuthState, - selectHomeState, - selectIsSavingUnitState, -} from "src/app/store"; +import { selectAuthState, selectHomeState, selectIsSavingUnitState } from "src/app/store"; import { HomeState } from "../../store/home.store"; import * as HomeActions from "../../actions/home.actions"; import { take } from "rxjs/operators"; @@ -15,7 +11,7 @@ import * as _ from "lodash"; import { FormBuilder, FormGroup, Validators } from "@angular/forms"; import { environment } from "../../../../../environments/environment"; import { AuthState } from "src/app/features/auth/store/auth.store"; -import { CallResultData, FormResult, FormResultData } from '@resgrid/ngx-resgridlib'; +import { CallResultData, FormResult, FormResultData } from "@resgrid/ngx-resgridlib"; declare var $: any; @Component({ @@ -43,7 +39,7 @@ export class CallFormModalComponent implements OnInit { private store: Store, private actions$: Actions, public formBuilder: FormBuilder, - private authStore: Store + private authStore: Store, ) { this.homeState$ = this.store.select(selectHomeState); @@ -63,9 +59,9 @@ export class CallFormModalComponent implements OnInit { .pipe(take(1)) .subscribe((state) => { if (state && state.newCallForm && state.newCallForm.Data) { - this.newCallForm = state.newCallForm; + this.newCallForm = state.newCallForm; var callData = state.newCallForm.Data; - this.formRender = $(document.getElementById("fb-reader")).formRender({ dataType: 'json', formData: callData }); + this.formRender = $(document.getElementById("fb-reader")).formRender({ dataType: "json", formData: callData }); } }); } @@ -80,11 +76,9 @@ export class CallFormModalComponent implements OnInit { public save() { if (this.formRender) { - var userData = JSON.stringify(this.formRender.userData); + var userData = JSON.stringify(this.formRender.userData); - this.store.dispatch( - new HomeActions.SetNewCallFormData(userData) - ); + this.store.dispatch(new HomeActions.SetNewCallFormData(userData)); } } } diff --git a/src/app/features/home/modals/callImages/callImages.modal.html b/src/app/features/home/modals/callImages/callImages.modal.html index 9d7cc84..1d16b8d 100644 --- a/src/app/features/home/modals/callImages/callImages.modal.html +++ b/src/app/features/home/modals/callImages/callImages.modal.html @@ -15,11 +15,11 @@
- +
- \ No newline at end of file + diff --git a/src/app/features/home/modals/callImages/callImages.modal.ts b/src/app/features/home/modals/callImages/callImages.modal.ts index e3e942d..fb53f1d 100644 --- a/src/app/features/home/modals/callImages/callImages.modal.ts +++ b/src/app/features/home/modals/callImages/callImages.modal.ts @@ -2,11 +2,7 @@ import { Component, Input, OnInit } from "@angular/core"; import { NgbModal, NgbActiveModal } from "@ng-bootstrap/ng-bootstrap"; import { Store } from "@ngrx/store"; import { Observable, Subscription } from "rxjs"; -import { - selectAuthState, - selectHomeState, - selectIsSavingUnitState, -} from "src/app/store"; +import { selectAuthState, selectHomeState, selectIsSavingUnitState } from "src/app/store"; import { HomeState } from "../../store/home.store"; import * as HomeActions from "../../actions/home.actions"; import { finalize, take } from "rxjs/operators"; @@ -17,7 +13,7 @@ import { environment } from "../../../../../environments/environment"; import { AuthState } from "src/app/features/auth/store/auth.store"; import { Gallery, GalleryItem, GalleryRef, ImageItem } from "ng-gallery"; import { encode } from "base64-arraybuffer"; -import { CallResultData } from '@resgrid/ngx-resgridlib'; +import { CallResultData } from "@resgrid/ngx-resgridlib"; @Component({ selector: "app-resgrid-modal-callImages", @@ -43,7 +39,7 @@ export class CallImagesModalComponent implements OnInit { private actions$: Actions, public formBuilder: FormBuilder, private authStore: Store, - private gallery: Gallery + private gallery: Gallery, ) { this.images = []; this.homeState$ = this.store.select(selectHomeState); @@ -89,14 +85,7 @@ export class CallImagesModalComponent implements OnInit { this.isSaving = true; this.getBase64EncodedFileData(file).subscribe((base64Encoded) => { - this.store.dispatch( - new HomeActions.UploadCallImage( - this.selectedCall.CallId, - this.auth.user.userId, - this.fileName, - base64Encoded - ) - ); + this.store.dispatch(new HomeActions.UploadCallImage(this.selectedCall.CallId, this.auth.user.userId, this.fileName, base64Encoded)); }); } } @@ -123,12 +112,7 @@ export class CallImagesModalComponent implements OnInit { } public getAvatarUrl(userId) { - return ( - environment.baseApiUrl + - environment.resgridApiUrl + - "/Avatars/Get?id=" + - userId - ); + return environment.baseApiUrl + environment.resgridApiUrl + "/Avatars/Get?id=" + userId; } public dismiss() { diff --git a/src/app/features/home/modals/callNotes/callNotes.modal.html b/src/app/features/home/modals/callNotes/callNotes.modal.html index fd3737a..61edba8 100644 --- a/src/app/features/home/modals/callNotes/callNotes.modal.html +++ b/src/app/features/home/modals/callNotes/callNotes.modal.html @@ -7,13 +7,13 @@
- - +
- + + {{unit.Name}} {{unit.Type}} {{unit.DestinationName}} {{unit.Distance | number: '1.0-2'}}km{{unit.State}} - {{unit.State}}
@@ -234,21 +316,27 @@

Call

-
- -
+
-
- -
+
-
- - +
@@ -263,13 +351,18 @@

Call

-
-
@@ -327,8 +421,7 @@

Dispatch Note

-
-
+
@@ -340,13 +433,27 @@

Dispatch Note

Statuses

@@ -389,27 +496,33 @@

Statuses

- - +
+ + {{personnel.Name}} {{personnel.Status}} {{personnel.Staffing}} {{personnel.Distance | number: '1.0-2'}}km {{personnel.Group}}{{personnel?.Roles?.toString()}}{{personnel?.Roles?.toString()}}
-
- @@ -424,7 +537,8 @@

Statuses

+ + {{group.Name}} {{group.Count}}
- @@ -434,20 +548,24 @@

Statuses

- - +
- {{group.key}} + {{group.key}}
+ + {{role.Name}} {{role.Count}}
- - - - - - + + + + + @@ -456,19 +574,20 @@

Statuses

- +
- {{group.key}} + {{group.key}}
{{unit.Name}}{{unit.Type}}{{unit.DestinationName}}{{unit.State}} + + + {{unit.Name}}{{unit.Type}}{{unit.DestinationName}}{{unit.State}} +
- - - - + + +
+ + {{personnel.Name}}{{personnel.Status}}{{personnel.Staffing}}{{personnel.Name}}{{personnel.Status}}{{personnel.Staffing}}
-
\ No newline at end of file + diff --git a/src/app/features/home/pages/dashboard/dashboard.page.spec.ts b/src/app/features/home/pages/dashboard/dashboard.page.spec.ts index f25e395..4473f4c 100644 --- a/src/app/features/home/pages/dashboard/dashboard.page.spec.ts +++ b/src/app/features/home/pages/dashboard/dashboard.page.spec.ts @@ -1,15 +1,15 @@ -import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; +import { ComponentFixture, TestBed, waitForAsync } from "@angular/core/testing"; -import { DashboardPage } from './dashboard.page'; +import { DashboardPage } from "./dashboard.page"; -describe('DashboardPage', () => { +describe("DashboardPage", () => { let component: DashboardPage; let fixture: ComponentFixture; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ declarations: [DashboardPage], - imports: [] + imports: [], }).compileComponents(); fixture = TestBed.createComponent(DashboardPage); @@ -17,7 +17,7 @@ describe('DashboardPage', () => { fixture.detectChanges(); })); - it('should create', () => { + it("should create", () => { expect(component).toBeTruthy(); }); }); diff --git a/src/app/features/home/pages/dashboard/dashboard.page.ts b/src/app/features/home/pages/dashboard/dashboard.page.ts index 27f8b40..2d4b079 100644 --- a/src/app/features/home/pages/dashboard/dashboard.page.ts +++ b/src/app/features/home/pages/dashboard/dashboard.page.ts @@ -35,7 +35,7 @@ import { debounceTime, distinctUntilChanged, tap } from "rxjs/operators"; import { UnitStatusResult } from "src/app/core/models/unitStatusResult"; import { PersonnelForCallResult } from "src/app/core/models/personnelForCallResult"; import { PerfectScrollbarComponent } from "ngx-perfect-scrollbar"; -import { SubSink } from 'subsink'; +import { SubSink } from "subsink"; const iconRetinaUrl = "./assets/marker-icon-2x.png"; const iconUrl = "./assets/marker-icon.png"; @@ -108,7 +108,7 @@ export class DashboardPage implements AfterViewInit { if (this.searchUnitsInput && this.searchUnitsInput.nativeElement) { this.unitSearchTerm = this.searchUnitsInput.nativeElement.value; } - }) + }), ) .subscribe(); } @@ -137,7 +137,7 @@ export class DashboardPage implements AfterViewInit { if (this.searchPersonnelInput && this.searchPersonnelInput.nativeElement) { this.personnelSearchTerm = this.searchPersonnelInput.nativeElement.value; } - }) + }), ) .subscribe(); } @@ -149,7 +149,7 @@ export class DashboardPage implements AfterViewInit { private voiceStore: Store, private router: Router, private cdr: ChangeDetectorRef, - private homeProvider: HomeProvider + private homeProvider: HomeProvider, ) { this.homeState$ = this.store.select(selectHomeState); this.mapData$ = this.store.select(selectMapDataState); @@ -193,7 +193,7 @@ export class DashboardPage implements AfterViewInit { if (this.searchUnitsInput && this.searchUnitsInput.nativeElement) { this.unitSearchTerm = this.searchUnitsInput.nativeElement.value; } - }) + }), ) .subscribe(); } @@ -545,7 +545,7 @@ export class DashboardPage implements AfterViewInit { const address = this.newCallForm.get("address").value; if (!address || address == "") { this.store.dispatch( - new HomeActions.GetAddressForCoordinates(this.newCallForm.get("latitude").value, this.newCallForm.get("longitude").value) + new HomeActions.GetAddressForCoordinates(this.newCallForm.get("latitude").value, this.newCallForm.get("longitude").value), ); } } @@ -771,7 +771,7 @@ export class DashboardPage implements AfterViewInit { .subscribe((state) => { if (state && state.personnelForGrid && state.unitStatuses) { this.store.dispatch( - new HomeActions.GetUpdatedPersonnelandUnitsDistancesToCall(location, state.personnelForGrid, state.unitStatuses) + new HomeActions.GetUpdatedPersonnelandUnitsDistancesToCall(location, state.personnelForGrid, state.unitStatuses), ); } }); diff --git a/src/app/features/home/providers/home.ts b/src/app/features/home/providers/home.ts index 0eb8086..7f727c1 100644 --- a/src/app/features/home/providers/home.ts +++ b/src/app/features/home/providers/home.ts @@ -55,7 +55,7 @@ export class HomeProvider { private consts: Consts, private customStatusesService: CustomStatusesService, private noteService: NotesService, - private templateService: TemplatesService + private templateService: TemplatesService, ) { //this.personnelStatusUpdated$ = this.events.subscribe(this.consts.SIGNALR_EVENTS.PERSONNEL_STATUS_UPDATED); //this.personnelStaffingUpdated$ = this.events.subscribe(this.consts.SIGNALR_EVENTS.PERSONNEL_STAFFING_UPDATED); @@ -91,17 +91,11 @@ export class HomeProvider { personnelStatuses: getPersonnelStatus, PersonnelStaffingLevels: getPersonnelStaffingLevels, dispatchNote: getDispatchNote, - callNotes: getQuickNotes + callNotes: getQuickNotes, }).pipe( map((results) => { let localCalls: CallLocalResult[] = new Array(); - if ( - results && - results.calls && - results.calls.Data && - results.priorities && - results.priorities.Data - ) { + if (results && results.calls && results.calls.Data && results.priorities && results.priorities.Data) { results.calls.Data.forEach((call) => { let localCall: CallLocalResult = call as CallLocalResult; @@ -120,8 +114,7 @@ export class HomeProvider { let dispatchNote: NoteResultData = null; - if (results.dispatchNote && results.dispatchNote.Data) - dispatchNote = results.dispatchNote.Data; + if (results.dispatchNote && results.dispatchNote.Data) dispatchNote = results.dispatchNote.Data; return { UnitStatuses: results.units.Data, @@ -135,9 +128,9 @@ export class HomeProvider { PersonnelStatuses: results.personnelStatuses.Data, PersonnelStaffingLevels: results.PersonnelStaffingLevels.Data, DispatchNote: dispatchNote, - CallNotes: results.callNotes.Data + CallNotes: results.callNotes.Data, }; - }) + }), ); } @@ -146,9 +139,7 @@ export class HomeProvider { .select(selectAuthState) .pipe(take(1)) .subscribe((auth) => { - this.signalRProvider.connectionState$.subscribe( - (state: ConnectionState) => {} - ); + this.signalRProvider.connectionState$.subscribe((state: ConnectionState) => {}); this.signalRProvider.start(auth.user.departmentId); this.init(); @@ -156,29 +147,17 @@ export class HomeProvider { } public init() { - this.events.subscribe( - this.consts.SIGNALR_EVENTS.PERSONNEL_STATUS_UPDATED, - (data: any) => { - this.store.dispatch(new HomeActions.GetLatestPersonnelData()); - } - ); - this.events.subscribe( - this.consts.SIGNALR_EVENTS.PERSONNEL_STAFFING_UPDATED, - (data: any) => { - this.store.dispatch(new HomeActions.GetLatestPersonnelData()); - } - ); - this.events.subscribe( - this.consts.SIGNALR_EVENTS.UNIT_STATUS_UPDATED, - (data: any) => { - this.store.dispatch(new HomeActions.GetLatestUnitStates()); - } - ); - this.events.subscribe( - this.consts.SIGNALR_EVENTS.CALLS_UPDATED, - (data: any) => { - this.store.dispatch(new HomeActions.GetLatestCalls()); - } - ); + this.events.subscribe(this.consts.SIGNALR_EVENTS.PERSONNEL_STATUS_UPDATED, (data: any) => { + this.store.dispatch(new HomeActions.GetLatestPersonnelData()); + }); + this.events.subscribe(this.consts.SIGNALR_EVENTS.PERSONNEL_STAFFING_UPDATED, (data: any) => { + this.store.dispatch(new HomeActions.GetLatestPersonnelData()); + }); + this.events.subscribe(this.consts.SIGNALR_EVENTS.UNIT_STATUS_UPDATED, (data: any) => { + this.store.dispatch(new HomeActions.GetLatestUnitStates()); + }); + this.events.subscribe(this.consts.SIGNALR_EVENTS.CALLS_UPDATED, (data: any) => { + this.store.dispatch(new HomeActions.GetLatestCalls()); + }); } } diff --git a/src/app/features/home/reducers/home.reducer.ts b/src/app/features/home/reducers/home.reducer.ts index 1cebc0e..f2c1dc9 100644 --- a/src/app/features/home/reducers/home.reducer.ts +++ b/src/app/features/home/reducers/home.reducer.ts @@ -307,4 +307,4 @@ export const getNewCall = (state: HomeState) => state.newCall; export const getCallTemplate = (state: HomeState) => state.activeCallTemplate; export const getNewCallAddress = (state: HomeState) => state.newCallLocation; export const getIsSavingCall = (state: HomeState) => state.isSavingCall; -export const getNewCallLocation = (state: HomeState) => state.newCallAddress; \ No newline at end of file +export const getNewCallLocation = (state: HomeState) => state.newCallAddress; diff --git a/src/app/features/home/store/home.store.ts b/src/app/features/home/store/home.store.ts index 22bd5f2..63bc2b2 100644 --- a/src/app/features/home/store/home.store.ts +++ b/src/app/features/home/store/home.store.ts @@ -1,97 +1,110 @@ -import { CallExtraDataResultData, CallFileResultData, CallNoteResultData, CallNoteTemplateResultData, CallPriorityResultData, CallResultData, CallTypeResultData, CustomStatusResultData, FormResultData, GetCallTemplatesResultData, GpsLocation, MapDataAndMarkersData, NoteResultData } from '@resgrid/ngx-resgridlib'; -import { CallLocalResult } from 'src/app/core/models/callLocalResult'; -import { GroupsForCallResult } from 'src/app/core/models/groupsForCallResult'; -import { PersonnelForCallResult } from 'src/app/core/models/personnelForCallResult'; -import { RolesForCallResult } from 'src/app/core/models/rolesForCallResult'; -import { UnitStatusResult } from 'src/app/core/models/unitStatusResult'; -import { SetUnitStateModalData } from '../models/setUnitStateModalData'; +import { + CallExtraDataResultData, + CallFileResultData, + CallNoteResultData, + CallNoteTemplateResultData, + CallPriorityResultData, + CallResultData, + CallTypeResultData, + CustomStatusResultData, + FormResultData, + GetCallTemplatesResultData, + GpsLocation, + MapDataAndMarkersData, + NoteResultData, +} from "@resgrid/ngx-resgridlib"; +import { CallLocalResult } from "src/app/core/models/callLocalResult"; +import { GroupsForCallResult } from "src/app/core/models/groupsForCallResult"; +import { PersonnelForCallResult } from "src/app/core/models/personnelForCallResult"; +import { RolesForCallResult } from "src/app/core/models/rolesForCallResult"; +import { UnitStatusResult } from "src/app/core/models/unitStatusResult"; +import { SetUnitStateModalData } from "../models/setUnitStateModalData"; export interface HomeState { + // Home page data + hasLoaded: boolean; + unitStatuses: UnitStatusResult[]; + calls: CallLocalResult[]; + callPriorties: CallPriorityResultData[]; + callTypes: CallTypeResultData[]; + personnelForGrid: PersonnelForCallResult[]; + groupsForGrid: GroupsForCallResult[]; + rolesForGrid: RolesForCallResult[]; + newCallForm: FormResultData; - // Home page data - hasLoaded: boolean; - unitStatuses: UnitStatusResult[]; - calls: CallLocalResult[]; - callPriorties: CallPriorityResultData[]; - callTypes: CallTypeResultData[]; - personnelForGrid: PersonnelForCallResult[]; - groupsForGrid: GroupsForCallResult[]; - rolesForGrid: RolesForCallResult[]; - newCallForm: FormResultData; + // Map data + mapData: MapDataAndMarkersData; - // Map data - mapData: MapDataAndMarkersData; + // New Call data + newCall: CallResultData; + newCallLocation: GpsLocation; + newCallAddress: string; + newCallFormData: string; + isSavingCall: boolean; - // New Call data - newCall: CallResultData; - newCallLocation: GpsLocation; - newCallAddress: string; - newCallFormData: string; - isSavingCall: boolean; - - // Edit Call - editCall: CallResultData; + // Edit Call + editCall: CallResultData; - // Set unit state - isSavingUnitState: boolean; - setUnitStatusModalState: SetUnitStateModalData; + // Set unit state + isSavingUnitState: boolean; + setUnitStatusModalState: SetUnitStateModalData; - // Close call - isSavingCloseCall: boolean; - closeCallState: CallResultData; + // Close call + isSavingCloseCall: boolean; + closeCallState: CallResultData; - // Call template - callTemplates: GetCallTemplatesResultData[]; - activeCallTemplate: GetCallTemplatesResultData; + // Call template + callTemplates: GetCallTemplatesResultData[]; + activeCallTemplate: GetCallTemplatesResultData; - // Call Notes - callNotes: CallNoteResultData[]; + // Call Notes + callNotes: CallNoteResultData[]; - // Call Images - callImages: CallFileResultData[]; - callFiles: CallFileResultData[]; + // Call Images + callImages: CallFileResultData[]; + callFiles: CallFileResultData[]; - personnelStatuses: CustomStatusResultData[]; - personnelStaffing: CustomStatusResultData[]; + personnelStatuses: CustomStatusResultData[]; + personnelStaffing: CustomStatusResultData[]; - dispatchNote: NoteResultData; + dispatchNote: NoteResultData; - // Call Note Templates - callNoteTemplates: CallNoteTemplateResultData[]; + // Call Note Templates + callNoteTemplates: CallNoteTemplateResultData[]; - // View Call - viewCallExtraData: CallExtraDataResultData; + // View Call + viewCallExtraData: CallExtraDataResultData; } export const initialState: HomeState = { - hasLoaded: false, - unitStatuses: null, - calls: null, - callPriorties: null, - callTypes: null, - mapData: null, - newCall: new CallResultData(), - isSavingCall: false, - isSavingUnitState: false, - setUnitStatusModalState: null, - isSavingCloseCall: false, - closeCallState: null, - personnelForGrid: null, - groupsForGrid: null, - rolesForGrid: null, - newCallLocation: null, - newCallAddress: null, - callTemplates: null, - activeCallTemplate: null, - callNotes: null, - callImages: null, - callFiles: null, - newCallForm: null, - newCallFormData: null, - editCall: null, - personnelStatuses: null, - personnelStaffing: null, - dispatchNote: null, - callNoteTemplates: null, - viewCallExtraData: null -}; \ No newline at end of file + hasLoaded: false, + unitStatuses: null, + calls: null, + callPriorties: null, + callTypes: null, + mapData: null, + newCall: new CallResultData(), + isSavingCall: false, + isSavingUnitState: false, + setUnitStatusModalState: null, + isSavingCloseCall: false, + closeCallState: null, + personnelForGrid: null, + groupsForGrid: null, + rolesForGrid: null, + newCallLocation: null, + newCallAddress: null, + callTemplates: null, + activeCallTemplate: null, + callNotes: null, + callImages: null, + callFiles: null, + newCallForm: null, + newCallFormData: null, + editCall: null, + personnelStatuses: null, + personnelStaffing: null, + dispatchNote: null, + callNoteTemplates: null, + viewCallExtraData: null, +}; diff --git a/src/app/features/mapping/effects/mapping.effect.ts b/src/app/features/mapping/effects/mapping.effect.ts index 4437a10..d9d5920 100644 --- a/src/app/features/mapping/effects/mapping.effect.ts +++ b/src/app/features/mapping/effects/mapping.effect.ts @@ -4,9 +4,9 @@ import { catchError, map, mergeMap } from "rxjs/operators"; import { Injectable } from "@angular/core"; import { from, of } from "rxjs"; import { NgbModal, NgbModalRef } from "@ng-bootstrap/ng-bootstrap"; -import { MappingService } from '@resgrid/ngx-resgridlib'; +import { MappingService } from "@resgrid/ngx-resgridlib"; import * as _ from "lodash"; -import * as mappingAction from '../actions/mapping.actions'; +import * as mappingAction from "../actions/mapping.actions"; import { MappingState } from "../store/mapping.store"; @Injectable() @@ -14,25 +14,23 @@ export class MappingEffects { private _modalRef: NgbModalRef; getUnitsList$ = createEffect(() => - this.actions$.pipe( - ofType( - mappingAction.MappingActionTypes.LOADING_MAP_DATA - ), - mergeMap((action) => - this.mapProvider.getMapDataAndMarkers().pipe( - map((data) => ({ - type: mappingAction.MappingActionTypes.LOADING_MAP_DATA_SUCCESS, - payload: data.Data, - })), - catchError(() => - of({ - type: mappingAction.MappingActionTypes.LOADING_MAP_DATA_FAIL, - }) - ) - ) - ) - ) - ); + this.actions$.pipe( + ofType(mappingAction.MappingActionTypes.LOADING_MAP_DATA), + mergeMap((action) => + this.mapProvider.getMapDataAndMarkers().pipe( + map((data) => ({ + type: mappingAction.MappingActionTypes.LOADING_MAP_DATA_SUCCESS, + payload: data.Data, + })), + catchError(() => + of({ + type: mappingAction.MappingActionTypes.LOADING_MAP_DATA_FAIL, + }), + ), + ), + ), + ), + ); constructor( private actions$: Actions, diff --git a/src/app/features/mapping/mapping-routing.module.ts b/src/app/features/mapping/mapping-routing.module.ts index b199891..299b7df 100644 --- a/src/app/features/mapping/mapping-routing.module.ts +++ b/src/app/features/mapping/mapping-routing.module.ts @@ -1,24 +1,24 @@ -import { NgModule } from '@angular/core'; -import { PreloadAllModules, RouterModule, Routes } from '@angular/router'; -import { AuthGuard } from 'src/app/core/guards/auth.guard'; -import { LayoutComponent } from 'src/app/layouts/layout/layout.component'; +import { NgModule } from "@angular/core"; +import { PreloadAllModules, RouterModule, Routes } from "@angular/router"; +import { AuthGuard } from "src/app/core/guards/auth.guard"; +import { LayoutComponent } from "src/app/layouts/layout/layout.component"; const routes: Routes = [ { - path: '', - redirectTo: 'map', - pathMatch: 'full' + path: "", + redirectTo: "map", + pathMatch: "full", }, { - path: 'map', - component: LayoutComponent, - loadChildren: () => import('./pages/map/map.module').then(m => m.MapPageModule), - canActivate: [ AuthGuard ] + path: "map", + component: LayoutComponent, + loadChildren: () => import("./pages/map/map.module").then((m) => m.MapPageModule), + canActivate: [AuthGuard], }, ]; @NgModule({ imports: [RouterModule.forChild(routes)], - exports: [RouterModule] + exports: [RouterModule], }) export class CallsRoutingModule {} diff --git a/src/app/features/mapping/mapping.module.ts b/src/app/features/mapping/mapping.module.ts index a5b1d54..00cd905 100644 --- a/src/app/features/mapping/mapping.module.ts +++ b/src/app/features/mapping/mapping.module.ts @@ -1,18 +1,25 @@ -import { NgModule } from '@angular/core'; -import { StoreModule } from '@ngrx/store'; -import { EffectsModule } from '@ngrx/effects'; -import { CommonModule } from '@angular/common'; -import { ReactiveFormsModule, FormsModule } from '@angular/forms'; -import { CallsRoutingModule } from './mapping-routing.module'; -import { reducer } from './reducers/mapping.reducer'; -import { MappingEffects } from './effects/mapping.effect'; -import { NgbAlertModule, NgbDropdownModule, NgbNavModule, NgbPaginationModule, NgbTooltipModule, NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap'; -import { Ng2SearchPipeModule } from 'ng2-search-filter'; -import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar'; -import { LeafletModule } from '@asymmetrik/ngx-leaflet'; -import { UiModule } from 'src/app/shared/ui/ui.module'; -import { GalleryModule } from 'ng-gallery'; -import { NgxResgridLibModule } from '@resgrid/ngx-resgridlib'; +import { NgModule } from "@angular/core"; +import { StoreModule } from "@ngrx/store"; +import { EffectsModule } from "@ngrx/effects"; +import { CommonModule } from "@angular/common"; +import { ReactiveFormsModule, FormsModule } from "@angular/forms"; +import { CallsRoutingModule } from "./mapping-routing.module"; +import { reducer } from "./reducers/mapping.reducer"; +import { MappingEffects } from "./effects/mapping.effect"; +import { + NgbAlertModule, + NgbDropdownModule, + NgbNavModule, + NgbPaginationModule, + NgbTooltipModule, + NgbTypeaheadModule, +} from "@ng-bootstrap/ng-bootstrap"; +import { Ng2SearchPipeModule } from "ng2-search-filter"; +import { PerfectScrollbarModule } from "ngx-perfect-scrollbar"; +import { LeafletModule } from "@asymmetrik/ngx-leaflet"; +import { UiModule } from "src/app/shared/ui/ui.module"; +import { GalleryModule } from "ng-gallery"; +import { NgxResgridLibModule } from "@resgrid/ngx-resgridlib"; @NgModule({ imports: [ @@ -29,17 +36,14 @@ import { NgxResgridLibModule } from '@resgrid/ngx-resgridlib'; PerfectScrollbarModule, LeafletModule, UiModule, - StoreModule.forFeature('mappingModule', reducer), + StoreModule.forFeature("mappingModule", reducer), EffectsModule.forFeature([MappingEffects]), GalleryModule, NgbPaginationModule, - NgbTypeaheadModule + NgbTypeaheadModule, ], providers: [], - exports: [ - - ], - entryComponents: [ - ] + exports: [], + entryComponents: [], }) -export class MappingModule { } +export class MappingModule {} diff --git a/src/app/features/mapping/pages/map/map.module.ts b/src/app/features/mapping/pages/map/map.module.ts index 0e9f2f3..4756a14 100644 --- a/src/app/features/mapping/pages/map/map.module.ts +++ b/src/app/features/mapping/pages/map/map.module.ts @@ -1,17 +1,24 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { FormsModule, ReactiveFormsModule } from '@angular/forms'; -import { RouterModule } from '@angular/router'; -import { Ng2SearchPipeModule } from 'ng2-search-filter'; -import { MapPage } from './map.page'; -import { NgbAlertModule, NgbDropdownModule, NgbNavModule, NgbPaginationModule, NgbTooltipModule, NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap'; -import { PerfectScrollbarConfigInterface, PerfectScrollbarModule, PERFECT_SCROLLBAR_CONFIG } from 'ngx-perfect-scrollbar'; -import { LeafletModule } from '@asymmetrik/ngx-leaflet'; -import { UiModule } from 'src/app/shared/ui/ui.module'; +import { NgModule } from "@angular/core"; +import { CommonModule } from "@angular/common"; +import { FormsModule, ReactiveFormsModule } from "@angular/forms"; +import { RouterModule } from "@angular/router"; +import { Ng2SearchPipeModule } from "ng2-search-filter"; +import { MapPage } from "./map.page"; +import { + NgbAlertModule, + NgbDropdownModule, + NgbNavModule, + NgbPaginationModule, + NgbTooltipModule, + NgbTypeaheadModule, +} from "@ng-bootstrap/ng-bootstrap"; +import { PerfectScrollbarConfigInterface, PerfectScrollbarModule, PERFECT_SCROLLBAR_CONFIG } from "ngx-perfect-scrollbar"; +import { LeafletModule } from "@asymmetrik/ngx-leaflet"; +import { UiModule } from "src/app/shared/ui/ui.module"; const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = { suppressScrollX: true, - wheelSpeed: 0.3 + wheelSpeed: 0.3, }; @NgModule({ @@ -31,17 +38,17 @@ const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = { NgbTypeaheadModule, RouterModule.forChild([ { - path: '', - component: MapPage - } - ]) + path: "", + component: MapPage, + }, + ]), ], providers: [ { provide: PERFECT_SCROLLBAR_CONFIG, - useValue: DEFAULT_PERFECT_SCROLLBAR_CONFIG - } + useValue: DEFAULT_PERFECT_SCROLLBAR_CONFIG, + }, ], - declarations: [MapPage] + declarations: [MapPage], }) export class MapPageModule {} diff --git a/src/app/features/mapping/pages/map/map.page.html b/src/app/features/mapping/pages/map/map.page.html index 2cbc28d..cb04ad2 100644 --- a/src/app/features/mapping/pages/map/map.page.html +++ b/src/app/features/mapping/pages/map/map.page.html @@ -5,20 +5,17 @@
-
- +
+
+ Show Calls:     Show + Stations:     Show + Units:     Show Personnel: +
-
- Show Calls:     - Show Stations:     - Show Units:     - Show Personnel: -
-
-
+
-
\ No newline at end of file +
diff --git a/src/app/features/mapping/pages/map/map.page.scss b/src/app/features/mapping/pages/map/map.page.scss index 3ebe680..79584dd 100644 --- a/src/app/features/mapping/pages/map/map.page.scss +++ b/src/app/features/mapping/pages/map/map.page.scss @@ -1,3 +1,3 @@ #map { - height: 100%; -} \ No newline at end of file + height: 100%; +} diff --git a/src/app/features/mapping/pages/map/map.page.ts b/src/app/features/mapping/pages/map/map.page.ts index 4258206..d41aaea 100644 --- a/src/app/features/mapping/pages/map/map.page.ts +++ b/src/app/features/mapping/pages/map/map.page.ts @@ -33,7 +33,7 @@ export class MapPage implements AfterViewInit { private mappingStore: Store, public utilsProvider: UtilsProvider, private router: Router, - private cdr: ChangeDetectorRef + private cdr: ChangeDetectorRef, ) { this.mappingState$ = this.mappingStore.select(selectMappingState); this.markers = new Array(); @@ -120,10 +120,11 @@ export class MapPage implements AfterViewInit { if (data.MapMakerInfos && data.MapMakerInfos.length > 0) { if (data && data.MapMakerInfos) { data.MapMakerInfos.forEach((markerInfo) => { - - if ((markerInfo.Type == 0 && this.showCalls) || - (markerInfo.Type == 1 && this.showUnits) || - (markerInfo.Type == 2 && this.showStations)) { + if ( + (markerInfo.Type == 0 && this.showCalls) || + (markerInfo.Type == 1 && this.showUnits) || + (markerInfo.Type == 2 && this.showStations) + ) { let marker = L.marker([markerInfo.Latitude, markerInfo.Longitude], { icon: L.icon({ iconUrl: "assets/images/mapping/" + markerInfo.ImagePath + ".png", diff --git a/src/app/features/mapping/reducers/mapping.reducer.ts b/src/app/features/mapping/reducers/mapping.reducer.ts index 9d73c92..08cfb2b 100644 --- a/src/app/features/mapping/reducers/mapping.reducer.ts +++ b/src/app/features/mapping/reducers/mapping.reducer.ts @@ -2,18 +2,14 @@ import { initialState, MappingState } from "../store/mapping.store"; import { MappingActionsUnion, MappingActionTypes } from "../actions/mapping.actions"; import * as _ from "lodash"; -export function reducer( - state: MappingState = initialState, - action: MappingActionsUnion -): MappingState { +export function reducer(state: MappingState = initialState, action: MappingActionsUnion): MappingState { switch (action.type) { case MappingActionTypes.LOADING_MAP_DATA_SUCCESS: - return { - ...state, - mapData: action.payload, - }; + return { + ...state, + mapData: action.payload, + }; default: return state; } } - diff --git a/src/app/features/mapping/store/mapping.store.ts b/src/app/features/mapping/store/mapping.store.ts index aa744cd..e5b181e 100644 --- a/src/app/features/mapping/store/mapping.store.ts +++ b/src/app/features/mapping/store/mapping.store.ts @@ -1,9 +1,9 @@ -import { MapDataAndMarkersData } from '@resgrid/ngx-resgridlib'; +import { MapDataAndMarkersData } from "@resgrid/ngx-resgridlib"; export interface MappingState { - mapData: MapDataAndMarkersData + mapData: MapDataAndMarkersData; } export const initialState: MappingState = { - mapData: null -}; \ No newline at end of file + mapData: null, +}; diff --git a/src/app/features/profile/actions/profile.actions.ts b/src/app/features/profile/actions/profile.actions.ts index 713efaa..daacd2b 100644 --- a/src/app/features/profile/actions/profile.actions.ts +++ b/src/app/features/profile/actions/profile.actions.ts @@ -9,6 +9,4 @@ export class UpdateProfile implements Action { constructor() {} } - -export type ProfileActionsUnion = - | UpdateProfile; \ No newline at end of file +export type ProfileActionsUnion = UpdateProfile; diff --git a/src/app/features/profile/effects/profile.effect.ts b/src/app/features/profile/effects/profile.effect.ts index 7a411f1..27adc2a 100644 --- a/src/app/features/profile/effects/profile.effect.ts +++ b/src/app/features/profile/effects/profile.effect.ts @@ -1,15 +1,17 @@ -import { Action } from '@ngrx/store'; -import { Actions, Effect, ofType } from '@ngrx/effects'; -import { Injectable } from '@angular/core'; -import { Observable, of } from 'rxjs'; -import { Router } from '@angular/router'; -import { LoadingProvider } from 'src/app/providers/loading'; -import { AlertProvider } from 'src/app/providers/alert'; +import { Action } from "@ngrx/store"; +import { Actions, Effect, ofType } from "@ngrx/effects"; +import { Injectable } from "@angular/core"; +import { Observable, of } from "rxjs"; +import { Router } from "@angular/router"; +import { LoadingProvider } from "src/app/providers/loading"; +import { AlertProvider } from "src/app/providers/alert"; @Injectable() export class ProfileEffects { - - - constructor(private actions$: Actions, - private router: Router, private loadingProvider: LoadingProvider, private alertProvider: AlertProvider) { } + constructor( + private actions$: Actions, + private router: Router, + private loadingProvider: LoadingProvider, + private alertProvider: AlertProvider, + ) {} } diff --git a/src/app/features/profile/pages/edit-profile/edit-profile.module.ts b/src/app/features/profile/pages/edit-profile/edit-profile.module.ts index 77c025f..4fd6142 100644 --- a/src/app/features/profile/pages/edit-profile/edit-profile.module.ts +++ b/src/app/features/profile/pages/edit-profile/edit-profile.module.ts @@ -1,18 +1,25 @@ -import { NgModule } from '@angular/core'; -import { CommonModule } from '@angular/common'; -import { FormsModule, ReactiveFormsModule } from '@angular/forms'; -import { RouterModule } from '@angular/router'; -import { Ng2SearchPipeModule } from 'ng2-search-filter'; -import { NgbAlertModule, NgbDropdownModule, NgbNavModule, NgbPaginationModule, NgbTooltipModule, NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap'; -import { PerfectScrollbarConfigInterface, PerfectScrollbarModule, PERFECT_SCROLLBAR_CONFIG } from 'ngx-perfect-scrollbar'; -import { LeafletModule } from '@asymmetrik/ngx-leaflet'; -import { UiModule } from 'src/app/shared/ui/ui.module'; -import { NgxResgridLibModule } from '@resgrid/ngx-resgridlib'; -import { EditProfilePage } from './edit-profile.page'; +import { NgModule } from "@angular/core"; +import { CommonModule } from "@angular/common"; +import { FormsModule, ReactiveFormsModule } from "@angular/forms"; +import { RouterModule } from "@angular/router"; +import { Ng2SearchPipeModule } from "ng2-search-filter"; +import { + NgbAlertModule, + NgbDropdownModule, + NgbNavModule, + NgbPaginationModule, + NgbTooltipModule, + NgbTypeaheadModule, +} from "@ng-bootstrap/ng-bootstrap"; +import { PerfectScrollbarConfigInterface, PerfectScrollbarModule, PERFECT_SCROLLBAR_CONFIG } from "ngx-perfect-scrollbar"; +import { LeafletModule } from "@asymmetrik/ngx-leaflet"; +import { UiModule } from "src/app/shared/ui/ui.module"; +import { NgxResgridLibModule } from "@resgrid/ngx-resgridlib"; +import { EditProfilePage } from "./edit-profile.page"; const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = { suppressScrollX: true, - wheelSpeed: 0.3 + wheelSpeed: 0.3, }; @NgModule({ @@ -33,17 +40,17 @@ const DEFAULT_PERFECT_SCROLLBAR_CONFIG: PerfectScrollbarConfigInterface = { NgbTypeaheadModule, RouterModule.forChild([ { - path: '', - component: EditProfilePage - } - ]) + path: "", + component: EditProfilePage, + }, + ]), ], providers: [ { provide: PERFECT_SCROLLBAR_CONFIG, - useValue: DEFAULT_PERFECT_SCROLLBAR_CONFIG - } + useValue: DEFAULT_PERFECT_SCROLLBAR_CONFIG, + }, ], - declarations: [EditProfilePage] + declarations: [EditProfilePage], }) export class EditProfilePageModule {} diff --git a/src/app/features/profile/pages/edit-profile/edit-profile.page.html b/src/app/features/profile/pages/edit-profile/edit-profile.page.html index 79f3ee9..d6b8043 100644 --- a/src/app/features/profile/pages/edit-profile/edit-profile.page.html +++ b/src/app/features/profile/pages/edit-profile/edit-profile.page.html @@ -1,31 +1,31 @@
- -
-
-
-
-

Voice Settings

-

Setting for Push to Talk voice

-
-
-
-
- - -
-
-
-
-
- -
-
-
+ +
+
+
+
+

Voice Settings

+

Setting for Push to Talk voice

+
+
+
+
+ +
+
+
+
+ +
+
+
+
-
\ No newline at end of file +
+
diff --git a/src/app/features/profile/pages/edit-profile/edit-profile.page.ts b/src/app/features/profile/pages/edit-profile/edit-profile.page.ts index 755a1b3..58ec89f 100644 --- a/src/app/features/profile/pages/edit-profile/edit-profile.page.ts +++ b/src/app/features/profile/pages/edit-profile/edit-profile.page.ts @@ -13,15 +13,13 @@ export class EditProfilePage implements OnInit, AfterViewInit { public microphones: IDevice[] = []; public selectedMicrophone: IDevice; - constructor(private deviceService: OpenViduDevicesService, private router: Router) { - - } + constructor( + private deviceService: OpenViduDevicesService, + private router: Router, + ) {} ngOnInit(): void { - this.breadCrumbItems = [ - { label: "Resgrid Dispatch" }, - { label: "Edit Profile", active: true }, - ]; + this.breadCrumbItems = [{ label: "Resgrid Dispatch" }, { label: "Edit Profile", active: true }]; } ngAfterViewInit(): void { @@ -33,6 +31,6 @@ export class EditProfilePage implements OnInit, AfterViewInit { public save() { this.deviceService.setMicSelected(this.selectedMicrophone?.device); - this.router.navigate(['/home']); + this.router.navigate(["/home"]); } } diff --git a/src/app/features/profile/profile-routing.module.ts b/src/app/features/profile/profile-routing.module.ts index 74a5ad7..18687ba 100644 --- a/src/app/features/profile/profile-routing.module.ts +++ b/src/app/features/profile/profile-routing.module.ts @@ -1,24 +1,24 @@ -import { NgModule } from '@angular/core'; -import { PreloadAllModules, RouterModule, Routes } from '@angular/router'; -import { AuthGuard } from 'src/app/core/guards/auth.guard'; -import { LayoutComponent } from 'src/app/layouts/layout/layout.component'; +import { NgModule } from "@angular/core"; +import { PreloadAllModules, RouterModule, Routes } from "@angular/router"; +import { AuthGuard } from "src/app/core/guards/auth.guard"; +import { LayoutComponent } from "src/app/layouts/layout/layout.component"; const routes: Routes = [ { - path: '', - redirectTo: 'edit-profile', - pathMatch: 'full' + path: "", + redirectTo: "edit-profile", + pathMatch: "full", }, { - path: 'edit-profile', - component: LayoutComponent, - loadChildren: () => import('./pages/edit-profile/edit-profile.module').then(m => m.EditProfilePageModule), - canActivate: [ AuthGuard ] - } + path: "edit-profile", + component: LayoutComponent, + loadChildren: () => import("./pages/edit-profile/edit-profile.module").then((m) => m.EditProfilePageModule), + canActivate: [AuthGuard], + }, ]; @NgModule({ imports: [RouterModule.forChild(routes)], - exports: [RouterModule] + exports: [RouterModule], }) -export class ProfileRoutingModule {} \ No newline at end of file +export class ProfileRoutingModule {} diff --git a/src/app/features/profile/profile.module.ts b/src/app/features/profile/profile.module.ts index aae22bf..4d124d1 100644 --- a/src/app/features/profile/profile.module.ts +++ b/src/app/features/profile/profile.module.ts @@ -1,23 +1,28 @@ -import { NgModule } from '@angular/core'; -import { StoreModule } from '@ngrx/store'; -import { EffectsModule } from '@ngrx/effects'; -import { CommonModule } from '@angular/common'; -import { ReactiveFormsModule, FormsModule } from '@angular/forms'; -import { reducer } from './reducers/profile.reducer'; -import { ProfileEffects } from './effects/profile.effect'; -import { NgbAlertModule, NgbDropdownModule, NgbNavModule, NgbPaginationModule, NgbTooltipModule, NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap'; -import { Ng2SearchPipeModule } from 'ng2-search-filter'; -import { PerfectScrollbarModule } from 'ngx-perfect-scrollbar'; -import { LeafletModule } from '@asymmetrik/ngx-leaflet'; -import { UiModule } from 'src/app/shared/ui/ui.module'; -import { GalleryModule } from 'ng-gallery'; -import { NgxResgridLibModule } from '@resgrid/ngx-resgridlib'; -import { ProfileRoutingModule } from './profile-routing.module'; +import { NgModule } from "@angular/core"; +import { StoreModule } from "@ngrx/store"; +import { EffectsModule } from "@ngrx/effects"; +import { CommonModule } from "@angular/common"; +import { ReactiveFormsModule, FormsModule } from "@angular/forms"; +import { reducer } from "./reducers/profile.reducer"; +import { ProfileEffects } from "./effects/profile.effect"; +import { + NgbAlertModule, + NgbDropdownModule, + NgbNavModule, + NgbPaginationModule, + NgbTooltipModule, + NgbTypeaheadModule, +} from "@ng-bootstrap/ng-bootstrap"; +import { Ng2SearchPipeModule } from "ng2-search-filter"; +import { PerfectScrollbarModule } from "ngx-perfect-scrollbar"; +import { LeafletModule } from "@asymmetrik/ngx-leaflet"; +import { UiModule } from "src/app/shared/ui/ui.module"; +import { GalleryModule } from "ng-gallery"; +import { NgxResgridLibModule } from "@resgrid/ngx-resgridlib"; +import { ProfileRoutingModule } from "./profile-routing.module"; @NgModule({ - declarations: [ - - ], + declarations: [], imports: [ CommonModule, FormsModule, @@ -32,18 +37,14 @@ import { ProfileRoutingModule } from './profile-routing.module'; PerfectScrollbarModule, LeafletModule, UiModule, - StoreModule.forFeature('profileModule', reducer), + StoreModule.forFeature("profileModule", reducer), EffectsModule.forFeature([ProfileEffects]), GalleryModule, NgbPaginationModule, - NgbTypeaheadModule + NgbTypeaheadModule, ], providers: [], - exports: [ - - ], - entryComponents: [ - - ] + exports: [], + entryComponents: [], }) -export class ProfileModule { } \ No newline at end of file +export class ProfileModule {} diff --git a/src/app/features/profile/reducers/profile.reducer.ts b/src/app/features/profile/reducers/profile.reducer.ts index 2564919..7ffbf56 100644 --- a/src/app/features/profile/reducers/profile.reducer.ts +++ b/src/app/features/profile/reducers/profile.reducer.ts @@ -1,12 +1,9 @@ -import { ProfileActionsUnion } from '../actions/profile.actions'; -import { initialState, ProfileState } from '../store/profile.store'; +import { ProfileActionsUnion } from "../actions/profile.actions"; +import { initialState, ProfileState } from "../store/profile.store"; export function reducer(state: ProfileState = initialState, action: ProfileActionsUnion): ProfileState { switch (action.type) { - default: return state; } } - - diff --git a/src/app/features/profile/store/profile.store.ts b/src/app/features/profile/store/profile.store.ts index d4a9682..ece6bf6 100644 --- a/src/app/features/profile/store/profile.store.ts +++ b/src/app/features/profile/store/profile.store.ts @@ -1,9 +1,9 @@ -import { UserInfo } from 'src/app/core/models/userInfo'; +import { UserInfo } from "src/app/core/models/userInfo"; export interface ProfileState { - loggedIn: boolean; + loggedIn: boolean; } export const initialState: ProfileState = { - loggedIn: false, + loggedIn: false, }; diff --git a/src/app/features/voice/actions/voice.actions.ts b/src/app/features/voice/actions/voice.actions.ts index bc66c5d..e0c8b91 100644 --- a/src/app/features/voice/actions/voice.actions.ts +++ b/src/app/features/voice/actions/voice.actions.ts @@ -1,33 +1,33 @@ -import { Action } from '@ngrx/store'; -import { DepartmentVoiceChannelResultData, DepartmentVoiceResultData } from '@resgrid/ngx-resgridlib'; -import { StreamManager } from 'openvidu-browser'; +import { Action } from "@ngrx/store"; +import { DepartmentVoiceChannelResultData, DepartmentVoiceResultData } from "@resgrid/ngx-resgridlib"; +import { StreamManager } from "openvidu-browser"; export enum VoiceActionTypes { - GET_VOIPINFO = '[VOICE] GET_VOIPINFO', - GET_VOIPINFO_SUCCESS = '[VOICE] GET_VOIPINFO_SUCCESS', - GET_VOIPINFO_FAIL = '[VOICE] GET_VOIPINFO_FAIL', - START_VOIP_SERVICES = '[VOICE] START_VOIP_SERVICES', - VOIP_CALL_PROGRESS = '[VOICE] VOIP_CALL_PROGRESS', - VOIP_CALL_FAILED = '[VOICE] VOIP_CALL_FAILED', - VOIP_CALL_ENDED = '[VOICE] VOIP_CALL_ENDED', - VOIP_CALL_CONNECTED = '[VOICE] VOIP_CALL_CONNECTED', - VOIP_PHONE_CONNECTED = '[VOICE] VOIP_PHONE_CONNECTED', - VOIP_PHONE_DISCONNECTED = '[VOICE] VOIP_PHONE_DISCONNECTED', - VOIP_PHONE_NEWSESSION = '[VOICE] VOIP_PHONE_NEWSESSION', - VOIP_PHONE_SIPREGISTERED = '[VOICE] VOIP_PHONE_SIPREGISTERED', - VOIP_PHONE_SIPUNREGISTERED = '[VOICE] VOIP_PHONE_SIPUNREGISTERED', - VOIP_PHONE_SIPREGISTERFAILED = '[VOICE] VOIP_PHONE_SIPREGISTERFAILED', - START_TRANSMITTING = '[VOICE] START_TRANSMITTING', - STOP_TRANSMITTING = '[VOICE] STOP_TRANSMITTING', - SET_NOCHANNEL = '[VOICE] SET_NOCHANNEL', - SET_ACTIVECHANNEL = '[VOICE] SET_ACTIVECHANNEL', - VOIP_PHONE_DISCONNECT = '[VOICE] VOIP_PHONE_DISCONNECT', - ADD_OPENVIDU_STREAM = '[VOICE] ADD_OPENVIDU_STREAM', - REMOVE_OPENVIDU_STREAM = '[VOICE] REMOVE_OPENVIDU_STREAM', - DONE = '[VOICE] DONE', - SET_CURRENT_VOICE_STATE = '[VOICE] SET_CURRENT_VOICE_STATE', - INCREMENT_PARTICIPANTS = '[VOICE] INCREMENT_PARTICIPANTS', - DECREMENT_PARTICIPANTS = '[VOICE] DECREMENT_PARTICIPANTS', + GET_VOIPINFO = "[VOICE] GET_VOIPINFO", + GET_VOIPINFO_SUCCESS = "[VOICE] GET_VOIPINFO_SUCCESS", + GET_VOIPINFO_FAIL = "[VOICE] GET_VOIPINFO_FAIL", + START_VOIP_SERVICES = "[VOICE] START_VOIP_SERVICES", + VOIP_CALL_PROGRESS = "[VOICE] VOIP_CALL_PROGRESS", + VOIP_CALL_FAILED = "[VOICE] VOIP_CALL_FAILED", + VOIP_CALL_ENDED = "[VOICE] VOIP_CALL_ENDED", + VOIP_CALL_CONNECTED = "[VOICE] VOIP_CALL_CONNECTED", + VOIP_PHONE_CONNECTED = "[VOICE] VOIP_PHONE_CONNECTED", + VOIP_PHONE_DISCONNECTED = "[VOICE] VOIP_PHONE_DISCONNECTED", + VOIP_PHONE_NEWSESSION = "[VOICE] VOIP_PHONE_NEWSESSION", + VOIP_PHONE_SIPREGISTERED = "[VOICE] VOIP_PHONE_SIPREGISTERED", + VOIP_PHONE_SIPUNREGISTERED = "[VOICE] VOIP_PHONE_SIPUNREGISTERED", + VOIP_PHONE_SIPREGISTERFAILED = "[VOICE] VOIP_PHONE_SIPREGISTERFAILED", + START_TRANSMITTING = "[VOICE] START_TRANSMITTING", + STOP_TRANSMITTING = "[VOICE] STOP_TRANSMITTING", + SET_NOCHANNEL = "[VOICE] SET_NOCHANNEL", + SET_ACTIVECHANNEL = "[VOICE] SET_ACTIVECHANNEL", + VOIP_PHONE_DISCONNECT = "[VOICE] VOIP_PHONE_DISCONNECT", + ADD_OPENVIDU_STREAM = "[VOICE] ADD_OPENVIDU_STREAM", + REMOVE_OPENVIDU_STREAM = "[VOICE] REMOVE_OPENVIDU_STREAM", + DONE = "[VOICE] DONE", + SET_CURRENT_VOICE_STATE = "[VOICE] SET_CURRENT_VOICE_STATE", + INCREMENT_PARTICIPANTS = "[VOICE] INCREMENT_PARTICIPANTS", + DECREMENT_PARTICIPANTS = "[VOICE] DECREMENT_PARTICIPANTS", } export class GetVoipInfo implements Action { @@ -180,4 +180,4 @@ export type VoiceActionsUnion = | SetCurrentVoiceState | Done | IncrementParticipants - | DecrementParticipants; \ No newline at end of file + | DecrementParticipants; diff --git a/src/app/features/voice/effects/voice.effect.ts b/src/app/features/voice/effects/voice.effect.ts index 12b7519..05e055b 100644 --- a/src/app/features/voice/effects/voice.effect.ts +++ b/src/app/features/voice/effects/voice.effect.ts @@ -27,9 +27,9 @@ export class VoiceEffects { })), tap((data) => {}), // If request fails, dispatch failed action - catchError(() => of({ type: voiceAction.VoiceActionTypes.GET_VOIPINFO_FAIL })) - ) - ) + catchError(() => of({ type: voiceAction.VoiceActionTypes.GET_VOIPINFO_FAIL })), + ), + ), ); @Effect() @@ -38,7 +38,7 @@ export class VoiceEffects { map((data) => ({ type: voiceAction.VoiceActionTypes.START_VOIP_SERVICES, payload: data.payload, - })) + })), ); startVoipServices$ = createEffect( @@ -47,9 +47,9 @@ export class VoiceEffects { ofType(voiceAction.VoiceActionTypes.START_VOIP_SERVICES), tap((action) => { //this.voiceProvider.startVoipServices(action.payload); - }) + }), ), - { dispatch: false } + { dispatch: false }, ); @Effect({ dispatch: false }) @@ -58,32 +58,31 @@ export class VoiceEffects { tap((data) => { //this.voiceProvider.disconnect(); this.openViduService.leaveSession(); - }) + }), ); - setActiveChannel$ = createEffect( - () => - this.actions$.pipe( - ofType(voiceAction.VoiceActionTypes.SET_ACTIVECHANNEL), - concatLatestFrom(() => [this.authStore.select(selectAuthState)]), - exhaustMap(([action, authState], index) => - of(action).pipe( - concatMap((data) => { - if (data && data.channel) { - if (data.channel.Id === "") { - this.openViduService.leaveSession(); - return of(data); - } else { - return this.openViduService.joinChannel(data.channel, authState.user.fullName + "(Dispatch)"); - } + setActiveChannel$ = createEffect(() => + this.actions$.pipe( + ofType(voiceAction.VoiceActionTypes.SET_ACTIVECHANNEL), + concatLatestFrom(() => [this.authStore.select(selectAuthState)]), + exhaustMap(([action, authState], index) => + of(action).pipe( + concatMap((data) => { + if (data && data.channel) { + if (data.channel.Id === "") { + this.openViduService.leaveSession(); + return of(data); + } else { + return this.openViduService.joinChannel(data.channel, authState.user.fullName + "(Dispatch)"); } - }), - map((data) => ({ - type: voiceAction.VoiceActionTypes.DONE, - })) - ) - ) - ) + } + }), + map((data) => ({ + type: voiceAction.VoiceActionTypes.DONE, + })), + ), + ), + ), ); @Effect({ dispatch: false }) @@ -92,7 +91,7 @@ export class VoiceEffects { tap((data) => { //this.voiceProvider.unmute(); this.openViduService.unmute(); - }) + }), ); @Effect({ dispatch: false }) @@ -101,7 +100,7 @@ export class VoiceEffects { tap((data) => { //this.voiceProvider.mute(); this.openViduService.mute(); - }) + }), ); addOpenViduStream$ = createEffect(() => @@ -109,8 +108,8 @@ export class VoiceEffects { ofType(voiceAction.VoiceActionTypes.ADD_OPENVIDU_STREAM), map((data) => ({ type: voiceAction.VoiceActionTypes.DONE, - })) - ) + })), + ), ); removeOpenViduStream$ = createEffect(() => @@ -118,8 +117,8 @@ export class VoiceEffects { ofType(voiceAction.VoiceActionTypes.REMOVE_OPENVIDU_STREAM), map((data) => ({ type: voiceAction.VoiceActionTypes.DONE, - })) - ) + })), + ), ); done$ = createEffect(() => this.actions$.pipe(ofType(voiceAction.VoiceActionTypes.DONE)), { dispatch: false }); @@ -131,6 +130,6 @@ export class VoiceEffects { private voiceService: VoiceService, private openViduService: OpenViduService, private homeStore: Store, - private authStore: Store + private authStore: Store, ) {} } diff --git a/src/app/features/voice/reducers/voice.reducer.ts b/src/app/features/voice/reducers/voice.reducer.ts index 04279c7..65ed87d 100644 --- a/src/app/features/voice/reducers/voice.reducer.ts +++ b/src/app/features/voice/reducers/voice.reducer.ts @@ -4,10 +4,7 @@ import { VoiceActionTypes, VoiceActionsUnion } from "../actions/voice.actions"; import * as _ from "lodash"; import { DepartmentVoiceChannelResultData } from "@resgrid/ngx-resgridlib"; -export function reducer( - state: VoiceState = initialState, - action: VoiceActionsUnion -): VoiceState { +export function reducer(state: VoiceState = initialState, action: VoiceActionsUnion): VoiceState { switch (action.type) { case VoiceActionTypes.GET_VOIPINFO_SUCCESS: let channels: DepartmentVoiceChannelResultData[] = new Array(); diff --git a/src/app/features/voice/shared/video-component/ov-video.component.ts b/src/app/features/voice/shared/video-component/ov-video.component.ts index a725216..a4d6598 100644 --- a/src/app/features/voice/shared/video-component/ov-video.component.ts +++ b/src/app/features/voice/shared/video-component/ov-video.component.ts @@ -1,19 +1,11 @@ -import { - AfterViewInit, - Component, - ElementRef, - Input, - ViewChild, - OnDestroy, -} from "@angular/core"; +import { AfterViewInit, Component, ElementRef, Input, ViewChild, OnDestroy } from "@angular/core"; import { StreamManager, StreamPropertyChangedEvent } from "openvidu-browser"; @Component({ selector: "ov-video", template: ` `, }) @@ -37,11 +29,7 @@ export class OpenViduVideoComponent implements AfterViewInit { private updateVideoView() { const that = this; setTimeout(function () { - if ( - that._streamManager && - that.elementRef && - that.elementRef.nativeElement - ) { + if (that._streamManager && that.elementRef && that.elementRef.nativeElement) { that._streamManager.addVideoElement(that.elementRef.nativeElement); that.elementRef.nativeElement.volume = 1; } diff --git a/src/app/features/voice/shared/voice-footer/voice-footer.component.html b/src/app/features/voice/shared/voice-footer/voice-footer.component.html index 2ec0ff4..8376a7c 100644 --- a/src/app/features/voice/shared/voice-footer/voice-footer.component.html +++ b/src/app/features/voice/shared/voice-footer/voice-footer.component.html @@ -1,22 +1,29 @@ -