@iternio/react-native-auto-play 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +38 -0
- package/ReactNativeAutoPlay.podspec +43 -0
- package/android/CMakeLists.txt +29 -0
- package/android/build.gradle +153 -0
- package/android/fix-prefab.gradle +51 -0
- package/android/gradle.properties +10 -0
- package/android/src/main/AndroidManifest.xml +53 -0
- package/android/src/main/cpp/cpp-adapter.cpp +6 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/ActivityRenderStateProvider.kt +81 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/AndroidAutoScreen.kt +143 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/AndroidAutoService.kt +126 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/AndroidAutoSession.kt +213 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/AndroidAutoTelemetryHolder.kt +133 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/AndroidAutoTelemetryObserver.kt +201 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/HeadlessTaskService.kt +36 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/ReactNativeAutoPlayPackage.kt +19 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/VirtualRenderer.kt +400 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/hybrid/HybridAndroidAutoTelemetry.kt +7 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/hybrid/HybridAutoPlay.kt +279 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/hybrid/HybridCluster.kt +92 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/hybrid/HybridGridTemplate.kt +21 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/hybrid/HybridInformationTemplate.kt +22 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/hybrid/HybridListTemplate.kt +22 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/hybrid/HybridMapTemplate.kt +134 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/hybrid/HybridMessageTemplate.kt +15 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/hybrid/HybridSearchTemplate.kt +20 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/template/AndroidAutoTemplate.kt +60 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/template/GridTemplate.kt +92 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/template/InformationTemplate.kt +98 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/template/ListTemplate.kt +101 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/template/MapTemplate.kt +365 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/template/MessageTemplate.kt +83 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/template/Parser.kt +662 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/template/RoutePreviewTemplate.kt +75 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/template/SearchTemplate.kt +91 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/template/TripPreviewTemplate.kt +196 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/utils/AppInfo.kt +34 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/utils/Debouncer.kt +19 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/utils/ReactContextResolver.kt +60 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/utils/SymbolFont.kt +126 -0
- package/android/src/main/java/com/margelo/nitro/swe/iternio/reactnativeautoplay/utils/ThreadUtil.kt +19 -0
- package/android/src/main/res/drawable/alt_route.xml +9 -0
- package/android/src/main/res/drawable/ic_chevron_backward.xml +9 -0
- package/android/src/main/res/drawable/ic_chevron_forward.xml +9 -0
- package/android/src/main/res/font/materialsymbolsoutlined_regular.ttf +0 -0
- package/android/src/main/res/xml/automotive_app_desc.xml +4 -0
- package/ios/Bridge.h +8 -0
- package/ios/ReactHelpers/NitroConvert.h +19 -0
- package/ios/ReactHelpers/NitroConvert.m +21 -0
- package/ios/ReactHelpers/RCTRootView.h +29 -0
- package/ios/Types.swift +20 -0
- package/ios/extensions/CarPlayExtensions.swift +145 -0
- package/ios/extensions/CarPlayTemplateExtensions.swift +87 -0
- package/ios/extensions/NitroImageExtensions.swift +33 -0
- package/ios/extensions/UIImage+Toggle.swift +58 -0
- package/ios/hybrid/HybridAutoPlay.swift +293 -0
- package/ios/hybrid/HybridCarPlayDashboard.swift +73 -0
- package/ios/hybrid/HybridCluster.swift +181 -0
- package/ios/hybrid/HybridGridTemplate.swift +31 -0
- package/ios/hybrid/HybridInformationTemplate.swift +29 -0
- package/ios/hybrid/HybridListTemplate.swift +31 -0
- package/ios/hybrid/HybridMapTemplate.swift +141 -0
- package/ios/hybrid/HybridMessageTemplate.swift +19 -0
- package/ios/hybrid/HybridSearchTemplate.swift +29 -0
- package/ios/scenes/AutoPlayInterfaceController.swift +221 -0
- package/ios/scenes/AutoPlayScene.swift +126 -0
- package/ios/scenes/AutoPlaySceneViewController.swift +36 -0
- package/ios/scenes/ClusterSceneDelegate.swift +174 -0
- package/ios/scenes/DashboardSceneDelegate.swift +128 -0
- package/ios/scenes/HeadUnitSceneDelegate.swift +68 -0
- package/ios/scenes/SceneStore.swift +78 -0
- package/ios/scenes/WindowApplicationSceneDelegate.swift +53 -0
- package/ios/templates/AutoPlayTemplate.swift +65 -0
- package/ios/templates/GridTemplate.swift +102 -0
- package/ios/templates/InformationTemplate.swift +67 -0
- package/ios/templates/ListTemplate.swift +77 -0
- package/ios/templates/MapTemplate.swift +640 -0
- package/ios/templates/MessageTemplate.swift +48 -0
- package/ios/templates/Parser.swift +877 -0
- package/ios/templates/SearchTemplate.swift +170 -0
- package/ios/templates/TemplateStore.swift +45 -0
- package/ios/utils/RootModule.swift +136 -0
- package/ios/utils/SymbolFont.swift +199 -0
- package/ios/utils/ViewUtils.swift +39 -0
- package/lib/AutoPlayHeadlessJsTask.d.ts +4 -0
- package/lib/AutoPlayHeadlessJsTask.js +15 -0
- package/lib/components/MapTemplateContext.d.ts +7 -0
- package/lib/components/MapTemplateContext.js +6 -0
- package/lib/components/SafeAreaInsetsContext.d.ts +7 -0
- package/lib/components/SafeAreaInsetsContext.js +17 -0
- package/lib/components/SafeAreaView.d.ts +2 -0
- package/lib/components/SafeAreaView.js +18 -0
- package/lib/hooks/useAndroidAutoTelemetry.d.ts +35 -0
- package/lib/hooks/useAndroidAutoTelemetry.js +74 -0
- package/lib/hooks/useMapTemplate.d.ts +5 -0
- package/lib/hooks/useMapTemplate.js +9 -0
- package/lib/hooks/useSafeAreaInsets.d.ts +1 -0
- package/lib/hooks/useSafeAreaInsets.js +5 -0
- package/lib/index.d.ts +37 -0
- package/lib/index.js +39 -0
- package/lib/index.web.d.ts +0 -0
- package/lib/index.web.js +1 -0
- package/lib/scenes/AutoPlayCluster.d.ts +44 -0
- package/lib/scenes/AutoPlayCluster.js +129 -0
- package/lib/scenes/CarPlayDashboardScene.d.ts +35 -0
- package/lib/scenes/CarPlayDashboardScene.js +88 -0
- package/lib/specs/AndroidAutoTelemetry.nitro.d.ts +15 -0
- package/lib/specs/AndroidAutoTelemetry.nitro.js +1 -0
- package/lib/specs/AutoPlay.nitro.d.ts +64 -0
- package/lib/specs/AutoPlay.nitro.js +1 -0
- package/lib/specs/CarPlayDashboard.nitro.d.ts +22 -0
- package/lib/specs/CarPlayDashboard.nitro.js +1 -0
- package/lib/specs/Cluster.nitro.d.ts +19 -0
- package/lib/specs/Cluster.nitro.js +1 -0
- package/lib/specs/GridTemplate.nitro.d.ts +14 -0
- package/lib/specs/GridTemplate.nitro.js +1 -0
- package/lib/specs/HybridAndroidAutoTelemetry.nitro.d.ts +15 -0
- package/lib/specs/HybridAndroidAutoTelemetry.nitro.js +1 -0
- package/lib/specs/HybridAutoPlay.nitro.d.ts +64 -0
- package/lib/specs/HybridAutoPlay.nitro.js +1 -0
- package/lib/specs/HybridCarPlayDashboard.nitro.d.ts +22 -0
- package/lib/specs/HybridCarPlayDashboard.nitro.js +1 -0
- package/lib/specs/HybridCluster.nitro.d.ts +19 -0
- package/lib/specs/HybridCluster.nitro.js +1 -0
- package/lib/specs/HybridGridTemplate.nitro.d.ts +14 -0
- package/lib/specs/HybridGridTemplate.nitro.js +1 -0
- package/lib/specs/HybridInformationTemplate.nitro.d.ts +13 -0
- package/lib/specs/HybridInformationTemplate.nitro.js +1 -0
- package/lib/specs/HybridListTemplate.nitro.d.ts +13 -0
- package/lib/specs/HybridListTemplate.nitro.js +1 -0
- package/lib/specs/HybridMapTemplate.nitro.d.ts +25 -0
- package/lib/specs/HybridMapTemplate.nitro.js +1 -0
- package/lib/specs/HybridMessageTemplate.nitro.d.ts +12 -0
- package/lib/specs/HybridMessageTemplate.nitro.js +1 -0
- package/lib/specs/HybridSearchTemplate.nitro.d.ts +13 -0
- package/lib/specs/HybridSearchTemplate.nitro.js +1 -0
- package/lib/specs/InformationTemplate.nitro.d.ts +13 -0
- package/lib/specs/InformationTemplate.nitro.js +1 -0
- package/lib/specs/ListTemplate.nitro.d.ts +13 -0
- package/lib/specs/ListTemplate.nitro.js +1 -0
- package/lib/specs/MapTemplate.nitro.d.ts +25 -0
- package/lib/specs/MapTemplate.nitro.js +1 -0
- package/lib/specs/MessageTemplate.nitro.d.ts +12 -0
- package/lib/specs/MessageTemplate.nitro.js +1 -0
- package/lib/specs/SearchTemplate.nitro.d.ts +13 -0
- package/lib/specs/SearchTemplate.nitro.js +1 -0
- package/lib/templates/GridTemplate.d.ts +28 -0
- package/lib/templates/GridTemplate.js +29 -0
- package/lib/templates/InformationTemplate.d.ts +52 -0
- package/lib/templates/InformationTemplate.js +45 -0
- package/lib/templates/ListTemplate.d.ts +77 -0
- package/lib/templates/ListTemplate.js +29 -0
- package/lib/templates/MapTemplate.d.ts +142 -0
- package/lib/templates/MapTemplate.js +115 -0
- package/lib/templates/MessageTemplate.d.ts +55 -0
- package/lib/templates/MessageTemplate.js +43 -0
- package/lib/templates/SearchTemplate.d.ts +55 -0
- package/lib/templates/SearchTemplate.js +28 -0
- package/lib/templates/Template.d.ts +76 -0
- package/lib/templates/Template.js +33 -0
- package/lib/types/Button.d.ts +76 -0
- package/lib/types/Button.js +9 -0
- package/lib/types/Event.d.ts +14 -0
- package/lib/types/Event.js +1 -0
- package/lib/types/GestureEvents.d.ts +37 -0
- package/lib/types/GestureEvents.js +1 -0
- package/lib/types/Glyphmap.d.ts +4105 -0
- package/lib/types/Glyphmap.js +4105 -0
- package/lib/types/Image.d.ts +27 -0
- package/lib/types/Image.js +1 -0
- package/lib/types/Maneuver.d.ts +200 -0
- package/lib/types/Maneuver.js +61 -0
- package/lib/types/RootComponent.d.ts +35 -0
- package/lib/types/RootComponent.js +1 -0
- package/lib/types/Telemetry.d.ts +64 -0
- package/lib/types/Telemetry.js +14 -0
- package/lib/types/Text.d.ts +23 -0
- package/lib/types/Text.js +5 -0
- package/lib/types/Trip.d.ts +69 -0
- package/lib/types/Trip.js +1 -0
- package/lib/utils/NitroAction.d.ts +32 -0
- package/lib/utils/NitroAction.js +126 -0
- package/lib/utils/NitroAlert.d.ts +43 -0
- package/lib/utils/NitroAlert.js +16 -0
- package/lib/utils/NitroAttributedString.d.ts +22 -0
- package/lib/utils/NitroAttributedString.js +11 -0
- package/lib/utils/NitroColor.d.ts +14 -0
- package/lib/utils/NitroColor.js +21 -0
- package/lib/utils/NitroGrid.d.ts +16 -0
- package/lib/utils/NitroGrid.js +9 -0
- package/lib/utils/NitroImage.d.ts +24 -0
- package/lib/utils/NitroImage.js +32 -0
- package/lib/utils/NitroManeuver.d.ts +42 -0
- package/lib/utils/NitroManeuver.js +78 -0
- package/lib/utils/NitroMapButton.d.ts +12 -0
- package/lib/utils/NitroMapButton.js +35 -0
- package/lib/utils/NitroSection.d.ts +23 -0
- package/lib/utils/NitroSection.js +62 -0
- package/nitro.json +52 -0
- package/nitrogen/generated/.gitattributes +1 -0
- package/nitrogen/generated/android/ReactNativeAutoPlay+autolinking.cmake +102 -0
- package/nitrogen/generated/android/ReactNativeAutoPlay+autolinking.gradle +27 -0
- package/nitrogen/generated/android/ReactNativeAutoPlayOnLoad.cpp +156 -0
- package/nitrogen/generated/android/ReactNativeAutoPlayOnLoad.hpp +25 -0
- package/nitrogen/generated/android/c++/JAlertActionStyle.hpp +62 -0
- package/nitrogen/generated/android/c++/JAlertDismissalReason.hpp +62 -0
- package/nitrogen/generated/android/c++/JAssetImage.hpp +80 -0
- package/nitrogen/generated/android/c++/JAutoText.hpp +70 -0
- package/nitrogen/generated/android/c++/JClusterEventName.hpp +65 -0
- package/nitrogen/generated/android/c++/JColorScheme.hpp +59 -0
- package/nitrogen/generated/android/c++/JDistance.hpp +62 -0
- package/nitrogen/generated/android/c++/JDistanceUnits.hpp +68 -0
- package/nitrogen/generated/android/c++/JDurationWithTimeZone.hpp +61 -0
- package/nitrogen/generated/android/c++/JEventName.hpp +59 -0
- package/nitrogen/generated/android/c++/JForkType.hpp +59 -0
- package/nitrogen/generated/android/c++/JFunc_void.hpp +74 -0
- package/nitrogen/generated/android/c++/JFunc_void_AlertDismissalReason.hpp +76 -0
- package/nitrogen/generated/android/c++/JFunc_void_AutoText_std__optional_AutoText_.hpp +82 -0
- package/nitrogen/generated/android/c++/JFunc_void_ColorScheme.hpp +76 -0
- package/nitrogen/generated/android/c++/JFunc_void_Point.hpp +76 -0
- package/nitrogen/generated/android/c++/JFunc_void_Point_double.hpp +76 -0
- package/nitrogen/generated/android/c++/JFunc_void_Point_std__optional_Point_.hpp +77 -0
- package/nitrogen/generated/android/c++/JFunc_void_SafeAreaInsets.hpp +77 -0
- package/nitrogen/generated/android/c++/JFunc_void_VisibilityState.hpp +76 -0
- package/nitrogen/generated/android/c++/JFunc_void_std__optional_Telemetry__std__optional_std__string_.hpp +84 -0
- package/nitrogen/generated/android/c++/JFunc_void_std__optional_bool_.hpp +75 -0
- package/nitrogen/generated/android/c++/JFunc_void_std__string.hpp +75 -0
- package/nitrogen/generated/android/c++/JFunc_void_std__string_ColorScheme.hpp +77 -0
- package/nitrogen/generated/android/c++/JFunc_void_std__string_ZoomEvent.hpp +77 -0
- package/nitrogen/generated/android/c++/JFunc_void_std__string_bool.hpp +75 -0
- package/nitrogen/generated/android/c++/JFunc_void_std__string_std__string.hpp +75 -0
- package/nitrogen/generated/android/c++/JGlyphImage.hpp +71 -0
- package/nitrogen/generated/android/c++/JGridTemplateConfig.hpp +219 -0
- package/nitrogen/generated/android/c++/JHybridAndroidAutoTelemetrySpec.cpp +81 -0
- package/nitrogen/generated/android/c++/JHybridAndroidAutoTelemetrySpec.hpp +65 -0
- package/nitrogen/generated/android/c++/JHybridAutoPlaySpec.cpp +234 -0
- package/nitrogen/generated/android/c++/JHybridAutoPlaySpec.hpp +74 -0
- package/nitrogen/generated/android/c++/JHybridClusterSpec.cpp +193 -0
- package/nitrogen/generated/android/c++/JHybridClusterSpec.hpp +71 -0
- package/nitrogen/generated/android/c++/JHybridGridTemplateSpec.cpp +131 -0
- package/nitrogen/generated/android/c++/JHybridGridTemplateSpec.hpp +66 -0
- package/nitrogen/generated/android/c++/JHybridInformationTemplateSpec.cpp +129 -0
- package/nitrogen/generated/android/c++/JHybridInformationTemplateSpec.hpp +66 -0
- package/nitrogen/generated/android/c++/JHybridListTemplateSpec.cpp +138 -0
- package/nitrogen/generated/android/c++/JHybridListTemplateSpec.hpp +66 -0
- package/nitrogen/generated/android/c++/JHybridMapTemplateSpec.cpp +314 -0
- package/nitrogen/generated/android/c++/JHybridMapTemplateSpec.hpp +74 -0
- package/nitrogen/generated/android/c++/JHybridMessageTemplateSpec.cpp +113 -0
- package/nitrogen/generated/android/c++/JHybridMessageTemplateSpec.hpp +65 -0
- package/nitrogen/generated/android/c++/JHybridSearchTemplateSpec.cpp +118 -0
- package/nitrogen/generated/android/c++/JHybridSearchTemplateSpec.hpp +66 -0
- package/nitrogen/generated/android/c++/JImageLane.hpp +81 -0
- package/nitrogen/generated/android/c++/JInformationTemplateConfig.hpp +226 -0
- package/nitrogen/generated/android/c++/JKeepType.hpp +62 -0
- package/nitrogen/generated/android/c++/JLaneGuidance.hpp +112 -0
- package/nitrogen/generated/android/c++/JListTemplateConfig.hpp +222 -0
- package/nitrogen/generated/android/c++/JManeuverType.hpp +89 -0
- package/nitrogen/generated/android/c++/JMapTemplateConfig.hpp +312 -0
- package/nitrogen/generated/android/c++/JMessageTemplateConfig.hpp +224 -0
- package/nitrogen/generated/android/c++/JNavigationAlertAction.hpp +80 -0
- package/nitrogen/generated/android/c++/JNavigationAlertCallbacks.hpp +91 -0
- package/nitrogen/generated/android/c++/JNitroAction.hpp +112 -0
- package/nitrogen/generated/android/c++/JNitroActionType.hpp +62 -0
- package/nitrogen/generated/android/c++/JNitroAlignment.hpp +59 -0
- package/nitrogen/generated/android/c++/JNitroAttributedString.hpp +91 -0
- package/nitrogen/generated/android/c++/JNitroAttributedStringImage.hpp +70 -0
- package/nitrogen/generated/android/c++/JNitroBaseMapTemplateConfig.hpp +196 -0
- package/nitrogen/generated/android/c++/JNitroButtonStyle.hpp +68 -0
- package/nitrogen/generated/android/c++/JNitroColor.hpp +61 -0
- package/nitrogen/generated/android/c++/JNitroGridButton.hpp +92 -0
- package/nitrogen/generated/android/c++/JNitroImage.cpp +26 -0
- package/nitrogen/generated/android/c++/JNitroImage.hpp +75 -0
- package/nitrogen/generated/android/c++/JNitroManeuver.cpp +35 -0
- package/nitrogen/generated/android/c++/JNitroManeuver.hpp +126 -0
- package/nitrogen/generated/android/c++/JNitroMapButton.hpp +88 -0
- package/nitrogen/generated/android/c++/JNitroMapButtonType.hpp +59 -0
- package/nitrogen/generated/android/c++/JNitroMessageManeuver.hpp +78 -0
- package/nitrogen/generated/android/c++/JNitroNavigationAlert.hpp +137 -0
- package/nitrogen/generated/android/c++/JNitroRoutingManeuver.hpp +221 -0
- package/nitrogen/generated/android/c++/JNitroRow.hpp +112 -0
- package/nitrogen/generated/android/c++/JNitroSection.hpp +105 -0
- package/nitrogen/generated/android/c++/JNitroSectionType.hpp +59 -0
- package/nitrogen/generated/android/c++/JNumericTelemetryItem.hpp +61 -0
- package/nitrogen/generated/android/c++/JOffRampType.hpp +65 -0
- package/nitrogen/generated/android/c++/JOnRampType.hpp +77 -0
- package/nitrogen/generated/android/c++/JPoint.hpp +61 -0
- package/nitrogen/generated/android/c++/JPreferredImageLane.hpp +89 -0
- package/nitrogen/generated/android/c++/JRouteChoice.hpp +159 -0
- package/nitrogen/generated/android/c++/JSafeAreaInsets.hpp +73 -0
- package/nitrogen/generated/android/c++/JSearchTemplateConfig.hpp +231 -0
- package/nitrogen/generated/android/c++/JStringTelemetryItem.hpp +61 -0
- package/nitrogen/generated/android/c++/JTelemetry.hpp +84 -0
- package/nitrogen/generated/android/c++/JTrafficSide.hpp +59 -0
- package/nitrogen/generated/android/c++/JTravelEstimates.hpp +74 -0
- package/nitrogen/generated/android/c++/JTripConfig.hpp +77 -0
- package/nitrogen/generated/android/c++/JTripPoint.hpp +80 -0
- package/nitrogen/generated/android/c++/JTripPreviewTextConfiguration.hpp +69 -0
- package/nitrogen/generated/android/c++/JTripSelectorCallback.hpp +69 -0
- package/nitrogen/generated/android/c++/JTripsConfig.hpp +95 -0
- package/nitrogen/generated/android/c++/JTurnType.hpp +80 -0
- package/nitrogen/generated/android/c++/JVariant_GlyphImage_AssetImage.cpp +26 -0
- package/nitrogen/generated/android/c++/JVariant_GlyphImage_AssetImage.hpp +75 -0
- package/nitrogen/generated/android/c++/JVariant_PreferredImageLane_ImageLane.cpp +26 -0
- package/nitrogen/generated/android/c++/JVariant_PreferredImageLane_ImageLane.hpp +81 -0
- package/nitrogen/generated/android/c++/JVehicleTelemetryItem.hpp +70 -0
- package/nitrogen/generated/android/c++/JVisibilityState.hpp +65 -0
- package/nitrogen/generated/android/c++/JVisibleTravelEstimate.hpp +59 -0
- package/nitrogen/generated/android/c++/JZoomEvent.hpp +59 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/AlertActionStyle.kt +22 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/AlertDismissalReason.kt +22 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/AssetImage.kt +53 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/AutoText.kt +44 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/ClusterEventName.kt +23 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/ColorScheme.kt +21 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Distance.kt +41 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/DistanceUnits.kt +24 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/DurationWithTimeZone.kt +41 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/EventName.kt +21 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/ForkType.kt +21 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_AlertDismissalReason.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_AutoText_std__optional_AutoText_.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_ColorScheme.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_Point.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_Point_double.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_Point_std__optional_Point_.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_SafeAreaInsets.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_VisibilityState.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_std__optional_Telemetry__std__optional_std__string_.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_std__optional_bool_.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_std__string.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_std__string_ColorScheme.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_std__string_ZoomEvent.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_std__string_bool.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Func_void_std__string_std__string.kt +80 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/GlyphImage.kt +47 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/GridTemplateConfig.kt +72 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/HybridAndroidAutoTelemetrySpec.kt +62 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/HybridAutoPlaySpec.kt +109 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/HybridClusterSpec.kt +107 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/HybridGridTemplateSpec.kt +61 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/HybridInformationTemplateSpec.kt +61 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/HybridListTemplateSpec.kt +61 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/HybridMapTemplateSpec.kt +98 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/HybridMessageTemplateSpec.kt +57 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/HybridSearchTemplateSpec.kt +61 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/ImageLane.kt +41 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/InformationTemplateConfig.kt +75 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/KeepType.kt +22 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/LaneGuidance.kt +41 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/ListTemplateConfig.kt +72 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/ManeuverType.kt +31 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/MapTemplateConfig.kt +90 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/MessageTemplateConfig.kt +78 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NavigationAlertAction.kt +48 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NavigationAlertCallbacks.kt +45 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroAction.kt +63 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroActionType.kt +22 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroAlignment.kt +21 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroAttributedString.kt +41 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroAttributedStringImage.kt +41 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroBaseMapTemplateConfig.kt +63 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroButtonStyle.kt +24 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroColor.kt +41 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroGridButton.kt +48 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroImage.kt +59 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroManeuver.kt +59 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroMapButton.kt +48 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroMapButtonType.kt +21 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroMessageManeuver.kt +47 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroNavigationAlert.kt +69 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroRoutingManeuver.kt +92 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroRow.kt +63 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroSection.kt +44 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NitroSectionType.kt +21 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/NumericTelemetryItem.kt +41 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/OffRampType.kt +23 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/OnRampType.kt +27 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Point.kt +41 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/PreferredImageLane.kt +47 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/ReactNativeAutoPlayOnLoad.kt +35 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/RouteChoice.kt +50 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/SafeAreaInsets.kt +50 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/SearchTemplateConfig.kt +81 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/StringTelemetryItem.kt +41 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Telemetry.kt +53 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/TrafficSide.kt +21 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/TravelEstimates.kt +44 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/TripConfig.kt +41 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/TripPoint.kt +47 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/TripPreviewTextConfiguration.kt +47 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/TripSelectorCallback.kt +42 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/TripsConfig.kt +41 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/TurnType.kt +28 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Variant_GlyphImage_AssetImage.kt +59 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/Variant_PreferredImageLane_ImageLane.kt +59 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/VehicleTelemetryItem.kt +44 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/VisibilityState.kt +23 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/VisibleTravelEstimate.kt +21 -0
- package/nitrogen/generated/android/kotlin/com/margelo/nitro/swe/iternio/reactnativeautoplay/ZoomEvent.kt +21 -0
- package/nitrogen/generated/ios/ReactNativeAutoPlay+autolinking.rb +60 -0
- package/nitrogen/generated/ios/ReactNativeAutoPlay-Swift-Cxx-Bridge.cpp +296 -0
- package/nitrogen/generated/ios/ReactNativeAutoPlay-Swift-Cxx-Bridge.hpp +1509 -0
- package/nitrogen/generated/ios/ReactNativeAutoPlay-Swift-Cxx-Umbrella.hpp +266 -0
- package/nitrogen/generated/ios/ReactNativeAutoPlayAutolinking.mm +97 -0
- package/nitrogen/generated/ios/ReactNativeAutoPlayAutolinking.swift +145 -0
- package/nitrogen/generated/ios/c++/HybridAutoPlaySpecSwift.cpp +11 -0
- package/nitrogen/generated/ios/c++/HybridAutoPlaySpecSwift.hpp +180 -0
- package/nitrogen/generated/ios/c++/HybridCarPlayDashboardSpecSwift.cpp +11 -0
- package/nitrogen/generated/ios/c++/HybridCarPlayDashboardSpecSwift.hpp +120 -0
- package/nitrogen/generated/ios/c++/HybridClusterSpecSwift.cpp +11 -0
- package/nitrogen/generated/ios/c++/HybridClusterSpecSwift.hpp +150 -0
- package/nitrogen/generated/ios/c++/HybridGridTemplateSpecSwift.cpp +11 -0
- package/nitrogen/generated/ios/c++/HybridGridTemplateSpecSwift.hpp +128 -0
- package/nitrogen/generated/ios/c++/HybridInformationTemplateSpecSwift.cpp +11 -0
- package/nitrogen/generated/ios/c++/HybridInformationTemplateSpecSwift.hpp +134 -0
- package/nitrogen/generated/ios/c++/HybridListTemplateSpecSwift.cpp +11 -0
- package/nitrogen/generated/ios/c++/HybridListTemplateSpecSwift.hpp +134 -0
- package/nitrogen/generated/ios/c++/HybridMapTemplateSpecSwift.cpp +11 -0
- package/nitrogen/generated/ios/c++/HybridMapTemplateSpecSwift.hpp +264 -0
- package/nitrogen/generated/ios/c++/HybridMessageTemplateSpecSwift.cpp +11 -0
- package/nitrogen/generated/ios/c++/HybridMessageTemplateSpecSwift.hpp +119 -0
- package/nitrogen/generated/ios/c++/HybridSearchTemplateSpecSwift.cpp +11 -0
- package/nitrogen/generated/ios/c++/HybridSearchTemplateSpecSwift.hpp +125 -0
- package/nitrogen/generated/ios/swift/AlertActionStyle.swift +44 -0
- package/nitrogen/generated/ios/swift/AlertDismissalReason.swift +44 -0
- package/nitrogen/generated/ios/swift/AssetImage.swift +102 -0
- package/nitrogen/generated/ios/swift/AutoText.swift +81 -0
- package/nitrogen/generated/ios/swift/ClusterEventName.swift +48 -0
- package/nitrogen/generated/ios/swift/ColorScheme.swift +40 -0
- package/nitrogen/generated/ios/swift/Distance.swift +46 -0
- package/nitrogen/generated/ios/swift/DistanceUnits.swift +52 -0
- package/nitrogen/generated/ios/swift/DurationWithTimeZone.swift +46 -0
- package/nitrogen/generated/ios/swift/EventName.swift +40 -0
- package/nitrogen/generated/ios/swift/ForkType.swift +40 -0
- package/nitrogen/generated/ios/swift/Func_void.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_AlertDismissalReason.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_AutoText_std__optional_AutoText_.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_ColorScheme.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_Point.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_Point_double.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_Point_std__optional_Point_.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_SafeAreaInsets.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_VisibilityState.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_std__exception_ptr.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_std__optional_bool_.swift +54 -0
- package/nitrogen/generated/ios/swift/Func_void_std__string.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_std__string_ColorScheme.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_std__string_ZoomEvent.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_std__string_bool.swift +47 -0
- package/nitrogen/generated/ios/swift/Func_void_std__string_std__string.swift +47 -0
- package/nitrogen/generated/ios/swift/GlyphImage.swift +80 -0
- package/nitrogen/generated/ios/swift/GridTemplateConfig.swift +386 -0
- package/nitrogen/generated/ios/swift/HybridAutoPlaySpec.swift +66 -0
- package/nitrogen/generated/ios/swift/HybridAutoPlaySpec_cxx.swift +326 -0
- package/nitrogen/generated/ios/swift/HybridCarPlayDashboardSpec.swift +60 -0
- package/nitrogen/generated/ios/swift/HybridCarPlayDashboardSpec_cxx.swift +190 -0
- package/nitrogen/generated/ios/swift/HybridClusterSpec.swift +63 -0
- package/nitrogen/generated/ios/swift/HybridClusterSpec_cxx.swift +250 -0
- package/nitrogen/generated/ios/swift/HybridGridTemplateSpec.swift +57 -0
- package/nitrogen/generated/ios/swift/HybridGridTemplateSpec_cxx.swift +141 -0
- package/nitrogen/generated/ios/swift/HybridInformationTemplateSpec.swift +57 -0
- package/nitrogen/generated/ios/swift/HybridInformationTemplateSpec_cxx.swift +141 -0
- package/nitrogen/generated/ios/swift/HybridListTemplateSpec.swift +57 -0
- package/nitrogen/generated/ios/swift/HybridListTemplateSpec_cxx.swift +148 -0
- package/nitrogen/generated/ios/swift/HybridMapTemplateSpec.swift +65 -0
- package/nitrogen/generated/ios/swift/HybridMapTemplateSpec_cxx.swift +272 -0
- package/nitrogen/generated/ios/swift/HybridMessageTemplateSpec.swift +56 -0
- package/nitrogen/generated/ios/swift/HybridMessageTemplateSpec_cxx.swift +130 -0
- package/nitrogen/generated/ios/swift/HybridSearchTemplateSpec.swift +57 -0
- package/nitrogen/generated/ios/swift/HybridSearchTemplateSpec_cxx.swift +141 -0
- package/nitrogen/generated/ios/swift/ImageLane.swift +84 -0
- package/nitrogen/generated/ios/swift/InformationTemplateConfig.swift +416 -0
- package/nitrogen/generated/ios/swift/KeepType.swift +44 -0
- package/nitrogen/generated/ios/swift/LaneGuidance.swift +96 -0
- package/nitrogen/generated/ios/swift/ListTemplateConfig.swift +405 -0
- package/nitrogen/generated/ios/swift/ManeuverType.swift +80 -0
- package/nitrogen/generated/ios/swift/MapTemplateConfig.swift +668 -0
- package/nitrogen/generated/ios/swift/MessageTemplateConfig.swift +484 -0
- package/nitrogen/generated/ios/swift/NavigationAlertAction.swift +80 -0
- package/nitrogen/generated/ios/swift/NavigationAlertCallbacks.swift +74 -0
- package/nitrogen/generated/ios/swift/NitroAction.swift +242 -0
- package/nitrogen/generated/ios/swift/NitroActionType.swift +44 -0
- package/nitrogen/generated/ios/swift/NitroAlignment.swift +40 -0
- package/nitrogen/generated/ios/swift/NitroAttributedString.swift +77 -0
- package/nitrogen/generated/ios/swift/NitroAttributedStringImage.swift +72 -0
- package/nitrogen/generated/ios/swift/NitroBaseMapTemplateConfig.swift +360 -0
- package/nitrogen/generated/ios/swift/NitroButtonStyle.swift +52 -0
- package/nitrogen/generated/ios/swift/NitroCarPlayDashboardButton.swift +159 -0
- package/nitrogen/generated/ios/swift/NitroColor.swift +46 -0
- package/nitrogen/generated/ios/swift/NitroGridButton.swift +94 -0
- package/nitrogen/generated/ios/swift/NitroImage.swift +18 -0
- package/nitrogen/generated/ios/swift/NitroManeuver.swift +18 -0
- package/nitrogen/generated/ios/swift/NitroMapButton.swift +113 -0
- package/nitrogen/generated/ios/swift/NitroMapButtonType.swift +40 -0
- package/nitrogen/generated/ios/swift/NitroMessageManeuver.swift +132 -0
- package/nitrogen/generated/ios/swift/NitroNavigationAlert.swift +263 -0
- package/nitrogen/generated/ios/swift/NitroRoutingManeuver.swift +493 -0
- package/nitrogen/generated/ios/swift/NitroRow.swift +262 -0
- package/nitrogen/generated/ios/swift/NitroSection.swift +88 -0
- package/nitrogen/generated/ios/swift/NitroSectionType.swift +40 -0
- package/nitrogen/generated/ios/swift/OffRampType.swift +48 -0
- package/nitrogen/generated/ios/swift/OnRampType.swift +64 -0
- package/nitrogen/generated/ios/swift/Point.swift +46 -0
- package/nitrogen/generated/ios/swift/PreferredImageLane.swift +106 -0
- package/nitrogen/generated/ios/swift/RouteChoice.swift +127 -0
- package/nitrogen/generated/ios/swift/SafeAreaInsets.swift +98 -0
- package/nitrogen/generated/ios/swift/SearchTemplateConfig.swift +455 -0
- package/nitrogen/generated/ios/swift/TrafficSide.swift +40 -0
- package/nitrogen/generated/ios/swift/TravelEstimates.swift +69 -0
- package/nitrogen/generated/ios/swift/TripConfig.swift +46 -0
- package/nitrogen/generated/ios/swift/TripPoint.swift +68 -0
- package/nitrogen/generated/ios/swift/TripPreviewTextConfiguration.swift +68 -0
- package/nitrogen/generated/ios/swift/TripSelectorCallback.swift +46 -0
- package/nitrogen/generated/ios/swift/TripsConfig.swift +58 -0
- package/nitrogen/generated/ios/swift/TurnType.swift +68 -0
- package/nitrogen/generated/ios/swift/Variant_GlyphImage_AssetImage.swift +18 -0
- package/nitrogen/generated/ios/swift/Variant_PreferredImageLane_ImageLane.swift +18 -0
- package/nitrogen/generated/ios/swift/VisibilityState.swift +48 -0
- package/nitrogen/generated/ios/swift/VisibleTravelEstimate.swift +40 -0
- package/nitrogen/generated/ios/swift/ZoomEvent.swift +40 -0
- package/nitrogen/generated/shared/c++/AlertActionStyle.hpp +80 -0
- package/nitrogen/generated/shared/c++/AlertDismissalReason.hpp +80 -0
- package/nitrogen/generated/shared/c++/AssetImage.hpp +98 -0
- package/nitrogen/generated/shared/c++/AutoText.hpp +86 -0
- package/nitrogen/generated/shared/c++/ClusterEventName.hpp +84 -0
- package/nitrogen/generated/shared/c++/ColorScheme.hpp +76 -0
- package/nitrogen/generated/shared/c++/Distance.hpp +80 -0
- package/nitrogen/generated/shared/c++/DistanceUnits.hpp +88 -0
- package/nitrogen/generated/shared/c++/DurationWithTimeZone.hpp +79 -0
- package/nitrogen/generated/shared/c++/EventName.hpp +76 -0
- package/nitrogen/generated/shared/c++/ForkType.hpp +62 -0
- package/nitrogen/generated/shared/c++/GlyphImage.hpp +89 -0
- package/nitrogen/generated/shared/c++/GridTemplateConfig.hpp +129 -0
- package/nitrogen/generated/shared/c++/HybridAndroidAutoTelemetrySpec.cpp +21 -0
- package/nitrogen/generated/shared/c++/HybridAndroidAutoTelemetrySpec.hpp +66 -0
- package/nitrogen/generated/shared/c++/HybridAutoPlaySpec.cpp +30 -0
- package/nitrogen/generated/shared/c++/HybridAutoPlaySpec.hpp +86 -0
- package/nitrogen/generated/shared/c++/HybridCarPlayDashboardSpec.cpp +24 -0
- package/nitrogen/generated/shared/c++/HybridCarPlayDashboardSpec.hpp +75 -0
- package/nitrogen/generated/shared/c++/HybridClusterSpec.cpp +27 -0
- package/nitrogen/generated/shared/c++/HybridClusterSpec.hpp +82 -0
- package/nitrogen/generated/shared/c++/HybridGridTemplateSpec.cpp +22 -0
- package/nitrogen/generated/shared/c++/HybridGridTemplateSpec.hpp +69 -0
- package/nitrogen/generated/shared/c++/HybridInformationTemplateSpec.cpp +22 -0
- package/nitrogen/generated/shared/c++/HybridInformationTemplateSpec.hpp +68 -0
- package/nitrogen/generated/shared/c++/HybridListTemplateSpec.cpp +22 -0
- package/nitrogen/generated/shared/c++/HybridListTemplateSpec.hpp +70 -0
- package/nitrogen/generated/shared/c++/HybridMapTemplateSpec.cpp +30 -0
- package/nitrogen/generated/shared/c++/HybridMapTemplateSpec.hpp +110 -0
- package/nitrogen/generated/shared/c++/HybridMessageTemplateSpec.cpp +21 -0
- package/nitrogen/generated/shared/c++/HybridMessageTemplateSpec.hpp +63 -0
- package/nitrogen/generated/shared/c++/HybridSearchTemplateSpec.cpp +22 -0
- package/nitrogen/generated/shared/c++/HybridSearchTemplateSpec.hpp +68 -0
- package/nitrogen/generated/shared/c++/ImageLane.hpp +85 -0
- package/nitrogen/generated/shared/c++/InformationTemplateConfig.hpp +133 -0
- package/nitrogen/generated/shared/c++/KeepType.hpp +63 -0
- package/nitrogen/generated/shared/c++/LaneGuidance.hpp +86 -0
- package/nitrogen/generated/shared/c++/ListTemplateConfig.hpp +129 -0
- package/nitrogen/generated/shared/c++/ManeuverType.hpp +85 -0
- package/nitrogen/generated/shared/c++/MapTemplateConfig.hpp +156 -0
- package/nitrogen/generated/shared/c++/MessageTemplateConfig.hpp +141 -0
- package/nitrogen/generated/shared/c++/NavigationAlertAction.hpp +87 -0
- package/nitrogen/generated/shared/c++/NavigationAlertCallbacks.hpp +82 -0
- package/nitrogen/generated/shared/c++/NitroAction.hpp +120 -0
- package/nitrogen/generated/shared/c++/NitroActionType.hpp +80 -0
- package/nitrogen/generated/shared/c++/NitroAlignment.hpp +76 -0
- package/nitrogen/generated/shared/c++/NitroAttributedString.hpp +83 -0
- package/nitrogen/generated/shared/c++/NitroAttributedStringImage.hpp +84 -0
- package/nitrogen/generated/shared/c++/NitroBaseMapTemplateConfig.hpp +110 -0
- package/nitrogen/generated/shared/c++/NitroButtonStyle.hpp +88 -0
- package/nitrogen/generated/shared/c++/NitroCarPlayDashboardButton.hpp +100 -0
- package/nitrogen/generated/shared/c++/NitroColor.hpp +79 -0
- package/nitrogen/generated/shared/c++/NitroGridButton.hpp +92 -0
- package/nitrogen/generated/shared/c++/NitroMapButton.hpp +93 -0
- package/nitrogen/generated/shared/c++/NitroMapButtonType.hpp +76 -0
- package/nitrogen/generated/shared/c++/NitroMessageManeuver.hpp +97 -0
- package/nitrogen/generated/shared/c++/NitroNavigationAlert.hpp +127 -0
- package/nitrogen/generated/shared/c++/NitroRoutingManeuver.hpp +188 -0
- package/nitrogen/generated/shared/c++/NitroRow.hpp +113 -0
- package/nitrogen/generated/shared/c++/NitroSection.hpp +90 -0
- package/nitrogen/generated/shared/c++/NitroSectionType.hpp +76 -0
- package/nitrogen/generated/shared/c++/NumericTelemetryItem.hpp +79 -0
- package/nitrogen/generated/shared/c++/OffRampType.hpp +64 -0
- package/nitrogen/generated/shared/c++/OnRampType.hpp +68 -0
- package/nitrogen/generated/shared/c++/Point.hpp +79 -0
- package/nitrogen/generated/shared/c++/PreferredImageLane.hpp +93 -0
- package/nitrogen/generated/shared/c++/RouteChoice.hpp +94 -0
- package/nitrogen/generated/shared/c++/SafeAreaInsets.hpp +91 -0
- package/nitrogen/generated/shared/c++/SearchTemplateConfig.hpp +138 -0
- package/nitrogen/generated/shared/c++/StringTelemetryItem.hpp +79 -0
- package/nitrogen/generated/shared/c++/Telemetry.hpp +100 -0
- package/nitrogen/generated/shared/c++/TrafficSide.hpp +62 -0
- package/nitrogen/generated/shared/c++/TravelEstimates.hpp +91 -0
- package/nitrogen/generated/shared/c++/TripConfig.hpp +81 -0
- package/nitrogen/generated/shared/c++/TripPoint.hpp +89 -0
- package/nitrogen/generated/shared/c++/TripPreviewTextConfiguration.hpp +87 -0
- package/nitrogen/generated/shared/c++/TripSelectorCallback.hpp +76 -0
- package/nitrogen/generated/shared/c++/TripsConfig.hpp +82 -0
- package/nitrogen/generated/shared/c++/TurnType.hpp +69 -0
- package/nitrogen/generated/shared/c++/VehicleTelemetryItem.hpp +88 -0
- package/nitrogen/generated/shared/c++/VisibilityState.hpp +84 -0
- package/nitrogen/generated/shared/c++/VisibleTravelEstimate.hpp +76 -0
- package/nitrogen/generated/shared/c++/ZoomEvent.hpp +76 -0
- package/package.json +75 -0
- package/react-native.config.js +16 -0
- package/src/AutoPlayHeadlessJsTask.ts +19 -0
- package/src/components/MapTemplateContext.tsx +15 -0
- package/src/components/SafeAreaInsetsContext.tsx +32 -0
- package/src/components/SafeAreaView.tsx +24 -0
- package/src/hooks/useAndroidAutoTelemetry.ts +112 -0
- package/src/hooks/useMapTemplate.ts +10 -0
- package/src/hooks/useSafeAreaInsets.ts +6 -0
- package/src/index.ts +53 -0
- package/src/index.web.ts +0 -0
- package/src/scenes/AutoPlayCluster.ts +160 -0
- package/src/scenes/CarPlayDashboardScene.ts +121 -0
- package/src/specs/AndroidAutoTelemetry.nitro.ts +14 -0
- package/src/specs/AutoPlay.nitro.ts +78 -0
- package/src/specs/CarPlayDashboard.nitro.ts +22 -0
- package/src/specs/Cluster.nitro.ts +27 -0
- package/src/specs/GridTemplate.nitro.ts +11 -0
- package/src/specs/InformationTemplate.nitro.ts +13 -0
- package/src/specs/ListTemplate.nitro.ts +13 -0
- package/src/specs/MapTemplate.nitro.ts +44 -0
- package/src/specs/MessageTemplate.nitro.ts +9 -0
- package/src/specs/SearchTemplate.nitro.ts +10 -0
- package/src/templates/GridTemplate.ts +73 -0
- package/src/templates/InformationTemplate.ts +131 -0
- package/src/templates/ListTemplate.ts +130 -0
- package/src/templates/MapTemplate.ts +314 -0
- package/src/templates/MessageTemplate.ts +109 -0
- package/src/templates/SearchTemplate.ts +98 -0
- package/src/templates/Template.ts +108 -0
- package/src/types/Button.ts +90 -0
- package/src/types/Event.ts +14 -0
- package/src/types/Glyphmap.ts +4107 -0
- package/src/types/Image.ts +32 -0
- package/src/types/Maneuver.ts +240 -0
- package/src/types/RootComponent.ts +38 -0
- package/src/types/Telemetry.ts +71 -0
- package/src/types/Text.ts +26 -0
- package/src/types/Trip.ts +79 -0
- package/src/utils/NitroAction.ts +234 -0
- package/src/utils/NitroAlert.ts +62 -0
- package/src/utils/NitroAttributedString.ts +29 -0
- package/src/utils/NitroColor.ts +34 -0
- package/src/utils/NitroGrid.ts +25 -0
- package/src/utils/NitroImage.ts +65 -0
- package/src/utils/NitroManeuver.ts +159 -0
- package/src/utils/NitroMapButton.ts +55 -0
- package/src/utils/NitroSection.ts +103 -0
|
@@ -0,0 +1,4107 @@
|
|
|
1
|
+
// Auto-generated from MaterialSymbolsOutlined-Regular.codepoints — do not edit!
|
|
2
|
+
export const glyphMap = {
|
|
3
|
+
"10k": 0xe951,
|
|
4
|
+
"10mp": 0xe952,
|
|
5
|
+
"11mp": 0xe953,
|
|
6
|
+
"123": 0xeb8d,
|
|
7
|
+
"12mp": 0xe954,
|
|
8
|
+
"13mp": 0xe955,
|
|
9
|
+
"14mp": 0xe956,
|
|
10
|
+
"15mp": 0xe957,
|
|
11
|
+
"16mp": 0xe958,
|
|
12
|
+
"17mp": 0xe959,
|
|
13
|
+
"18_up_rating": 0xf8fd,
|
|
14
|
+
"18mp": 0xe95a,
|
|
15
|
+
"19mp": 0xe95b,
|
|
16
|
+
"1k": 0xe95c,
|
|
17
|
+
"1k_plus": 0xe95d,
|
|
18
|
+
"1x_mobiledata": 0xefcd,
|
|
19
|
+
"1x_mobiledata_badge": 0xf7f1,
|
|
20
|
+
"20mp": 0xe95e,
|
|
21
|
+
"21mp": 0xe95f,
|
|
22
|
+
"22mp": 0xe960,
|
|
23
|
+
"23mp": 0xe961,
|
|
24
|
+
"24fps_select": 0xf3f2,
|
|
25
|
+
"24mp": 0xe962,
|
|
26
|
+
"2d": 0xef37,
|
|
27
|
+
"2k": 0xe963,
|
|
28
|
+
"2k_plus": 0xe964,
|
|
29
|
+
"2mp": 0xe965,
|
|
30
|
+
"30fps": 0xefce,
|
|
31
|
+
"30fps_select": 0xefcf,
|
|
32
|
+
"360": 0xe577,
|
|
33
|
+
"3d": 0xed38,
|
|
34
|
+
"3d_rotation": 0xe84d,
|
|
35
|
+
"3g_mobiledata": 0xefd0,
|
|
36
|
+
"3g_mobiledata_badge": 0xf7f0,
|
|
37
|
+
"3k": 0xe966,
|
|
38
|
+
"3k_plus": 0xe967,
|
|
39
|
+
"3mp": 0xe968,
|
|
40
|
+
"3p": 0xefd1,
|
|
41
|
+
"4g_mobiledata": 0xefd2,
|
|
42
|
+
"4g_mobiledata_badge": 0xf7ef,
|
|
43
|
+
"4g_plus_mobiledata": 0xefd3,
|
|
44
|
+
"4k": 0xe072,
|
|
45
|
+
"4k_plus": 0xe969,
|
|
46
|
+
"4mp": 0xe96a,
|
|
47
|
+
"50mp": 0xf6f3,
|
|
48
|
+
"5g": 0xef38,
|
|
49
|
+
"5g_mobiledata_badge": 0xf7ee,
|
|
50
|
+
"5k": 0xe96b,
|
|
51
|
+
"5k_plus": 0xe96c,
|
|
52
|
+
"5mp": 0xe96d,
|
|
53
|
+
"60fps": 0xefd4,
|
|
54
|
+
"60fps_select": 0xefd5,
|
|
55
|
+
"6_ft_apart": 0xf21e,
|
|
56
|
+
"6k": 0xe96e,
|
|
57
|
+
"6k_plus": 0xe96f,
|
|
58
|
+
"6mp": 0xe970,
|
|
59
|
+
"7k": 0xe971,
|
|
60
|
+
"7k_plus": 0xe972,
|
|
61
|
+
"7mp": 0xe973,
|
|
62
|
+
"8k": 0xe974,
|
|
63
|
+
"8k_plus": 0xe975,
|
|
64
|
+
"8mp": 0xe976,
|
|
65
|
+
"9k": 0xe977,
|
|
66
|
+
"9k_plus": 0xe978,
|
|
67
|
+
"9mp": 0xe979,
|
|
68
|
+
"abc": 0xeb94,
|
|
69
|
+
"ac_unit": 0xeb3b,
|
|
70
|
+
"access_alarm": 0xe855,
|
|
71
|
+
"access_alarms": 0xe855,
|
|
72
|
+
"access_time": 0xefd6,
|
|
73
|
+
"access_time_filled": 0xefd6,
|
|
74
|
+
"accessibility": 0xe84e,
|
|
75
|
+
"accessibility_new": 0xe92c,
|
|
76
|
+
"accessible": 0xe914,
|
|
77
|
+
"accessible_forward": 0xe934,
|
|
78
|
+
"accessible_menu": 0xf34e,
|
|
79
|
+
"account_balance": 0xe84f,
|
|
80
|
+
"account_balance_wallet": 0xe850,
|
|
81
|
+
"account_box": 0xe851,
|
|
82
|
+
"account_child": 0xe852,
|
|
83
|
+
"account_child_invert": 0xe659,
|
|
84
|
+
"account_circle": 0xf20b,
|
|
85
|
+
"account_circle_filled": 0xf20b,
|
|
86
|
+
"account_circle_off": 0xf7b3,
|
|
87
|
+
"account_tree": 0xe97a,
|
|
88
|
+
"action_key": 0xf502,
|
|
89
|
+
"activity_zone": 0xe1e6,
|
|
90
|
+
"acupuncture": 0xf2c4,
|
|
91
|
+
"acute": 0xe4cb,
|
|
92
|
+
"ad": 0xe65a,
|
|
93
|
+
"ad_group": 0xe65b,
|
|
94
|
+
"ad_group_off": 0xeae5,
|
|
95
|
+
"ad_off": 0xf7b2,
|
|
96
|
+
"ad_units": 0xf2eb,
|
|
97
|
+
"adaptive_audio_mic": 0xf4cc,
|
|
98
|
+
"adaptive_audio_mic_off": 0xf4cb,
|
|
99
|
+
"adb": 0xe60e,
|
|
100
|
+
"add": 0xe145,
|
|
101
|
+
"add_2": 0xf3dd,
|
|
102
|
+
"add_a_photo": 0xe439,
|
|
103
|
+
"add_ad": 0xe72a,
|
|
104
|
+
"add_alarm": 0xe856,
|
|
105
|
+
"add_alert": 0xe003,
|
|
106
|
+
"add_box": 0xe146,
|
|
107
|
+
"add_business": 0xe729,
|
|
108
|
+
"add_call": 0xf0b7,
|
|
109
|
+
"add_card": 0xeb86,
|
|
110
|
+
"add_chart": 0xef3c,
|
|
111
|
+
"add_circle": 0xe3ba,
|
|
112
|
+
"add_circle_outline": 0xe3ba,
|
|
113
|
+
"add_column_left": 0xf425,
|
|
114
|
+
"add_column_right": 0xf424,
|
|
115
|
+
"add_comment": 0xe266,
|
|
116
|
+
"add_diamond": 0xf49c,
|
|
117
|
+
"add_home": 0xf8eb,
|
|
118
|
+
"add_home_work": 0xf8ed,
|
|
119
|
+
"add_ic_call": 0xf0b7,
|
|
120
|
+
"add_link": 0xe178,
|
|
121
|
+
"add_location": 0xe567,
|
|
122
|
+
"add_location_alt": 0xef3a,
|
|
123
|
+
"add_moderator": 0xe97d,
|
|
124
|
+
"add_notes": 0xe091,
|
|
125
|
+
"add_photo_alternate": 0xe43e,
|
|
126
|
+
"add_reaction": 0xe1d3,
|
|
127
|
+
"add_road": 0xef3b,
|
|
128
|
+
"add_row_above": 0xf423,
|
|
129
|
+
"add_row_below": 0xf422,
|
|
130
|
+
"add_shopping_cart": 0xe854,
|
|
131
|
+
"add_task": 0xf23a,
|
|
132
|
+
"add_to_drive": 0xe65c,
|
|
133
|
+
"add_to_home_screen": 0xf2b9,
|
|
134
|
+
"add_to_photos": 0xe39d,
|
|
135
|
+
"add_to_queue": 0xe05c,
|
|
136
|
+
"add_triangle": 0xf48e,
|
|
137
|
+
"addchart": 0xef3c,
|
|
138
|
+
"adf_scanner": 0xeada,
|
|
139
|
+
"adjust": 0xe39e,
|
|
140
|
+
"admin_meds": 0xe48d,
|
|
141
|
+
"admin_panel_settings": 0xef3d,
|
|
142
|
+
"ads_click": 0xe762,
|
|
143
|
+
"agender": 0xf888,
|
|
144
|
+
"agriculture": 0xea79,
|
|
145
|
+
"air": 0xefd8,
|
|
146
|
+
"air_freshener": 0xe2ca,
|
|
147
|
+
"air_purifier": 0xe97e,
|
|
148
|
+
"air_purifier_gen": 0xe829,
|
|
149
|
+
"airline_seat_flat": 0xe630,
|
|
150
|
+
"airline_seat_flat_angled": 0xe631,
|
|
151
|
+
"airline_seat_individual_suite": 0xe632,
|
|
152
|
+
"airline_seat_legroom_extra": 0xe633,
|
|
153
|
+
"airline_seat_legroom_normal": 0xe634,
|
|
154
|
+
"airline_seat_legroom_reduced": 0xe635,
|
|
155
|
+
"airline_seat_recline_extra": 0xe636,
|
|
156
|
+
"airline_seat_recline_normal": 0xe637,
|
|
157
|
+
"airline_stops": 0xe7d0,
|
|
158
|
+
"airlines": 0xe7ca,
|
|
159
|
+
"airplane_ticket": 0xefd9,
|
|
160
|
+
"airplanemode_active": 0xe53d,
|
|
161
|
+
"airplanemode_inactive": 0xe194,
|
|
162
|
+
"airplay": 0xe055,
|
|
163
|
+
"airport_shuttle": 0xeb3c,
|
|
164
|
+
"airware": 0xf154,
|
|
165
|
+
"airwave": 0xf154,
|
|
166
|
+
"alarm": 0xe855,
|
|
167
|
+
"alarm_add": 0xe856,
|
|
168
|
+
"alarm_off": 0xe857,
|
|
169
|
+
"alarm_on": 0xe858,
|
|
170
|
+
"alarm_pause": 0xf35b,
|
|
171
|
+
"alarm_smart_wake": 0xf6b0,
|
|
172
|
+
"album": 0xe019,
|
|
173
|
+
"align_center": 0xe356,
|
|
174
|
+
"align_end": 0xf797,
|
|
175
|
+
"align_flex_center": 0xf796,
|
|
176
|
+
"align_flex_end": 0xf795,
|
|
177
|
+
"align_flex_start": 0xf794,
|
|
178
|
+
"align_horizontal_center": 0xe00f,
|
|
179
|
+
"align_horizontal_left": 0xe00d,
|
|
180
|
+
"align_horizontal_right": 0xe010,
|
|
181
|
+
"align_items_stretch": 0xf793,
|
|
182
|
+
"align_justify_center": 0xf792,
|
|
183
|
+
"align_justify_flex_end": 0xf791,
|
|
184
|
+
"align_justify_flex_start": 0xf790,
|
|
185
|
+
"align_justify_space_around": 0xf78f,
|
|
186
|
+
"align_justify_space_between": 0xf78e,
|
|
187
|
+
"align_justify_space_even": 0xf78d,
|
|
188
|
+
"align_justify_stretch": 0xf78c,
|
|
189
|
+
"align_self_stretch": 0xf78b,
|
|
190
|
+
"align_space_around": 0xf78a,
|
|
191
|
+
"align_space_between": 0xf789,
|
|
192
|
+
"align_space_even": 0xf788,
|
|
193
|
+
"align_start": 0xf787,
|
|
194
|
+
"align_stretch": 0xf786,
|
|
195
|
+
"align_vertical_bottom": 0xe015,
|
|
196
|
+
"align_vertical_center": 0xe011,
|
|
197
|
+
"align_vertical_top": 0xe00c,
|
|
198
|
+
"all_inbox": 0xe97f,
|
|
199
|
+
"all_inclusive": 0xeb3d,
|
|
200
|
+
"all_match": 0xe093,
|
|
201
|
+
"all_out": 0xe90b,
|
|
202
|
+
"allergies": 0xe094,
|
|
203
|
+
"allergy": 0xe64e,
|
|
204
|
+
"alt_route": 0xf184,
|
|
205
|
+
"alternate_email": 0xe0e6,
|
|
206
|
+
"altitude": 0xf873,
|
|
207
|
+
"ambient_screen": 0xf6c4,
|
|
208
|
+
"ambulance": 0xf803,
|
|
209
|
+
"amend": 0xf802,
|
|
210
|
+
"amp_stories": 0xea13,
|
|
211
|
+
"analytics": 0xef3e,
|
|
212
|
+
"anchor": 0xf1cd,
|
|
213
|
+
"android": 0xe859,
|
|
214
|
+
"android_cell_4_bar": 0xef06,
|
|
215
|
+
"android_cell_4_bar_alert": 0xef09,
|
|
216
|
+
"android_cell_4_bar_off": 0xef08,
|
|
217
|
+
"android_cell_4_bar_plus": 0xef07,
|
|
218
|
+
"android_cell_5_bar": 0xef02,
|
|
219
|
+
"android_cell_5_bar_alert": 0xef05,
|
|
220
|
+
"android_cell_5_bar_off": 0xef04,
|
|
221
|
+
"android_cell_5_bar_plus": 0xef03,
|
|
222
|
+
"android_cell_dual_4_bar": 0xef0d,
|
|
223
|
+
"android_cell_dual_4_bar_alert": 0xef0f,
|
|
224
|
+
"android_cell_dual_4_bar_plus": 0xef0e,
|
|
225
|
+
"android_cell_dual_5_bar": 0xef0a,
|
|
226
|
+
"android_cell_dual_5_bar_alert": 0xef0c,
|
|
227
|
+
"android_cell_dual_5_bar_plus": 0xef0b,
|
|
228
|
+
"android_wifi_3_bar": 0xef16,
|
|
229
|
+
"android_wifi_3_bar_alert": 0xef1b,
|
|
230
|
+
"android_wifi_3_bar_lock": 0xef1a,
|
|
231
|
+
"android_wifi_3_bar_off": 0xef19,
|
|
232
|
+
"android_wifi_3_bar_plus": 0xef18,
|
|
233
|
+
"android_wifi_3_bar_question": 0xef17,
|
|
234
|
+
"android_wifi_4_bar": 0xef10,
|
|
235
|
+
"android_wifi_4_bar_alert": 0xef15,
|
|
236
|
+
"android_wifi_4_bar_lock": 0xef14,
|
|
237
|
+
"android_wifi_4_bar_off": 0xef13,
|
|
238
|
+
"android_wifi_4_bar_plus": 0xef12,
|
|
239
|
+
"android_wifi_4_bar_question": 0xef11,
|
|
240
|
+
"animated_images": 0xf49a,
|
|
241
|
+
"animation": 0xe71c,
|
|
242
|
+
"announcement": 0xe87f,
|
|
243
|
+
"aod": 0xf2e6,
|
|
244
|
+
"aod_tablet": 0xf89f,
|
|
245
|
+
"aod_watch": 0xf6ac,
|
|
246
|
+
"apartment": 0xea40,
|
|
247
|
+
"api": 0xf1b7,
|
|
248
|
+
"apk_document": 0xf88e,
|
|
249
|
+
"apk_install": 0xf88f,
|
|
250
|
+
"app_badging": 0xf72f,
|
|
251
|
+
"app_blocking": 0xf2e5,
|
|
252
|
+
"app_promo": 0xf2cd,
|
|
253
|
+
"app_registration": 0xef40,
|
|
254
|
+
"app_settings_alt": 0xf2d9,
|
|
255
|
+
"app_shortcut": 0xf2df,
|
|
256
|
+
"apparel": 0xef7b,
|
|
257
|
+
"approval": 0xe982,
|
|
258
|
+
"approval_delegation": 0xf84a,
|
|
259
|
+
"approval_delegation_off": 0xf2c5,
|
|
260
|
+
"apps": 0xe5c3,
|
|
261
|
+
"apps_outage": 0xe7cc,
|
|
262
|
+
"aq": 0xf55a,
|
|
263
|
+
"aq_indoor": 0xf55b,
|
|
264
|
+
"ar_on_you": 0xef7c,
|
|
265
|
+
"ar_stickers": 0xe983,
|
|
266
|
+
"architecture": 0xea3b,
|
|
267
|
+
"archive": 0xe149,
|
|
268
|
+
"area_chart": 0xe770,
|
|
269
|
+
"arming_countdown": 0xe78a,
|
|
270
|
+
"arrow_and_edge": 0xf5d7,
|
|
271
|
+
"arrow_back": 0xe5c4,
|
|
272
|
+
"arrow_back_2": 0xf43a,
|
|
273
|
+
"arrow_back_ios": 0xe5e0,
|
|
274
|
+
"arrow_back_ios_new": 0xe2ea,
|
|
275
|
+
"arrow_circle_down": 0xf181,
|
|
276
|
+
"arrow_circle_left": 0xeaa7,
|
|
277
|
+
"arrow_circle_right": 0xeaaa,
|
|
278
|
+
"arrow_circle_up": 0xf182,
|
|
279
|
+
"arrow_cool_down": 0xf4b6,
|
|
280
|
+
"arrow_downward": 0xe5db,
|
|
281
|
+
"arrow_downward_alt": 0xe984,
|
|
282
|
+
"arrow_drop_down": 0xe5c5,
|
|
283
|
+
"arrow_drop_down_circle": 0xe5c6,
|
|
284
|
+
"arrow_drop_up": 0xe5c7,
|
|
285
|
+
"arrow_forward": 0xe5c8,
|
|
286
|
+
"arrow_forward_ios": 0xe5e1,
|
|
287
|
+
"arrow_insert": 0xf837,
|
|
288
|
+
"arrow_left": 0xe5de,
|
|
289
|
+
"arrow_left_alt": 0xef7d,
|
|
290
|
+
"arrow_menu_close": 0xf3d3,
|
|
291
|
+
"arrow_menu_open": 0xf3d2,
|
|
292
|
+
"arrow_or_edge": 0xf5d6,
|
|
293
|
+
"arrow_outward": 0xf8ce,
|
|
294
|
+
"arrow_range": 0xf69b,
|
|
295
|
+
"arrow_right": 0xe5df,
|
|
296
|
+
"arrow_right_alt": 0xe941,
|
|
297
|
+
"arrow_selector_tool": 0xf82f,
|
|
298
|
+
"arrow_shape_up": 0xeef6,
|
|
299
|
+
"arrow_shape_up_stack": 0xeef7,
|
|
300
|
+
"arrow_shape_up_stack_2": 0xeef8,
|
|
301
|
+
"arrow_split": 0xea04,
|
|
302
|
+
"arrow_top_left": 0xf72e,
|
|
303
|
+
"arrow_top_right": 0xf72d,
|
|
304
|
+
"arrow_upload_progress": 0xf3f4,
|
|
305
|
+
"arrow_upload_ready": 0xf3f5,
|
|
306
|
+
"arrow_upward": 0xe5d8,
|
|
307
|
+
"arrow_upward_alt": 0xe986,
|
|
308
|
+
"arrow_warm_up": 0xf4b5,
|
|
309
|
+
"arrows_input": 0xf394,
|
|
310
|
+
"arrows_more_down": 0xf8ab,
|
|
311
|
+
"arrows_more_up": 0xf8ac,
|
|
312
|
+
"arrows_output": 0xf393,
|
|
313
|
+
"arrows_outward": 0xf72c,
|
|
314
|
+
"art_track": 0xe060,
|
|
315
|
+
"article": 0xef42,
|
|
316
|
+
"article_person": 0xf368,
|
|
317
|
+
"article_shortcut": 0xf587,
|
|
318
|
+
"artist": 0xe01a,
|
|
319
|
+
"aspect_ratio": 0xe85b,
|
|
320
|
+
"assessment": 0xf0cc,
|
|
321
|
+
"assignment": 0xe85d,
|
|
322
|
+
"assignment_add": 0xf848,
|
|
323
|
+
"assignment_globe": 0xeeec,
|
|
324
|
+
"assignment_ind": 0xe85e,
|
|
325
|
+
"assignment_late": 0xe85f,
|
|
326
|
+
"assignment_return": 0xe860,
|
|
327
|
+
"assignment_returned": 0xe861,
|
|
328
|
+
"assignment_turned_in": 0xe862,
|
|
329
|
+
"assist_walker": 0xf8d5,
|
|
330
|
+
"assistant": 0xe39f,
|
|
331
|
+
"assistant_device": 0xe987,
|
|
332
|
+
"assistant_direction": 0xe988,
|
|
333
|
+
"assistant_navigation": 0xe989,
|
|
334
|
+
"assistant_on_hub": 0xf6c1,
|
|
335
|
+
"assistant_photo": 0xf0c6,
|
|
336
|
+
"assured_workload": 0xeb6f,
|
|
337
|
+
"asterisk": 0xf525,
|
|
338
|
+
"astrophotography_auto": 0xf1d9,
|
|
339
|
+
"astrophotography_off": 0xf1da,
|
|
340
|
+
"atm": 0xe573,
|
|
341
|
+
"atr": 0xebc7,
|
|
342
|
+
"attach_email": 0xea5e,
|
|
343
|
+
"attach_file": 0xe226,
|
|
344
|
+
"attach_file_add": 0xf841,
|
|
345
|
+
"attach_file_off": 0xf4d9,
|
|
346
|
+
"attach_money": 0xe227,
|
|
347
|
+
"attachment": 0xe2bc,
|
|
348
|
+
"attractions": 0xea52,
|
|
349
|
+
"attribution": 0xefdb,
|
|
350
|
+
"audio_description": 0xf58c,
|
|
351
|
+
"audio_file": 0xeb82,
|
|
352
|
+
"audio_video_receiver": 0xf5d3,
|
|
353
|
+
"audiotrack": 0xe405,
|
|
354
|
+
"auto_activity_zone": 0xf8ad,
|
|
355
|
+
"auto_awesome": 0xe65f,
|
|
356
|
+
"auto_awesome_mosaic": 0xe660,
|
|
357
|
+
"auto_awesome_motion": 0xe661,
|
|
358
|
+
"auto_delete": 0xea4c,
|
|
359
|
+
"auto_detect_voice": 0xf83e,
|
|
360
|
+
"auto_draw_solid": 0xe98a,
|
|
361
|
+
"auto_fix": 0xe663,
|
|
362
|
+
"auto_fix_high": 0xe663,
|
|
363
|
+
"auto_fix_normal": 0xe664,
|
|
364
|
+
"auto_fix_off": 0xe665,
|
|
365
|
+
"auto_graph": 0xe4fb,
|
|
366
|
+
"auto_label": 0xf6be,
|
|
367
|
+
"auto_meeting_room": 0xf6bf,
|
|
368
|
+
"auto_mode": 0xec20,
|
|
369
|
+
"auto_read_pause": 0xf219,
|
|
370
|
+
"auto_read_play": 0xf216,
|
|
371
|
+
"auto_schedule": 0xe214,
|
|
372
|
+
"auto_stories": 0xe666,
|
|
373
|
+
"auto_stories_off": 0xf267,
|
|
374
|
+
"auto_timer": 0xef7f,
|
|
375
|
+
"auto_towing": 0xe71e,
|
|
376
|
+
"auto_transmission": 0xf53f,
|
|
377
|
+
"auto_videocam": 0xf6c0,
|
|
378
|
+
"autofps_select": 0xefdc,
|
|
379
|
+
"automation": 0xf421,
|
|
380
|
+
"autopause": 0xf6b6,
|
|
381
|
+
"autopay": 0xf84b,
|
|
382
|
+
"autoplay": 0xf6b5,
|
|
383
|
+
"autorenew": 0xe863,
|
|
384
|
+
"autostop": 0xf682,
|
|
385
|
+
"av1": 0xf4b0,
|
|
386
|
+
"av_timer": 0xe01b,
|
|
387
|
+
"avc": 0xf4af,
|
|
388
|
+
"avg_pace": 0xf6bb,
|
|
389
|
+
"avg_time": 0xf813,
|
|
390
|
+
"award_meal": 0xf241,
|
|
391
|
+
"award_star": 0xf612,
|
|
392
|
+
"azm": 0xf6ec,
|
|
393
|
+
"baby_changing_station": 0xf19b,
|
|
394
|
+
"back_hand": 0xe764,
|
|
395
|
+
"back_to_tab": 0xf72b,
|
|
396
|
+
"background_dot_large": 0xf79e,
|
|
397
|
+
"background_dot_small": 0xf514,
|
|
398
|
+
"background_grid_small": 0xf79d,
|
|
399
|
+
"background_replace": 0xf20a,
|
|
400
|
+
"backlight_high": 0xf7ed,
|
|
401
|
+
"backlight_high_off": 0xf4ef,
|
|
402
|
+
"backlight_low": 0xf7ec,
|
|
403
|
+
"backpack": 0xf19c,
|
|
404
|
+
"backspace": 0xe14a,
|
|
405
|
+
"backup": 0xe864,
|
|
406
|
+
"backup_table": 0xef43,
|
|
407
|
+
"badge": 0xea67,
|
|
408
|
+
"badge_critical_battery": 0xf156,
|
|
409
|
+
"badminton": 0xf2a8,
|
|
410
|
+
"bakery_dining": 0xea53,
|
|
411
|
+
"balance": 0xeaf6,
|
|
412
|
+
"balcony": 0xe58f,
|
|
413
|
+
"ballot": 0xe172,
|
|
414
|
+
"bar_chart": 0xe26b,
|
|
415
|
+
"bar_chart_4_bars": 0xf681,
|
|
416
|
+
"bar_chart_off": 0xf411,
|
|
417
|
+
"barcode": 0xe70b,
|
|
418
|
+
"barcode_reader": 0xf85c,
|
|
419
|
+
"barcode_scanner": 0xe70c,
|
|
420
|
+
"barefoot": 0xf871,
|
|
421
|
+
"batch_prediction": 0xf0f5,
|
|
422
|
+
"bath_bedrock": 0xf286,
|
|
423
|
+
"bath_outdoor": 0xf6fb,
|
|
424
|
+
"bath_private": 0xf6fa,
|
|
425
|
+
"bath_public_large": 0xf6f9,
|
|
426
|
+
"bath_soak": 0xf2a0,
|
|
427
|
+
"bathroom": 0xefdd,
|
|
428
|
+
"bathtub": 0xea41,
|
|
429
|
+
"battery_0_bar": 0xebdc,
|
|
430
|
+
"battery_1_bar": 0xf09c,
|
|
431
|
+
"battery_20": 0xf09c,
|
|
432
|
+
"battery_2_bar": 0xf09d,
|
|
433
|
+
"battery_30": 0xf09d,
|
|
434
|
+
"battery_3_bar": 0xf09e,
|
|
435
|
+
"battery_4_bar": 0xf09f,
|
|
436
|
+
"battery_50": 0xf09e,
|
|
437
|
+
"battery_5_bar": 0xf0a0,
|
|
438
|
+
"battery_60": 0xf09f,
|
|
439
|
+
"battery_6_bar": 0xf0a1,
|
|
440
|
+
"battery_80": 0xf0a0,
|
|
441
|
+
"battery_90": 0xf0a1,
|
|
442
|
+
"battery_alert": 0xe19c,
|
|
443
|
+
"battery_android_0": 0xf30d,
|
|
444
|
+
"battery_android_1": 0xf30c,
|
|
445
|
+
"battery_android_2": 0xf30b,
|
|
446
|
+
"battery_android_3": 0xf30a,
|
|
447
|
+
"battery_android_4": 0xf309,
|
|
448
|
+
"battery_android_5": 0xf308,
|
|
449
|
+
"battery_android_6": 0xf307,
|
|
450
|
+
"battery_android_alert": 0xf306,
|
|
451
|
+
"battery_android_bolt": 0xf305,
|
|
452
|
+
"battery_android_frame_1": 0xf257,
|
|
453
|
+
"battery_android_frame_2": 0xf256,
|
|
454
|
+
"battery_android_frame_3": 0xf255,
|
|
455
|
+
"battery_android_frame_4": 0xf254,
|
|
456
|
+
"battery_android_frame_5": 0xf253,
|
|
457
|
+
"battery_android_frame_6": 0xf252,
|
|
458
|
+
"battery_android_frame_alert": 0xf251,
|
|
459
|
+
"battery_android_frame_bolt": 0xf250,
|
|
460
|
+
"battery_android_frame_full": 0xf24f,
|
|
461
|
+
"battery_android_frame_plus": 0xf24e,
|
|
462
|
+
"battery_android_frame_question": 0xf24d,
|
|
463
|
+
"battery_android_frame_share": 0xf24c,
|
|
464
|
+
"battery_android_frame_shield": 0xf24b,
|
|
465
|
+
"battery_android_full": 0xf304,
|
|
466
|
+
"battery_android_plus": 0xf303,
|
|
467
|
+
"battery_android_question": 0xf302,
|
|
468
|
+
"battery_android_share": 0xf301,
|
|
469
|
+
"battery_android_shield": 0xf300,
|
|
470
|
+
"battery_change": 0xf7eb,
|
|
471
|
+
"battery_charging_20": 0xf0a2,
|
|
472
|
+
"battery_charging_30": 0xf0a3,
|
|
473
|
+
"battery_charging_50": 0xf0a4,
|
|
474
|
+
"battery_charging_60": 0xf0a5,
|
|
475
|
+
"battery_charging_80": 0xf0a6,
|
|
476
|
+
"battery_charging_90": 0xf0a7,
|
|
477
|
+
"battery_charging_full": 0xe1a3,
|
|
478
|
+
"battery_error": 0xf7ea,
|
|
479
|
+
"battery_full": 0xe1a5,
|
|
480
|
+
"battery_full_alt": 0xf13b,
|
|
481
|
+
"battery_horiz_000": 0xf8ae,
|
|
482
|
+
"battery_horiz_050": 0xf8af,
|
|
483
|
+
"battery_horiz_075": 0xf8b0,
|
|
484
|
+
"battery_low": 0xf155,
|
|
485
|
+
"battery_plus": 0xf7e9,
|
|
486
|
+
"battery_profile": 0xe206,
|
|
487
|
+
"battery_saver": 0xefde,
|
|
488
|
+
"battery_share": 0xf67e,
|
|
489
|
+
"battery_status_good": 0xf67d,
|
|
490
|
+
"battery_std": 0xe1a5,
|
|
491
|
+
"battery_unknown": 0xe1a6,
|
|
492
|
+
"battery_vert_005": 0xf8b1,
|
|
493
|
+
"battery_vert_020": 0xf8b2,
|
|
494
|
+
"battery_vert_050": 0xf8b3,
|
|
495
|
+
"battery_very_low": 0xf156,
|
|
496
|
+
"beach_access": 0xeb3e,
|
|
497
|
+
"bed": 0xefdf,
|
|
498
|
+
"bedroom_baby": 0xefe0,
|
|
499
|
+
"bedroom_child": 0xefe1,
|
|
500
|
+
"bedroom_parent": 0xefe2,
|
|
501
|
+
"bedtime": 0xf159,
|
|
502
|
+
"bedtime_off": 0xeb76,
|
|
503
|
+
"beenhere": 0xe52d,
|
|
504
|
+
"beer_meal": 0xf285,
|
|
505
|
+
"bento": 0xf1f4,
|
|
506
|
+
"bia": 0xf6eb,
|
|
507
|
+
"bid_landscape": 0xe678,
|
|
508
|
+
"bid_landscape_disabled": 0xef81,
|
|
509
|
+
"bigtop_updates": 0xe669,
|
|
510
|
+
"bike_dock": 0xf47b,
|
|
511
|
+
"bike_lane": 0xf47a,
|
|
512
|
+
"bike_scooter": 0xef45,
|
|
513
|
+
"biotech": 0xea3a,
|
|
514
|
+
"blanket": 0xe828,
|
|
515
|
+
"blender": 0xefe3,
|
|
516
|
+
"blind": 0xf8d6,
|
|
517
|
+
"blinds": 0xe286,
|
|
518
|
+
"blinds_closed": 0xec1f,
|
|
519
|
+
"block": 0xf08c,
|
|
520
|
+
"blood_pressure": 0xe097,
|
|
521
|
+
"bloodtype": 0xefe4,
|
|
522
|
+
"bluetooth": 0xe1a7,
|
|
523
|
+
"bluetooth_audio": 0xe60f,
|
|
524
|
+
"bluetooth_connected": 0xe1a8,
|
|
525
|
+
"bluetooth_disabled": 0xe1a9,
|
|
526
|
+
"bluetooth_drive": 0xefe5,
|
|
527
|
+
"bluetooth_searching": 0xe60f,
|
|
528
|
+
"blur_circular": 0xe3a2,
|
|
529
|
+
"blur_linear": 0xe3a3,
|
|
530
|
+
"blur_medium": 0xe84c,
|
|
531
|
+
"blur_off": 0xe3a4,
|
|
532
|
+
"blur_on": 0xe3a5,
|
|
533
|
+
"blur_short": 0xe8cf,
|
|
534
|
+
"boat_bus": 0xf36d,
|
|
535
|
+
"boat_railway": 0xf36c,
|
|
536
|
+
"body_fat": 0xe098,
|
|
537
|
+
"body_system": 0xe099,
|
|
538
|
+
"bolt": 0xea0b,
|
|
539
|
+
"bomb": 0xf568,
|
|
540
|
+
"book": 0xe86e,
|
|
541
|
+
"book_2": 0xf53e,
|
|
542
|
+
"book_3": 0xf53d,
|
|
543
|
+
"book_4": 0xf53c,
|
|
544
|
+
"book_5": 0xf53b,
|
|
545
|
+
"book_6": 0xf3df,
|
|
546
|
+
"book_online": 0xf2e4,
|
|
547
|
+
"book_ribbon": 0xf3e7,
|
|
548
|
+
"bookmark": 0xe8e7,
|
|
549
|
+
"bookmark_add": 0xe598,
|
|
550
|
+
"bookmark_added": 0xe599,
|
|
551
|
+
"bookmark_bag": 0xf410,
|
|
552
|
+
"bookmark_border": 0xe8e7,
|
|
553
|
+
"bookmark_check": 0xf457,
|
|
554
|
+
"bookmark_flag": 0xf456,
|
|
555
|
+
"bookmark_heart": 0xf455,
|
|
556
|
+
"bookmark_manager": 0xf7b1,
|
|
557
|
+
"bookmark_remove": 0xe59a,
|
|
558
|
+
"bookmark_star": 0xf454,
|
|
559
|
+
"bookmarks": 0xe98b,
|
|
560
|
+
"books_movies_and_music": 0xef82,
|
|
561
|
+
"border_all": 0xe228,
|
|
562
|
+
"border_bottom": 0xe229,
|
|
563
|
+
"border_clear": 0xe22a,
|
|
564
|
+
"border_color": 0xe22b,
|
|
565
|
+
"border_horizontal": 0xe22c,
|
|
566
|
+
"border_inner": 0xe22d,
|
|
567
|
+
"border_left": 0xe22e,
|
|
568
|
+
"border_outer": 0xe22f,
|
|
569
|
+
"border_right": 0xe230,
|
|
570
|
+
"border_style": 0xe231,
|
|
571
|
+
"border_top": 0xe232,
|
|
572
|
+
"border_vertical": 0xe233,
|
|
573
|
+
"borg": 0xf40d,
|
|
574
|
+
"bottom_app_bar": 0xe730,
|
|
575
|
+
"bottom_drawer": 0xe72d,
|
|
576
|
+
"bottom_navigation": 0xe98c,
|
|
577
|
+
"bottom_panel_close": 0xf72a,
|
|
578
|
+
"bottom_panel_open": 0xf729,
|
|
579
|
+
"bottom_right_click": 0xf684,
|
|
580
|
+
"bottom_sheets": 0xe98d,
|
|
581
|
+
"box": 0xf5a4,
|
|
582
|
+
"box_add": 0xf5a5,
|
|
583
|
+
"box_edit": 0xf5a6,
|
|
584
|
+
"boy": 0xeb67,
|
|
585
|
+
"brand_awareness": 0xe98e,
|
|
586
|
+
"brand_family": 0xf4f1,
|
|
587
|
+
"branding_watermark": 0xe06b,
|
|
588
|
+
"breakfast_dining": 0xea54,
|
|
589
|
+
"breaking_news": 0xea08,
|
|
590
|
+
"breaking_news_alt_1": 0xf0ba,
|
|
591
|
+
"breastfeeding": 0xf856,
|
|
592
|
+
"brick": 0xf388,
|
|
593
|
+
"briefcase_meal": 0xf246,
|
|
594
|
+
"brightness_1": 0xe3fa,
|
|
595
|
+
"brightness_2": 0xf036,
|
|
596
|
+
"brightness_3": 0xe3a8,
|
|
597
|
+
"brightness_4": 0xe3a9,
|
|
598
|
+
"brightness_5": 0xe3aa,
|
|
599
|
+
"brightness_6": 0xe3ab,
|
|
600
|
+
"brightness_7": 0xe3ac,
|
|
601
|
+
"brightness_alert": 0xf5cf,
|
|
602
|
+
"brightness_auto": 0xe1ab,
|
|
603
|
+
"brightness_empty": 0xf7e8,
|
|
604
|
+
"brightness_high": 0xe1ac,
|
|
605
|
+
"brightness_low": 0xe1ad,
|
|
606
|
+
"brightness_medium": 0xe1ae,
|
|
607
|
+
"bring_your_own_ip": 0xe016,
|
|
608
|
+
"broadcast_on_home": 0xf8f8,
|
|
609
|
+
"broadcast_on_personal": 0xf8f9,
|
|
610
|
+
"broken_image": 0xe3ad,
|
|
611
|
+
"browse": 0xeb13,
|
|
612
|
+
"browse_activity": 0xf8a5,
|
|
613
|
+
"browse_gallery": 0xebd1,
|
|
614
|
+
"browser_not_supported": 0xef47,
|
|
615
|
+
"browser_updated": 0xe7cf,
|
|
616
|
+
"brunch_dining": 0xea73,
|
|
617
|
+
"brush": 0xe3ae,
|
|
618
|
+
"bubble": 0xef83,
|
|
619
|
+
"bubble_chart": 0xe6dd,
|
|
620
|
+
"bubbles": 0xf64e,
|
|
621
|
+
"bucket_check": 0xef2a,
|
|
622
|
+
"bug_report": 0xe868,
|
|
623
|
+
"build": 0xf8cd,
|
|
624
|
+
"build_circle": 0xef48,
|
|
625
|
+
"bungalow": 0xe591,
|
|
626
|
+
"burst_mode": 0xe43c,
|
|
627
|
+
"bus_alert": 0xe98f,
|
|
628
|
+
"bus_railway": 0xf36b,
|
|
629
|
+
"business": 0xe7ee,
|
|
630
|
+
"business_center": 0xeb3f,
|
|
631
|
+
"business_chip": 0xf84c,
|
|
632
|
+
"business_messages": 0xef84,
|
|
633
|
+
"buttons_alt": 0xe72f,
|
|
634
|
+
"cabin": 0xe589,
|
|
635
|
+
"cable": 0xefe6,
|
|
636
|
+
"cable_car": 0xf479,
|
|
637
|
+
"cached": 0xe86a,
|
|
638
|
+
"cadence": 0xf4b4,
|
|
639
|
+
"cake": 0xe7e9,
|
|
640
|
+
"cake_add": 0xf85b,
|
|
641
|
+
"calculate": 0xea5f,
|
|
642
|
+
"calendar_add_on": 0xef85,
|
|
643
|
+
"calendar_apps_script": 0xf0bb,
|
|
644
|
+
"calendar_check": 0xf243,
|
|
645
|
+
"calendar_clock": 0xf540,
|
|
646
|
+
"calendar_lock": 0xf242,
|
|
647
|
+
"calendar_meal": 0xf296,
|
|
648
|
+
"calendar_meal_2": 0xf240,
|
|
649
|
+
"calendar_month": 0xebcc,
|
|
650
|
+
"calendar_today": 0xe935,
|
|
651
|
+
"calendar_view_day": 0xe936,
|
|
652
|
+
"calendar_view_month": 0xefe7,
|
|
653
|
+
"calendar_view_week": 0xefe8,
|
|
654
|
+
"call": 0xf0d4,
|
|
655
|
+
"call_end": 0xf0bc,
|
|
656
|
+
"call_end_alt": 0xf0bc,
|
|
657
|
+
"call_log": 0xe08e,
|
|
658
|
+
"call_made": 0xe0b2,
|
|
659
|
+
"call_merge": 0xe0b3,
|
|
660
|
+
"call_missed": 0xe0b4,
|
|
661
|
+
"call_missed_outgoing": 0xe0e4,
|
|
662
|
+
"call_quality": 0xf652,
|
|
663
|
+
"call_received": 0xe0b5,
|
|
664
|
+
"call_split": 0xe0b6,
|
|
665
|
+
"call_to_action": 0xe06c,
|
|
666
|
+
"camera": 0xe3af,
|
|
667
|
+
"camera_alt": 0xe412,
|
|
668
|
+
"camera_enhance": 0xe8fc,
|
|
669
|
+
"camera_front": 0xf2c9,
|
|
670
|
+
"camera_indoor": 0xefe9,
|
|
671
|
+
"camera_outdoor": 0xefea,
|
|
672
|
+
"camera_rear": 0xf2c8,
|
|
673
|
+
"camera_roll": 0xe3b3,
|
|
674
|
+
"camera_video": 0xf7a6,
|
|
675
|
+
"cameraswitch": 0xefeb,
|
|
676
|
+
"campaign": 0xef49,
|
|
677
|
+
"camping": 0xf8a2,
|
|
678
|
+
"cancel": 0xe888,
|
|
679
|
+
"cancel_presentation": 0xe0e9,
|
|
680
|
+
"cancel_schedule_send": 0xea39,
|
|
681
|
+
"candle": 0xf588,
|
|
682
|
+
"candlestick_chart": 0xead4,
|
|
683
|
+
"cannabis": 0xf2f3,
|
|
684
|
+
"captive_portal": 0xf728,
|
|
685
|
+
"capture": 0xf727,
|
|
686
|
+
"car_crash": 0xebf2,
|
|
687
|
+
"car_defrost_left": 0xf344,
|
|
688
|
+
"car_defrost_low_left": 0xf343,
|
|
689
|
+
"car_defrost_low_right": 0xf342,
|
|
690
|
+
"car_defrost_mid_left": 0xf278,
|
|
691
|
+
"car_defrost_mid_low_left": 0xf341,
|
|
692
|
+
"car_defrost_mid_low_right": 0xf277,
|
|
693
|
+
"car_defrost_mid_right": 0xf340,
|
|
694
|
+
"car_defrost_right": 0xf33f,
|
|
695
|
+
"car_fan_low_left": 0xf33e,
|
|
696
|
+
"car_fan_low_mid_left": 0xf33d,
|
|
697
|
+
"car_fan_low_right": 0xf33c,
|
|
698
|
+
"car_fan_mid_left": 0xf33b,
|
|
699
|
+
"car_fan_mid_low_right": 0xf33a,
|
|
700
|
+
"car_fan_mid_right": 0xf339,
|
|
701
|
+
"car_fan_recirculate": 0xf338,
|
|
702
|
+
"car_gear": 0xf337,
|
|
703
|
+
"car_lock": 0xf336,
|
|
704
|
+
"car_mirror_heat": 0xf335,
|
|
705
|
+
"car_rental": 0xea55,
|
|
706
|
+
"car_repair": 0xea56,
|
|
707
|
+
"car_tag": 0xf4e3,
|
|
708
|
+
"card_giftcard": 0xe8f6,
|
|
709
|
+
"card_membership": 0xe8f7,
|
|
710
|
+
"card_travel": 0xe8f8,
|
|
711
|
+
"cardio_load": 0xf4b9,
|
|
712
|
+
"cardiology": 0xe09c,
|
|
713
|
+
"cards": 0xe991,
|
|
714
|
+
"cards_star": 0xf375,
|
|
715
|
+
"carpenter": 0xf1f8,
|
|
716
|
+
"carry_on_bag": 0xeb08,
|
|
717
|
+
"carry_on_bag_checked": 0xeb0b,
|
|
718
|
+
"carry_on_bag_inactive": 0xeb0a,
|
|
719
|
+
"carry_on_bag_question": 0xeb09,
|
|
720
|
+
"cases": 0xe992,
|
|
721
|
+
"casino": 0xeb40,
|
|
722
|
+
"cast": 0xe307,
|
|
723
|
+
"cast_connected": 0xe308,
|
|
724
|
+
"cast_for_education": 0xefec,
|
|
725
|
+
"cast_pause": 0xf5f0,
|
|
726
|
+
"cast_warning": 0xf5ef,
|
|
727
|
+
"castle": 0xeab1,
|
|
728
|
+
"category": 0xe574,
|
|
729
|
+
"category_search": 0xf437,
|
|
730
|
+
"celebration": 0xea65,
|
|
731
|
+
"cell_merge": 0xf82e,
|
|
732
|
+
"cell_tower": 0xebba,
|
|
733
|
+
"cell_wifi": 0xe0ec,
|
|
734
|
+
"center_focus_strong": 0xe3b4,
|
|
735
|
+
"center_focus_weak": 0xe3b5,
|
|
736
|
+
"chair": 0xefed,
|
|
737
|
+
"chair_alt": 0xefee,
|
|
738
|
+
"chair_counter": 0xf29f,
|
|
739
|
+
"chair_fireplace": 0xf29e,
|
|
740
|
+
"chair_umbrella": 0xf29d,
|
|
741
|
+
"chalet": 0xe585,
|
|
742
|
+
"change_circle": 0xe2e7,
|
|
743
|
+
"change_history": 0xe86b,
|
|
744
|
+
"charger": 0xe2ae,
|
|
745
|
+
"charging_station": 0xf2e3,
|
|
746
|
+
"chart_data": 0xe473,
|
|
747
|
+
"chat": 0xe0c9,
|
|
748
|
+
"chat_add_on": 0xf0f3,
|
|
749
|
+
"chat_apps_script": 0xf0bd,
|
|
750
|
+
"chat_bubble": 0xe0cb,
|
|
751
|
+
"chat_bubble_outline": 0xe0cb,
|
|
752
|
+
"chat_dashed": 0xeeed,
|
|
753
|
+
"chat_error": 0xf7ac,
|
|
754
|
+
"chat_info": 0xf52b,
|
|
755
|
+
"chat_paste_go": 0xf6bd,
|
|
756
|
+
"chat_paste_go_2": 0xf3cb,
|
|
757
|
+
"check": 0xe5ca,
|
|
758
|
+
"check_box": 0xe834,
|
|
759
|
+
"check_box_outline_blank": 0xe835,
|
|
760
|
+
"check_circle": 0xf0be,
|
|
761
|
+
"check_circle_filled": 0xf0be,
|
|
762
|
+
"check_circle_outline": 0xf0be,
|
|
763
|
+
"check_circle_unread": 0xf27e,
|
|
764
|
+
"check_in_out": 0xf6f6,
|
|
765
|
+
"check_indeterminate_small": 0xf88a,
|
|
766
|
+
"check_small": 0xf88b,
|
|
767
|
+
"checkbook": 0xe70d,
|
|
768
|
+
"checked_bag": 0xeb0c,
|
|
769
|
+
"checked_bag_question": 0xeb0d,
|
|
770
|
+
"checklist": 0xe6b1,
|
|
771
|
+
"checklist_rtl": 0xe6b3,
|
|
772
|
+
"checkroom": 0xf19e,
|
|
773
|
+
"cheer": 0xf6a8,
|
|
774
|
+
"chef_hat": 0xf357,
|
|
775
|
+
"chess": 0xf5e7,
|
|
776
|
+
"chess_bishop": 0xf261,
|
|
777
|
+
"chess_bishop_2": 0xf262,
|
|
778
|
+
"chess_king": 0xf25f,
|
|
779
|
+
"chess_king_2": 0xf260,
|
|
780
|
+
"chess_knight": 0xf25e,
|
|
781
|
+
"chess_pawn": 0xf3b6,
|
|
782
|
+
"chess_pawn_2": 0xf25d,
|
|
783
|
+
"chess_queen": 0xf25c,
|
|
784
|
+
"chess_rook": 0xf25b,
|
|
785
|
+
"chevron_backward": 0xf46b,
|
|
786
|
+
"chevron_forward": 0xf46a,
|
|
787
|
+
"chevron_left": 0xe5cb,
|
|
788
|
+
"chevron_right": 0xe5cc,
|
|
789
|
+
"child_care": 0xeb41,
|
|
790
|
+
"child_friendly": 0xeb42,
|
|
791
|
+
"child_hat": 0xef30,
|
|
792
|
+
"chip_extraction": 0xf821,
|
|
793
|
+
"chips": 0xe993,
|
|
794
|
+
"chrome_reader_mode": 0xe86d,
|
|
795
|
+
"chromecast_2": 0xf17b,
|
|
796
|
+
"chromecast_device": 0xe83c,
|
|
797
|
+
"chronic": 0xebb2,
|
|
798
|
+
"church": 0xeaae,
|
|
799
|
+
"cinematic_blur": 0xf853,
|
|
800
|
+
"circle": 0xef4a,
|
|
801
|
+
"circle_notifications": 0xe994,
|
|
802
|
+
"circles": 0xe7ea,
|
|
803
|
+
"circles_ext": 0xe7ec,
|
|
804
|
+
"clarify": 0xf0bf,
|
|
805
|
+
"class": 0xe86e,
|
|
806
|
+
"clean_hands": 0xf21f,
|
|
807
|
+
"cleaning": 0xe995,
|
|
808
|
+
"cleaning_bucket": 0xf8b4,
|
|
809
|
+
"cleaning_services": 0xf0ff,
|
|
810
|
+
"clear": 0xe5cd,
|
|
811
|
+
"clear_all": 0xe0b8,
|
|
812
|
+
"clear_day": 0xf157,
|
|
813
|
+
"clear_night": 0xf159,
|
|
814
|
+
"climate_mini_split": 0xf8b5,
|
|
815
|
+
"clinical_notes": 0xe09e,
|
|
816
|
+
"clock_arrow_down": 0xf382,
|
|
817
|
+
"clock_arrow_up": 0xf381,
|
|
818
|
+
"clock_loader_10": 0xf726,
|
|
819
|
+
"clock_loader_20": 0xf725,
|
|
820
|
+
"clock_loader_40": 0xf724,
|
|
821
|
+
"clock_loader_60": 0xf723,
|
|
822
|
+
"clock_loader_80": 0xf722,
|
|
823
|
+
"clock_loader_90": 0xf721,
|
|
824
|
+
"close": 0xe5cd,
|
|
825
|
+
"close_fullscreen": 0xf1cf,
|
|
826
|
+
"close_small": 0xf508,
|
|
827
|
+
"closed_caption": 0xe996,
|
|
828
|
+
"closed_caption_add": 0xf4ae,
|
|
829
|
+
"closed_caption_disabled": 0xf1dc,
|
|
830
|
+
"closed_caption_off": 0xe996,
|
|
831
|
+
"cloud": 0xf15c,
|
|
832
|
+
"cloud_alert": 0xf3cc,
|
|
833
|
+
"cloud_circle": 0xe2be,
|
|
834
|
+
"cloud_done": 0xe2bf,
|
|
835
|
+
"cloud_download": 0xe2c0,
|
|
836
|
+
"cloud_lock": 0xf386,
|
|
837
|
+
"cloud_off": 0xe2c1,
|
|
838
|
+
"cloud_queue": 0xf15c,
|
|
839
|
+
"cloud_sync": 0xeb5a,
|
|
840
|
+
"cloud_upload": 0xe2c3,
|
|
841
|
+
"cloudy": 0xf15c,
|
|
842
|
+
"cloudy_filled": 0xf15c,
|
|
843
|
+
"cloudy_snowing": 0xe810,
|
|
844
|
+
"co2": 0xe7b0,
|
|
845
|
+
"co_present": 0xeaf0,
|
|
846
|
+
"code": 0xe86f,
|
|
847
|
+
"code_blocks": 0xf84d,
|
|
848
|
+
"code_off": 0xe4f3,
|
|
849
|
+
"coffee": 0xefef,
|
|
850
|
+
"coffee_maker": 0xeff0,
|
|
851
|
+
"cognition": 0xe09f,
|
|
852
|
+
"cognition_2": 0xf3b5,
|
|
853
|
+
"collapse_all": 0xe944,
|
|
854
|
+
"collapse_content": 0xf507,
|
|
855
|
+
"collections": 0xe3d3,
|
|
856
|
+
"collections_bookmark": 0xe431,
|
|
857
|
+
"color_lens": 0xe40a,
|
|
858
|
+
"colorize": 0xe3b8,
|
|
859
|
+
"colors": 0xe997,
|
|
860
|
+
"combine_columns": 0xf420,
|
|
861
|
+
"comedy_mask": 0xf4d6,
|
|
862
|
+
"comic_bubble": 0xf5dd,
|
|
863
|
+
"comment": 0xe24c,
|
|
864
|
+
"comment_bank": 0xea4e,
|
|
865
|
+
"comments_disabled": 0xe7a2,
|
|
866
|
+
"commit": 0xeaf5,
|
|
867
|
+
"communication": 0xe27c,
|
|
868
|
+
"communities": 0xeb16,
|
|
869
|
+
"communities_filled": 0xeb16,
|
|
870
|
+
"commute": 0xe940,
|
|
871
|
+
"compare": 0xe3b9,
|
|
872
|
+
"compare_arrows": 0xe915,
|
|
873
|
+
"compass_calibration": 0xe57c,
|
|
874
|
+
"component_exchange": 0xf1e7,
|
|
875
|
+
"compost": 0xe761,
|
|
876
|
+
"compress": 0xe94d,
|
|
877
|
+
"computer": 0xe31e,
|
|
878
|
+
"computer_arrow_up": 0xf2f7,
|
|
879
|
+
"computer_cancel": 0xf2f6,
|
|
880
|
+
"concierge": 0xf561,
|
|
881
|
+
"conditions": 0xe0a0,
|
|
882
|
+
"confirmation_number": 0xe638,
|
|
883
|
+
"congenital": 0xe0a1,
|
|
884
|
+
"connect_without_contact": 0xf223,
|
|
885
|
+
"connected_tv": 0xe998,
|
|
886
|
+
"connecting_airports": 0xe7c9,
|
|
887
|
+
"construction": 0xea3c,
|
|
888
|
+
"contact_emergency": 0xf8d1,
|
|
889
|
+
"contact_mail": 0xe0d0,
|
|
890
|
+
"contact_page": 0xf22e,
|
|
891
|
+
"contact_phone": 0xf0c0,
|
|
892
|
+
"contact_phone_filled": 0xf0c0,
|
|
893
|
+
"contact_support": 0xe94c,
|
|
894
|
+
"contactless": 0xea71,
|
|
895
|
+
"contactless_off": 0xf858,
|
|
896
|
+
"contacts": 0xe0ba,
|
|
897
|
+
"contacts_product": 0xe999,
|
|
898
|
+
"content_copy": 0xe14d,
|
|
899
|
+
"content_cut": 0xe14e,
|
|
900
|
+
"content_paste": 0xe14f,
|
|
901
|
+
"content_paste_go": 0xea8e,
|
|
902
|
+
"content_paste_off": 0xe4f8,
|
|
903
|
+
"content_paste_search": 0xea9b,
|
|
904
|
+
"contextual_token": 0xf486,
|
|
905
|
+
"contextual_token_add": 0xf485,
|
|
906
|
+
"contract": 0xf5a0,
|
|
907
|
+
"contract_delete": 0xf5a2,
|
|
908
|
+
"contract_edit": 0xf5a1,
|
|
909
|
+
"contrast": 0xeb37,
|
|
910
|
+
"contrast_circle": 0xf49f,
|
|
911
|
+
"contrast_rtl_off": 0xec72,
|
|
912
|
+
"contrast_square": 0xf4a0,
|
|
913
|
+
"control_camera": 0xe074,
|
|
914
|
+
"control_point": 0xe3ba,
|
|
915
|
+
"control_point_duplicate": 0xe3bb,
|
|
916
|
+
"controller_gen": 0xe83d,
|
|
917
|
+
"conversation": 0xef2f,
|
|
918
|
+
"conversion_path": 0xf0c1,
|
|
919
|
+
"conversion_path_off": 0xf7b4,
|
|
920
|
+
"convert_to_text": 0xf41f,
|
|
921
|
+
"conveyor_belt": 0xf867,
|
|
922
|
+
"cookie": 0xeaac,
|
|
923
|
+
"cookie_off": 0xf79a,
|
|
924
|
+
"cooking": 0xe2b6,
|
|
925
|
+
"cool_to_dry": 0xe276,
|
|
926
|
+
"copy_all": 0xe2ec,
|
|
927
|
+
"copyright": 0xe90c,
|
|
928
|
+
"coronavirus": 0xf221,
|
|
929
|
+
"corporate_fare": 0xf1d0,
|
|
930
|
+
"cottage": 0xe587,
|
|
931
|
+
"counter_0": 0xf785,
|
|
932
|
+
"counter_1": 0xf784,
|
|
933
|
+
"counter_2": 0xf783,
|
|
934
|
+
"counter_3": 0xf782,
|
|
935
|
+
"counter_4": 0xf781,
|
|
936
|
+
"counter_5": 0xf780,
|
|
937
|
+
"counter_6": 0xf77f,
|
|
938
|
+
"counter_7": 0xf77e,
|
|
939
|
+
"counter_8": 0xf77d,
|
|
940
|
+
"counter_9": 0xf77c,
|
|
941
|
+
"countertops": 0xf1f7,
|
|
942
|
+
"create": 0xf097,
|
|
943
|
+
"create_new_folder": 0xe2cc,
|
|
944
|
+
"credit_card": 0xe8a1,
|
|
945
|
+
"credit_card_clock": 0xf438,
|
|
946
|
+
"credit_card_gear": 0xf52d,
|
|
947
|
+
"credit_card_heart": 0xf52c,
|
|
948
|
+
"credit_card_off": 0xe4f4,
|
|
949
|
+
"credit_score": 0xeff1,
|
|
950
|
+
"crib": 0xe588,
|
|
951
|
+
"crisis_alert": 0xebe9,
|
|
952
|
+
"crop": 0xe3be,
|
|
953
|
+
"crop_16_9": 0xe3bc,
|
|
954
|
+
"crop_3_2": 0xe3bd,
|
|
955
|
+
"crop_5_4": 0xe3bf,
|
|
956
|
+
"crop_7_5": 0xe3c0,
|
|
957
|
+
"crop_9_16": 0xf549,
|
|
958
|
+
"crop_din": 0xe3c6,
|
|
959
|
+
"crop_free": 0xe3c2,
|
|
960
|
+
"crop_landscape": 0xe3c3,
|
|
961
|
+
"crop_original": 0xe3f4,
|
|
962
|
+
"crop_portrait": 0xe3c5,
|
|
963
|
+
"crop_rotate": 0xe437,
|
|
964
|
+
"crop_square": 0xe3c6,
|
|
965
|
+
"crossword": 0xf5e5,
|
|
966
|
+
"crowdsource": 0xeb18,
|
|
967
|
+
"crown": 0xecb3,
|
|
968
|
+
"cruelty_free": 0xe799,
|
|
969
|
+
"css": 0xeb93,
|
|
970
|
+
"csv": 0xe6cf,
|
|
971
|
+
"currency_bitcoin": 0xebc5,
|
|
972
|
+
"currency_exchange": 0xeb70,
|
|
973
|
+
"currency_franc": 0xeafa,
|
|
974
|
+
"currency_lira": 0xeaef,
|
|
975
|
+
"currency_pound": 0xeaf1,
|
|
976
|
+
"currency_ruble": 0xeaec,
|
|
977
|
+
"currency_rupee": 0xeaf7,
|
|
978
|
+
"currency_rupee_circle": 0xf460,
|
|
979
|
+
"currency_yen": 0xeafb,
|
|
980
|
+
"currency_yuan": 0xeaf9,
|
|
981
|
+
"curtains": 0xec1e,
|
|
982
|
+
"curtains_closed": 0xec1d,
|
|
983
|
+
"custom_typography": 0xe732,
|
|
984
|
+
"cut": 0xf08b,
|
|
985
|
+
"cycle": 0xf854,
|
|
986
|
+
"cyclone": 0xebd5,
|
|
987
|
+
"dangerous": 0xe99a,
|
|
988
|
+
"dark_mode": 0xe51c,
|
|
989
|
+
"dashboard": 0xe871,
|
|
990
|
+
"dashboard_2": 0xf3ea,
|
|
991
|
+
"dashboard_customize": 0xe99b,
|
|
992
|
+
"data_alert": 0xf7f6,
|
|
993
|
+
"data_array": 0xead1,
|
|
994
|
+
"data_check": 0xf7f2,
|
|
995
|
+
"data_exploration": 0xe76f,
|
|
996
|
+
"data_info_alert": 0xf7f5,
|
|
997
|
+
"data_loss_prevention": 0xe2dc,
|
|
998
|
+
"data_object": 0xead3,
|
|
999
|
+
"data_saver_off": 0xeff2,
|
|
1000
|
+
"data_saver_on": 0xeff3,
|
|
1001
|
+
"data_table": 0xe99c,
|
|
1002
|
+
"data_thresholding": 0xeb9f,
|
|
1003
|
+
"data_usage": 0xeff2,
|
|
1004
|
+
"database": 0xf20e,
|
|
1005
|
+
"database_off": 0xf414,
|
|
1006
|
+
"database_search": 0xf38e,
|
|
1007
|
+
"database_upload": 0xf3dc,
|
|
1008
|
+
"dataset": 0xf8ee,
|
|
1009
|
+
"dataset_linked": 0xf8ef,
|
|
1010
|
+
"date_range": 0xe916,
|
|
1011
|
+
"deblur": 0xeb77,
|
|
1012
|
+
"deceased": 0xe0a5,
|
|
1013
|
+
"decimal_decrease": 0xf82d,
|
|
1014
|
+
"decimal_increase": 0xf82c,
|
|
1015
|
+
"deck": 0xea42,
|
|
1016
|
+
"dehaze": 0xe3c7,
|
|
1017
|
+
"delete": 0xe92e,
|
|
1018
|
+
"delete_forever": 0xe92b,
|
|
1019
|
+
"delete_history": 0xf518,
|
|
1020
|
+
"delete_outline": 0xe92e,
|
|
1021
|
+
"delete_sweep": 0xe16c,
|
|
1022
|
+
"delivery_dining": 0xeb28,
|
|
1023
|
+
"delivery_truck_bolt": 0xf3a2,
|
|
1024
|
+
"delivery_truck_speed": 0xf3a1,
|
|
1025
|
+
"demography": 0xe489,
|
|
1026
|
+
"density_large": 0xeba9,
|
|
1027
|
+
"density_medium": 0xeb9e,
|
|
1028
|
+
"density_small": 0xeba8,
|
|
1029
|
+
"dentistry": 0xe0a6,
|
|
1030
|
+
"departure_board": 0xe576,
|
|
1031
|
+
"deployed_code": 0xf720,
|
|
1032
|
+
"deployed_code_account": 0xf51b,
|
|
1033
|
+
"deployed_code_alert": 0xf5f2,
|
|
1034
|
+
"deployed_code_history": 0xf5f3,
|
|
1035
|
+
"deployed_code_update": 0xf5f4,
|
|
1036
|
+
"dermatology": 0xe0a7,
|
|
1037
|
+
"description": 0xe873,
|
|
1038
|
+
"deselect": 0xebb6,
|
|
1039
|
+
"design_services": 0xf10a,
|
|
1040
|
+
"desk": 0xf8f4,
|
|
1041
|
+
"deskphone": 0xf7fa,
|
|
1042
|
+
"desktop_access_disabled": 0xe99d,
|
|
1043
|
+
"desktop_cloud": 0xf3db,
|
|
1044
|
+
"desktop_cloud_stack": 0xf3be,
|
|
1045
|
+
"desktop_landscape": 0xf45e,
|
|
1046
|
+
"desktop_landscape_add": 0xf439,
|
|
1047
|
+
"desktop_mac": 0xe30b,
|
|
1048
|
+
"desktop_portrait": 0xf45d,
|
|
1049
|
+
"desktop_windows": 0xe30c,
|
|
1050
|
+
"destruction": 0xf585,
|
|
1051
|
+
"details": 0xe3c8,
|
|
1052
|
+
"detection_and_zone": 0xe29f,
|
|
1053
|
+
"detector": 0xe282,
|
|
1054
|
+
"detector_alarm": 0xe1f7,
|
|
1055
|
+
"detector_battery": 0xe204,
|
|
1056
|
+
"detector_co": 0xe2af,
|
|
1057
|
+
"detector_offline": 0xe223,
|
|
1058
|
+
"detector_smoke": 0xe285,
|
|
1059
|
+
"detector_status": 0xe1e8,
|
|
1060
|
+
"developer_board": 0xe30d,
|
|
1061
|
+
"developer_board_off": 0xe4ff,
|
|
1062
|
+
"developer_guide": 0xe99e,
|
|
1063
|
+
"developer_mode": 0xf2e2,
|
|
1064
|
+
"developer_mode_tv": 0xe874,
|
|
1065
|
+
"device_band": 0xf2f5,
|
|
1066
|
+
"device_hub": 0xe335,
|
|
1067
|
+
"device_reset": 0xe8b3,
|
|
1068
|
+
"device_thermostat": 0xe1ff,
|
|
1069
|
+
"device_unknown": 0xf2e1,
|
|
1070
|
+
"devices": 0xe326,
|
|
1071
|
+
"devices_fold": 0xebde,
|
|
1072
|
+
"devices_fold_2": 0xf406,
|
|
1073
|
+
"devices_off": 0xf7a5,
|
|
1074
|
+
"devices_other": 0xe337,
|
|
1075
|
+
"devices_wearables": 0xf6ab,
|
|
1076
|
+
"dew_point": 0xf879,
|
|
1077
|
+
"diagnosis": 0xe0a8,
|
|
1078
|
+
"diagonal_line": 0xf41e,
|
|
1079
|
+
"dialer_sip": 0xe0bb,
|
|
1080
|
+
"dialogs": 0xe99f,
|
|
1081
|
+
"dialpad": 0xe0bc,
|
|
1082
|
+
"diamond": 0xead5,
|
|
1083
|
+
"diamond_shine": 0xf2b2,
|
|
1084
|
+
"dictionary": 0xf539,
|
|
1085
|
+
"difference": 0xeb7d,
|
|
1086
|
+
"digital_out_of_home": 0xf1de,
|
|
1087
|
+
"digital_wellbeing": 0xef86,
|
|
1088
|
+
"dine_heart": 0xf29c,
|
|
1089
|
+
"dine_in": 0xf295,
|
|
1090
|
+
"dine_lamp": 0xf29b,
|
|
1091
|
+
"dining": 0xeff4,
|
|
1092
|
+
"dinner_dining": 0xea57,
|
|
1093
|
+
"directions": 0xe52e,
|
|
1094
|
+
"directions_alt": 0xf880,
|
|
1095
|
+
"directions_alt_off": 0xf881,
|
|
1096
|
+
"directions_bike": 0xe52f,
|
|
1097
|
+
"directions_boat": 0xeff5,
|
|
1098
|
+
"directions_boat_filled": 0xeff5,
|
|
1099
|
+
"directions_bus": 0xeff6,
|
|
1100
|
+
"directions_bus_filled": 0xeff6,
|
|
1101
|
+
"directions_car": 0xeff7,
|
|
1102
|
+
"directions_car_filled": 0xeff7,
|
|
1103
|
+
"directions_off": 0xf10f,
|
|
1104
|
+
"directions_railway": 0xeff8,
|
|
1105
|
+
"directions_railway_2": 0xf462,
|
|
1106
|
+
"directions_railway_filled": 0xeff8,
|
|
1107
|
+
"directions_run": 0xe566,
|
|
1108
|
+
"directions_subway": 0xeffa,
|
|
1109
|
+
"directions_subway_filled": 0xeffa,
|
|
1110
|
+
"directions_transit": 0xeffa,
|
|
1111
|
+
"directions_transit_filled": 0xeffa,
|
|
1112
|
+
"directions_walk": 0xe536,
|
|
1113
|
+
"directory_sync": 0xe394,
|
|
1114
|
+
"dirty_lens": 0xef4b,
|
|
1115
|
+
"disabled_by_default": 0xf230,
|
|
1116
|
+
"disabled_visible": 0xe76e,
|
|
1117
|
+
"disc_full": 0xe610,
|
|
1118
|
+
"discover_tune": 0xe018,
|
|
1119
|
+
"dishwasher": 0xe9a0,
|
|
1120
|
+
"dishwasher_gen": 0xe832,
|
|
1121
|
+
"display_external_input": 0xf7e7,
|
|
1122
|
+
"display_settings": 0xeb97,
|
|
1123
|
+
"distance": 0xf6ea,
|
|
1124
|
+
"diversity_1": 0xf8d7,
|
|
1125
|
+
"diversity_2": 0xf8d8,
|
|
1126
|
+
"diversity_3": 0xf8d9,
|
|
1127
|
+
"diversity_4": 0xf857,
|
|
1128
|
+
"dns": 0xe875,
|
|
1129
|
+
"do_disturb": 0xf08c,
|
|
1130
|
+
"do_disturb_alt": 0xf08d,
|
|
1131
|
+
"do_disturb_off": 0xf08e,
|
|
1132
|
+
"do_disturb_on": 0xf08f,
|
|
1133
|
+
"do_not_disturb": 0xf08d,
|
|
1134
|
+
"do_not_disturb_alt": 0xf08c,
|
|
1135
|
+
"do_not_disturb_off": 0xf08e,
|
|
1136
|
+
"do_not_disturb_on": 0xf08f,
|
|
1137
|
+
"do_not_disturb_on_total_silence": 0xeffb,
|
|
1138
|
+
"do_not_step": 0xf19f,
|
|
1139
|
+
"do_not_touch": 0xf1b0,
|
|
1140
|
+
"dock": 0xf2e0,
|
|
1141
|
+
"dock_to_bottom": 0xf7e6,
|
|
1142
|
+
"dock_to_left": 0xf7e5,
|
|
1143
|
+
"dock_to_right": 0xf7e4,
|
|
1144
|
+
"docs": 0xea7d,
|
|
1145
|
+
"docs_add_on": 0xf0c2,
|
|
1146
|
+
"docs_apps_script": 0xf0c3,
|
|
1147
|
+
"document_scanner": 0xe5fa,
|
|
1148
|
+
"document_search": 0xf385,
|
|
1149
|
+
"domain": 0xe7ee,
|
|
1150
|
+
"domain_add": 0xeb62,
|
|
1151
|
+
"domain_disabled": 0xe0ef,
|
|
1152
|
+
"domain_verification": 0xef4c,
|
|
1153
|
+
"domain_verification_off": 0xf7b0,
|
|
1154
|
+
"domino_mask": 0xf5e4,
|
|
1155
|
+
"done": 0xe876,
|
|
1156
|
+
"done_all": 0xe877,
|
|
1157
|
+
"done_outline": 0xe92f,
|
|
1158
|
+
"donut_large": 0xe917,
|
|
1159
|
+
"donut_small": 0xe918,
|
|
1160
|
+
"door_back": 0xeffc,
|
|
1161
|
+
"door_front": 0xeffd,
|
|
1162
|
+
"door_open": 0xe77c,
|
|
1163
|
+
"door_sensor": 0xe28a,
|
|
1164
|
+
"door_sliding": 0xeffe,
|
|
1165
|
+
"doorbell": 0xefff,
|
|
1166
|
+
"doorbell_3p": 0xe1e7,
|
|
1167
|
+
"doorbell_chime": 0xe1f3,
|
|
1168
|
+
"double_arrow": 0xea50,
|
|
1169
|
+
"downhill_skiing": 0xe509,
|
|
1170
|
+
"download": 0xf090,
|
|
1171
|
+
"download_2": 0xf523,
|
|
1172
|
+
"download_done": 0xf091,
|
|
1173
|
+
"download_for_offline": 0xf000,
|
|
1174
|
+
"downloading": 0xf001,
|
|
1175
|
+
"draft": 0xe66d,
|
|
1176
|
+
"draft_orders": 0xe7b3,
|
|
1177
|
+
"drafts": 0xe151,
|
|
1178
|
+
"drag_click": 0xf71f,
|
|
1179
|
+
"drag_handle": 0xe25d,
|
|
1180
|
+
"drag_indicator": 0xe945,
|
|
1181
|
+
"drag_pan": 0xf71e,
|
|
1182
|
+
"draw": 0xe746,
|
|
1183
|
+
"draw_abstract": 0xf7f8,
|
|
1184
|
+
"draw_collage": 0xf7f7,
|
|
1185
|
+
"drawing_recognition": 0xeb00,
|
|
1186
|
+
"dresser": 0xe210,
|
|
1187
|
+
"drive_eta": 0xeff7,
|
|
1188
|
+
"drive_export": 0xf41d,
|
|
1189
|
+
"drive_file_move": 0xe9a1,
|
|
1190
|
+
"drive_file_move_outline": 0xe9a1,
|
|
1191
|
+
"drive_file_move_rtl": 0xe9a1,
|
|
1192
|
+
"drive_file_rename_outline": 0xe9a2,
|
|
1193
|
+
"drive_folder_upload": 0xe9a3,
|
|
1194
|
+
"drive_fusiontable": 0xe678,
|
|
1195
|
+
"drone": 0xf25a,
|
|
1196
|
+
"drone_2": 0xf259,
|
|
1197
|
+
"dropdown": 0xe9a4,
|
|
1198
|
+
"dropper_eye": 0xf351,
|
|
1199
|
+
"dry": 0xf1b3,
|
|
1200
|
+
"dry_cleaning": 0xea58,
|
|
1201
|
+
"dual_screen": 0xf6cf,
|
|
1202
|
+
"duo": 0xe9a5,
|
|
1203
|
+
"dvr": 0xe1b2,
|
|
1204
|
+
"dynamic_feed": 0xea14,
|
|
1205
|
+
"dynamic_form": 0xf1bf,
|
|
1206
|
+
"e911_avatar": 0xf11a,
|
|
1207
|
+
"e911_emergency": 0xf119,
|
|
1208
|
+
"e_mobiledata": 0xf002,
|
|
1209
|
+
"e_mobiledata_badge": 0xf7e3,
|
|
1210
|
+
"ear_sound": 0xf356,
|
|
1211
|
+
"earbud_case": 0xf327,
|
|
1212
|
+
"earbud_left": 0xf326,
|
|
1213
|
+
"earbud_right": 0xf325,
|
|
1214
|
+
"earbuds": 0xf003,
|
|
1215
|
+
"earbuds_2": 0xf324,
|
|
1216
|
+
"earbuds_battery": 0xf004,
|
|
1217
|
+
"early_on": 0xe2ba,
|
|
1218
|
+
"earthquake": 0xf64f,
|
|
1219
|
+
"east": 0xf1df,
|
|
1220
|
+
"ecg": 0xf80f,
|
|
1221
|
+
"ecg_heart": 0xf6e9,
|
|
1222
|
+
"eco": 0xea35,
|
|
1223
|
+
"eda": 0xf6e8,
|
|
1224
|
+
"edgesensor_high": 0xf2ef,
|
|
1225
|
+
"edgesensor_low": 0xf2ee,
|
|
1226
|
+
"edit": 0xf097,
|
|
1227
|
+
"edit_arrow_down": 0xf380,
|
|
1228
|
+
"edit_arrow_up": 0xf37f,
|
|
1229
|
+
"edit_attributes": 0xe578,
|
|
1230
|
+
"edit_audio": 0xf42d,
|
|
1231
|
+
"edit_calendar": 0xe742,
|
|
1232
|
+
"edit_document": 0xf88c,
|
|
1233
|
+
"edit_location": 0xe568,
|
|
1234
|
+
"edit_location_alt": 0xe1c5,
|
|
1235
|
+
"edit_note": 0xe745,
|
|
1236
|
+
"edit_notifications": 0xe525,
|
|
1237
|
+
"edit_off": 0xe950,
|
|
1238
|
+
"edit_road": 0xef4d,
|
|
1239
|
+
"edit_square": 0xf88d,
|
|
1240
|
+
"editor_choice": 0xf528,
|
|
1241
|
+
"egg": 0xeacc,
|
|
1242
|
+
"egg_alt": 0xeac8,
|
|
1243
|
+
"eject": 0xe8fb,
|
|
1244
|
+
"elderly": 0xf21a,
|
|
1245
|
+
"elderly_woman": 0xeb69,
|
|
1246
|
+
"electric_bike": 0xeb1b,
|
|
1247
|
+
"electric_bolt": 0xec1c,
|
|
1248
|
+
"electric_car": 0xeb1c,
|
|
1249
|
+
"electric_meter": 0xec1b,
|
|
1250
|
+
"electric_moped": 0xeb1d,
|
|
1251
|
+
"electric_rickshaw": 0xeb1e,
|
|
1252
|
+
"electric_scooter": 0xeb1f,
|
|
1253
|
+
"electrical_services": 0xf102,
|
|
1254
|
+
"elevation": 0xf6e7,
|
|
1255
|
+
"elevator": 0xf1a0,
|
|
1256
|
+
"email": 0xe159,
|
|
1257
|
+
"emergency": 0xe1eb,
|
|
1258
|
+
"emergency_heat": 0xf15d,
|
|
1259
|
+
"emergency_heat_2": 0xf4e5,
|
|
1260
|
+
"emergency_home": 0xe82a,
|
|
1261
|
+
"emergency_recording": 0xebf4,
|
|
1262
|
+
"emergency_share": 0xebf6,
|
|
1263
|
+
"emergency_share_off": 0xf59e,
|
|
1264
|
+
"emoji_emotions": 0xea22,
|
|
1265
|
+
"emoji_events": 0xea23,
|
|
1266
|
+
"emoji_flags": 0xf0c6,
|
|
1267
|
+
"emoji_food_beverage": 0xea1b,
|
|
1268
|
+
"emoji_language": 0xf4cd,
|
|
1269
|
+
"emoji_nature": 0xea1c,
|
|
1270
|
+
"emoji_objects": 0xea24,
|
|
1271
|
+
"emoji_people": 0xea1d,
|
|
1272
|
+
"emoji_symbols": 0xea1e,
|
|
1273
|
+
"emoji_transportation": 0xea1f,
|
|
1274
|
+
"emoticon": 0xe5f3,
|
|
1275
|
+
"empty_dashboard": 0xf844,
|
|
1276
|
+
"enable": 0xf188,
|
|
1277
|
+
"encrypted": 0xe593,
|
|
1278
|
+
"encrypted_add": 0xf429,
|
|
1279
|
+
"encrypted_add_circle": 0xf42a,
|
|
1280
|
+
"encrypted_minus_circle": 0xf428,
|
|
1281
|
+
"encrypted_off": 0xf427,
|
|
1282
|
+
"endocrinology": 0xe0a9,
|
|
1283
|
+
"energy": 0xe9a6,
|
|
1284
|
+
"energy_program_saving": 0xf15f,
|
|
1285
|
+
"energy_program_time_used": 0xf161,
|
|
1286
|
+
"energy_savings_leaf": 0xec1a,
|
|
1287
|
+
"engineering": 0xea3d,
|
|
1288
|
+
"enhanced_encryption": 0xe63f,
|
|
1289
|
+
"ent": 0xe0aa,
|
|
1290
|
+
"enterprise": 0xe70e,
|
|
1291
|
+
"enterprise_off": 0xeb4d,
|
|
1292
|
+
"equal": 0xf77b,
|
|
1293
|
+
"equalizer": 0xe01d,
|
|
1294
|
+
"eraser_size_1": 0xf3fc,
|
|
1295
|
+
"eraser_size_2": 0xf3fb,
|
|
1296
|
+
"eraser_size_3": 0xf3fa,
|
|
1297
|
+
"eraser_size_4": 0xf3f9,
|
|
1298
|
+
"eraser_size_5": 0xf3f8,
|
|
1299
|
+
"error": 0xf8b6,
|
|
1300
|
+
"error_circle_rounded": 0xf8b6,
|
|
1301
|
+
"error_med": 0xe49b,
|
|
1302
|
+
"error_outline": 0xf8b6,
|
|
1303
|
+
"escalator": 0xf1a1,
|
|
1304
|
+
"escalator_warning": 0xf1ac,
|
|
1305
|
+
"euro": 0xea15,
|
|
1306
|
+
"euro_symbol": 0xe926,
|
|
1307
|
+
"ev_charger": 0xe56d,
|
|
1308
|
+
"ev_mobiledata_badge": 0xf7e2,
|
|
1309
|
+
"ev_shadow": 0xef8f,
|
|
1310
|
+
"ev_shadow_add": 0xf580,
|
|
1311
|
+
"ev_shadow_minus": 0xf57f,
|
|
1312
|
+
"ev_station": 0xe56d,
|
|
1313
|
+
"event": 0xe878,
|
|
1314
|
+
"event_available": 0xe614,
|
|
1315
|
+
"event_busy": 0xe615,
|
|
1316
|
+
"event_list": 0xf683,
|
|
1317
|
+
"event_note": 0xe616,
|
|
1318
|
+
"event_repeat": 0xeb7b,
|
|
1319
|
+
"event_seat": 0xe903,
|
|
1320
|
+
"event_upcoming": 0xf238,
|
|
1321
|
+
"exclamation": 0xf22f,
|
|
1322
|
+
"exercise": 0xf6e6,
|
|
1323
|
+
"exit_to_app": 0xe879,
|
|
1324
|
+
"expand": 0xe94f,
|
|
1325
|
+
"expand_all": 0xe946,
|
|
1326
|
+
"expand_circle_down": 0xe7cd,
|
|
1327
|
+
"expand_circle_right": 0xf591,
|
|
1328
|
+
"expand_circle_up": 0xf5d2,
|
|
1329
|
+
"expand_content": 0xf830,
|
|
1330
|
+
"expand_less": 0xe5ce,
|
|
1331
|
+
"expand_more": 0xe5cf,
|
|
1332
|
+
"expansion_panels": 0xef90,
|
|
1333
|
+
"expension_panels": 0xef90,
|
|
1334
|
+
"experiment": 0xe686,
|
|
1335
|
+
"explicit": 0xe01e,
|
|
1336
|
+
"explore": 0xe87a,
|
|
1337
|
+
"explore_nearby": 0xe538,
|
|
1338
|
+
"explore_off": 0xe9a8,
|
|
1339
|
+
"explosion": 0xf685,
|
|
1340
|
+
"export_notes": 0xe0ac,
|
|
1341
|
+
"exposure": 0xe3f6,
|
|
1342
|
+
"exposure_neg_1": 0xe3cb,
|
|
1343
|
+
"exposure_neg_2": 0xe3cc,
|
|
1344
|
+
"exposure_plus_1": 0xe800,
|
|
1345
|
+
"exposure_plus_2": 0xe3ce,
|
|
1346
|
+
"exposure_zero": 0xe3cf,
|
|
1347
|
+
"extension": 0xe87b,
|
|
1348
|
+
"extension_off": 0xe4f5,
|
|
1349
|
+
"eye_tracking": 0xf4c9,
|
|
1350
|
+
"eyeglasses": 0xf6ee,
|
|
1351
|
+
"eyeglasses_2": 0xf2c7,
|
|
1352
|
+
"eyeglasses_2_sound": 0xf265,
|
|
1353
|
+
"face": 0xf008,
|
|
1354
|
+
"face_2": 0xf8da,
|
|
1355
|
+
"face_3": 0xf8db,
|
|
1356
|
+
"face_4": 0xf8dc,
|
|
1357
|
+
"face_5": 0xf8dd,
|
|
1358
|
+
"face_6": 0xf8de,
|
|
1359
|
+
"face_down": 0xf402,
|
|
1360
|
+
"face_left": 0xf401,
|
|
1361
|
+
"face_nod": 0xf400,
|
|
1362
|
+
"face_retouching_natural": 0xef4e,
|
|
1363
|
+
"face_retouching_off": 0xf007,
|
|
1364
|
+
"face_right": 0xf3ff,
|
|
1365
|
+
"face_shake": 0xf3fe,
|
|
1366
|
+
"face_unlock": 0xf008,
|
|
1367
|
+
"face_up": 0xf3fd,
|
|
1368
|
+
"fact_check": 0xf0c5,
|
|
1369
|
+
"factory": 0xebbc,
|
|
1370
|
+
"falling": 0xf60d,
|
|
1371
|
+
"familiar_face_and_zone": 0xe21c,
|
|
1372
|
+
"family_group": 0xeef2,
|
|
1373
|
+
"family_history": 0xe0ad,
|
|
1374
|
+
"family_home": 0xeb26,
|
|
1375
|
+
"family_link": 0xeb19,
|
|
1376
|
+
"family_restroom": 0xf1a2,
|
|
1377
|
+
"family_star": 0xf527,
|
|
1378
|
+
"fan_focus": 0xf334,
|
|
1379
|
+
"fan_indirect": 0xf333,
|
|
1380
|
+
"farsight_digital": 0xf559,
|
|
1381
|
+
"fast_forward": 0xe01f,
|
|
1382
|
+
"fast_rewind": 0xe020,
|
|
1383
|
+
"fastfood": 0xe57a,
|
|
1384
|
+
"faucet": 0xe278,
|
|
1385
|
+
"favorite": 0xe87e,
|
|
1386
|
+
"favorite_border": 0xe87e,
|
|
1387
|
+
"fax": 0xead8,
|
|
1388
|
+
"feature_search": 0xe9a9,
|
|
1389
|
+
"featured_play_list": 0xe06d,
|
|
1390
|
+
"featured_seasonal_and_gifts": 0xef91,
|
|
1391
|
+
"featured_video": 0xe06e,
|
|
1392
|
+
"feed": 0xf009,
|
|
1393
|
+
"feedback": 0xe87f,
|
|
1394
|
+
"female": 0xe590,
|
|
1395
|
+
"femur": 0xf891,
|
|
1396
|
+
"femur_alt": 0xf892,
|
|
1397
|
+
"fence": 0xf1f6,
|
|
1398
|
+
"fertile": 0xf6e5,
|
|
1399
|
+
"festival": 0xea68,
|
|
1400
|
+
"fiber_dvr": 0xe05d,
|
|
1401
|
+
"fiber_manual_record": 0xe061,
|
|
1402
|
+
"fiber_new": 0xe05e,
|
|
1403
|
+
"fiber_pin": 0xe06a,
|
|
1404
|
+
"fiber_smart_record": 0xe062,
|
|
1405
|
+
"file_copy": 0xe173,
|
|
1406
|
+
"file_copy_off": 0xf4d8,
|
|
1407
|
+
"file_download": 0xf090,
|
|
1408
|
+
"file_download_done": 0xf091,
|
|
1409
|
+
"file_download_off": 0xe4fe,
|
|
1410
|
+
"file_export": 0xf3b2,
|
|
1411
|
+
"file_json": 0xf3bb,
|
|
1412
|
+
"file_map": 0xe2c5,
|
|
1413
|
+
"file_map_stack": 0xf3e2,
|
|
1414
|
+
"file_open": 0xeaf3,
|
|
1415
|
+
"file_png": 0xf3bc,
|
|
1416
|
+
"file_present": 0xea0e,
|
|
1417
|
+
"file_save": 0xf17f,
|
|
1418
|
+
"file_save_off": 0xe505,
|
|
1419
|
+
"file_upload": 0xf09b,
|
|
1420
|
+
"file_upload_off": 0xf886,
|
|
1421
|
+
"files": 0xea85,
|
|
1422
|
+
"filter": 0xe3d3,
|
|
1423
|
+
"filter_1": 0xe3d0,
|
|
1424
|
+
"filter_2": 0xe3d1,
|
|
1425
|
+
"filter_3": 0xe3d2,
|
|
1426
|
+
"filter_4": 0xe3d4,
|
|
1427
|
+
"filter_5": 0xe3d5,
|
|
1428
|
+
"filter_6": 0xe3d6,
|
|
1429
|
+
"filter_7": 0xe3d7,
|
|
1430
|
+
"filter_8": 0xe3d8,
|
|
1431
|
+
"filter_9": 0xe3d9,
|
|
1432
|
+
"filter_9_plus": 0xe3da,
|
|
1433
|
+
"filter_alt": 0xef4f,
|
|
1434
|
+
"filter_alt_off": 0xeb32,
|
|
1435
|
+
"filter_arrow_right": 0xf3d1,
|
|
1436
|
+
"filter_b_and_w": 0xe3db,
|
|
1437
|
+
"filter_center_focus": 0xe3dc,
|
|
1438
|
+
"filter_drama": 0xe3dd,
|
|
1439
|
+
"filter_frames": 0xe3de,
|
|
1440
|
+
"filter_hdr": 0xe3df,
|
|
1441
|
+
"filter_list": 0xe152,
|
|
1442
|
+
"filter_list_alt": 0xe94e,
|
|
1443
|
+
"filter_list_off": 0xeb57,
|
|
1444
|
+
"filter_none": 0xe3e0,
|
|
1445
|
+
"filter_retrolux": 0xe3e1,
|
|
1446
|
+
"filter_tilt_shift": 0xe3e2,
|
|
1447
|
+
"filter_vintage": 0xe3e3,
|
|
1448
|
+
"finance": 0xe6bf,
|
|
1449
|
+
"finance_chip": 0xf84e,
|
|
1450
|
+
"finance_mode": 0xef92,
|
|
1451
|
+
"find_in_page": 0xe880,
|
|
1452
|
+
"find_replace": 0xe881,
|
|
1453
|
+
"fingerprint": 0xe90d,
|
|
1454
|
+
"fingerprint_off": 0xf49d,
|
|
1455
|
+
"fire_extinguisher": 0xf1d8,
|
|
1456
|
+
"fire_hydrant": 0xf1a3,
|
|
1457
|
+
"fire_truck": 0xf8f2,
|
|
1458
|
+
"fireplace": 0xea43,
|
|
1459
|
+
"first_page": 0xe5dc,
|
|
1460
|
+
"fit_page": 0xf77a,
|
|
1461
|
+
"fit_page_height": 0xf397,
|
|
1462
|
+
"fit_page_width": 0xf396,
|
|
1463
|
+
"fit_screen": 0xea10,
|
|
1464
|
+
"fit_width": 0xf779,
|
|
1465
|
+
"fitness_center": 0xeb43,
|
|
1466
|
+
"fitness_tracker": 0xf463,
|
|
1467
|
+
"fitness_trackers": 0xeef1,
|
|
1468
|
+
"flag": 0xf0c6,
|
|
1469
|
+
"flag_2": 0xf40f,
|
|
1470
|
+
"flag_check": 0xf3d8,
|
|
1471
|
+
"flag_circle": 0xeaf8,
|
|
1472
|
+
"flag_filled": 0xf0c6,
|
|
1473
|
+
"flaky": 0xef50,
|
|
1474
|
+
"flare": 0xe3e4,
|
|
1475
|
+
"flash_auto": 0xe3e5,
|
|
1476
|
+
"flash_off": 0xe3e6,
|
|
1477
|
+
"flash_on": 0xe3e7,
|
|
1478
|
+
"flashlight_off": 0xf00a,
|
|
1479
|
+
"flashlight_on": 0xf00b,
|
|
1480
|
+
"flatware": 0xf00c,
|
|
1481
|
+
"flex_direction": 0xf778,
|
|
1482
|
+
"flex_no_wrap": 0xf777,
|
|
1483
|
+
"flex_wrap": 0xf776,
|
|
1484
|
+
"flight": 0xe539,
|
|
1485
|
+
"flight_class": 0xe7cb,
|
|
1486
|
+
"flight_land": 0xe904,
|
|
1487
|
+
"flight_takeoff": 0xe905,
|
|
1488
|
+
"flights_and_hotels": 0xe9ab,
|
|
1489
|
+
"flightsmode": 0xef93,
|
|
1490
|
+
"flip": 0xe3e8,
|
|
1491
|
+
"flip_camera_android": 0xea37,
|
|
1492
|
+
"flip_camera_ios": 0xea38,
|
|
1493
|
+
"flip_to_back": 0xe882,
|
|
1494
|
+
"flip_to_front": 0xe883,
|
|
1495
|
+
"float_landscape_2": 0xf45c,
|
|
1496
|
+
"float_portrait_2": 0xf45b,
|
|
1497
|
+
"flood": 0xebe6,
|
|
1498
|
+
"floor": 0xf6e4,
|
|
1499
|
+
"floor_lamp": 0xe21e,
|
|
1500
|
+
"flourescent": 0xf07d,
|
|
1501
|
+
"flowchart": 0xf38d,
|
|
1502
|
+
"flowsheet": 0xe0ae,
|
|
1503
|
+
"fluid": 0xe483,
|
|
1504
|
+
"fluid_balance": 0xf80d,
|
|
1505
|
+
"fluid_med": 0xf80c,
|
|
1506
|
+
"fluorescent": 0xf07d,
|
|
1507
|
+
"flutter": 0xf1dd,
|
|
1508
|
+
"flutter_dash": 0xe00b,
|
|
1509
|
+
"flyover": 0xf478,
|
|
1510
|
+
"fmd_bad": 0xf00e,
|
|
1511
|
+
"fmd_good": 0xf1db,
|
|
1512
|
+
"foggy": 0xe818,
|
|
1513
|
+
"folded_hands": 0xf5ed,
|
|
1514
|
+
"folder": 0xe2c7,
|
|
1515
|
+
"folder_check": 0xf3d7,
|
|
1516
|
+
"folder_check_2": 0xf3d6,
|
|
1517
|
+
"folder_code": 0xf3c8,
|
|
1518
|
+
"folder_copy": 0xebbd,
|
|
1519
|
+
"folder_data": 0xf586,
|
|
1520
|
+
"folder_delete": 0xeb34,
|
|
1521
|
+
"folder_eye": 0xf3d5,
|
|
1522
|
+
"folder_info": 0xf395,
|
|
1523
|
+
"folder_limited": 0xf4e4,
|
|
1524
|
+
"folder_managed": 0xf775,
|
|
1525
|
+
"folder_match": 0xf3d4,
|
|
1526
|
+
"folder_off": 0xeb83,
|
|
1527
|
+
"folder_open": 0xe2c8,
|
|
1528
|
+
"folder_shared": 0xe2c9,
|
|
1529
|
+
"folder_special": 0xe617,
|
|
1530
|
+
"folder_supervised": 0xf774,
|
|
1531
|
+
"folder_zip": 0xeb2c,
|
|
1532
|
+
"follow_the_signs": 0xf222,
|
|
1533
|
+
"font_download": 0xe167,
|
|
1534
|
+
"font_download_off": 0xe4f9,
|
|
1535
|
+
"food_bank": 0xf1f2,
|
|
1536
|
+
"foot_bones": 0xf893,
|
|
1537
|
+
"footprint": 0xf87d,
|
|
1538
|
+
"for_you": 0xe9ac,
|
|
1539
|
+
"forest": 0xea99,
|
|
1540
|
+
"fork_left": 0xeba0,
|
|
1541
|
+
"fork_right": 0xebac,
|
|
1542
|
+
"fork_spoon": 0xf3e4,
|
|
1543
|
+
"forklift": 0xf868,
|
|
1544
|
+
"format_align_center": 0xe234,
|
|
1545
|
+
"format_align_justify": 0xe235,
|
|
1546
|
+
"format_align_left": 0xe236,
|
|
1547
|
+
"format_align_right": 0xe237,
|
|
1548
|
+
"format_bold": 0xe238,
|
|
1549
|
+
"format_clear": 0xe239,
|
|
1550
|
+
"format_color_fill": 0xe23a,
|
|
1551
|
+
"format_color_reset": 0xe23b,
|
|
1552
|
+
"format_color_text": 0xe23c,
|
|
1553
|
+
"format_h1": 0xf85d,
|
|
1554
|
+
"format_h2": 0xf85e,
|
|
1555
|
+
"format_h3": 0xf85f,
|
|
1556
|
+
"format_h4": 0xf860,
|
|
1557
|
+
"format_h5": 0xf861,
|
|
1558
|
+
"format_h6": 0xf862,
|
|
1559
|
+
"format_image_left": 0xf863,
|
|
1560
|
+
"format_image_right": 0xf864,
|
|
1561
|
+
"format_indent_decrease": 0xe23d,
|
|
1562
|
+
"format_indent_increase": 0xe23e,
|
|
1563
|
+
"format_ink_highlighter": 0xf82b,
|
|
1564
|
+
"format_italic": 0xe23f,
|
|
1565
|
+
"format_letter_spacing": 0xf773,
|
|
1566
|
+
"format_letter_spacing_2": 0xf618,
|
|
1567
|
+
"format_letter_spacing_standard": 0xf617,
|
|
1568
|
+
"format_letter_spacing_wide": 0xf616,
|
|
1569
|
+
"format_letter_spacing_wider": 0xf615,
|
|
1570
|
+
"format_line_spacing": 0xe240,
|
|
1571
|
+
"format_list_bulleted": 0xe241,
|
|
1572
|
+
"format_list_bulleted_add": 0xf849,
|
|
1573
|
+
"format_list_numbered": 0xe242,
|
|
1574
|
+
"format_list_numbered_rtl": 0xe267,
|
|
1575
|
+
"format_overline": 0xeb65,
|
|
1576
|
+
"format_paint": 0xe243,
|
|
1577
|
+
"format_paragraph": 0xf865,
|
|
1578
|
+
"format_quote": 0xe244,
|
|
1579
|
+
"format_quote_off": 0xf413,
|
|
1580
|
+
"format_shapes": 0xe25e,
|
|
1581
|
+
"format_size": 0xe245,
|
|
1582
|
+
"format_strikethrough": 0xe246,
|
|
1583
|
+
"format_text_clip": 0xf82a,
|
|
1584
|
+
"format_text_overflow": 0xf829,
|
|
1585
|
+
"format_text_wrap": 0xf828,
|
|
1586
|
+
"format_textdirection_l_to_r": 0xe247,
|
|
1587
|
+
"format_textdirection_r_to_l": 0xe248,
|
|
1588
|
+
"format_textdirection_vertical": 0xf4b8,
|
|
1589
|
+
"format_underlined": 0xe249,
|
|
1590
|
+
"format_underlined_squiggle": 0xf885,
|
|
1591
|
+
"forms_add_on": 0xf0c7,
|
|
1592
|
+
"forms_apps_script": 0xf0c8,
|
|
1593
|
+
"fort": 0xeaad,
|
|
1594
|
+
"forum": 0xe8af,
|
|
1595
|
+
"forward": 0xf57a,
|
|
1596
|
+
"forward_10": 0xe056,
|
|
1597
|
+
"forward_30": 0xe057,
|
|
1598
|
+
"forward_5": 0xe058,
|
|
1599
|
+
"forward_circle": 0xf6f5,
|
|
1600
|
+
"forward_media": 0xf6f4,
|
|
1601
|
+
"forward_to_inbox": 0xf187,
|
|
1602
|
+
"foundation": 0xf200,
|
|
1603
|
+
"fragrance": 0xf345,
|
|
1604
|
+
"frame_bug": 0xeeef,
|
|
1605
|
+
"frame_exclamation": 0xeeee,
|
|
1606
|
+
"frame_inspect": 0xf772,
|
|
1607
|
+
"frame_person": 0xf8a6,
|
|
1608
|
+
"frame_person_mic": 0xf4d5,
|
|
1609
|
+
"frame_person_off": 0xf7d1,
|
|
1610
|
+
"frame_reload": 0xf771,
|
|
1611
|
+
"frame_source": 0xf770,
|
|
1612
|
+
"free_breakfast": 0xeb44,
|
|
1613
|
+
"free_cancellation": 0xe748,
|
|
1614
|
+
"front_hand": 0xe769,
|
|
1615
|
+
"front_loader": 0xf869,
|
|
1616
|
+
"full_coverage": 0xeb12,
|
|
1617
|
+
"full_hd": 0xf58b,
|
|
1618
|
+
"full_stacked_bar_chart": 0xf212,
|
|
1619
|
+
"fullscreen": 0xe5d0,
|
|
1620
|
+
"fullscreen_exit": 0xe5d1,
|
|
1621
|
+
"fullscreen_portrait": 0xf45a,
|
|
1622
|
+
"function": 0xf866,
|
|
1623
|
+
"functions": 0xe24a,
|
|
1624
|
+
"funicular": 0xf477,
|
|
1625
|
+
"g_mobiledata": 0xf010,
|
|
1626
|
+
"g_mobiledata_badge": 0xf7e1,
|
|
1627
|
+
"g_translate": 0xe927,
|
|
1628
|
+
"gallery_thumbnail": 0xf86f,
|
|
1629
|
+
"gamepad": 0xe30f,
|
|
1630
|
+
"games": 0xe30f,
|
|
1631
|
+
"garage": 0xf011,
|
|
1632
|
+
"garage_check": 0xf28d,
|
|
1633
|
+
"garage_door": 0xe714,
|
|
1634
|
+
"garage_home": 0xe82d,
|
|
1635
|
+
"garage_money": 0xf28c,
|
|
1636
|
+
"garden_cart": 0xf8a9,
|
|
1637
|
+
"gas_meter": 0xec19,
|
|
1638
|
+
"gastroenterology": 0xe0f1,
|
|
1639
|
+
"gate": 0xe277,
|
|
1640
|
+
"gavel": 0xe90e,
|
|
1641
|
+
"general_device": 0xe6de,
|
|
1642
|
+
"generating_tokens": 0xe749,
|
|
1643
|
+
"genetics": 0xe0f3,
|
|
1644
|
+
"genres": 0xe6ee,
|
|
1645
|
+
"gesture": 0xe155,
|
|
1646
|
+
"gesture_select": 0xf657,
|
|
1647
|
+
"get_app": 0xf090,
|
|
1648
|
+
"gif": 0xe908,
|
|
1649
|
+
"gif_2": 0xf40e,
|
|
1650
|
+
"gif_box": 0xe7a3,
|
|
1651
|
+
"girl": 0xeb68,
|
|
1652
|
+
"gite": 0xe58b,
|
|
1653
|
+
"glass_cup": 0xf6e3,
|
|
1654
|
+
"globe": 0xe64c,
|
|
1655
|
+
"globe_asia": 0xf799,
|
|
1656
|
+
"globe_book": 0xf3c9,
|
|
1657
|
+
"globe_location_pin": 0xf35d,
|
|
1658
|
+
"globe_uk": 0xf798,
|
|
1659
|
+
"glucose": 0xe4a0,
|
|
1660
|
+
"glyphs": 0xf8a3,
|
|
1661
|
+
"go_to_line": 0xf71d,
|
|
1662
|
+
"golf_course": 0xeb45,
|
|
1663
|
+
"gondola_lift": 0xf476,
|
|
1664
|
+
"google_home_devices": 0xe715,
|
|
1665
|
+
"google_plus_reshare": 0xf57a,
|
|
1666
|
+
"google_tv_remote": 0xf5db,
|
|
1667
|
+
"google_wifi": 0xf579,
|
|
1668
|
+
"gpp_bad": 0xf012,
|
|
1669
|
+
"gpp_good": 0xf013,
|
|
1670
|
+
"gpp_maybe": 0xf014,
|
|
1671
|
+
"gps_fixed": 0xe55c,
|
|
1672
|
+
"gps_not_fixed": 0xe1b7,
|
|
1673
|
+
"gps_off": 0xe1b6,
|
|
1674
|
+
"grade": 0xf09a,
|
|
1675
|
+
"gradient": 0xe3e9,
|
|
1676
|
+
"grading": 0xea4f,
|
|
1677
|
+
"grain": 0xe3ea,
|
|
1678
|
+
"graph_1": 0xf3a0,
|
|
1679
|
+
"graph_2": 0xf39f,
|
|
1680
|
+
"graph_3": 0xf39e,
|
|
1681
|
+
"graph_4": 0xf39d,
|
|
1682
|
+
"graph_5": 0xf39c,
|
|
1683
|
+
"graph_6": 0xf39b,
|
|
1684
|
+
"graph_7": 0xf346,
|
|
1685
|
+
"graphic_eq": 0xe1b8,
|
|
1686
|
+
"grass": 0xf205,
|
|
1687
|
+
"grid_3x3": 0xf015,
|
|
1688
|
+
"grid_3x3_off": 0xf67c,
|
|
1689
|
+
"grid_4x4": 0xf016,
|
|
1690
|
+
"grid_goldenratio": 0xf017,
|
|
1691
|
+
"grid_guides": 0xf76f,
|
|
1692
|
+
"grid_off": 0xe3eb,
|
|
1693
|
+
"grid_on": 0xe3ec,
|
|
1694
|
+
"grid_view": 0xe9b0,
|
|
1695
|
+
"grocery": 0xef97,
|
|
1696
|
+
"group": 0xea21,
|
|
1697
|
+
"group_add": 0xe7f0,
|
|
1698
|
+
"group_off": 0xe747,
|
|
1699
|
+
"group_remove": 0xe7ad,
|
|
1700
|
+
"group_search": 0xf3ce,
|
|
1701
|
+
"group_work": 0xe886,
|
|
1702
|
+
"grouped_bar_chart": 0xf211,
|
|
1703
|
+
"groups": 0xf233,
|
|
1704
|
+
"groups_2": 0xf8df,
|
|
1705
|
+
"groups_3": 0xf8e0,
|
|
1706
|
+
"guardian": 0xf4c1,
|
|
1707
|
+
"gynecology": 0xe0f4,
|
|
1708
|
+
"h_mobiledata": 0xf018,
|
|
1709
|
+
"h_mobiledata_badge": 0xf7e0,
|
|
1710
|
+
"h_plus_mobiledata": 0xf019,
|
|
1711
|
+
"h_plus_mobiledata_badge": 0xf7df,
|
|
1712
|
+
"hail": 0xe9b1,
|
|
1713
|
+
"hallway": 0xe6f8,
|
|
1714
|
+
"hanami_dango": 0xf23f,
|
|
1715
|
+
"hand_bones": 0xf894,
|
|
1716
|
+
"hand_gesture": 0xef9c,
|
|
1717
|
+
"hand_gesture_off": 0xf3f3,
|
|
1718
|
+
"hand_meal": 0xf294,
|
|
1719
|
+
"hand_package": 0xf293,
|
|
1720
|
+
"handheld_controller": 0xf4c6,
|
|
1721
|
+
"handshake": 0xebcb,
|
|
1722
|
+
"handwriting_recognition": 0xeb02,
|
|
1723
|
+
"handyman": 0xf10b,
|
|
1724
|
+
"hangout_video": 0xe0c1,
|
|
1725
|
+
"hangout_video_off": 0xe0c2,
|
|
1726
|
+
"hard_disk": 0xf3da,
|
|
1727
|
+
"hard_drive": 0xf80e,
|
|
1728
|
+
"hard_drive_2": 0xf7a4,
|
|
1729
|
+
"hardware": 0xea59,
|
|
1730
|
+
"hd": 0xe052,
|
|
1731
|
+
"hdr_auto": 0xf01a,
|
|
1732
|
+
"hdr_auto_select": 0xf01b,
|
|
1733
|
+
"hdr_enhanced_select": 0xef51,
|
|
1734
|
+
"hdr_off": 0xe3ed,
|
|
1735
|
+
"hdr_off_select": 0xf01c,
|
|
1736
|
+
"hdr_on": 0xe3ee,
|
|
1737
|
+
"hdr_on_select": 0xf01d,
|
|
1738
|
+
"hdr_plus": 0xf01e,
|
|
1739
|
+
"hdr_plus_off": 0xe3ef,
|
|
1740
|
+
"hdr_strong": 0xe3f1,
|
|
1741
|
+
"hdr_weak": 0xe3f2,
|
|
1742
|
+
"head_mounted_device": 0xf4c5,
|
|
1743
|
+
"headphones": 0xf01f,
|
|
1744
|
+
"headphones_battery": 0xf020,
|
|
1745
|
+
"headset": 0xf01f,
|
|
1746
|
+
"headset_mic": 0xe311,
|
|
1747
|
+
"headset_off": 0xe33a,
|
|
1748
|
+
"healing": 0xe3f3,
|
|
1749
|
+
"health_and_beauty": 0xef9d,
|
|
1750
|
+
"health_and_safety": 0xe1d5,
|
|
1751
|
+
"health_cross": 0xf2c3,
|
|
1752
|
+
"health_metrics": 0xf6e2,
|
|
1753
|
+
"heap_snapshot_large": 0xf76e,
|
|
1754
|
+
"heap_snapshot_multiple": 0xf76d,
|
|
1755
|
+
"heap_snapshot_thumbnail": 0xf76c,
|
|
1756
|
+
"hearing": 0xe023,
|
|
1757
|
+
"hearing_aid": 0xf464,
|
|
1758
|
+
"hearing_aid_disabled": 0xf3b0,
|
|
1759
|
+
"hearing_aid_disabled_left": 0xf2ec,
|
|
1760
|
+
"hearing_aid_left": 0xf2ed,
|
|
1761
|
+
"hearing_disabled": 0xf104,
|
|
1762
|
+
"heart_broken": 0xeac2,
|
|
1763
|
+
"heart_check": 0xf60a,
|
|
1764
|
+
"heart_minus": 0xf883,
|
|
1765
|
+
"heart_plus": 0xf884,
|
|
1766
|
+
"heart_smile": 0xf292,
|
|
1767
|
+
"heat": 0xf537,
|
|
1768
|
+
"heat_pump": 0xec18,
|
|
1769
|
+
"heat_pump_balance": 0xe27e,
|
|
1770
|
+
"height": 0xea16,
|
|
1771
|
+
"helicopter": 0xf60c,
|
|
1772
|
+
"help": 0xe8fd,
|
|
1773
|
+
"help_center": 0xf1c0,
|
|
1774
|
+
"help_clinic": 0xf810,
|
|
1775
|
+
"help_outline": 0xe8fd,
|
|
1776
|
+
"hematology": 0xe0f6,
|
|
1777
|
+
"hevc": 0xf021,
|
|
1778
|
+
"hexagon": 0xeb39,
|
|
1779
|
+
"hide": 0xef9e,
|
|
1780
|
+
"hide_image": 0xf022,
|
|
1781
|
+
"hide_source": 0xf023,
|
|
1782
|
+
"high_chair": 0xf29a,
|
|
1783
|
+
"high_density": 0xf79c,
|
|
1784
|
+
"high_quality": 0xe024,
|
|
1785
|
+
"high_res": 0xf54b,
|
|
1786
|
+
"highlight": 0xe25f,
|
|
1787
|
+
"highlight_alt": 0xef52,
|
|
1788
|
+
"highlight_keyboard_focus": 0xf510,
|
|
1789
|
+
"highlight_mouse_cursor": 0xf511,
|
|
1790
|
+
"highlight_off": 0xe888,
|
|
1791
|
+
"highlight_text_cursor": 0xf512,
|
|
1792
|
+
"highlighter_size_1": 0xf76b,
|
|
1793
|
+
"highlighter_size_2": 0xf76a,
|
|
1794
|
+
"highlighter_size_3": 0xf769,
|
|
1795
|
+
"highlighter_size_4": 0xf768,
|
|
1796
|
+
"highlighter_size_5": 0xf767,
|
|
1797
|
+
"hiking": 0xe50a,
|
|
1798
|
+
"history": 0xe8b3,
|
|
1799
|
+
"history_2": 0xf3e6,
|
|
1800
|
+
"history_edu": 0xea3e,
|
|
1801
|
+
"history_off": 0xf4da,
|
|
1802
|
+
"history_toggle_off": 0xf17d,
|
|
1803
|
+
"hive": 0xeaa6,
|
|
1804
|
+
"hls": 0xeb8a,
|
|
1805
|
+
"hls_off": 0xeb8c,
|
|
1806
|
+
"holiday_village": 0xe58a,
|
|
1807
|
+
"home": 0xe9b2,
|
|
1808
|
+
"home_and_garden": 0xef9f,
|
|
1809
|
+
"home_app_logo": 0xe295,
|
|
1810
|
+
"home_filled": 0xe9b2,
|
|
1811
|
+
"home_health": 0xe4b9,
|
|
1812
|
+
"home_improvement_and_tools": 0xefa0,
|
|
1813
|
+
"home_iot_device": 0xe283,
|
|
1814
|
+
"home_max": 0xf024,
|
|
1815
|
+
"home_max_dots": 0xe849,
|
|
1816
|
+
"home_mini": 0xf025,
|
|
1817
|
+
"home_pin": 0xf14d,
|
|
1818
|
+
"home_repair_service": 0xf100,
|
|
1819
|
+
"home_speaker": 0xf11c,
|
|
1820
|
+
"home_storage": 0xf86c,
|
|
1821
|
+
"home_work": 0xf030,
|
|
1822
|
+
"horizontal_distribute": 0xe014,
|
|
1823
|
+
"horizontal_rule": 0xf108,
|
|
1824
|
+
"horizontal_split": 0xe947,
|
|
1825
|
+
"host": 0xf3d9,
|
|
1826
|
+
"hot_tub": 0xeb46,
|
|
1827
|
+
"hotel": 0xe549,
|
|
1828
|
+
"hotel_class": 0xe743,
|
|
1829
|
+
"hourglass": 0xebff,
|
|
1830
|
+
"hourglass_arrow_down": 0xf37e,
|
|
1831
|
+
"hourglass_arrow_up": 0xf37d,
|
|
1832
|
+
"hourglass_bottom": 0xea5c,
|
|
1833
|
+
"hourglass_disabled": 0xef53,
|
|
1834
|
+
"hourglass_empty": 0xe88b,
|
|
1835
|
+
"hourglass_full": 0xe88c,
|
|
1836
|
+
"hourglass_pause": 0xf38c,
|
|
1837
|
+
"hourglass_top": 0xea5b,
|
|
1838
|
+
"house": 0xea44,
|
|
1839
|
+
"house_siding": 0xf202,
|
|
1840
|
+
"house_with_shield": 0xe786,
|
|
1841
|
+
"houseboat": 0xe584,
|
|
1842
|
+
"household_supplies": 0xefa1,
|
|
1843
|
+
"hov": 0xf475,
|
|
1844
|
+
"how_to_reg": 0xe174,
|
|
1845
|
+
"how_to_vote": 0xe175,
|
|
1846
|
+
"hr_resting": 0xf6ba,
|
|
1847
|
+
"html": 0xeb7e,
|
|
1848
|
+
"http": 0xe902,
|
|
1849
|
+
"https": 0xe899,
|
|
1850
|
+
"hub": 0xe9f4,
|
|
1851
|
+
"humerus": 0xf895,
|
|
1852
|
+
"humerus_alt": 0xf896,
|
|
1853
|
+
"humidity_high": 0xf163,
|
|
1854
|
+
"humidity_indoor": 0xf558,
|
|
1855
|
+
"humidity_low": 0xf164,
|
|
1856
|
+
"humidity_mid": 0xf165,
|
|
1857
|
+
"humidity_percentage": 0xf87e,
|
|
1858
|
+
"hvac": 0xf10e,
|
|
1859
|
+
"hvac_max_defrost": 0xf332,
|
|
1860
|
+
"ice_skating": 0xe50b,
|
|
1861
|
+
"icecream": 0xea69,
|
|
1862
|
+
"id_card": 0xf4ca,
|
|
1863
|
+
"identity_aware_proxy": 0xe2dd,
|
|
1864
|
+
"identity_platform": 0xebb7,
|
|
1865
|
+
"ifl": 0xe025,
|
|
1866
|
+
"iframe": 0xf71b,
|
|
1867
|
+
"iframe_off": 0xf71c,
|
|
1868
|
+
"image": 0xe3f4,
|
|
1869
|
+
"image_arrow_up": 0xf317,
|
|
1870
|
+
"image_aspect_ratio": 0xe3f5,
|
|
1871
|
+
"image_inset": 0xf247,
|
|
1872
|
+
"image_not_supported": 0xf116,
|
|
1873
|
+
"image_search": 0xe43f,
|
|
1874
|
+
"imagesearch_roller": 0xe9b4,
|
|
1875
|
+
"imagesmode": 0xefa2,
|
|
1876
|
+
"immunology": 0xe0fb,
|
|
1877
|
+
"import_contacts": 0xe0e0,
|
|
1878
|
+
"import_export": 0xe8d5,
|
|
1879
|
+
"important_devices": 0xe912,
|
|
1880
|
+
"in_home_mode": 0xe833,
|
|
1881
|
+
"inactive_order": 0xe0fc,
|
|
1882
|
+
"inbox": 0xe156,
|
|
1883
|
+
"inbox_customize": 0xf859,
|
|
1884
|
+
"inbox_text": 0xf399,
|
|
1885
|
+
"inbox_text_asterisk": 0xf360,
|
|
1886
|
+
"inbox_text_person": 0xf35e,
|
|
1887
|
+
"inbox_text_share": 0xf35c,
|
|
1888
|
+
"incomplete_circle": 0xe79b,
|
|
1889
|
+
"indeterminate_check_box": 0xe909,
|
|
1890
|
+
"indeterminate_question_box": 0xf56d,
|
|
1891
|
+
"info": 0xe88e,
|
|
1892
|
+
"info_i": 0xf59b,
|
|
1893
|
+
"infrared": 0xf87c,
|
|
1894
|
+
"ink_eraser": 0xe6d0,
|
|
1895
|
+
"ink_eraser_off": 0xe7e3,
|
|
1896
|
+
"ink_highlighter": 0xe6d1,
|
|
1897
|
+
"ink_highlighter_move": 0xf524,
|
|
1898
|
+
"ink_marker": 0xe6d2,
|
|
1899
|
+
"ink_pen": 0xe6d3,
|
|
1900
|
+
"ink_selection": 0xef52,
|
|
1901
|
+
"inpatient": 0xe0fe,
|
|
1902
|
+
"input": 0xe890,
|
|
1903
|
+
"input_circle": 0xf71a,
|
|
1904
|
+
"insert_chart": 0xf0cc,
|
|
1905
|
+
"insert_chart_filled": 0xf0cc,
|
|
1906
|
+
"insert_chart_outlined": 0xf0cc,
|
|
1907
|
+
"insert_comment": 0xe24c,
|
|
1908
|
+
"insert_drive_file": 0xe66d,
|
|
1909
|
+
"insert_emoticon": 0xea22,
|
|
1910
|
+
"insert_invitation": 0xe878,
|
|
1911
|
+
"insert_link": 0xe250,
|
|
1912
|
+
"insert_page_break": 0xeaca,
|
|
1913
|
+
"insert_photo": 0xe3f4,
|
|
1914
|
+
"insert_text": 0xf827,
|
|
1915
|
+
"insights": 0xf092,
|
|
1916
|
+
"install_desktop": 0xeb71,
|
|
1917
|
+
"install_mobile": 0xf2cd,
|
|
1918
|
+
"instant_mix": 0xe026,
|
|
1919
|
+
"integration_instructions": 0xef54,
|
|
1920
|
+
"interactive_space": 0xf7ff,
|
|
1921
|
+
"interests": 0xe7c8,
|
|
1922
|
+
"interpreter_mode": 0xe83b,
|
|
1923
|
+
"inventory": 0xe179,
|
|
1924
|
+
"inventory_2": 0xe1a1,
|
|
1925
|
+
"invert_colors": 0xe891,
|
|
1926
|
+
"invert_colors_off": 0xe0c4,
|
|
1927
|
+
"ios": 0xe027,
|
|
1928
|
+
"ios_share": 0xe6b8,
|
|
1929
|
+
"iron": 0xe583,
|
|
1930
|
+
"iso": 0xe3f6,
|
|
1931
|
+
"jamboard_kiosk": 0xe9b5,
|
|
1932
|
+
"japanese_curry": 0xf284,
|
|
1933
|
+
"japanese_flag": 0xf283,
|
|
1934
|
+
"javascript": 0xeb7c,
|
|
1935
|
+
"join": 0xf84f,
|
|
1936
|
+
"join_full": 0xf84f,
|
|
1937
|
+
"join_inner": 0xeaf4,
|
|
1938
|
+
"join_left": 0xeaf2,
|
|
1939
|
+
"join_right": 0xeaea,
|
|
1940
|
+
"joystick": 0xf5ee,
|
|
1941
|
+
"jump_to_element": 0xf719,
|
|
1942
|
+
"kanji_alcohol": 0xf23e,
|
|
1943
|
+
"kayaking": 0xe50c,
|
|
1944
|
+
"kebab_dining": 0xe842,
|
|
1945
|
+
"keep": 0xf026,
|
|
1946
|
+
"keep_off": 0xe6f9,
|
|
1947
|
+
"keep_pin": 0xf026,
|
|
1948
|
+
"keep_public": 0xf56f,
|
|
1949
|
+
"kettle": 0xe2b9,
|
|
1950
|
+
"key": 0xe73c,
|
|
1951
|
+
"key_off": 0xeb84,
|
|
1952
|
+
"key_vertical": 0xf51a,
|
|
1953
|
+
"key_visualizer": 0xf199,
|
|
1954
|
+
"keyboard": 0xe312,
|
|
1955
|
+
"keyboard_alt": 0xf028,
|
|
1956
|
+
"keyboard_arrow_down": 0xe313,
|
|
1957
|
+
"keyboard_arrow_left": 0xe314,
|
|
1958
|
+
"keyboard_arrow_right": 0xe315,
|
|
1959
|
+
"keyboard_arrow_up": 0xe316,
|
|
1960
|
+
"keyboard_backspace": 0xe317,
|
|
1961
|
+
"keyboard_capslock": 0xe318,
|
|
1962
|
+
"keyboard_capslock_badge": 0xf7de,
|
|
1963
|
+
"keyboard_command_key": 0xeae7,
|
|
1964
|
+
"keyboard_control_key": 0xeae6,
|
|
1965
|
+
"keyboard_double_arrow_down": 0xead0,
|
|
1966
|
+
"keyboard_double_arrow_left": 0xeac3,
|
|
1967
|
+
"keyboard_double_arrow_right": 0xeac9,
|
|
1968
|
+
"keyboard_double_arrow_up": 0xeacf,
|
|
1969
|
+
"keyboard_external_input": 0xf7dd,
|
|
1970
|
+
"keyboard_full": 0xf7dc,
|
|
1971
|
+
"keyboard_hide": 0xe31a,
|
|
1972
|
+
"keyboard_keys": 0xf67b,
|
|
1973
|
+
"keyboard_lock": 0xf492,
|
|
1974
|
+
"keyboard_lock_off": 0xf491,
|
|
1975
|
+
"keyboard_off": 0xf67a,
|
|
1976
|
+
"keyboard_onscreen": 0xf7db,
|
|
1977
|
+
"keyboard_option_key": 0xeae8,
|
|
1978
|
+
"keyboard_previous_language": 0xf7da,
|
|
1979
|
+
"keyboard_return": 0xe31b,
|
|
1980
|
+
"keyboard_tab": 0xe31c,
|
|
1981
|
+
"keyboard_tab_rtl": 0xec73,
|
|
1982
|
+
"keyboard_voice": 0xe31d,
|
|
1983
|
+
"kid_star": 0xf526,
|
|
1984
|
+
"king_bed": 0xea45,
|
|
1985
|
+
"kitchen": 0xeb47,
|
|
1986
|
+
"kitesurfing": 0xe50d,
|
|
1987
|
+
"lab_panel": 0xe103,
|
|
1988
|
+
"lab_profile": 0xe104,
|
|
1989
|
+
"lab_research": 0xf80b,
|
|
1990
|
+
"label": 0xe893,
|
|
1991
|
+
"label_important": 0xe948,
|
|
1992
|
+
"label_important_outline": 0xe948,
|
|
1993
|
+
"label_off": 0xe9b6,
|
|
1994
|
+
"label_outline": 0xe893,
|
|
1995
|
+
"labs": 0xe105,
|
|
1996
|
+
"lan": 0xeb2f,
|
|
1997
|
+
"landscape": 0xe564,
|
|
1998
|
+
"landscape_2": 0xf4c4,
|
|
1999
|
+
"landscape_2_edit": 0xf310,
|
|
2000
|
+
"landscape_2_off": 0xf4c3,
|
|
2001
|
+
"landslide": 0xebd7,
|
|
2002
|
+
"language": 0xe894,
|
|
2003
|
+
"language_chinese_array": 0xf766,
|
|
2004
|
+
"language_chinese_cangjie": 0xf765,
|
|
2005
|
+
"language_chinese_dayi": 0xf764,
|
|
2006
|
+
"language_chinese_pinyin": 0xf763,
|
|
2007
|
+
"language_chinese_quick": 0xf762,
|
|
2008
|
+
"language_chinese_wubi": 0xf761,
|
|
2009
|
+
"language_french": 0xf760,
|
|
2010
|
+
"language_gb_english": 0xf75f,
|
|
2011
|
+
"language_international": 0xf75e,
|
|
2012
|
+
"language_japanese_kana": 0xf513,
|
|
2013
|
+
"language_korean_latin": 0xf75d,
|
|
2014
|
+
"language_pinyin": 0xf75c,
|
|
2015
|
+
"language_spanish": 0xf5e9,
|
|
2016
|
+
"language_us": 0xf759,
|
|
2017
|
+
"language_us_colemak": 0xf75b,
|
|
2018
|
+
"language_us_dvorak": 0xf75a,
|
|
2019
|
+
"laps": 0xf6b9,
|
|
2020
|
+
"laptop": 0xe31e,
|
|
2021
|
+
"laptop_car": 0xf3cd,
|
|
2022
|
+
"laptop_chromebook": 0xe31f,
|
|
2023
|
+
"laptop_mac": 0xe320,
|
|
2024
|
+
"laptop_windows": 0xe321,
|
|
2025
|
+
"lasso_select": 0xeb03,
|
|
2026
|
+
"last_page": 0xe5dd,
|
|
2027
|
+
"launch": 0xe89e,
|
|
2028
|
+
"laundry": 0xe2a8,
|
|
2029
|
+
"layers": 0xe53b,
|
|
2030
|
+
"layers_clear": 0xe53c,
|
|
2031
|
+
"lda": 0xe106,
|
|
2032
|
+
"leaderboard": 0xf20c,
|
|
2033
|
+
"leak_add": 0xe3f8,
|
|
2034
|
+
"leak_remove": 0xe3f9,
|
|
2035
|
+
"left_click": 0xf718,
|
|
2036
|
+
"left_panel_close": 0xf717,
|
|
2037
|
+
"left_panel_open": 0xf716,
|
|
2038
|
+
"legend_toggle": 0xf11b,
|
|
2039
|
+
"lens": 0xe3fa,
|
|
2040
|
+
"lens_blur": 0xf029,
|
|
2041
|
+
"letter_switch": 0xf758,
|
|
2042
|
+
"library_add": 0xe03c,
|
|
2043
|
+
"library_add_check": 0xe9b7,
|
|
2044
|
+
"library_books": 0xe02f,
|
|
2045
|
+
"library_music": 0xe030,
|
|
2046
|
+
"license": 0xeb04,
|
|
2047
|
+
"lift_to_talk": 0xefa3,
|
|
2048
|
+
"light": 0xf02a,
|
|
2049
|
+
"light_group": 0xe28b,
|
|
2050
|
+
"light_mode": 0xe518,
|
|
2051
|
+
"light_off": 0xe9b8,
|
|
2052
|
+
"lightbulb": 0xe90f,
|
|
2053
|
+
"lightbulb_2": 0xf3e3,
|
|
2054
|
+
"lightbulb_circle": 0xebfe,
|
|
2055
|
+
"lightbulb_outline": 0xe90f,
|
|
2056
|
+
"lightning_stand": 0xefa4,
|
|
2057
|
+
"line_axis": 0xea9a,
|
|
2058
|
+
"line_curve": 0xf757,
|
|
2059
|
+
"line_end": 0xf826,
|
|
2060
|
+
"line_end_arrow": 0xf81d,
|
|
2061
|
+
"line_end_arrow_notch": 0xf81c,
|
|
2062
|
+
"line_end_circle": 0xf81b,
|
|
2063
|
+
"line_end_diamond": 0xf81a,
|
|
2064
|
+
"line_end_square": 0xf819,
|
|
2065
|
+
"line_start": 0xf825,
|
|
2066
|
+
"line_start_arrow": 0xf818,
|
|
2067
|
+
"line_start_arrow_notch": 0xf817,
|
|
2068
|
+
"line_start_circle": 0xf816,
|
|
2069
|
+
"line_start_diamond": 0xf815,
|
|
2070
|
+
"line_start_square": 0xf814,
|
|
2071
|
+
"line_style": 0xe919,
|
|
2072
|
+
"line_weight": 0xe91a,
|
|
2073
|
+
"linear_scale": 0xe260,
|
|
2074
|
+
"link": 0xe250,
|
|
2075
|
+
"link_off": 0xe16f,
|
|
2076
|
+
"linked_camera": 0xe438,
|
|
2077
|
+
"linked_services": 0xf535,
|
|
2078
|
+
"liquor": 0xea60,
|
|
2079
|
+
"list": 0xe896,
|
|
2080
|
+
"list_alt": 0xe0ee,
|
|
2081
|
+
"list_alt_add": 0xf756,
|
|
2082
|
+
"list_alt_check": 0xf3de,
|
|
2083
|
+
"lists": 0xe9b9,
|
|
2084
|
+
"live_help": 0xe0c6,
|
|
2085
|
+
"live_tv": 0xe63a,
|
|
2086
|
+
"living": 0xf02b,
|
|
2087
|
+
"local_activity": 0xe553,
|
|
2088
|
+
"local_airport": 0xe53d,
|
|
2089
|
+
"local_atm": 0xe53e,
|
|
2090
|
+
"local_bar": 0xe540,
|
|
2091
|
+
"local_cafe": 0xeb44,
|
|
2092
|
+
"local_car_wash": 0xe542,
|
|
2093
|
+
"local_convenience_store": 0xe543,
|
|
2094
|
+
"local_dining": 0xe561,
|
|
2095
|
+
"local_drink": 0xe544,
|
|
2096
|
+
"local_fire_department": 0xef55,
|
|
2097
|
+
"local_florist": 0xe545,
|
|
2098
|
+
"local_gas_station": 0xe546,
|
|
2099
|
+
"local_grocery_store": 0xe8cc,
|
|
2100
|
+
"local_hospital": 0xe548,
|
|
2101
|
+
"local_hotel": 0xe549,
|
|
2102
|
+
"local_laundry_service": 0xe54a,
|
|
2103
|
+
"local_library": 0xe54b,
|
|
2104
|
+
"local_mall": 0xe54c,
|
|
2105
|
+
"local_movies": 0xe8da,
|
|
2106
|
+
"local_offer": 0xf05b,
|
|
2107
|
+
"local_parking": 0xe54f,
|
|
2108
|
+
"local_pharmacy": 0xe550,
|
|
2109
|
+
"local_phone": 0xf0d4,
|
|
2110
|
+
"local_pizza": 0xe552,
|
|
2111
|
+
"local_play": 0xe553,
|
|
2112
|
+
"local_police": 0xef56,
|
|
2113
|
+
"local_post_office": 0xe554,
|
|
2114
|
+
"local_printshop": 0xe8ad,
|
|
2115
|
+
"local_see": 0xe557,
|
|
2116
|
+
"local_shipping": 0xe558,
|
|
2117
|
+
"local_taxi": 0xe559,
|
|
2118
|
+
"location_automation": 0xf14f,
|
|
2119
|
+
"location_away": 0xf150,
|
|
2120
|
+
"location_chip": 0xf850,
|
|
2121
|
+
"location_city": 0xe7f1,
|
|
2122
|
+
"location_disabled": 0xe1b6,
|
|
2123
|
+
"location_home": 0xf152,
|
|
2124
|
+
"location_off": 0xe0c7,
|
|
2125
|
+
"location_on": 0xf1db,
|
|
2126
|
+
"location_pin": 0xf1db,
|
|
2127
|
+
"location_searching": 0xe1b7,
|
|
2128
|
+
"locator_tag": 0xf8c1,
|
|
2129
|
+
"lock": 0xe899,
|
|
2130
|
+
"lock_clock": 0xef57,
|
|
2131
|
+
"lock_open": 0xe898,
|
|
2132
|
+
"lock_open_circle": 0xf361,
|
|
2133
|
+
"lock_open_right": 0xf656,
|
|
2134
|
+
"lock_outline": 0xe899,
|
|
2135
|
+
"lock_person": 0xf8f3,
|
|
2136
|
+
"lock_reset": 0xeade,
|
|
2137
|
+
"login": 0xea77,
|
|
2138
|
+
"logo_dev": 0xead6,
|
|
2139
|
+
"logout": 0xe9ba,
|
|
2140
|
+
"looks": 0xe3fc,
|
|
2141
|
+
"looks_3": 0xe3fb,
|
|
2142
|
+
"looks_4": 0xe3fd,
|
|
2143
|
+
"looks_5": 0xe3fe,
|
|
2144
|
+
"looks_6": 0xe3ff,
|
|
2145
|
+
"looks_one": 0xe400,
|
|
2146
|
+
"looks_two": 0xe401,
|
|
2147
|
+
"loop": 0xe863,
|
|
2148
|
+
"loupe": 0xe402,
|
|
2149
|
+
"low_density": 0xf79b,
|
|
2150
|
+
"low_priority": 0xe16d,
|
|
2151
|
+
"lowercase": 0xf48a,
|
|
2152
|
+
"loyalty": 0xe89a,
|
|
2153
|
+
"lte_mobiledata": 0xf02c,
|
|
2154
|
+
"lte_mobiledata_badge": 0xf7d9,
|
|
2155
|
+
"lte_plus_mobiledata": 0xf02d,
|
|
2156
|
+
"lte_plus_mobiledata_badge": 0xf7d8,
|
|
2157
|
+
"luggage": 0xf235,
|
|
2158
|
+
"lunch_dining": 0xea61,
|
|
2159
|
+
"lyrics": 0xec0b,
|
|
2160
|
+
"macro_auto": 0xf6f2,
|
|
2161
|
+
"macro_off": 0xf8d2,
|
|
2162
|
+
"magic_button": 0xf136,
|
|
2163
|
+
"magic_exchange": 0xf7f4,
|
|
2164
|
+
"magic_tether": 0xf7d7,
|
|
2165
|
+
"magnification_large": 0xf83d,
|
|
2166
|
+
"magnification_small": 0xf83c,
|
|
2167
|
+
"magnify_docked": 0xf7d6,
|
|
2168
|
+
"magnify_fullscreen": 0xf7d5,
|
|
2169
|
+
"mail": 0xe159,
|
|
2170
|
+
"mail_asterisk": 0xeef4,
|
|
2171
|
+
"mail_lock": 0xec0a,
|
|
2172
|
+
"mail_off": 0xf48b,
|
|
2173
|
+
"mail_outline": 0xe159,
|
|
2174
|
+
"mail_shield": 0xf249,
|
|
2175
|
+
"male": 0xe58e,
|
|
2176
|
+
"man": 0xe4eb,
|
|
2177
|
+
"man_2": 0xf8e1,
|
|
2178
|
+
"man_3": 0xf8e2,
|
|
2179
|
+
"man_4": 0xf8e3,
|
|
2180
|
+
"manage_accounts": 0xf02e,
|
|
2181
|
+
"manage_history": 0xebe7,
|
|
2182
|
+
"manage_search": 0xf02f,
|
|
2183
|
+
"manga": 0xf5e3,
|
|
2184
|
+
"manufacturing": 0xe726,
|
|
2185
|
+
"map": 0xe55b,
|
|
2186
|
+
"map_pin_heart": 0xf298,
|
|
2187
|
+
"map_pin_review": 0xf297,
|
|
2188
|
+
"map_search": 0xf3ca,
|
|
2189
|
+
"maps_home_work": 0xf030,
|
|
2190
|
+
"maps_ugc": 0xef58,
|
|
2191
|
+
"margin": 0xe9bb,
|
|
2192
|
+
"mark_as_unread": 0xe9bc,
|
|
2193
|
+
"mark_chat_read": 0xf18b,
|
|
2194
|
+
"mark_chat_unread": 0xf189,
|
|
2195
|
+
"mark_email_read": 0xf18c,
|
|
2196
|
+
"mark_email_unread": 0xf18a,
|
|
2197
|
+
"mark_unread_chat_alt": 0xeb9d,
|
|
2198
|
+
"markdown": 0xf552,
|
|
2199
|
+
"markdown_copy": 0xf553,
|
|
2200
|
+
"markdown_paste": 0xf554,
|
|
2201
|
+
"markunread": 0xe159,
|
|
2202
|
+
"markunread_mailbox": 0xe89b,
|
|
2203
|
+
"masked_transitions": 0xe72e,
|
|
2204
|
+
"masked_transitions_add": 0xf42b,
|
|
2205
|
+
"masks": 0xf218,
|
|
2206
|
+
"massage": 0xf2c2,
|
|
2207
|
+
"match_case": 0xf6f1,
|
|
2208
|
+
"match_case_off": 0xf36f,
|
|
2209
|
+
"match_word": 0xf6f0,
|
|
2210
|
+
"matter": 0xe907,
|
|
2211
|
+
"maximize": 0xe930,
|
|
2212
|
+
"meal_dinner": 0xf23d,
|
|
2213
|
+
"meal_lunch": 0xf23c,
|
|
2214
|
+
"measuring_tape": 0xf6af,
|
|
2215
|
+
"media_bluetooth_off": 0xf031,
|
|
2216
|
+
"media_bluetooth_on": 0xf032,
|
|
2217
|
+
"media_link": 0xf83f,
|
|
2218
|
+
"media_output": 0xf4f2,
|
|
2219
|
+
"media_output_off": 0xf4f3,
|
|
2220
|
+
"mediation": 0xefa7,
|
|
2221
|
+
"medical_information": 0xebed,
|
|
2222
|
+
"medical_mask": 0xf80a,
|
|
2223
|
+
"medical_services": 0xf109,
|
|
2224
|
+
"medication": 0xf033,
|
|
2225
|
+
"medication_liquid": 0xea87,
|
|
2226
|
+
"meeting_room": 0xeb4f,
|
|
2227
|
+
"memory": 0xe322,
|
|
2228
|
+
"memory_alt": 0xf7a3,
|
|
2229
|
+
"menstrual_health": 0xf6e1,
|
|
2230
|
+
"menu": 0xe5d2,
|
|
2231
|
+
"menu_book": 0xea19,
|
|
2232
|
+
"menu_book_2": 0xf291,
|
|
2233
|
+
"menu_open": 0xe9bd,
|
|
2234
|
+
"merge": 0xeb98,
|
|
2235
|
+
"merge_type": 0xe252,
|
|
2236
|
+
"message": 0xe0c9,
|
|
2237
|
+
"metabolism": 0xe10b,
|
|
2238
|
+
"metro": 0xf474,
|
|
2239
|
+
"mfg_nest_yale_lock": 0xf11d,
|
|
2240
|
+
"mic": 0xe31d,
|
|
2241
|
+
"mic_alert": 0xf392,
|
|
2242
|
+
"mic_double": 0xf5d1,
|
|
2243
|
+
"mic_external_off": 0xef59,
|
|
2244
|
+
"mic_external_on": 0xef5a,
|
|
2245
|
+
"mic_none": 0xe31d,
|
|
2246
|
+
"mic_off": 0xe02b,
|
|
2247
|
+
"microbiology": 0xe10c,
|
|
2248
|
+
"microwave": 0xf204,
|
|
2249
|
+
"microwave_gen": 0xe847,
|
|
2250
|
+
"military_tech": 0xea3f,
|
|
2251
|
+
"mimo": 0xe9be,
|
|
2252
|
+
"mimo_disconnect": 0xe9bf,
|
|
2253
|
+
"mindfulness": 0xf6e0,
|
|
2254
|
+
"minimize": 0xe931,
|
|
2255
|
+
"minor_crash": 0xebf1,
|
|
2256
|
+
"mintmark": 0xefa9,
|
|
2257
|
+
"missed_video_call": 0xf0ce,
|
|
2258
|
+
"missed_video_call_filled": 0xf0ce,
|
|
2259
|
+
"missing_controller": 0xe701,
|
|
2260
|
+
"mist": 0xe188,
|
|
2261
|
+
"mitre": 0xf547,
|
|
2262
|
+
"mixture_med": 0xe4c8,
|
|
2263
|
+
"mms": 0xe618,
|
|
2264
|
+
"mobile": 0xe7ba,
|
|
2265
|
+
"mobile_2": 0xf2db,
|
|
2266
|
+
"mobile_3": 0xf2da,
|
|
2267
|
+
"mobile_alert": 0xf2d3,
|
|
2268
|
+
"mobile_arrow_down": 0xf2cd,
|
|
2269
|
+
"mobile_arrow_right": 0xf2d2,
|
|
2270
|
+
"mobile_arrow_up_right": 0xf2b9,
|
|
2271
|
+
"mobile_block": 0xf2e5,
|
|
2272
|
+
"mobile_camera": 0xf44e,
|
|
2273
|
+
"mobile_camera_front": 0xf2c9,
|
|
2274
|
+
"mobile_camera_rear": 0xf2c8,
|
|
2275
|
+
"mobile_cancel": 0xf2ea,
|
|
2276
|
+
"mobile_cast": 0xf2cc,
|
|
2277
|
+
"mobile_charge": 0xf2e3,
|
|
2278
|
+
"mobile_chat": 0xf79f,
|
|
2279
|
+
"mobile_check": 0xf073,
|
|
2280
|
+
"mobile_code": 0xf2e2,
|
|
2281
|
+
"mobile_dots": 0xf2d0,
|
|
2282
|
+
"mobile_friendly": 0xf073,
|
|
2283
|
+
"mobile_gear": 0xf2d9,
|
|
2284
|
+
"mobile_hand": 0xf323,
|
|
2285
|
+
"mobile_hand_left": 0xf313,
|
|
2286
|
+
"mobile_hand_left_off": 0xf312,
|
|
2287
|
+
"mobile_hand_off": 0xf314,
|
|
2288
|
+
"mobile_info": 0xf2dc,
|
|
2289
|
+
"mobile_landscape": 0xed3e,
|
|
2290
|
+
"mobile_layout": 0xf2bf,
|
|
2291
|
+
"mobile_lock_landscape": 0xf2d8,
|
|
2292
|
+
"mobile_lock_portrait": 0xf2be,
|
|
2293
|
+
"mobile_loupe": 0xf322,
|
|
2294
|
+
"mobile_menu": 0xf2d1,
|
|
2295
|
+
"mobile_off": 0xe201,
|
|
2296
|
+
"mobile_question": 0xf2e1,
|
|
2297
|
+
"mobile_rotate": 0xf2d5,
|
|
2298
|
+
"mobile_rotate_lock": 0xf2d6,
|
|
2299
|
+
"mobile_screen_share": 0xf2df,
|
|
2300
|
+
"mobile_screensaver": 0xf321,
|
|
2301
|
+
"mobile_sensor_hi": 0xf2ef,
|
|
2302
|
+
"mobile_sensor_lo": 0xf2ee,
|
|
2303
|
+
"mobile_share": 0xf2df,
|
|
2304
|
+
"mobile_share_stack": 0xf2de,
|
|
2305
|
+
"mobile_sound": 0xf2e8,
|
|
2306
|
+
"mobile_sound_2": 0xf318,
|
|
2307
|
+
"mobile_sound_off": 0xf7aa,
|
|
2308
|
+
"mobile_speaker": 0xf320,
|
|
2309
|
+
"mobile_text": 0xf2eb,
|
|
2310
|
+
"mobile_text_2": 0xf2e6,
|
|
2311
|
+
"mobile_theft": 0xf2a9,
|
|
2312
|
+
"mobile_ticket": 0xf2e4,
|
|
2313
|
+
"mobile_vibrate": 0xf2cb,
|
|
2314
|
+
"mobile_wrench": 0xf2b0,
|
|
2315
|
+
"mobiledata_off": 0xf034,
|
|
2316
|
+
"mode": 0xf097,
|
|
2317
|
+
"mode_comment": 0xe253,
|
|
2318
|
+
"mode_cool": 0xf166,
|
|
2319
|
+
"mode_cool_off": 0xf167,
|
|
2320
|
+
"mode_dual": 0xf557,
|
|
2321
|
+
"mode_edit": 0xf097,
|
|
2322
|
+
"mode_edit_outline": 0xf097,
|
|
2323
|
+
"mode_fan": 0xf168,
|
|
2324
|
+
"mode_fan_off": 0xec17,
|
|
2325
|
+
"mode_heat": 0xf16a,
|
|
2326
|
+
"mode_heat_cool": 0xf16b,
|
|
2327
|
+
"mode_heat_off": 0xf16d,
|
|
2328
|
+
"mode_night": 0xf036,
|
|
2329
|
+
"mode_of_travel": 0xe7ce,
|
|
2330
|
+
"mode_off_on": 0xf16f,
|
|
2331
|
+
"mode_standby": 0xf037,
|
|
2332
|
+
"model_training": 0xf0cf,
|
|
2333
|
+
"modeling": 0xf3aa,
|
|
2334
|
+
"monetization_on": 0xe263,
|
|
2335
|
+
"money": 0xe57d,
|
|
2336
|
+
"money_bag": 0xf3ee,
|
|
2337
|
+
"money_off": 0xf038,
|
|
2338
|
+
"money_off_csred": 0xf038,
|
|
2339
|
+
"money_range": 0xf245,
|
|
2340
|
+
"monitor": 0xef5b,
|
|
2341
|
+
"monitor_heart": 0xeaa2,
|
|
2342
|
+
"monitor_weight": 0xf039,
|
|
2343
|
+
"monitor_weight_gain": 0xf6df,
|
|
2344
|
+
"monitor_weight_loss": 0xf6de,
|
|
2345
|
+
"monitoring": 0xf190,
|
|
2346
|
+
"monochrome_photos": 0xe403,
|
|
2347
|
+
"monorail": 0xf473,
|
|
2348
|
+
"mood": 0xea22,
|
|
2349
|
+
"mood_bad": 0xe7f3,
|
|
2350
|
+
"moon_stars": 0xf34f,
|
|
2351
|
+
"mop": 0xe28d,
|
|
2352
|
+
"moped": 0xeb28,
|
|
2353
|
+
"moped_package": 0xf28b,
|
|
2354
|
+
"more": 0xe619,
|
|
2355
|
+
"more_down": 0xf196,
|
|
2356
|
+
"more_horiz": 0xe5d3,
|
|
2357
|
+
"more_time": 0xea5d,
|
|
2358
|
+
"more_up": 0xf197,
|
|
2359
|
+
"more_vert": 0xe5d4,
|
|
2360
|
+
"mosque": 0xeab2,
|
|
2361
|
+
"motion_blur": 0xf0d0,
|
|
2362
|
+
"motion_mode": 0xf842,
|
|
2363
|
+
"motion_photos_auto": 0xf03a,
|
|
2364
|
+
"motion_photos_off": 0xe9c0,
|
|
2365
|
+
"motion_photos_on": 0xe9c1,
|
|
2366
|
+
"motion_photos_pause": 0xf227,
|
|
2367
|
+
"motion_photos_paused": 0xf227,
|
|
2368
|
+
"motion_play": 0xf40b,
|
|
2369
|
+
"motion_sensor_active": 0xe792,
|
|
2370
|
+
"motion_sensor_alert": 0xe784,
|
|
2371
|
+
"motion_sensor_idle": 0xe783,
|
|
2372
|
+
"motion_sensor_urgent": 0xe78e,
|
|
2373
|
+
"motorcycle": 0xe91b,
|
|
2374
|
+
"mountain_flag": 0xf5e2,
|
|
2375
|
+
"mountain_steam": 0xf282,
|
|
2376
|
+
"mouse": 0xe323,
|
|
2377
|
+
"mouse_lock": 0xf490,
|
|
2378
|
+
"mouse_lock_off": 0xf48f,
|
|
2379
|
+
"move": 0xe740,
|
|
2380
|
+
"move_down": 0xeb61,
|
|
2381
|
+
"move_group": 0xf715,
|
|
2382
|
+
"move_item": 0xf1ff,
|
|
2383
|
+
"move_location": 0xe741,
|
|
2384
|
+
"move_selection_down": 0xf714,
|
|
2385
|
+
"move_selection_left": 0xf713,
|
|
2386
|
+
"move_selection_right": 0xf712,
|
|
2387
|
+
"move_selection_up": 0xf711,
|
|
2388
|
+
"move_to_inbox": 0xe168,
|
|
2389
|
+
"move_up": 0xeb64,
|
|
2390
|
+
"moved_location": 0xe594,
|
|
2391
|
+
"movie": 0xe404,
|
|
2392
|
+
"movie_creation": 0xe404,
|
|
2393
|
+
"movie_edit": 0xf840,
|
|
2394
|
+
"movie_filter": 0xe43a,
|
|
2395
|
+
"movie_info": 0xe02d,
|
|
2396
|
+
"movie_off": 0xf499,
|
|
2397
|
+
"movie_speaker": 0xf2a3,
|
|
2398
|
+
"moving": 0xe501,
|
|
2399
|
+
"moving_beds": 0xe73d,
|
|
2400
|
+
"moving_ministry": 0xe73e,
|
|
2401
|
+
"mp": 0xe9c3,
|
|
2402
|
+
"multicooker": 0xe293,
|
|
2403
|
+
"multiline_chart": 0xe6df,
|
|
2404
|
+
"multimodal_hand_eye": 0xf41b,
|
|
2405
|
+
"multiple_airports": 0xefab,
|
|
2406
|
+
"multiple_stop": 0xf1b9,
|
|
2407
|
+
"museum": 0xea36,
|
|
2408
|
+
"music_cast": 0xeb1a,
|
|
2409
|
+
"music_history": 0xf2c1,
|
|
2410
|
+
"music_note": 0xe405,
|
|
2411
|
+
"music_note_add": 0xf391,
|
|
2412
|
+
"music_off": 0xe440,
|
|
2413
|
+
"music_video": 0xe063,
|
|
2414
|
+
"my_location": 0xe55c,
|
|
2415
|
+
"mystery": 0xf5e1,
|
|
2416
|
+
"nat": 0xef5c,
|
|
2417
|
+
"nature": 0xe406,
|
|
2418
|
+
"nature_people": 0xe407,
|
|
2419
|
+
"navigate_before": 0xe5cb,
|
|
2420
|
+
"navigate_next": 0xe5cc,
|
|
2421
|
+
"navigation": 0xe55d,
|
|
2422
|
+
"near_me": 0xe569,
|
|
2423
|
+
"near_me_disabled": 0xf1ef,
|
|
2424
|
+
"nearby": 0xe6b7,
|
|
2425
|
+
"nearby_error": 0xf03b,
|
|
2426
|
+
"nearby_off": 0xf03c,
|
|
2427
|
+
"nephrology": 0xe10d,
|
|
2428
|
+
"nest_audio": 0xebbf,
|
|
2429
|
+
"nest_cam_floodlight": 0xf8b7,
|
|
2430
|
+
"nest_cam_indoor": 0xf11e,
|
|
2431
|
+
"nest_cam_iq": 0xf11f,
|
|
2432
|
+
"nest_cam_iq_outdoor": 0xf120,
|
|
2433
|
+
"nest_cam_magnet_mount": 0xf8b8,
|
|
2434
|
+
"nest_cam_outdoor": 0xf121,
|
|
2435
|
+
"nest_cam_stand": 0xf8b9,
|
|
2436
|
+
"nest_cam_wall_mount": 0xf8ba,
|
|
2437
|
+
"nest_cam_wired_stand": 0xec16,
|
|
2438
|
+
"nest_clock_farsight_analog": 0xf8bb,
|
|
2439
|
+
"nest_clock_farsight_digital": 0xf8bc,
|
|
2440
|
+
"nest_connect": 0xf122,
|
|
2441
|
+
"nest_detect": 0xf123,
|
|
2442
|
+
"nest_display": 0xf124,
|
|
2443
|
+
"nest_display_max": 0xf125,
|
|
2444
|
+
"nest_doorbell_visitor": 0xf8bd,
|
|
2445
|
+
"nest_eco_leaf": 0xf8be,
|
|
2446
|
+
"nest_farsight_cool": 0xf27d,
|
|
2447
|
+
"nest_farsight_dual": 0xf27c,
|
|
2448
|
+
"nest_farsight_eco": 0xf27b,
|
|
2449
|
+
"nest_farsight_heat": 0xf27a,
|
|
2450
|
+
"nest_farsight_seasonal": 0xf279,
|
|
2451
|
+
"nest_farsight_weather": 0xf8bf,
|
|
2452
|
+
"nest_found_savings": 0xf8c0,
|
|
2453
|
+
"nest_gale_wifi": 0xf579,
|
|
2454
|
+
"nest_heat_link_e": 0xf126,
|
|
2455
|
+
"nest_heat_link_gen_3": 0xf127,
|
|
2456
|
+
"nest_hello_doorbell": 0xe82c,
|
|
2457
|
+
"nest_locator_tag": 0xf8c1,
|
|
2458
|
+
"nest_mini": 0xe789,
|
|
2459
|
+
"nest_multi_room": 0xf8c2,
|
|
2460
|
+
"nest_protect": 0xe68e,
|
|
2461
|
+
"nest_remote": 0xf5db,
|
|
2462
|
+
"nest_remote_comfort_sensor": 0xf12a,
|
|
2463
|
+
"nest_secure_alarm": 0xf12b,
|
|
2464
|
+
"nest_sunblock": 0xf8c3,
|
|
2465
|
+
"nest_tag": 0xf8c1,
|
|
2466
|
+
"nest_thermostat": 0xe68f,
|
|
2467
|
+
"nest_thermostat_e_eu": 0xf12d,
|
|
2468
|
+
"nest_thermostat_gen_3": 0xf12e,
|
|
2469
|
+
"nest_thermostat_sensor": 0xf12f,
|
|
2470
|
+
"nest_thermostat_sensor_eu": 0xf130,
|
|
2471
|
+
"nest_thermostat_zirconium_eu": 0xf131,
|
|
2472
|
+
"nest_true_radiant": 0xf8c4,
|
|
2473
|
+
"nest_wake_on_approach": 0xf8c5,
|
|
2474
|
+
"nest_wake_on_press": 0xf8c6,
|
|
2475
|
+
"nest_wifi_gale": 0xf132,
|
|
2476
|
+
"nest_wifi_mistral": 0xf133,
|
|
2477
|
+
"nest_wifi_point": 0xf134,
|
|
2478
|
+
"nest_wifi_point_vento": 0xf134,
|
|
2479
|
+
"nest_wifi_pro": 0xf56b,
|
|
2480
|
+
"nest_wifi_pro_2": 0xf56a,
|
|
2481
|
+
"nest_wifi_router": 0xf133,
|
|
2482
|
+
"network_cell": 0xe1b9,
|
|
2483
|
+
"network_check": 0xe640,
|
|
2484
|
+
"network_intel_node": 0xf371,
|
|
2485
|
+
"network_intelligence": 0xefac,
|
|
2486
|
+
"network_intelligence_history": 0xf5f6,
|
|
2487
|
+
"network_intelligence_update": 0xf5f5,
|
|
2488
|
+
"network_locked": 0xe61a,
|
|
2489
|
+
"network_manage": 0xf7ab,
|
|
2490
|
+
"network_node": 0xf56e,
|
|
2491
|
+
"network_ping": 0xebca,
|
|
2492
|
+
"network_wifi": 0xe1ba,
|
|
2493
|
+
"network_wifi_1_bar": 0xebe4,
|
|
2494
|
+
"network_wifi_1_bar_locked": 0xf58f,
|
|
2495
|
+
"network_wifi_2_bar": 0xebd6,
|
|
2496
|
+
"network_wifi_2_bar_locked": 0xf58e,
|
|
2497
|
+
"network_wifi_3_bar": 0xebe1,
|
|
2498
|
+
"network_wifi_3_bar_locked": 0xf58d,
|
|
2499
|
+
"network_wifi_locked": 0xf532,
|
|
2500
|
+
"neurology": 0xe10e,
|
|
2501
|
+
"new_label": 0xe609,
|
|
2502
|
+
"new_releases": 0xef76,
|
|
2503
|
+
"new_window": 0xf710,
|
|
2504
|
+
"news": 0xe032,
|
|
2505
|
+
"newsmode": 0xefad,
|
|
2506
|
+
"newspaper": 0xeb81,
|
|
2507
|
+
"newsstand": 0xe9c4,
|
|
2508
|
+
"next_plan": 0xef5d,
|
|
2509
|
+
"next_week": 0xe16a,
|
|
2510
|
+
"nfc": 0xe1bb,
|
|
2511
|
+
"nfc_off": 0xf369,
|
|
2512
|
+
"night_shelter": 0xf1f1,
|
|
2513
|
+
"night_sight_auto": 0xf1d7,
|
|
2514
|
+
"night_sight_auto_off": 0xf1f9,
|
|
2515
|
+
"night_sight_max": 0xf6c3,
|
|
2516
|
+
"nightlife": 0xea62,
|
|
2517
|
+
"nightlight": 0xf03d,
|
|
2518
|
+
"nightlight_round": 0xf03d,
|
|
2519
|
+
"nights_stay": 0xf174,
|
|
2520
|
+
"no_accounts": 0xf03e,
|
|
2521
|
+
"no_adult_content": 0xf8fe,
|
|
2522
|
+
"no_backpack": 0xf237,
|
|
2523
|
+
"no_crash": 0xebf0,
|
|
2524
|
+
"no_drinks": 0xf1a5,
|
|
2525
|
+
"no_encryption": 0xf03f,
|
|
2526
|
+
"no_encryption_gmailerrorred": 0xf03f,
|
|
2527
|
+
"no_flash": 0xf1a6,
|
|
2528
|
+
"no_food": 0xf1a7,
|
|
2529
|
+
"no_luggage": 0xf23b,
|
|
2530
|
+
"no_meals": 0xf1d6,
|
|
2531
|
+
"no_meeting_room": 0xeb4e,
|
|
2532
|
+
"no_photography": 0xf1a8,
|
|
2533
|
+
"no_sim": 0xe1ce,
|
|
2534
|
+
"no_sound": 0xe710,
|
|
2535
|
+
"no_stroller": 0xf1af,
|
|
2536
|
+
"no_transfer": 0xf1d5,
|
|
2537
|
+
"noise_aware": 0xebec,
|
|
2538
|
+
"noise_control_off": 0xebf3,
|
|
2539
|
+
"noise_control_on": 0xf8a8,
|
|
2540
|
+
"nordic_walking": 0xe50e,
|
|
2541
|
+
"north": 0xf1e0,
|
|
2542
|
+
"north_east": 0xf1e1,
|
|
2543
|
+
"north_west": 0xf1e2,
|
|
2544
|
+
"not_accessible": 0xf0fe,
|
|
2545
|
+
"not_accessible_forward": 0xf54a,
|
|
2546
|
+
"not_interested": 0xf08c,
|
|
2547
|
+
"not_listed_location": 0xe575,
|
|
2548
|
+
"not_started": 0xf0d1,
|
|
2549
|
+
"note": 0xe66d,
|
|
2550
|
+
"note_add": 0xe89c,
|
|
2551
|
+
"note_alt": 0xf040,
|
|
2552
|
+
"note_stack": 0xf562,
|
|
2553
|
+
"note_stack_add": 0xf563,
|
|
2554
|
+
"notes": 0xe26c,
|
|
2555
|
+
"notification_add": 0xe399,
|
|
2556
|
+
"notification_important": 0xe004,
|
|
2557
|
+
"notification_multiple": 0xe6c2,
|
|
2558
|
+
"notification_settings": 0xf367,
|
|
2559
|
+
"notification_sound": 0xf353,
|
|
2560
|
+
"notifications": 0xe7f5,
|
|
2561
|
+
"notifications_active": 0xe7f7,
|
|
2562
|
+
"notifications_none": 0xe7f5,
|
|
2563
|
+
"notifications_off": 0xe7f6,
|
|
2564
|
+
"notifications_paused": 0xe7f8,
|
|
2565
|
+
"notifications_unread": 0xf4fe,
|
|
2566
|
+
"numbers": 0xeac7,
|
|
2567
|
+
"nutrition": 0xe110,
|
|
2568
|
+
"ods": 0xe6e8,
|
|
2569
|
+
"odt": 0xe6e9,
|
|
2570
|
+
"offline_bolt": 0xe932,
|
|
2571
|
+
"offline_pin": 0xe90a,
|
|
2572
|
+
"offline_pin_off": 0xf4d0,
|
|
2573
|
+
"offline_share": 0xf2de,
|
|
2574
|
+
"oil_barrel": 0xec15,
|
|
2575
|
+
"okonomiyaki": 0xf281,
|
|
2576
|
+
"on_device_training": 0xebfd,
|
|
2577
|
+
"on_hub_device": 0xe6c3,
|
|
2578
|
+
"oncology": 0xe114,
|
|
2579
|
+
"ondemand_video": 0xe63a,
|
|
2580
|
+
"online_prediction": 0xf0eb,
|
|
2581
|
+
"onsen": 0xf6f8,
|
|
2582
|
+
"opacity": 0xe91c,
|
|
2583
|
+
"open_in_browser": 0xe89d,
|
|
2584
|
+
"open_in_full": 0xf1ce,
|
|
2585
|
+
"open_in_new": 0xe89e,
|
|
2586
|
+
"open_in_new_down": 0xf70f,
|
|
2587
|
+
"open_in_new_off": 0xe4f6,
|
|
2588
|
+
"open_in_phone": 0xf2d2,
|
|
2589
|
+
"open_jam": 0xefae,
|
|
2590
|
+
"open_run": 0xf4b7,
|
|
2591
|
+
"open_with": 0xe89f,
|
|
2592
|
+
"ophthalmology": 0xe115,
|
|
2593
|
+
"oral_disease": 0xe116,
|
|
2594
|
+
"orbit": 0xf426,
|
|
2595
|
+
"order_approve": 0xf812,
|
|
2596
|
+
"order_play": 0xf811,
|
|
2597
|
+
"orders": 0xeb14,
|
|
2598
|
+
"orthopedics": 0xf897,
|
|
2599
|
+
"other_admission": 0xe47b,
|
|
2600
|
+
"other_houses": 0xe58c,
|
|
2601
|
+
"outbound": 0xe1ca,
|
|
2602
|
+
"outbox": 0xef5f,
|
|
2603
|
+
"outbox_alt": 0xeb17,
|
|
2604
|
+
"outdoor_garden": 0xe205,
|
|
2605
|
+
"outdoor_grill": 0xea47,
|
|
2606
|
+
"outgoing_mail": 0xf0d2,
|
|
2607
|
+
"outlet": 0xf1d4,
|
|
2608
|
+
"outlined_flag": 0xf0c6,
|
|
2609
|
+
"outpatient": 0xe118,
|
|
2610
|
+
"outpatient_med": 0xe119,
|
|
2611
|
+
"output": 0xebbe,
|
|
2612
|
+
"output_circle": 0xf70e,
|
|
2613
|
+
"oven": 0xe9c7,
|
|
2614
|
+
"oven_gen": 0xe843,
|
|
2615
|
+
"overview": 0xe4a7,
|
|
2616
|
+
"overview_key": 0xf7d4,
|
|
2617
|
+
"owl": 0xf3b4,
|
|
2618
|
+
"oxygen_saturation": 0xe4de,
|
|
2619
|
+
"p2p": 0xf52a,
|
|
2620
|
+
"pace": 0xf6b8,
|
|
2621
|
+
"pacemaker": 0xe656,
|
|
2622
|
+
"package": 0xe48f,
|
|
2623
|
+
"package_2": 0xf569,
|
|
2624
|
+
"padding": 0xe9c8,
|
|
2625
|
+
"padel": 0xf2a7,
|
|
2626
|
+
"page_control": 0xe731,
|
|
2627
|
+
"page_footer": 0xf383,
|
|
2628
|
+
"page_header": 0xf384,
|
|
2629
|
+
"page_info": 0xf614,
|
|
2630
|
+
"page_menu_ios": 0xeefb,
|
|
2631
|
+
"pageless": 0xf509,
|
|
2632
|
+
"pages": 0xe7f9,
|
|
2633
|
+
"pageview": 0xe8a0,
|
|
2634
|
+
"paid": 0xf041,
|
|
2635
|
+
"palette": 0xe40a,
|
|
2636
|
+
"pallet": 0xf86a,
|
|
2637
|
+
"pan_tool": 0xe925,
|
|
2638
|
+
"pan_tool_alt": 0xebb9,
|
|
2639
|
+
"pan_zoom": 0xf655,
|
|
2640
|
+
"panorama": 0xe40b,
|
|
2641
|
+
"panorama_fish_eye": 0xe40c,
|
|
2642
|
+
"panorama_horizontal": 0xe40d,
|
|
2643
|
+
"panorama_photosphere": 0xe9c9,
|
|
2644
|
+
"panorama_vertical": 0xe40e,
|
|
2645
|
+
"panorama_wide_angle": 0xe40f,
|
|
2646
|
+
"paragliding": 0xe50f,
|
|
2647
|
+
"parent_child_dining": 0xf22d,
|
|
2648
|
+
"park": 0xea63,
|
|
2649
|
+
"parking_meter": 0xf28a,
|
|
2650
|
+
"parking_sign": 0xf289,
|
|
2651
|
+
"parking_valet": 0xf288,
|
|
2652
|
+
"partly_cloudy_day": 0xf172,
|
|
2653
|
+
"partly_cloudy_night": 0xf174,
|
|
2654
|
+
"partner_exchange": 0xf7f9,
|
|
2655
|
+
"partner_heart": 0xef2e,
|
|
2656
|
+
"partner_reports": 0xefaf,
|
|
2657
|
+
"party_mode": 0xe7fa,
|
|
2658
|
+
"passkey": 0xf87f,
|
|
2659
|
+
"password": 0xf042,
|
|
2660
|
+
"password_2": 0xf4a9,
|
|
2661
|
+
"password_2_off": 0xf4a8,
|
|
2662
|
+
"patient_list": 0xe653,
|
|
2663
|
+
"pattern": 0xf043,
|
|
2664
|
+
"pause": 0xe034,
|
|
2665
|
+
"pause_circle": 0xe1a2,
|
|
2666
|
+
"pause_circle_filled": 0xe1a2,
|
|
2667
|
+
"pause_circle_outline": 0xe1a2,
|
|
2668
|
+
"pause_presentation": 0xe0ea,
|
|
2669
|
+
"payment": 0xe8a1,
|
|
2670
|
+
"payment_arrow_down": 0xf2c0,
|
|
2671
|
+
"payment_card": 0xf2a1,
|
|
2672
|
+
"payments": 0xef63,
|
|
2673
|
+
"pedal_bike": 0xeb29,
|
|
2674
|
+
"pediatrics": 0xe11d,
|
|
2675
|
+
"pen_size_1": 0xf755,
|
|
2676
|
+
"pen_size_2": 0xf754,
|
|
2677
|
+
"pen_size_3": 0xf753,
|
|
2678
|
+
"pen_size_4": 0xf752,
|
|
2679
|
+
"pen_size_5": 0xf751,
|
|
2680
|
+
"pending": 0xef64,
|
|
2681
|
+
"pending_actions": 0xf1bb,
|
|
2682
|
+
"pentagon": 0xeb50,
|
|
2683
|
+
"people": 0xea21,
|
|
2684
|
+
"people_alt": 0xea21,
|
|
2685
|
+
"people_outline": 0xea21,
|
|
2686
|
+
"percent": 0xeb58,
|
|
2687
|
+
"percent_discount": 0xf244,
|
|
2688
|
+
"performance_max": 0xe51a,
|
|
2689
|
+
"pergola": 0xe203,
|
|
2690
|
+
"perm_camera_mic": 0xe8a2,
|
|
2691
|
+
"perm_contact_calendar": 0xe8a3,
|
|
2692
|
+
"perm_data_setting": 0xe8a4,
|
|
2693
|
+
"perm_device_information": 0xf2dc,
|
|
2694
|
+
"perm_identity": 0xf0d3,
|
|
2695
|
+
"perm_media": 0xe8a7,
|
|
2696
|
+
"perm_phone_msg": 0xe8a8,
|
|
2697
|
+
"perm_scan_wifi": 0xe8a9,
|
|
2698
|
+
"person": 0xf0d3,
|
|
2699
|
+
"person_2": 0xf8e4,
|
|
2700
|
+
"person_3": 0xf8e5,
|
|
2701
|
+
"person_4": 0xf8e6,
|
|
2702
|
+
"person_add": 0xea4d,
|
|
2703
|
+
"person_add_alt": 0xea4d,
|
|
2704
|
+
"person_add_disabled": 0xe9cb,
|
|
2705
|
+
"person_alert": 0xf567,
|
|
2706
|
+
"person_apron": 0xf5a3,
|
|
2707
|
+
"person_book": 0xf5e8,
|
|
2708
|
+
"person_cancel": 0xf566,
|
|
2709
|
+
"person_celebrate": 0xf7fe,
|
|
2710
|
+
"person_check": 0xf565,
|
|
2711
|
+
"person_edit": 0xf4fa,
|
|
2712
|
+
"person_filled": 0xf0d3,
|
|
2713
|
+
"person_heart": 0xf290,
|
|
2714
|
+
"person_off": 0xe510,
|
|
2715
|
+
"person_outline": 0xf0d3,
|
|
2716
|
+
"person_pin": 0xe55a,
|
|
2717
|
+
"person_pin_circle": 0xe56a,
|
|
2718
|
+
"person_play": 0xf7fd,
|
|
2719
|
+
"person_raised_hand": 0xf59a,
|
|
2720
|
+
"person_remove": 0xef66,
|
|
2721
|
+
"person_search": 0xf106,
|
|
2722
|
+
"person_shield": 0xe384,
|
|
2723
|
+
"personal_bag": 0xeb0e,
|
|
2724
|
+
"personal_bag_off": 0xeb0f,
|
|
2725
|
+
"personal_bag_question": 0xeb10,
|
|
2726
|
+
"personal_injury": 0xe6da,
|
|
2727
|
+
"personal_places": 0xe703,
|
|
2728
|
+
"personal_video": 0xe63b,
|
|
2729
|
+
"pest_control": 0xf0fa,
|
|
2730
|
+
"pest_control_rodent": 0xf0fd,
|
|
2731
|
+
"pet_supplies": 0xefb1,
|
|
2732
|
+
"pets": 0xe91d,
|
|
2733
|
+
"phishing": 0xead7,
|
|
2734
|
+
"phone": 0xf0d4,
|
|
2735
|
+
"phone_alt": 0xf0d4,
|
|
2736
|
+
"phone_android": 0xf2db,
|
|
2737
|
+
"phone_bluetooth_speaker": 0xe61b,
|
|
2738
|
+
"phone_callback": 0xe649,
|
|
2739
|
+
"phone_disabled": 0xe9cc,
|
|
2740
|
+
"phone_enabled": 0xe9cd,
|
|
2741
|
+
"phone_forwarded": 0xe61c,
|
|
2742
|
+
"phone_in_talk": 0xe61d,
|
|
2743
|
+
"phone_iphone": 0xf2da,
|
|
2744
|
+
"phone_locked": 0xe61e,
|
|
2745
|
+
"phone_missed": 0xe61f,
|
|
2746
|
+
"phone_paused": 0xe620,
|
|
2747
|
+
"phonelink": 0xe326,
|
|
2748
|
+
"phonelink_erase": 0xf2ea,
|
|
2749
|
+
"phonelink_lock": 0xf2be,
|
|
2750
|
+
"phonelink_off": 0xf7a5,
|
|
2751
|
+
"phonelink_ring": 0xf2e8,
|
|
2752
|
+
"phonelink_ring_off": 0xf7aa,
|
|
2753
|
+
"phonelink_setup": 0xf2d9,
|
|
2754
|
+
"photo": 0xe432,
|
|
2755
|
+
"photo_album": 0xe411,
|
|
2756
|
+
"photo_auto_merge": 0xf530,
|
|
2757
|
+
"photo_camera": 0xe412,
|
|
2758
|
+
"photo_camera_back": 0xef68,
|
|
2759
|
+
"photo_camera_front": 0xef69,
|
|
2760
|
+
"photo_filter": 0xe43b,
|
|
2761
|
+
"photo_frame": 0xf0d9,
|
|
2762
|
+
"photo_library": 0xe413,
|
|
2763
|
+
"photo_prints": 0xefb2,
|
|
2764
|
+
"photo_size_select_actual": 0xe432,
|
|
2765
|
+
"photo_size_select_large": 0xe433,
|
|
2766
|
+
"photo_size_select_small": 0xe434,
|
|
2767
|
+
"php": 0xeb8f,
|
|
2768
|
+
"physical_therapy": 0xe11e,
|
|
2769
|
+
"piano": 0xe521,
|
|
2770
|
+
"piano_off": 0xe520,
|
|
2771
|
+
"pickleball": 0xf2a6,
|
|
2772
|
+
"picture_as_pdf": 0xe415,
|
|
2773
|
+
"picture_in_picture": 0xe8aa,
|
|
2774
|
+
"picture_in_picture_alt": 0xe911,
|
|
2775
|
+
"picture_in_picture_center": 0xf550,
|
|
2776
|
+
"picture_in_picture_large": 0xf54f,
|
|
2777
|
+
"picture_in_picture_medium": 0xf54e,
|
|
2778
|
+
"picture_in_picture_mobile": 0xf517,
|
|
2779
|
+
"picture_in_picture_off": 0xf52f,
|
|
2780
|
+
"picture_in_picture_small": 0xf54d,
|
|
2781
|
+
"pie_chart": 0xf0da,
|
|
2782
|
+
"pie_chart_filled": 0xf0da,
|
|
2783
|
+
"pie_chart_outline": 0xf0da,
|
|
2784
|
+
"pie_chart_outlined": 0xf0da,
|
|
2785
|
+
"pill": 0xe11f,
|
|
2786
|
+
"pill_off": 0xf809,
|
|
2787
|
+
"pin": 0xf045,
|
|
2788
|
+
"pin_drop": 0xe55e,
|
|
2789
|
+
"pin_end": 0xe767,
|
|
2790
|
+
"pin_invoke": 0xe763,
|
|
2791
|
+
"pinboard": 0xf3ab,
|
|
2792
|
+
"pinboard_unread": 0xf3ac,
|
|
2793
|
+
"pinch": 0xeb38,
|
|
2794
|
+
"pinch_zoom_in": 0xf1fa,
|
|
2795
|
+
"pinch_zoom_out": 0xf1fb,
|
|
2796
|
+
"pip": 0xf64d,
|
|
2797
|
+
"pip_exit": 0xf70d,
|
|
2798
|
+
"pivot_table_chart": 0xe9ce,
|
|
2799
|
+
"place": 0xf1db,
|
|
2800
|
+
"place_item": 0xf1f0,
|
|
2801
|
+
"plagiarism": 0xea5a,
|
|
2802
|
+
"plane_contrails": 0xf2ac,
|
|
2803
|
+
"planet": 0xf387,
|
|
2804
|
+
"planner_banner_ad_pt": 0xe692,
|
|
2805
|
+
"planner_review": 0xe694,
|
|
2806
|
+
"play_arrow": 0xe037,
|
|
2807
|
+
"play_circle": 0xe1c4,
|
|
2808
|
+
"play_disabled": 0xef6a,
|
|
2809
|
+
"play_for_work": 0xe906,
|
|
2810
|
+
"play_lesson": 0xf047,
|
|
2811
|
+
"play_music": 0xe6ee,
|
|
2812
|
+
"play_pause": 0xf137,
|
|
2813
|
+
"play_shapes": 0xf7fc,
|
|
2814
|
+
"playground": 0xf28e,
|
|
2815
|
+
"playground_2": 0xf28f,
|
|
2816
|
+
"playing_cards": 0xf5dc,
|
|
2817
|
+
"playlist_add": 0xe03b,
|
|
2818
|
+
"playlist_add_check": 0xe065,
|
|
2819
|
+
"playlist_add_check_circle": 0xe7e6,
|
|
2820
|
+
"playlist_add_circle": 0xe7e5,
|
|
2821
|
+
"playlist_play": 0xe05f,
|
|
2822
|
+
"playlist_remove": 0xeb80,
|
|
2823
|
+
"plug_connect": 0xf35a,
|
|
2824
|
+
"plumbing": 0xf107,
|
|
2825
|
+
"plus_one": 0xe800,
|
|
2826
|
+
"podcasts": 0xf048,
|
|
2827
|
+
"podiatry": 0xe120,
|
|
2828
|
+
"podium": 0xf7fb,
|
|
2829
|
+
"point_of_sale": 0xf17e,
|
|
2830
|
+
"point_scan": 0xf70c,
|
|
2831
|
+
"poker_chip": 0xf49b,
|
|
2832
|
+
"policy": 0xea17,
|
|
2833
|
+
"policy_alert": 0xf407,
|
|
2834
|
+
"poll": 0xf0cc,
|
|
2835
|
+
"polyline": 0xebbb,
|
|
2836
|
+
"polymer": 0xe8ab,
|
|
2837
|
+
"pool": 0xeb48,
|
|
2838
|
+
"portable_wifi_off": 0xf087,
|
|
2839
|
+
"portrait": 0xe851,
|
|
2840
|
+
"position_bottom_left": 0xf70b,
|
|
2841
|
+
"position_bottom_right": 0xf70a,
|
|
2842
|
+
"position_top_right": 0xf709,
|
|
2843
|
+
"post": 0xe705,
|
|
2844
|
+
"post_add": 0xea20,
|
|
2845
|
+
"potted_plant": 0xf8aa,
|
|
2846
|
+
"power": 0xe63c,
|
|
2847
|
+
"power_input": 0xe336,
|
|
2848
|
+
"power_off": 0xe646,
|
|
2849
|
+
"power_rounded": 0xf8c7,
|
|
2850
|
+
"power_settings_circle": 0xf418,
|
|
2851
|
+
"power_settings_new": 0xf8c7,
|
|
2852
|
+
"prayer_times": 0xf838,
|
|
2853
|
+
"precision_manufacturing": 0xf049,
|
|
2854
|
+
"pregnancy": 0xf5f1,
|
|
2855
|
+
"pregnant_woman": 0xf5f1,
|
|
2856
|
+
"preliminary": 0xe7d8,
|
|
2857
|
+
"prescriptions": 0xe121,
|
|
2858
|
+
"present_to_all": 0xe0df,
|
|
2859
|
+
"preview": 0xf1c5,
|
|
2860
|
+
"preview_off": 0xf7af,
|
|
2861
|
+
"price_change": 0xf04a,
|
|
2862
|
+
"price_check": 0xf04b,
|
|
2863
|
+
"print": 0xe8ad,
|
|
2864
|
+
"print_add": 0xf7a2,
|
|
2865
|
+
"print_connect": 0xf7a1,
|
|
2866
|
+
"print_disabled": 0xe9cf,
|
|
2867
|
+
"print_error": 0xf7a0,
|
|
2868
|
+
"print_lock": 0xf651,
|
|
2869
|
+
"priority": 0xe19f,
|
|
2870
|
+
"priority_high": 0xe645,
|
|
2871
|
+
"privacy": 0xf148,
|
|
2872
|
+
"privacy_tip": 0xf0dc,
|
|
2873
|
+
"private_connectivity": 0xe744,
|
|
2874
|
+
"problem": 0xe122,
|
|
2875
|
+
"procedure": 0xe651,
|
|
2876
|
+
"process_chart": 0xf855,
|
|
2877
|
+
"production_quantity_limits": 0xe1d1,
|
|
2878
|
+
"productivity": 0xe296,
|
|
2879
|
+
"progress_activity": 0xe9d0,
|
|
2880
|
+
"prompt_suggestion": 0xf4f6,
|
|
2881
|
+
"propane": 0xec14,
|
|
2882
|
+
"propane_tank": 0xec13,
|
|
2883
|
+
"psychiatry": 0xe123,
|
|
2884
|
+
"psychology": 0xea4a,
|
|
2885
|
+
"psychology_alt": 0xf8ea,
|
|
2886
|
+
"public": 0xe80b,
|
|
2887
|
+
"public_off": 0xf1ca,
|
|
2888
|
+
"publish": 0xe255,
|
|
2889
|
+
"published_with_changes": 0xf232,
|
|
2890
|
+
"pulmonology": 0xe124,
|
|
2891
|
+
"pulse_alert": 0xf501,
|
|
2892
|
+
"punch_clock": 0xeaa8,
|
|
2893
|
+
"push_pin": 0xf10d,
|
|
2894
|
+
"qr_code": 0xef6b,
|
|
2895
|
+
"qr_code_2": 0xe00a,
|
|
2896
|
+
"qr_code_2_add": 0xf658,
|
|
2897
|
+
"qr_code_scanner": 0xf206,
|
|
2898
|
+
"query_builder": 0xefd6,
|
|
2899
|
+
"query_stats": 0xe4fc,
|
|
2900
|
+
"question_answer": 0xe8af,
|
|
2901
|
+
"question_exchange": 0xf7f3,
|
|
2902
|
+
"question_mark": 0xeb8b,
|
|
2903
|
+
"queue": 0xe03c,
|
|
2904
|
+
"queue_music": 0xe03d,
|
|
2905
|
+
"queue_play_next": 0xe066,
|
|
2906
|
+
"quick_phrases": 0xe7d1,
|
|
2907
|
+
"quick_reference": 0xe46e,
|
|
2908
|
+
"quick_reference_all": 0xf801,
|
|
2909
|
+
"quick_reorder": 0xeb15,
|
|
2910
|
+
"quickreply": 0xef6c,
|
|
2911
|
+
"quiet_time": 0xf159,
|
|
2912
|
+
"quiet_time_active": 0xeb76,
|
|
2913
|
+
"quiz": 0xf04c,
|
|
2914
|
+
"r_mobiledata": 0xf04d,
|
|
2915
|
+
"radar": 0xf04e,
|
|
2916
|
+
"radio": 0xe03e,
|
|
2917
|
+
"radio_button_checked": 0xe837,
|
|
2918
|
+
"radio_button_partial": 0xf560,
|
|
2919
|
+
"radio_button_unchecked": 0xe836,
|
|
2920
|
+
"radiology": 0xe125,
|
|
2921
|
+
"railway_alert": 0xe9d1,
|
|
2922
|
+
"railway_alert_2": 0xf461,
|
|
2923
|
+
"rainy": 0xf176,
|
|
2924
|
+
"rainy_heavy": 0xf61f,
|
|
2925
|
+
"rainy_light": 0xf61e,
|
|
2926
|
+
"rainy_snow": 0xf61d,
|
|
2927
|
+
"ramen_dining": 0xea64,
|
|
2928
|
+
"ramp_left": 0xeb9c,
|
|
2929
|
+
"ramp_right": 0xeb96,
|
|
2930
|
+
"range_hood": 0xe1ea,
|
|
2931
|
+
"rate_review": 0xe560,
|
|
2932
|
+
"rate_review_rtl": 0xe706,
|
|
2933
|
+
"raven": 0xf555,
|
|
2934
|
+
"raw_off": 0xf04f,
|
|
2935
|
+
"raw_on": 0xf050,
|
|
2936
|
+
"read_more": 0xef6d,
|
|
2937
|
+
"readiness_score": 0xf6dd,
|
|
2938
|
+
"real_estate_agent": 0xe73a,
|
|
2939
|
+
"rear_camera": 0xf6c2,
|
|
2940
|
+
"rebase": 0xf845,
|
|
2941
|
+
"rebase_edit": 0xf846,
|
|
2942
|
+
"receipt": 0xe8b0,
|
|
2943
|
+
"receipt_long": 0xef6e,
|
|
2944
|
+
"receipt_long_off": 0xf40a,
|
|
2945
|
+
"recent_actors": 0xe03f,
|
|
2946
|
+
"recent_patient": 0xf808,
|
|
2947
|
+
"recenter": 0xf4c0,
|
|
2948
|
+
"recommend": 0xe9d2,
|
|
2949
|
+
"record_voice_over": 0xe91f,
|
|
2950
|
+
"rectangle": 0xeb54,
|
|
2951
|
+
"recycling": 0xe760,
|
|
2952
|
+
"redeem": 0xe8f6,
|
|
2953
|
+
"redo": 0xe15a,
|
|
2954
|
+
"reduce_capacity": 0xf21c,
|
|
2955
|
+
"refresh": 0xe5d5,
|
|
2956
|
+
"regular_expression": 0xf750,
|
|
2957
|
+
"relax": 0xf6dc,
|
|
2958
|
+
"release_alert": 0xf654,
|
|
2959
|
+
"remember_me": 0xf051,
|
|
2960
|
+
"reminder": 0xe6c6,
|
|
2961
|
+
"reminders_alt": 0xe6c6,
|
|
2962
|
+
"remote_gen": 0xe83e,
|
|
2963
|
+
"remove": 0xe15b,
|
|
2964
|
+
"remove_circle": 0xf08f,
|
|
2965
|
+
"remove_circle_outline": 0xf08f,
|
|
2966
|
+
"remove_done": 0xe9d3,
|
|
2967
|
+
"remove_from_queue": 0xe067,
|
|
2968
|
+
"remove_moderator": 0xe9d4,
|
|
2969
|
+
"remove_red_eye": 0xe8f4,
|
|
2970
|
+
"remove_road": 0xebfc,
|
|
2971
|
+
"remove_selection": 0xe9d5,
|
|
2972
|
+
"remove_shopping_cart": 0xe928,
|
|
2973
|
+
"reopen_window": 0xf708,
|
|
2974
|
+
"reorder": 0xe8fe,
|
|
2975
|
+
"repartition": 0xf8e8,
|
|
2976
|
+
"repeat": 0xe040,
|
|
2977
|
+
"repeat_on": 0xe9d6,
|
|
2978
|
+
"repeat_one": 0xe041,
|
|
2979
|
+
"repeat_one_on": 0xe9d7,
|
|
2980
|
+
"replace_audio": 0xf451,
|
|
2981
|
+
"replace_image": 0xf450,
|
|
2982
|
+
"replace_video": 0xf44f,
|
|
2983
|
+
"replay": 0xe042,
|
|
2984
|
+
"replay_10": 0xe059,
|
|
2985
|
+
"replay_30": 0xe05a,
|
|
2986
|
+
"replay_5": 0xe05b,
|
|
2987
|
+
"replay_circle_filled": 0xe9d8,
|
|
2988
|
+
"reply": 0xe15e,
|
|
2989
|
+
"reply_all": 0xe15f,
|
|
2990
|
+
"report": 0xf052,
|
|
2991
|
+
"report_gmailerrorred": 0xf052,
|
|
2992
|
+
"report_off": 0xe170,
|
|
2993
|
+
"report_problem": 0xf083,
|
|
2994
|
+
"request_page": 0xf22c,
|
|
2995
|
+
"request_quote": 0xf1b6,
|
|
2996
|
+
"reset_brightness": 0xf482,
|
|
2997
|
+
"reset_exposure": 0xf266,
|
|
2998
|
+
"reset_focus": 0xf481,
|
|
2999
|
+
"reset_image": 0xf824,
|
|
3000
|
+
"reset_iso": 0xf480,
|
|
3001
|
+
"reset_settings": 0xf47f,
|
|
3002
|
+
"reset_shadow": 0xf47e,
|
|
3003
|
+
"reset_shutter_speed": 0xf47d,
|
|
3004
|
+
"reset_tv": 0xe9d9,
|
|
3005
|
+
"reset_white_balance": 0xf47c,
|
|
3006
|
+
"reset_wrench": 0xf56c,
|
|
3007
|
+
"resize": 0xf707,
|
|
3008
|
+
"respiratory_rate": 0xe127,
|
|
3009
|
+
"responsive_layout": 0xe9da,
|
|
3010
|
+
"rest_area": 0xf22a,
|
|
3011
|
+
"restart_alt": 0xf053,
|
|
3012
|
+
"restaurant": 0xe56c,
|
|
3013
|
+
"restaurant_menu": 0xe561,
|
|
3014
|
+
"restore": 0xe8b3,
|
|
3015
|
+
"restore_from_trash": 0xe938,
|
|
3016
|
+
"restore_page": 0xe929,
|
|
3017
|
+
"resume": 0xf7d0,
|
|
3018
|
+
"reviews": 0xf07c,
|
|
3019
|
+
"rewarded_ads": 0xefb6,
|
|
3020
|
+
"rheumatology": 0xe128,
|
|
3021
|
+
"rib_cage": 0xf898,
|
|
3022
|
+
"rice_bowl": 0xf1f5,
|
|
3023
|
+
"right_click": 0xf706,
|
|
3024
|
+
"right_panel_close": 0xf705,
|
|
3025
|
+
"right_panel_open": 0xf704,
|
|
3026
|
+
"ring_volume": 0xf0dd,
|
|
3027
|
+
"ring_volume_filled": 0xf0dd,
|
|
3028
|
+
"ripples": 0xe9db,
|
|
3029
|
+
"road": 0xf472,
|
|
3030
|
+
"robot": 0xf882,
|
|
3031
|
+
"robot_2": 0xf5d0,
|
|
3032
|
+
"rocket": 0xeba5,
|
|
3033
|
+
"rocket_launch": 0xeb9b,
|
|
3034
|
+
"roller_shades": 0xec12,
|
|
3035
|
+
"roller_shades_closed": 0xec11,
|
|
3036
|
+
"roller_skating": 0xebcd,
|
|
3037
|
+
"roofing": 0xf201,
|
|
3038
|
+
"room": 0xf1db,
|
|
3039
|
+
"room_preferences": 0xf1b8,
|
|
3040
|
+
"room_service": 0xeb49,
|
|
3041
|
+
"rotate_90_degrees_ccw": 0xe418,
|
|
3042
|
+
"rotate_90_degrees_cw": 0xeaab,
|
|
3043
|
+
"rotate_auto": 0xf417,
|
|
3044
|
+
"rotate_left": 0xe419,
|
|
3045
|
+
"rotate_right": 0xe41a,
|
|
3046
|
+
"roundabout_left": 0xeb99,
|
|
3047
|
+
"roundabout_right": 0xeba3,
|
|
3048
|
+
"rounded_corner": 0xe920,
|
|
3049
|
+
"route": 0xeacd,
|
|
3050
|
+
"router": 0xe328,
|
|
3051
|
+
"router_off": 0xf2f4,
|
|
3052
|
+
"routine": 0xe20c,
|
|
3053
|
+
"rowing": 0xe921,
|
|
3054
|
+
"rss_feed": 0xe0e5,
|
|
3055
|
+
"rsvp": 0xf055,
|
|
3056
|
+
"rtt": 0xe9ad,
|
|
3057
|
+
"rubric": 0xeb27,
|
|
3058
|
+
"rule": 0xf1c2,
|
|
3059
|
+
"rule_folder": 0xf1c9,
|
|
3060
|
+
"rule_settings": 0xf64c,
|
|
3061
|
+
"run_circle": 0xef6f,
|
|
3062
|
+
"running_with_errors": 0xe51d,
|
|
3063
|
+
"rv_hookup": 0xe642,
|
|
3064
|
+
"safety_check": 0xebef,
|
|
3065
|
+
"safety_check_off": 0xf59d,
|
|
3066
|
+
"safety_divider": 0xe1cc,
|
|
3067
|
+
"sailing": 0xe502,
|
|
3068
|
+
"salinity": 0xf876,
|
|
3069
|
+
"sanitizer": 0xf21d,
|
|
3070
|
+
"satellite": 0xe562,
|
|
3071
|
+
"satellite_alt": 0xeb3a,
|
|
3072
|
+
"sauna": 0xf6f7,
|
|
3073
|
+
"save": 0xe161,
|
|
3074
|
+
"save_alt": 0xf090,
|
|
3075
|
+
"save_as": 0xeb60,
|
|
3076
|
+
"save_clock": 0xf398,
|
|
3077
|
+
"saved_search": 0xea11,
|
|
3078
|
+
"savings": 0xe2eb,
|
|
3079
|
+
"scale": 0xeb5f,
|
|
3080
|
+
"scan": 0xf74e,
|
|
3081
|
+
"scan_delete": 0xf74f,
|
|
3082
|
+
"scanner": 0xe329,
|
|
3083
|
+
"scatter_plot": 0xe268,
|
|
3084
|
+
"scene": 0xe2a7,
|
|
3085
|
+
"schedule": 0xefd6,
|
|
3086
|
+
"schedule_send": 0xea0a,
|
|
3087
|
+
"schema": 0xe4fd,
|
|
3088
|
+
"school": 0xe80c,
|
|
3089
|
+
"science": 0xea4b,
|
|
3090
|
+
"science_off": 0xf542,
|
|
3091
|
+
"scooter": 0xf471,
|
|
3092
|
+
"score": 0xe269,
|
|
3093
|
+
"scoreboard": 0xebd0,
|
|
3094
|
+
"screen_lock_landscape": 0xf2d8,
|
|
3095
|
+
"screen_lock_portrait": 0xf2be,
|
|
3096
|
+
"screen_lock_rotation": 0xf2d6,
|
|
3097
|
+
"screen_record": 0xf679,
|
|
3098
|
+
"screen_rotation": 0xf2d5,
|
|
3099
|
+
"screen_rotation_alt": 0xebee,
|
|
3100
|
+
"screen_rotation_up": 0xf678,
|
|
3101
|
+
"screen_search_desktop": 0xef70,
|
|
3102
|
+
"screen_share": 0xe0e2,
|
|
3103
|
+
"screenshot": 0xf056,
|
|
3104
|
+
"screenshot_frame": 0xf677,
|
|
3105
|
+
"screenshot_frame_2": 0xf374,
|
|
3106
|
+
"screenshot_keyboard": 0xf7d3,
|
|
3107
|
+
"screenshot_monitor": 0xec08,
|
|
3108
|
+
"screenshot_region": 0xf7d2,
|
|
3109
|
+
"screenshot_tablet": 0xf697,
|
|
3110
|
+
"script": 0xf45f,
|
|
3111
|
+
"scrollable_header": 0xe9dc,
|
|
3112
|
+
"scuba_diving": 0xebce,
|
|
3113
|
+
"sd": 0xe9dd,
|
|
3114
|
+
"sd_card": 0xe623,
|
|
3115
|
+
"sd_card_alert": 0xf057,
|
|
3116
|
+
"sd_storage": 0xe623,
|
|
3117
|
+
"sdk": 0xe720,
|
|
3118
|
+
"search": 0xe8b6,
|
|
3119
|
+
"search_activity": 0xf3e5,
|
|
3120
|
+
"search_check": 0xf800,
|
|
3121
|
+
"search_check_2": 0xf469,
|
|
3122
|
+
"search_gear": 0xeefa,
|
|
3123
|
+
"search_hands_free": 0xe696,
|
|
3124
|
+
"search_insights": 0xf4bc,
|
|
3125
|
+
"search_off": 0xea76,
|
|
3126
|
+
"seat_cool_left": 0xf331,
|
|
3127
|
+
"seat_cool_right": 0xf330,
|
|
3128
|
+
"seat_heat_left": 0xf32f,
|
|
3129
|
+
"seat_heat_right": 0xf32e,
|
|
3130
|
+
"seat_vent_left": 0xf32d,
|
|
3131
|
+
"seat_vent_right": 0xf32c,
|
|
3132
|
+
"security": 0xe32a,
|
|
3133
|
+
"security_key": 0xf503,
|
|
3134
|
+
"security_update": 0xf2cd,
|
|
3135
|
+
"security_update_good": 0xf073,
|
|
3136
|
+
"security_update_warning": 0xf2d3,
|
|
3137
|
+
"segment": 0xe94b,
|
|
3138
|
+
"select": 0xf74d,
|
|
3139
|
+
"select_all": 0xe162,
|
|
3140
|
+
"select_check_box": 0xf1fe,
|
|
3141
|
+
"select_to_speak": 0xf7cf,
|
|
3142
|
+
"select_window": 0xe6fa,
|
|
3143
|
+
"select_window_2": 0xf4c8,
|
|
3144
|
+
"select_window_off": 0xe506,
|
|
3145
|
+
"self_care": 0xf86d,
|
|
3146
|
+
"self_improvement": 0xea78,
|
|
3147
|
+
"sell": 0xf05b,
|
|
3148
|
+
"send": 0xe163,
|
|
3149
|
+
"send_and_archive": 0xea0c,
|
|
3150
|
+
"send_money": 0xe8b7,
|
|
3151
|
+
"send_time_extension": 0xeadb,
|
|
3152
|
+
"send_to_mobile": 0xf2d2,
|
|
3153
|
+
"sensor_door": 0xf1b5,
|
|
3154
|
+
"sensor_occupied": 0xec10,
|
|
3155
|
+
"sensor_window": 0xf1b4,
|
|
3156
|
+
"sensors": 0xe51e,
|
|
3157
|
+
"sensors_krx": 0xf556,
|
|
3158
|
+
"sensors_krx_off": 0xf515,
|
|
3159
|
+
"sensors_off": 0xe51f,
|
|
3160
|
+
"sentiment_calm": 0xf6a7,
|
|
3161
|
+
"sentiment_content": 0xf6a6,
|
|
3162
|
+
"sentiment_dissatisfied": 0xe811,
|
|
3163
|
+
"sentiment_excited": 0xf6a5,
|
|
3164
|
+
"sentiment_extremely_dissatisfied": 0xf194,
|
|
3165
|
+
"sentiment_frustrated": 0xf6a4,
|
|
3166
|
+
"sentiment_neutral": 0xe812,
|
|
3167
|
+
"sentiment_sad": 0xf6a3,
|
|
3168
|
+
"sentiment_satisfied": 0xe813,
|
|
3169
|
+
"sentiment_satisfied_alt": 0xe813,
|
|
3170
|
+
"sentiment_stressed": 0xf6a2,
|
|
3171
|
+
"sentiment_very_dissatisfied": 0xe814,
|
|
3172
|
+
"sentiment_very_satisfied": 0xe815,
|
|
3173
|
+
"sentiment_worried": 0xf6a1,
|
|
3174
|
+
"serif": 0xf4ac,
|
|
3175
|
+
"server_person": 0xf3bd,
|
|
3176
|
+
"service_toolbox": 0xe717,
|
|
3177
|
+
"set_meal": 0xf1ea,
|
|
3178
|
+
"settings": 0xe8b8,
|
|
3179
|
+
"settings_accessibility": 0xf05d,
|
|
3180
|
+
"settings_account_box": 0xf835,
|
|
3181
|
+
"settings_alert": 0xf143,
|
|
3182
|
+
"settings_applications": 0xe8b9,
|
|
3183
|
+
"settings_b_roll": 0xf625,
|
|
3184
|
+
"settings_backup_restore": 0xe8ba,
|
|
3185
|
+
"settings_bluetooth": 0xe8bb,
|
|
3186
|
+
"settings_brightness": 0xe8bd,
|
|
3187
|
+
"settings_cell": 0xf2d1,
|
|
3188
|
+
"settings_cinematic_blur": 0xf624,
|
|
3189
|
+
"settings_ethernet": 0xe8be,
|
|
3190
|
+
"settings_heart": 0xf522,
|
|
3191
|
+
"settings_input_antenna": 0xe8bf,
|
|
3192
|
+
"settings_input_component": 0xe8c1,
|
|
3193
|
+
"settings_input_composite": 0xe8c1,
|
|
3194
|
+
"settings_input_hdmi": 0xe8c2,
|
|
3195
|
+
"settings_input_svideo": 0xe8c3,
|
|
3196
|
+
"settings_motion_mode": 0xf833,
|
|
3197
|
+
"settings_night_sight": 0xf832,
|
|
3198
|
+
"settings_overscan": 0xe8c4,
|
|
3199
|
+
"settings_panorama": 0xf831,
|
|
3200
|
+
"settings_phone": 0xe8c5,
|
|
3201
|
+
"settings_photo_camera": 0xf834,
|
|
3202
|
+
"settings_power": 0xe8c6,
|
|
3203
|
+
"settings_remote": 0xe8c7,
|
|
3204
|
+
"settings_seating": 0xef2d,
|
|
3205
|
+
"settings_slow_motion": 0xf623,
|
|
3206
|
+
"settings_suggest": 0xf05e,
|
|
3207
|
+
"settings_system_daydream": 0xe1c3,
|
|
3208
|
+
"settings_timelapse": 0xf622,
|
|
3209
|
+
"settings_video_camera": 0xf621,
|
|
3210
|
+
"settings_voice": 0xe8c8,
|
|
3211
|
+
"settop_component": 0xe2ac,
|
|
3212
|
+
"severe_cold": 0xebd3,
|
|
3213
|
+
"shadow": 0xe9df,
|
|
3214
|
+
"shadow_add": 0xf584,
|
|
3215
|
+
"shadow_minus": 0xf583,
|
|
3216
|
+
"shape_line": 0xf8d3,
|
|
3217
|
+
"shape_recognition": 0xeb01,
|
|
3218
|
+
"shapes": 0xe602,
|
|
3219
|
+
"share": 0xe80d,
|
|
3220
|
+
"share_eta": 0xe5f7,
|
|
3221
|
+
"share_location": 0xf05f,
|
|
3222
|
+
"share_off": 0xf6cb,
|
|
3223
|
+
"share_reviews": 0xf8a4,
|
|
3224
|
+
"share_windows": 0xf613,
|
|
3225
|
+
"shaved_ice": 0xf225,
|
|
3226
|
+
"sheets_rtl": 0xf823,
|
|
3227
|
+
"shelf_auto_hide": 0xf703,
|
|
3228
|
+
"shelf_position": 0xf702,
|
|
3229
|
+
"shelves": 0xf86e,
|
|
3230
|
+
"shield": 0xe9e0,
|
|
3231
|
+
"shield_lock": 0xf686,
|
|
3232
|
+
"shield_locked": 0xf592,
|
|
3233
|
+
"shield_moon": 0xeaa9,
|
|
3234
|
+
"shield_person": 0xf650,
|
|
3235
|
+
"shield_question": 0xf529,
|
|
3236
|
+
"shield_toggle": 0xf2ad,
|
|
3237
|
+
"shield_watch": 0xf30f,
|
|
3238
|
+
"shield_with_heart": 0xe78f,
|
|
3239
|
+
"shield_with_house": 0xe78d,
|
|
3240
|
+
"shift": 0xe5f2,
|
|
3241
|
+
"shift_lock": 0xf7ae,
|
|
3242
|
+
"shift_lock_off": 0xf483,
|
|
3243
|
+
"shop": 0xe8c9,
|
|
3244
|
+
"shop_2": 0xe8ca,
|
|
3245
|
+
"shop_two": 0xe8ca,
|
|
3246
|
+
"shopping_bag": 0xf1cc,
|
|
3247
|
+
"shopping_bag_speed": 0xf39a,
|
|
3248
|
+
"shopping_basket": 0xe8cb,
|
|
3249
|
+
"shopping_cart": 0xe8cc,
|
|
3250
|
+
"shopping_cart_checkout": 0xeb88,
|
|
3251
|
+
"shopping_cart_off": 0xf4f7,
|
|
3252
|
+
"shoppingmode": 0xefb7,
|
|
3253
|
+
"short_stay": 0xe4d0,
|
|
3254
|
+
"short_text": 0xe261,
|
|
3255
|
+
"shortcut": 0xf57a,
|
|
3256
|
+
"show_chart": 0xe6e1,
|
|
3257
|
+
"shower": 0xf061,
|
|
3258
|
+
"shuffle": 0xe043,
|
|
3259
|
+
"shuffle_on": 0xe9e1,
|
|
3260
|
+
"shutter_speed": 0xe43d,
|
|
3261
|
+
"shutter_speed_add": 0xf57e,
|
|
3262
|
+
"shutter_speed_minus": 0xf57d,
|
|
3263
|
+
"sick": 0xf220,
|
|
3264
|
+
"side_navigation": 0xe9e2,
|
|
3265
|
+
"sign_language": 0xebe5,
|
|
3266
|
+
"sign_language_2": 0xf258,
|
|
3267
|
+
"signal_cellular_0_bar": 0xf0a8,
|
|
3268
|
+
"signal_cellular_1_bar": 0xf0a9,
|
|
3269
|
+
"signal_cellular_2_bar": 0xf0aa,
|
|
3270
|
+
"signal_cellular_3_bar": 0xf0ab,
|
|
3271
|
+
"signal_cellular_4_bar": 0xe1c8,
|
|
3272
|
+
"signal_cellular_add": 0xf7a9,
|
|
3273
|
+
"signal_cellular_alt": 0xe202,
|
|
3274
|
+
"signal_cellular_alt_1_bar": 0xebdf,
|
|
3275
|
+
"signal_cellular_alt_2_bar": 0xebe3,
|
|
3276
|
+
"signal_cellular_connected_no_internet_0_bar": 0xf0ac,
|
|
3277
|
+
"signal_cellular_connected_no_internet_4_bar": 0xe1cd,
|
|
3278
|
+
"signal_cellular_no_sim": 0xe1ce,
|
|
3279
|
+
"signal_cellular_nodata": 0xf062,
|
|
3280
|
+
"signal_cellular_null": 0xe1cf,
|
|
3281
|
+
"signal_cellular_off": 0xe1d0,
|
|
3282
|
+
"signal_cellular_pause": 0xf5a7,
|
|
3283
|
+
"signal_disconnected": 0xf239,
|
|
3284
|
+
"signal_wifi_0_bar": 0xf0b0,
|
|
3285
|
+
"signal_wifi_4_bar": 0xf065,
|
|
3286
|
+
"signal_wifi_4_bar_lock": 0xe1e1,
|
|
3287
|
+
"signal_wifi_bad": 0xf064,
|
|
3288
|
+
"signal_wifi_connected_no_internet_4": 0xf064,
|
|
3289
|
+
"signal_wifi_off": 0xe1da,
|
|
3290
|
+
"signal_wifi_statusbar_4_bar": 0xf065,
|
|
3291
|
+
"signal_wifi_statusbar_not_connected": 0xf0ef,
|
|
3292
|
+
"signal_wifi_statusbar_null": 0xf067,
|
|
3293
|
+
"signature": 0xf74c,
|
|
3294
|
+
"signpost": 0xeb91,
|
|
3295
|
+
"sim_card": 0xe32b,
|
|
3296
|
+
"sim_card_alert": 0xf057,
|
|
3297
|
+
"sim_card_download": 0xf068,
|
|
3298
|
+
"simulation": 0xf3e1,
|
|
3299
|
+
"single_bed": 0xea48,
|
|
3300
|
+
"sip": 0xf069,
|
|
3301
|
+
"siren": 0xf3a7,
|
|
3302
|
+
"siren_check": 0xf3a6,
|
|
3303
|
+
"siren_open": 0xf3a5,
|
|
3304
|
+
"siren_question": 0xf3a4,
|
|
3305
|
+
"skateboarding": 0xe511,
|
|
3306
|
+
"skeleton": 0xf899,
|
|
3307
|
+
"skillet": 0xf543,
|
|
3308
|
+
"skillet_cooktop": 0xf544,
|
|
3309
|
+
"skip_next": 0xe044,
|
|
3310
|
+
"skip_previous": 0xe045,
|
|
3311
|
+
"skull": 0xf89a,
|
|
3312
|
+
"skull_list": 0xf370,
|
|
3313
|
+
"slab_serif": 0xf4ab,
|
|
3314
|
+
"sledding": 0xe512,
|
|
3315
|
+
"sleep": 0xe213,
|
|
3316
|
+
"sleep_score": 0xf6b7,
|
|
3317
|
+
"slide_library": 0xf822,
|
|
3318
|
+
"sliders": 0xe9e3,
|
|
3319
|
+
"slideshow": 0xe41b,
|
|
3320
|
+
"slow_motion_video": 0xe068,
|
|
3321
|
+
"smart_button": 0xf1c1,
|
|
3322
|
+
"smart_card_reader": 0xf4a5,
|
|
3323
|
+
"smart_card_reader_off": 0xf4a6,
|
|
3324
|
+
"smart_display": 0xf06a,
|
|
3325
|
+
"smart_outlet": 0xe844,
|
|
3326
|
+
"smart_screen": 0xf2d0,
|
|
3327
|
+
"smart_toy": 0xf06c,
|
|
3328
|
+
"smartphone": 0xe7ba,
|
|
3329
|
+
"smartphone_camera": 0xf44e,
|
|
3330
|
+
"smb_share": 0xf74b,
|
|
3331
|
+
"smoke_free": 0xeb4a,
|
|
3332
|
+
"smoking_rooms": 0xeb4b,
|
|
3333
|
+
"sms": 0xe625,
|
|
3334
|
+
"sms_failed": 0xe87f,
|
|
3335
|
+
"snippet_folder": 0xf1c7,
|
|
3336
|
+
"snooze": 0xe046,
|
|
3337
|
+
"snowboarding": 0xe513,
|
|
3338
|
+
"snowing": 0xe80f,
|
|
3339
|
+
"snowing_heavy": 0xf61c,
|
|
3340
|
+
"snowmobile": 0xe503,
|
|
3341
|
+
"snowshoeing": 0xe514,
|
|
3342
|
+
"soap": 0xf1b2,
|
|
3343
|
+
"soba": 0xef36,
|
|
3344
|
+
"social_distance": 0xe1cb,
|
|
3345
|
+
"social_leaderboard": 0xf6a0,
|
|
3346
|
+
"solar_power": 0xec0f,
|
|
3347
|
+
"solo_dining": 0xef35,
|
|
3348
|
+
"sort": 0xe164,
|
|
3349
|
+
"sort_by_alpha": 0xe053,
|
|
3350
|
+
"sos": 0xebf7,
|
|
3351
|
+
"sound_detection_dog_barking": 0xf149,
|
|
3352
|
+
"sound_detection_glass_break": 0xf14a,
|
|
3353
|
+
"sound_detection_loud_sound": 0xf14b,
|
|
3354
|
+
"sound_sampler": 0xf6b4,
|
|
3355
|
+
"soup_kitchen": 0xe7d3,
|
|
3356
|
+
"source": 0xf1c8,
|
|
3357
|
+
"source_environment": 0xe527,
|
|
3358
|
+
"source_notes": 0xe12d,
|
|
3359
|
+
"south": 0xf1e3,
|
|
3360
|
+
"south_america": 0xe7e4,
|
|
3361
|
+
"south_east": 0xf1e4,
|
|
3362
|
+
"south_west": 0xf1e5,
|
|
3363
|
+
"spa": 0xeb4c,
|
|
3364
|
+
"space_bar": 0xe256,
|
|
3365
|
+
"space_dashboard": 0xe66b,
|
|
3366
|
+
"spatial_audio": 0xebeb,
|
|
3367
|
+
"spatial_audio_off": 0xebe8,
|
|
3368
|
+
"spatial_speaker": 0xf4cf,
|
|
3369
|
+
"spatial_tracking": 0xebea,
|
|
3370
|
+
"speaker": 0xe32d,
|
|
3371
|
+
"speaker_group": 0xe32e,
|
|
3372
|
+
"speaker_notes": 0xe8cd,
|
|
3373
|
+
"speaker_notes_off": 0xe92a,
|
|
3374
|
+
"speaker_phone": 0xe0d2,
|
|
3375
|
+
"special_character": 0xf74a,
|
|
3376
|
+
"specific_gravity": 0xf872,
|
|
3377
|
+
"speech_to_text": 0xf8a7,
|
|
3378
|
+
"speed": 0xe9e4,
|
|
3379
|
+
"speed_0_25": 0xf4d4,
|
|
3380
|
+
"speed_0_2x": 0xf498,
|
|
3381
|
+
"speed_0_5": 0xf4e2,
|
|
3382
|
+
"speed_0_5x": 0xf497,
|
|
3383
|
+
"speed_0_75": 0xf4d3,
|
|
3384
|
+
"speed_0_7x": 0xf496,
|
|
3385
|
+
"speed_1_2": 0xf4e1,
|
|
3386
|
+
"speed_1_25": 0xf4d2,
|
|
3387
|
+
"speed_1_2x": 0xf495,
|
|
3388
|
+
"speed_1_5": 0xf4e0,
|
|
3389
|
+
"speed_1_5x": 0xf494,
|
|
3390
|
+
"speed_1_75": 0xf4d1,
|
|
3391
|
+
"speed_1_7x": 0xf493,
|
|
3392
|
+
"speed_2x": 0xf4eb,
|
|
3393
|
+
"speed_camera": 0xf470,
|
|
3394
|
+
"spellcheck": 0xe8ce,
|
|
3395
|
+
"split_scene": 0xf3bf,
|
|
3396
|
+
"split_scene_down": 0xf2ff,
|
|
3397
|
+
"split_scene_left": 0xf2fe,
|
|
3398
|
+
"split_scene_right": 0xf2fd,
|
|
3399
|
+
"split_scene_up": 0xf2fc,
|
|
3400
|
+
"splitscreen": 0xf06d,
|
|
3401
|
+
"splitscreen_add": 0xf4fd,
|
|
3402
|
+
"splitscreen_bottom": 0xf676,
|
|
3403
|
+
"splitscreen_landscape": 0xf459,
|
|
3404
|
+
"splitscreen_left": 0xf675,
|
|
3405
|
+
"splitscreen_portrait": 0xf458,
|
|
3406
|
+
"splitscreen_right": 0xf674,
|
|
3407
|
+
"splitscreen_top": 0xf673,
|
|
3408
|
+
"splitscreen_vertical_add": 0xf4fc,
|
|
3409
|
+
"spo2": 0xf6db,
|
|
3410
|
+
"spoke": 0xe9a7,
|
|
3411
|
+
"sports": 0xea30,
|
|
3412
|
+
"sports_and_outdoors": 0xefb8,
|
|
3413
|
+
"sports_bar": 0xf1f3,
|
|
3414
|
+
"sports_baseball": 0xea51,
|
|
3415
|
+
"sports_basketball": 0xea26,
|
|
3416
|
+
"sports_cricket": 0xea27,
|
|
3417
|
+
"sports_esports": 0xea28,
|
|
3418
|
+
"sports_football": 0xea29,
|
|
3419
|
+
"sports_golf": 0xea2a,
|
|
3420
|
+
"sports_gymnastics": 0xebc4,
|
|
3421
|
+
"sports_handball": 0xea33,
|
|
3422
|
+
"sports_hockey": 0xea2b,
|
|
3423
|
+
"sports_kabaddi": 0xea34,
|
|
3424
|
+
"sports_martial_arts": 0xeae9,
|
|
3425
|
+
"sports_mma": 0xea2c,
|
|
3426
|
+
"sports_motorsports": 0xea2d,
|
|
3427
|
+
"sports_rugby": 0xea2e,
|
|
3428
|
+
"sports_score": 0xf06e,
|
|
3429
|
+
"sports_soccer": 0xea2f,
|
|
3430
|
+
"sports_tennis": 0xea32,
|
|
3431
|
+
"sports_volleyball": 0xea31,
|
|
3432
|
+
"sprinkler": 0xe29a,
|
|
3433
|
+
"sprint": 0xf81f,
|
|
3434
|
+
"square": 0xeb36,
|
|
3435
|
+
"square_dot": 0xf3b3,
|
|
3436
|
+
"square_foot": 0xea49,
|
|
3437
|
+
"ssid_chart": 0xeb66,
|
|
3438
|
+
"stack": 0xf609,
|
|
3439
|
+
"stack_group": 0xf359,
|
|
3440
|
+
"stack_hexagon": 0xf41c,
|
|
3441
|
+
"stack_off": 0xf608,
|
|
3442
|
+
"stack_star": 0xf607,
|
|
3443
|
+
"stacked_bar_chart": 0xe9e6,
|
|
3444
|
+
"stacked_email": 0xe6c7,
|
|
3445
|
+
"stacked_inbox": 0xe6c9,
|
|
3446
|
+
"stacked_line_chart": 0xf22b,
|
|
3447
|
+
"stacks": 0xf500,
|
|
3448
|
+
"stadia_controller": 0xf135,
|
|
3449
|
+
"stadium": 0xeb90,
|
|
3450
|
+
"stairs": 0xf1a9,
|
|
3451
|
+
"stairs_2": 0xf46c,
|
|
3452
|
+
"star": 0xf09a,
|
|
3453
|
+
"star_border": 0xf09a,
|
|
3454
|
+
"star_border_purple500": 0xf09a,
|
|
3455
|
+
"star_half": 0xe839,
|
|
3456
|
+
"star_outline": 0xf09a,
|
|
3457
|
+
"star_purple500": 0xf09a,
|
|
3458
|
+
"star_rate": 0xf0ec,
|
|
3459
|
+
"star_rate_half": 0xec45,
|
|
3460
|
+
"star_shine": 0xf31d,
|
|
3461
|
+
"stars": 0xe8d0,
|
|
3462
|
+
"stars_2": 0xf31c,
|
|
3463
|
+
"start": 0xe089,
|
|
3464
|
+
"stat_0": 0xe697,
|
|
3465
|
+
"stat_1": 0xe698,
|
|
3466
|
+
"stat_2": 0xe699,
|
|
3467
|
+
"stat_3": 0xe69a,
|
|
3468
|
+
"stat_minus_1": 0xe69b,
|
|
3469
|
+
"stat_minus_2": 0xe69c,
|
|
3470
|
+
"stat_minus_3": 0xe69d,
|
|
3471
|
+
"stay_current_landscape": 0xed3e,
|
|
3472
|
+
"stay_current_portrait": 0xe7ba,
|
|
3473
|
+
"stay_primary_landscape": 0xed3e,
|
|
3474
|
+
"stay_primary_portrait": 0xf2d3,
|
|
3475
|
+
"steering_wheel_heat": 0xf32b,
|
|
3476
|
+
"step": 0xf6fe,
|
|
3477
|
+
"step_into": 0xf701,
|
|
3478
|
+
"step_out": 0xf700,
|
|
3479
|
+
"step_over": 0xf6ff,
|
|
3480
|
+
"steppers": 0xe9e7,
|
|
3481
|
+
"steps": 0xf6da,
|
|
3482
|
+
"stethoscope": 0xf805,
|
|
3483
|
+
"stethoscope_arrow": 0xf807,
|
|
3484
|
+
"stethoscope_check": 0xf806,
|
|
3485
|
+
"sticky_note": 0xe9e8,
|
|
3486
|
+
"sticky_note_2": 0xf1fc,
|
|
3487
|
+
"stock_media": 0xf570,
|
|
3488
|
+
"stockpot": 0xf545,
|
|
3489
|
+
"stop": 0xe047,
|
|
3490
|
+
"stop_circle": 0xef71,
|
|
3491
|
+
"stop_screen_share": 0xe0e3,
|
|
3492
|
+
"storage": 0xe1db,
|
|
3493
|
+
"store": 0xe8d1,
|
|
3494
|
+
"store_mall_directory": 0xe8d1,
|
|
3495
|
+
"storefront": 0xea12,
|
|
3496
|
+
"storm": 0xf070,
|
|
3497
|
+
"straight": 0xeb95,
|
|
3498
|
+
"straighten": 0xe41c,
|
|
3499
|
+
"strategy": 0xf5df,
|
|
3500
|
+
"stream": 0xe9e9,
|
|
3501
|
+
"stream_apps": 0xf79f,
|
|
3502
|
+
"streetview": 0xe56e,
|
|
3503
|
+
"stress_management": 0xf6d9,
|
|
3504
|
+
"strikethrough_s": 0xe257,
|
|
3505
|
+
"stroke_full": 0xf749,
|
|
3506
|
+
"stroke_partial": 0xf748,
|
|
3507
|
+
"stroller": 0xf1ae,
|
|
3508
|
+
"style": 0xe41d,
|
|
3509
|
+
"styler": 0xe273,
|
|
3510
|
+
"stylus": 0xf604,
|
|
3511
|
+
"stylus_brush": 0xf366,
|
|
3512
|
+
"stylus_fountain_pen": 0xf365,
|
|
3513
|
+
"stylus_highlighter": 0xf364,
|
|
3514
|
+
"stylus_laser_pointer": 0xf747,
|
|
3515
|
+
"stylus_note": 0xf603,
|
|
3516
|
+
"stylus_pen": 0xf363,
|
|
3517
|
+
"stylus_pencil": 0xf362,
|
|
3518
|
+
"subdirectory_arrow_left": 0xe5d9,
|
|
3519
|
+
"subdirectory_arrow_right": 0xe5da,
|
|
3520
|
+
"subheader": 0xe9ea,
|
|
3521
|
+
"subject": 0xe8d2,
|
|
3522
|
+
"subscript": 0xf111,
|
|
3523
|
+
"subscriptions": 0xe064,
|
|
3524
|
+
"subtitles": 0xe048,
|
|
3525
|
+
"subtitles_gear": 0xf355,
|
|
3526
|
+
"subtitles_off": 0xef72,
|
|
3527
|
+
"subway": 0xe56f,
|
|
3528
|
+
"subway_walk": 0xf287,
|
|
3529
|
+
"summarize": 0xf071,
|
|
3530
|
+
"sunny": 0xe81a,
|
|
3531
|
+
"sunny_snowing": 0xe819,
|
|
3532
|
+
"superscript": 0xf112,
|
|
3533
|
+
"supervised_user_circle": 0xe939,
|
|
3534
|
+
"supervised_user_circle_off": 0xf60e,
|
|
3535
|
+
"supervisor_account": 0xe8d3,
|
|
3536
|
+
"support": 0xef73,
|
|
3537
|
+
"support_agent": 0xf0e2,
|
|
3538
|
+
"surfing": 0xe515,
|
|
3539
|
+
"surgical": 0xe131,
|
|
3540
|
+
"surround_sound": 0xe049,
|
|
3541
|
+
"swap_calls": 0xe0d7,
|
|
3542
|
+
"swap_driving_apps": 0xe69e,
|
|
3543
|
+
"swap_driving_apps_wheel": 0xe69f,
|
|
3544
|
+
"swap_horiz": 0xe8d4,
|
|
3545
|
+
"swap_horizontal_circle": 0xe933,
|
|
3546
|
+
"swap_vert": 0xe8d5,
|
|
3547
|
+
"swap_vertical_circle": 0xe8d6,
|
|
3548
|
+
"sweep": 0xe6ac,
|
|
3549
|
+
"swipe": 0xe9ec,
|
|
3550
|
+
"swipe_down": 0xeb53,
|
|
3551
|
+
"swipe_down_alt": 0xeb30,
|
|
3552
|
+
"swipe_left": 0xeb59,
|
|
3553
|
+
"swipe_left_alt": 0xeb33,
|
|
3554
|
+
"swipe_right": 0xeb52,
|
|
3555
|
+
"swipe_right_alt": 0xeb56,
|
|
3556
|
+
"swipe_up": 0xeb2e,
|
|
3557
|
+
"swipe_up_alt": 0xeb35,
|
|
3558
|
+
"swipe_vertical": 0xeb51,
|
|
3559
|
+
"switch": 0xe1f4,
|
|
3560
|
+
"switch_access": 0xf6fd,
|
|
3561
|
+
"switch_access_2": 0xf506,
|
|
3562
|
+
"switch_access_3": 0xf34d,
|
|
3563
|
+
"switch_access_shortcut": 0xe7e1,
|
|
3564
|
+
"switch_access_shortcut_add": 0xe7e2,
|
|
3565
|
+
"switch_account": 0xe9ed,
|
|
3566
|
+
"switch_camera": 0xe41e,
|
|
3567
|
+
"switch_left": 0xf1d1,
|
|
3568
|
+
"switch_right": 0xf1d2,
|
|
3569
|
+
"switch_video": 0xe41f,
|
|
3570
|
+
"switches": 0xe733,
|
|
3571
|
+
"sword_rose": 0xf5de,
|
|
3572
|
+
"swords": 0xf889,
|
|
3573
|
+
"symptoms": 0xe132,
|
|
3574
|
+
"synagogue": 0xeab0,
|
|
3575
|
+
"sync": 0xe627,
|
|
3576
|
+
"sync_alt": 0xea18,
|
|
3577
|
+
"sync_arrow_down": 0xf37c,
|
|
3578
|
+
"sync_arrow_up": 0xf37b,
|
|
3579
|
+
"sync_desktop": 0xf41a,
|
|
3580
|
+
"sync_disabled": 0xe628,
|
|
3581
|
+
"sync_lock": 0xeaee,
|
|
3582
|
+
"sync_problem": 0xe629,
|
|
3583
|
+
"sync_saved_locally": 0xf820,
|
|
3584
|
+
"sync_saved_locally_off": 0xf264,
|
|
3585
|
+
"syringe": 0xe133,
|
|
3586
|
+
"system_security_update": 0xf2cd,
|
|
3587
|
+
"system_security_update_good": 0xf073,
|
|
3588
|
+
"system_security_update_warning": 0xf2d3,
|
|
3589
|
+
"system_update": 0xf2cd,
|
|
3590
|
+
"system_update_alt": 0xe8d7,
|
|
3591
|
+
"tab": 0xe8d8,
|
|
3592
|
+
"tab_close": 0xf745,
|
|
3593
|
+
"tab_close_inactive": 0xf3d0,
|
|
3594
|
+
"tab_close_right": 0xf746,
|
|
3595
|
+
"tab_duplicate": 0xf744,
|
|
3596
|
+
"tab_group": 0xf743,
|
|
3597
|
+
"tab_inactive": 0xf43b,
|
|
3598
|
+
"tab_move": 0xf742,
|
|
3599
|
+
"tab_new_right": 0xf741,
|
|
3600
|
+
"tab_recent": 0xf740,
|
|
3601
|
+
"tab_search": 0xf2f2,
|
|
3602
|
+
"tab_unselected": 0xe8d9,
|
|
3603
|
+
"table": 0xf191,
|
|
3604
|
+
"table_bar": 0xead2,
|
|
3605
|
+
"table_chart": 0xe265,
|
|
3606
|
+
"table_chart_view": 0xf6ef,
|
|
3607
|
+
"table_convert": 0xf3c7,
|
|
3608
|
+
"table_edit": 0xf3c6,
|
|
3609
|
+
"table_eye": 0xf466,
|
|
3610
|
+
"table_lamp": 0xe1f2,
|
|
3611
|
+
"table_large": 0xf299,
|
|
3612
|
+
"table_restaurant": 0xeac6,
|
|
3613
|
+
"table_rows": 0xf101,
|
|
3614
|
+
"table_rows_narrow": 0xf73f,
|
|
3615
|
+
"table_sign": 0xef2c,
|
|
3616
|
+
"table_view": 0xf1be,
|
|
3617
|
+
"tablet": 0xe32f,
|
|
3618
|
+
"tablet_android": 0xe330,
|
|
3619
|
+
"tablet_camera": 0xf44d,
|
|
3620
|
+
"tablet_mac": 0xe331,
|
|
3621
|
+
"tabs": 0xe9ee,
|
|
3622
|
+
"tactic": 0xf564,
|
|
3623
|
+
"tag": 0xe9ef,
|
|
3624
|
+
"tag_faces": 0xea22,
|
|
3625
|
+
"takeout_dining": 0xea74,
|
|
3626
|
+
"takeout_dining_2": 0xef34,
|
|
3627
|
+
"tamper_detection_off": 0xe82e,
|
|
3628
|
+
"tamper_detection_on": 0xf8c8,
|
|
3629
|
+
"tap_and_play": 0xf2cc,
|
|
3630
|
+
"tapas": 0xf1e9,
|
|
3631
|
+
"target": 0xe719,
|
|
3632
|
+
"task": 0xf075,
|
|
3633
|
+
"task_alt": 0xe2e6,
|
|
3634
|
+
"tatami_seat": 0xef33,
|
|
3635
|
+
"taunt": 0xf69f,
|
|
3636
|
+
"taxi_alert": 0xef74,
|
|
3637
|
+
"team_dashboard": 0xe013,
|
|
3638
|
+
"temp_preferences_custom": 0xf8c9,
|
|
3639
|
+
"temp_preferences_eco": 0xf8ca,
|
|
3640
|
+
"temple_buddhist": 0xeab3,
|
|
3641
|
+
"temple_hindu": 0xeaaf,
|
|
3642
|
+
"tenancy": 0xf0e3,
|
|
3643
|
+
"terminal": 0xeb8e,
|
|
3644
|
+
"terrain": 0xe564,
|
|
3645
|
+
"text_ad": 0xe728,
|
|
3646
|
+
"text_compare": 0xf3c5,
|
|
3647
|
+
"text_decrease": 0xeadd,
|
|
3648
|
+
"text_fields": 0xe262,
|
|
3649
|
+
"text_fields_alt": 0xe9f1,
|
|
3650
|
+
"text_format": 0xe165,
|
|
3651
|
+
"text_increase": 0xeae2,
|
|
3652
|
+
"text_rotate_up": 0xe93a,
|
|
3653
|
+
"text_rotate_vertical": 0xe93b,
|
|
3654
|
+
"text_rotation_angledown": 0xe93c,
|
|
3655
|
+
"text_rotation_angleup": 0xe93d,
|
|
3656
|
+
"text_rotation_down": 0xe93e,
|
|
3657
|
+
"text_rotation_none": 0xe93f,
|
|
3658
|
+
"text_select_end": 0xf73e,
|
|
3659
|
+
"text_select_jump_to_beginning": 0xf73d,
|
|
3660
|
+
"text_select_jump_to_end": 0xf73c,
|
|
3661
|
+
"text_select_move_back_character": 0xf73b,
|
|
3662
|
+
"text_select_move_back_word": 0xf73a,
|
|
3663
|
+
"text_select_move_down": 0xf739,
|
|
3664
|
+
"text_select_move_forward_character": 0xf738,
|
|
3665
|
+
"text_select_move_forward_word": 0xf737,
|
|
3666
|
+
"text_select_move_up": 0xf736,
|
|
3667
|
+
"text_select_start": 0xf735,
|
|
3668
|
+
"text_snippet": 0xf1c6,
|
|
3669
|
+
"text_to_speech": 0xf1bc,
|
|
3670
|
+
"text_up": 0xf49e,
|
|
3671
|
+
"textsms": 0xe625,
|
|
3672
|
+
"texture": 0xe421,
|
|
3673
|
+
"texture_add": 0xf57c,
|
|
3674
|
+
"texture_minus": 0xf57b,
|
|
3675
|
+
"theater_comedy": 0xea66,
|
|
3676
|
+
"theaters": 0xe8da,
|
|
3677
|
+
"thermometer": 0xe846,
|
|
3678
|
+
"thermometer_add": 0xf582,
|
|
3679
|
+
"thermometer_gain": 0xf6d8,
|
|
3680
|
+
"thermometer_loss": 0xf6d7,
|
|
3681
|
+
"thermometer_minus": 0xf581,
|
|
3682
|
+
"thermostat": 0xf076,
|
|
3683
|
+
"thermostat_arrow_down": 0xf37a,
|
|
3684
|
+
"thermostat_arrow_up": 0xf379,
|
|
3685
|
+
"thermostat_auto": 0xf077,
|
|
3686
|
+
"thermostat_carbon": 0xf178,
|
|
3687
|
+
"things_to_do": 0xeb2a,
|
|
3688
|
+
"thread_unread": 0xf4f9,
|
|
3689
|
+
"threat_intelligence": 0xeaed,
|
|
3690
|
+
"thumb_down": 0xf578,
|
|
3691
|
+
"thumb_down_alt": 0xf578,
|
|
3692
|
+
"thumb_down_filled": 0xf578,
|
|
3693
|
+
"thumb_down_off": 0xf578,
|
|
3694
|
+
"thumb_down_off_alt": 0xf578,
|
|
3695
|
+
"thumb_up": 0xf577,
|
|
3696
|
+
"thumb_up_alt": 0xf577,
|
|
3697
|
+
"thumb_up_filled": 0xf577,
|
|
3698
|
+
"thumb_up_off": 0xf577,
|
|
3699
|
+
"thumb_up_off_alt": 0xf577,
|
|
3700
|
+
"thumbnail_bar": 0xf734,
|
|
3701
|
+
"thumbs_up_double": 0xeefc,
|
|
3702
|
+
"thumbs_up_down": 0xe8dd,
|
|
3703
|
+
"thunderstorm": 0xebdb,
|
|
3704
|
+
"tibia": 0xf89b,
|
|
3705
|
+
"tibia_alt": 0xf89c,
|
|
3706
|
+
"tile_large": 0xf3c3,
|
|
3707
|
+
"tile_medium": 0xf3c2,
|
|
3708
|
+
"tile_small": 0xf3c1,
|
|
3709
|
+
"time_auto": 0xf0e4,
|
|
3710
|
+
"time_to_leave": 0xeff7,
|
|
3711
|
+
"timelapse": 0xe422,
|
|
3712
|
+
"timeline": 0xe922,
|
|
3713
|
+
"timer": 0xe425,
|
|
3714
|
+
"timer_1": 0xf2af,
|
|
3715
|
+
"timer_10": 0xe423,
|
|
3716
|
+
"timer_10_alt_1": 0xefbf,
|
|
3717
|
+
"timer_10_select": 0xf07a,
|
|
3718
|
+
"timer_2": 0xf2ae,
|
|
3719
|
+
"timer_3": 0xe424,
|
|
3720
|
+
"timer_3_alt_1": 0xefc0,
|
|
3721
|
+
"timer_3_select": 0xf07b,
|
|
3722
|
+
"timer_5": 0xf4b1,
|
|
3723
|
+
"timer_5_shutter": 0xf4b2,
|
|
3724
|
+
"timer_arrow_down": 0xf378,
|
|
3725
|
+
"timer_arrow_up": 0xf377,
|
|
3726
|
+
"timer_off": 0xe426,
|
|
3727
|
+
"timer_pause": 0xf4bb,
|
|
3728
|
+
"timer_play": 0xf4ba,
|
|
3729
|
+
"tips_and_updates": 0xe79a,
|
|
3730
|
+
"tire_repair": 0xebc8,
|
|
3731
|
+
"title": 0xe264,
|
|
3732
|
+
"titlecase": 0xf489,
|
|
3733
|
+
"toast": 0xefc1,
|
|
3734
|
+
"toc": 0xe8de,
|
|
3735
|
+
"today": 0xe8df,
|
|
3736
|
+
"toggle_off": 0xe9f5,
|
|
3737
|
+
"toggle_on": 0xe9f6,
|
|
3738
|
+
"token": 0xea25,
|
|
3739
|
+
"toll": 0xe8e0,
|
|
3740
|
+
"tonality": 0xe427,
|
|
3741
|
+
"tonality_2": 0xf2b4,
|
|
3742
|
+
"toolbar": 0xe9f7,
|
|
3743
|
+
"tools_flat_head": 0xf8cb,
|
|
3744
|
+
"tools_installation_kit": 0xe2ab,
|
|
3745
|
+
"tools_ladder": 0xe2cb,
|
|
3746
|
+
"tools_level": 0xe77b,
|
|
3747
|
+
"tools_phillips": 0xf8cc,
|
|
3748
|
+
"tools_pliers_wire_stripper": 0xe2aa,
|
|
3749
|
+
"tools_power_drill": 0xe1e9,
|
|
3750
|
+
"tools_wrench": 0xf8cd,
|
|
3751
|
+
"tooltip": 0xe9f8,
|
|
3752
|
+
"tooltip_2": 0xf3ed,
|
|
3753
|
+
"top_panel_close": 0xf733,
|
|
3754
|
+
"top_panel_open": 0xf732,
|
|
3755
|
+
"topic": 0xf1c8,
|
|
3756
|
+
"tornado": 0xe199,
|
|
3757
|
+
"total_dissolved_solids": 0xf877,
|
|
3758
|
+
"touch_app": 0xe913,
|
|
3759
|
+
"touch_double": 0xf38b,
|
|
3760
|
+
"touch_long": 0xf38a,
|
|
3761
|
+
"touch_triple": 0xf389,
|
|
3762
|
+
"touchpad_mouse": 0xf687,
|
|
3763
|
+
"touchpad_mouse_off": 0xf4e6,
|
|
3764
|
+
"tour": 0xef75,
|
|
3765
|
+
"toys": 0xe332,
|
|
3766
|
+
"toys_and_games": 0xefc2,
|
|
3767
|
+
"toys_fan": 0xf887,
|
|
3768
|
+
"track_changes": 0xe8e1,
|
|
3769
|
+
"trackpad_input": 0xf4c7,
|
|
3770
|
+
"trackpad_input_2": 0xf409,
|
|
3771
|
+
"trackpad_input_3": 0xf408,
|
|
3772
|
+
"traffic": 0xe565,
|
|
3773
|
+
"traffic_jam": 0xf46f,
|
|
3774
|
+
"trail_length": 0xeb5e,
|
|
3775
|
+
"trail_length_medium": 0xeb63,
|
|
3776
|
+
"trail_length_short": 0xeb6d,
|
|
3777
|
+
"train": 0xe570,
|
|
3778
|
+
"tram": 0xe571,
|
|
3779
|
+
"transcribe": 0xf8ec,
|
|
3780
|
+
"transfer_within_a_station": 0xe572,
|
|
3781
|
+
"transform": 0xe428,
|
|
3782
|
+
"transgender": 0xe58d,
|
|
3783
|
+
"transit_enterexit": 0xe579,
|
|
3784
|
+
"transit_ticket": 0xf3f1,
|
|
3785
|
+
"transition_chop": 0xf50e,
|
|
3786
|
+
"transition_dissolve": 0xf50d,
|
|
3787
|
+
"transition_fade": 0xf50c,
|
|
3788
|
+
"transition_push": 0xf50b,
|
|
3789
|
+
"transition_slide": 0xf50a,
|
|
3790
|
+
"translate": 0xe8e2,
|
|
3791
|
+
"translate_indic": 0xf263,
|
|
3792
|
+
"transportation": 0xe21d,
|
|
3793
|
+
"travel": 0xef93,
|
|
3794
|
+
"travel_explore": 0xe2db,
|
|
3795
|
+
"travel_luggage_and_bags": 0xefc3,
|
|
3796
|
+
"trending_down": 0xe8e3,
|
|
3797
|
+
"trending_flat": 0xe8e4,
|
|
3798
|
+
"trending_up": 0xe8e5,
|
|
3799
|
+
"trip": 0xe6fb,
|
|
3800
|
+
"trip_origin": 0xe57b,
|
|
3801
|
+
"trolley": 0xf86b,
|
|
3802
|
+
"trolley_cable_car": 0xf46e,
|
|
3803
|
+
"trophy": 0xea23,
|
|
3804
|
+
"troubleshoot": 0xe1d2,
|
|
3805
|
+
"try": 0xf07c,
|
|
3806
|
+
"tsunami": 0xebd8,
|
|
3807
|
+
"tsv": 0xe6d6,
|
|
3808
|
+
"tty": 0xf1aa,
|
|
3809
|
+
"tune": 0xe429,
|
|
3810
|
+
"tungsten": 0xf07d,
|
|
3811
|
+
"turn_left": 0xeba6,
|
|
3812
|
+
"turn_right": 0xebab,
|
|
3813
|
+
"turn_sharp_left": 0xeba7,
|
|
3814
|
+
"turn_sharp_right": 0xebaa,
|
|
3815
|
+
"turn_slight_left": 0xeba4,
|
|
3816
|
+
"turn_slight_right": 0xeb9a,
|
|
3817
|
+
"turned_in": 0xe8e7,
|
|
3818
|
+
"turned_in_not": 0xe8e7,
|
|
3819
|
+
"tv": 0xe63b,
|
|
3820
|
+
"tv_displays": 0xf3ec,
|
|
3821
|
+
"tv_gen": 0xe830,
|
|
3822
|
+
"tv_guide": 0xe1dc,
|
|
3823
|
+
"tv_next": 0xf3eb,
|
|
3824
|
+
"tv_off": 0xe647,
|
|
3825
|
+
"tv_options_edit_channels": 0xe1dd,
|
|
3826
|
+
"tv_options_input_settings": 0xe1de,
|
|
3827
|
+
"tv_remote": 0xf5d9,
|
|
3828
|
+
"tv_signin": 0xe71b,
|
|
3829
|
+
"tv_with_assistant": 0xe785,
|
|
3830
|
+
"two_pager": 0xf51f,
|
|
3831
|
+
"two_pager_store": 0xf3c4,
|
|
3832
|
+
"two_wheeler": 0xe9f9,
|
|
3833
|
+
"type_specimen": 0xf8f0,
|
|
3834
|
+
"u_turn_left": 0xeba1,
|
|
3835
|
+
"u_turn_right": 0xeba2,
|
|
3836
|
+
"udon": 0xef32,
|
|
3837
|
+
"ulna_radius": 0xf89d,
|
|
3838
|
+
"ulna_radius_alt": 0xf89e,
|
|
3839
|
+
"umbrella": 0xf1ad,
|
|
3840
|
+
"unarchive": 0xe169,
|
|
3841
|
+
"undo": 0xe166,
|
|
3842
|
+
"unfold_less": 0xe5d6,
|
|
3843
|
+
"unfold_less_double": 0xf8cf,
|
|
3844
|
+
"unfold_more": 0xe5d7,
|
|
3845
|
+
"unfold_more_double": 0xf8d0,
|
|
3846
|
+
"ungroup": 0xf731,
|
|
3847
|
+
"universal_currency": 0xe9fa,
|
|
3848
|
+
"universal_currency_alt": 0xe734,
|
|
3849
|
+
"universal_local": 0xe9fb,
|
|
3850
|
+
"unknown_2": 0xf49f,
|
|
3851
|
+
"unknown_5": 0xe6a5,
|
|
3852
|
+
"unknown_7": 0xf49e,
|
|
3853
|
+
"unknown_document": 0xf804,
|
|
3854
|
+
"unknown_med": 0xeabd,
|
|
3855
|
+
"unlicense": 0xeb05,
|
|
3856
|
+
"unpaved_road": 0xf46d,
|
|
3857
|
+
"unpin": 0xe6f9,
|
|
3858
|
+
"unpublished": 0xf236,
|
|
3859
|
+
"unsubscribe": 0xe0eb,
|
|
3860
|
+
"upcoming": 0xf07e,
|
|
3861
|
+
"update": 0xe923,
|
|
3862
|
+
"update_disabled": 0xe075,
|
|
3863
|
+
"upgrade": 0xf0fb,
|
|
3864
|
+
"upi_pay": 0xf3cf,
|
|
3865
|
+
"upload": 0xf09b,
|
|
3866
|
+
"upload_2": 0xf521,
|
|
3867
|
+
"upload_file": 0xe9fc,
|
|
3868
|
+
"uppercase": 0xf488,
|
|
3869
|
+
"urology": 0xe137,
|
|
3870
|
+
"usb": 0xe1e0,
|
|
3871
|
+
"usb_off": 0xe4fa,
|
|
3872
|
+
"user_attributes": 0xe708,
|
|
3873
|
+
"vaccines": 0xe138,
|
|
3874
|
+
"vacuum": 0xefc5,
|
|
3875
|
+
"valve": 0xe224,
|
|
3876
|
+
"vape_free": 0xebc6,
|
|
3877
|
+
"vaping_rooms": 0xebcf,
|
|
3878
|
+
"variable_add": 0xf51e,
|
|
3879
|
+
"variable_insert": 0xf51d,
|
|
3880
|
+
"variable_remove": 0xf51c,
|
|
3881
|
+
"variables": 0xf851,
|
|
3882
|
+
"ventilator": 0xe139,
|
|
3883
|
+
"verified": 0xef76,
|
|
3884
|
+
"verified_off": 0xf30e,
|
|
3885
|
+
"verified_user": 0xf013,
|
|
3886
|
+
"vertical_align_bottom": 0xe258,
|
|
3887
|
+
"vertical_align_center": 0xe259,
|
|
3888
|
+
"vertical_align_top": 0xe25a,
|
|
3889
|
+
"vertical_distribute": 0xe076,
|
|
3890
|
+
"vertical_shades": 0xec0e,
|
|
3891
|
+
"vertical_shades_closed": 0xec0d,
|
|
3892
|
+
"vertical_split": 0xe949,
|
|
3893
|
+
"vibration": 0xf2cb,
|
|
3894
|
+
"video_call": 0xe070,
|
|
3895
|
+
"video_camera_back": 0xf07f,
|
|
3896
|
+
"video_camera_back_add": 0xf40c,
|
|
3897
|
+
"video_camera_front": 0xf080,
|
|
3898
|
+
"video_camera_front_off": 0xf83b,
|
|
3899
|
+
"video_chat": 0xf8a0,
|
|
3900
|
+
"video_file": 0xeb87,
|
|
3901
|
+
"video_label": 0xe071,
|
|
3902
|
+
"video_library": 0xe04a,
|
|
3903
|
+
"video_search": 0xefc6,
|
|
3904
|
+
"video_settings": 0xea75,
|
|
3905
|
+
"video_stable": 0xf081,
|
|
3906
|
+
"videocam": 0xe04b,
|
|
3907
|
+
"videocam_alert": 0xf390,
|
|
3908
|
+
"videocam_off": 0xe04c,
|
|
3909
|
+
"videogame_asset": 0xe338,
|
|
3910
|
+
"videogame_asset_off": 0xe500,
|
|
3911
|
+
"view_agenda": 0xe8e9,
|
|
3912
|
+
"view_apps": 0xf376,
|
|
3913
|
+
"view_array": 0xe8ea,
|
|
3914
|
+
"view_carousel": 0xe8eb,
|
|
3915
|
+
"view_column": 0xe8ec,
|
|
3916
|
+
"view_column_2": 0xf847,
|
|
3917
|
+
"view_comfy": 0xe42a,
|
|
3918
|
+
"view_comfy_alt": 0xeb73,
|
|
3919
|
+
"view_compact": 0xe42b,
|
|
3920
|
+
"view_compact_alt": 0xeb74,
|
|
3921
|
+
"view_cozy": 0xeb75,
|
|
3922
|
+
"view_day": 0xe8ed,
|
|
3923
|
+
"view_headline": 0xe8ee,
|
|
3924
|
+
"view_in_ar": 0xefc9,
|
|
3925
|
+
"view_in_ar_new": 0xefc9,
|
|
3926
|
+
"view_in_ar_off": 0xf61b,
|
|
3927
|
+
"view_kanban": 0xeb7f,
|
|
3928
|
+
"view_list": 0xe8ef,
|
|
3929
|
+
"view_module": 0xe8f0,
|
|
3930
|
+
"view_object_track": 0xf432,
|
|
3931
|
+
"view_quilt": 0xe8f1,
|
|
3932
|
+
"view_real_size": 0xf4c2,
|
|
3933
|
+
"view_sidebar": 0xf114,
|
|
3934
|
+
"view_stream": 0xe8f2,
|
|
3935
|
+
"view_timeline": 0xeb85,
|
|
3936
|
+
"view_week": 0xe8f3,
|
|
3937
|
+
"vignette": 0xe435,
|
|
3938
|
+
"vignette_2": 0xf2b3,
|
|
3939
|
+
"villa": 0xe586,
|
|
3940
|
+
"visibility": 0xe8f4,
|
|
3941
|
+
"visibility_lock": 0xf653,
|
|
3942
|
+
"visibility_off": 0xe8f5,
|
|
3943
|
+
"vital_signs": 0xe650,
|
|
3944
|
+
"vitals": 0xe13b,
|
|
3945
|
+
"vo2_max": 0xf4aa,
|
|
3946
|
+
"voice_chat": 0xe62e,
|
|
3947
|
+
"voice_over_off": 0xe94a,
|
|
3948
|
+
"voice_selection": 0xf58a,
|
|
3949
|
+
"voice_selection_off": 0xf42c,
|
|
3950
|
+
"voicemail": 0xe0d9,
|
|
3951
|
+
"voicemail_2": 0xf352,
|
|
3952
|
+
"volcano": 0xebda,
|
|
3953
|
+
"volume_down": 0xe04d,
|
|
3954
|
+
"volume_down_alt": 0xe79c,
|
|
3955
|
+
"volume_mute": 0xe04e,
|
|
3956
|
+
"volume_off": 0xe04f,
|
|
3957
|
+
"volume_up": 0xe050,
|
|
3958
|
+
"volunteer_activism": 0xea70,
|
|
3959
|
+
"voting_chip": 0xf852,
|
|
3960
|
+
"vpn_key": 0xe0da,
|
|
3961
|
+
"vpn_key_alert": 0xf6cc,
|
|
3962
|
+
"vpn_key_off": 0xeb7a,
|
|
3963
|
+
"vpn_lock": 0xe62f,
|
|
3964
|
+
"vpn_lock_2": 0xf350,
|
|
3965
|
+
"vr180_create2d": 0xefca,
|
|
3966
|
+
"vr180_create2d_off": 0xf571,
|
|
3967
|
+
"vrpano": 0xf082,
|
|
3968
|
+
"wall_art": 0xefcb,
|
|
3969
|
+
"wall_lamp": 0xe2b4,
|
|
3970
|
+
"wallet": 0xf8ff,
|
|
3971
|
+
"wallpaper": 0xe1bc,
|
|
3972
|
+
"wallpaper_slideshow": 0xf672,
|
|
3973
|
+
"wand_shine": 0xf31f,
|
|
3974
|
+
"wand_stars": 0xf31e,
|
|
3975
|
+
"ward": 0xe13c,
|
|
3976
|
+
"warehouse": 0xebb8,
|
|
3977
|
+
"warning": 0xf083,
|
|
3978
|
+
"warning_amber": 0xf083,
|
|
3979
|
+
"warning_off": 0xf7ad,
|
|
3980
|
+
"wash": 0xf1b1,
|
|
3981
|
+
"washoku": 0xf280,
|
|
3982
|
+
"watch": 0xe334,
|
|
3983
|
+
"watch_arrow": 0xf2ca,
|
|
3984
|
+
"watch_button_press": 0xf6aa,
|
|
3985
|
+
"watch_check": 0xf468,
|
|
3986
|
+
"watch_later": 0xefd6,
|
|
3987
|
+
"watch_off": 0xeae3,
|
|
3988
|
+
"watch_screentime": 0xf6ae,
|
|
3989
|
+
"watch_vibration": 0xf467,
|
|
3990
|
+
"watch_wake": 0xf6a9,
|
|
3991
|
+
"water": 0xf084,
|
|
3992
|
+
"water_bottle": 0xf69d,
|
|
3993
|
+
"water_bottle_large": 0xf69e,
|
|
3994
|
+
"water_damage": 0xf203,
|
|
3995
|
+
"water_do": 0xf870,
|
|
3996
|
+
"water_drop": 0xe798,
|
|
3997
|
+
"water_ec": 0xf875,
|
|
3998
|
+
"water_full": 0xf6d6,
|
|
3999
|
+
"water_heater": 0xe284,
|
|
4000
|
+
"water_lock": 0xf6ad,
|
|
4001
|
+
"water_loss": 0xf6d5,
|
|
4002
|
+
"water_lux": 0xf874,
|
|
4003
|
+
"water_medium": 0xf6d4,
|
|
4004
|
+
"water_orp": 0xf878,
|
|
4005
|
+
"water_ph": 0xf87a,
|
|
4006
|
+
"water_pump": 0xf5d8,
|
|
4007
|
+
"water_voc": 0xf87b,
|
|
4008
|
+
"waterfall_chart": 0xea00,
|
|
4009
|
+
"waves": 0xe176,
|
|
4010
|
+
"waving_hand": 0xe766,
|
|
4011
|
+
"wb_auto": 0xe42c,
|
|
4012
|
+
"wb_cloudy": 0xf15c,
|
|
4013
|
+
"wb_incandescent": 0xe42e,
|
|
4014
|
+
"wb_iridescent": 0xf07d,
|
|
4015
|
+
"wb_shade": 0xea01,
|
|
4016
|
+
"wb_sunny": 0xe430,
|
|
4017
|
+
"wb_twilight": 0xe1c6,
|
|
4018
|
+
"wc": 0xe63d,
|
|
4019
|
+
"weather_hail": 0xf67f,
|
|
4020
|
+
"weather_mix": 0xf60b,
|
|
4021
|
+
"weather_snowy": 0xe2cd,
|
|
4022
|
+
"web": 0xe051,
|
|
4023
|
+
"web_asset": 0xe069,
|
|
4024
|
+
"web_asset_off": 0xef47,
|
|
4025
|
+
"web_stories": 0xe595,
|
|
4026
|
+
"web_traffic": 0xea03,
|
|
4027
|
+
"webhook": 0xeb92,
|
|
4028
|
+
"weekend": 0xe16b,
|
|
4029
|
+
"weight": 0xe13d,
|
|
4030
|
+
"west": 0xf1e6,
|
|
4031
|
+
"whatshot": 0xe80e,
|
|
4032
|
+
"wheelchair_pickup": 0xf1ab,
|
|
4033
|
+
"where_to_vote": 0xe177,
|
|
4034
|
+
"widget_medium": 0xf3ba,
|
|
4035
|
+
"widget_small": 0xf3b9,
|
|
4036
|
+
"widget_width": 0xf3b8,
|
|
4037
|
+
"widgets": 0xe1bd,
|
|
4038
|
+
"width": 0xf730,
|
|
4039
|
+
"width_full": 0xf8f5,
|
|
4040
|
+
"width_normal": 0xf8f6,
|
|
4041
|
+
"width_wide": 0xf8f7,
|
|
4042
|
+
"wifi": 0xe63e,
|
|
4043
|
+
"wifi_1_bar": 0xe4ca,
|
|
4044
|
+
"wifi_2_bar": 0xe4d9,
|
|
4045
|
+
"wifi_add": 0xf7a8,
|
|
4046
|
+
"wifi_calling": 0xef77,
|
|
4047
|
+
"wifi_calling_1": 0xf0e7,
|
|
4048
|
+
"wifi_calling_2": 0xf0f6,
|
|
4049
|
+
"wifi_calling_3": 0xf0e7,
|
|
4050
|
+
"wifi_calling_bar_1": 0xf44c,
|
|
4051
|
+
"wifi_calling_bar_2": 0xf44b,
|
|
4052
|
+
"wifi_calling_bar_3": 0xf44a,
|
|
4053
|
+
"wifi_channel": 0xeb6a,
|
|
4054
|
+
"wifi_find": 0xeb31,
|
|
4055
|
+
"wifi_home": 0xf671,
|
|
4056
|
+
"wifi_lock": 0xe1e1,
|
|
4057
|
+
"wifi_notification": 0xf670,
|
|
4058
|
+
"wifi_off": 0xe648,
|
|
4059
|
+
"wifi_password": 0xeb6b,
|
|
4060
|
+
"wifi_protected_setup": 0xf0fc,
|
|
4061
|
+
"wifi_proxy": 0xf7a7,
|
|
4062
|
+
"wifi_tethering": 0xe1e2,
|
|
4063
|
+
"wifi_tethering_error": 0xead9,
|
|
4064
|
+
"wifi_tethering_off": 0xf087,
|
|
4065
|
+
"wind_power": 0xec0c,
|
|
4066
|
+
"window": 0xf088,
|
|
4067
|
+
"window_closed": 0xe77e,
|
|
4068
|
+
"window_open": 0xe78c,
|
|
4069
|
+
"window_sensor": 0xe2bb,
|
|
4070
|
+
"windshield_defrost_auto": 0xf248,
|
|
4071
|
+
"windshield_defrost_front": 0xf32a,
|
|
4072
|
+
"windshield_defrost_rear": 0xf329,
|
|
4073
|
+
"windshield_heat_front": 0xf328,
|
|
4074
|
+
"wine_bar": 0xf1e8,
|
|
4075
|
+
"woman": 0xe13e,
|
|
4076
|
+
"woman_2": 0xf8e7,
|
|
4077
|
+
"work": 0xe943,
|
|
4078
|
+
"work_alert": 0xf5f7,
|
|
4079
|
+
"work_history": 0xec09,
|
|
4080
|
+
"work_off": 0xe942,
|
|
4081
|
+
"work_outline": 0xe943,
|
|
4082
|
+
"work_update": 0xf5f8,
|
|
4083
|
+
"workflow": 0xea04,
|
|
4084
|
+
"workspace_premium": 0xe7af,
|
|
4085
|
+
"workspaces": 0xea0f,
|
|
4086
|
+
"workspaces_outline": 0xea0f,
|
|
4087
|
+
"wounds_injuries": 0xe13f,
|
|
4088
|
+
"wrap_text": 0xe25b,
|
|
4089
|
+
"wrist": 0xf69c,
|
|
4090
|
+
"wrong_location": 0xef78,
|
|
4091
|
+
"wysiwyg": 0xf1c3,
|
|
4092
|
+
"yakitori": 0xef31,
|
|
4093
|
+
"yard": 0xf089,
|
|
4094
|
+
"yoshoku": 0xf27f,
|
|
4095
|
+
"your_trips": 0xeb2b,
|
|
4096
|
+
"youtube_activity": 0xf85a,
|
|
4097
|
+
"youtube_searched_for": 0xe8fa,
|
|
4098
|
+
"zone_person_alert": 0xe781,
|
|
4099
|
+
"zone_person_idle": 0xe77a,
|
|
4100
|
+
"zone_person_urgent": 0xe788,
|
|
4101
|
+
"zoom_in": 0xe8ff,
|
|
4102
|
+
"zoom_in_map": 0xeb2d,
|
|
4103
|
+
"zoom_out": 0xe900,
|
|
4104
|
+
"zoom_out_map": 0xe56b,
|
|
4105
|
+
} as const;
|
|
4106
|
+
|
|
4107
|
+
export type GlyphName = keyof typeof glyphMap;
|