@zcomponent/core 1.29.0 → 2.0.0-alpha.2

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.
Files changed (168) hide show
  1. package/README.md +1 -0
  2. package/css/zcomponent.css +121 -122
  3. package/index.js +0 -3
  4. package/lib/actionbehavior.d.ts +3 -3
  5. package/lib/actionbehavior.js +20 -19
  6. package/lib/animation/animation.d.ts +13 -6
  7. package/lib/animation/animation.js +56 -43
  8. package/lib/animation/bezier.d.ts +6 -0
  9. package/lib/animation/bezier.js +8 -2
  10. package/lib/animation/clips/clip.d.ts +13 -1
  11. package/lib/animation/clips/clip.js +34 -14
  12. package/lib/animation/index.d.ts +4 -4
  13. package/lib/animation/index.js +4 -4
  14. package/lib/animation/layer.d.ts +9 -0
  15. package/lib/animation/layer.js +28 -12
  16. package/lib/animation/layerclip.d.ts +21 -0
  17. package/lib/animation/layerclip.js +82 -45
  18. package/lib/animation/tracks/cliptrack.d.ts +18 -0
  19. package/lib/animation/tracks/cliptrack.js +27 -6
  20. package/lib/animation/tracks/functiontrack.d.ts +9 -0
  21. package/lib/animation/tracks/functiontrack.js +16 -3
  22. package/lib/animation/tracks/propertytrack.d.ts +20 -1
  23. package/lib/animation/tracks/propertytrack.js +48 -11
  24. package/lib/animation/tracks/streamtrack.d.ts +18 -0
  25. package/lib/animation/tracks/streamtrack.js +32 -6
  26. package/lib/animation/tracks/track.d.ts +8 -2
  27. package/lib/animation/tracks/track.js +3 -2
  28. package/lib/behavior.js +13 -10
  29. package/lib/behaviors/ActivateState.d.ts +22 -24
  30. package/lib/behaviors/ActivateState.js +145 -35
  31. package/lib/behaviors/CallFunction.d.ts +2 -4
  32. package/lib/behaviors/CallFunction.js +69 -11
  33. package/lib/behaviors/ChangeRootScene.d.ts +35 -0
  34. package/lib/behaviors/ChangeRootScene.js +123 -0
  35. package/lib/behaviors/ConsoleLog.d.ts +6 -5
  36. package/lib/behaviors/ConsoleLog.js +95 -12
  37. package/lib/behaviors/DownloadSnapshot.d.ts +7 -12
  38. package/lib/behaviors/DownloadSnapshot.js +70 -19
  39. package/lib/behaviors/EmitComponentPropEvent.d.ts +1 -3
  40. package/lib/behaviors/EmitComponentPropEvent.js +80 -12
  41. package/lib/behaviors/LaunchURL.d.ts +5 -5
  42. package/lib/behaviors/LaunchURL.js +92 -10
  43. package/lib/behaviors/LogAnalyticsEvent.d.ts +10 -4
  44. package/lib/behaviors/LogAnalyticsEvent.js +88 -7
  45. package/lib/behaviors/PauseLayerClip.d.ts +7 -9
  46. package/lib/behaviors/PauseLayerClip.js +89 -21
  47. package/lib/behaviors/PlayLayerClip.d.ts +35 -32
  48. package/lib/behaviors/PlayLayerClip.js +202 -48
  49. package/lib/behaviors/PlaySound.d.ts +19 -25
  50. package/lib/behaviors/PlaySound.js +122 -28
  51. package/lib/behaviors/SetLayerOff.d.ts +7 -9
  52. package/lib/behaviors/SetLayerOff.js +88 -21
  53. package/lib/behaviors/ShareSnapshot.d.ts +5 -9
  54. package/lib/behaviors/ShareSnapshot.js +70 -17
  55. package/lib/behaviors/ShowTextAlert.d.ts +16 -29
  56. package/lib/behaviors/ShowTextAlert.js +116 -48
  57. package/lib/behaviors/TakeSnapshot.d.ts +22 -26
  58. package/lib/behaviors/TakeSnapshot.js +131 -56
  59. package/lib/behaviors/ToggleLayerClips.d.ts +45 -62
  60. package/lib/behaviors/ToggleLayerClips.js +233 -64
  61. package/lib/behaviors/stream/PauseStream.d.ts +5 -16
  62. package/lib/behaviors/stream/PauseStream.js +94 -34
  63. package/lib/behaviors/stream/PlayStream.d.ts +14 -27
  64. package/lib/behaviors/stream/PlayStream.js +123 -34
  65. package/lib/behaviors/stream/SeekStream.d.ts +8 -18
  66. package/lib/behaviors/stream/SeekStream.js +97 -31
  67. package/lib/behaviors/stream/StopStream.d.ts +6 -15
  68. package/lib/behaviors/stream/StopStream.js +89 -27
  69. package/lib/component.d.ts +36 -13
  70. package/lib/component.js +237 -151
  71. package/lib/components/AnimatedLoader.d.ts +51 -0
  72. package/lib/components/AnimatedLoader.js +159 -0
  73. package/lib/components/Audio.d.ts +35 -37
  74. package/lib/components/Audio.js +264 -151
  75. package/lib/components/AudioLayerSettings.d.ts +13 -11
  76. package/lib/components/AudioLayerSettings.js +76 -18
  77. package/lib/components/Children.d.ts +2 -1
  78. package/lib/components/Children.js +66 -13
  79. package/lib/components/ConditionalConstruct.d.ts +44 -0
  80. package/lib/components/ConditionalConstruct.js +142 -0
  81. package/lib/components/DefaultCookieConsent.d.ts +53 -73
  82. package/lib/components/DefaultCookieConsent.js +382 -264
  83. package/lib/components/DefaultLoader.d.ts +40 -28
  84. package/lib/components/DefaultLoader.js +198 -46
  85. package/lib/components/Gamepad.d.ts +5 -26
  86. package/lib/components/Gamepad.js +201 -65
  87. package/lib/components/LoaderScope.d.ts +15 -0
  88. package/lib/components/LoaderScope.js +71 -0
  89. package/lib/components/LongLoad.d.ts +11 -15
  90. package/lib/components/LongLoad.js +89 -34
  91. package/lib/components/SnapshotUI.d.ts +19 -24
  92. package/lib/components/SnapshotUI.js +202 -105
  93. package/lib/context.d.ts +23 -5
  94. package/lib/context.js +12 -6
  95. package/lib/contexts/analyticscontext.d.ts +12 -2
  96. package/lib/contexts/analyticscontext.js +68 -10
  97. package/lib/contexts/audiocontextcontext.d.ts +1 -1
  98. package/lib/contexts/audiocontextcontext.js +9 -8
  99. package/lib/contexts/canvascontext.d.ts +32 -18
  100. package/lib/contexts/canvascontext.js +195 -120
  101. package/lib/contexts/cookieconsentcontext.d.ts +38 -28
  102. package/lib/contexts/cookieconsentcontext.js +35 -32
  103. package/lib/contexts/documentflagmanager.js +15 -11
  104. package/lib/contexts/environmentcontext.d.ts +22 -6
  105. package/lib/contexts/environmentcontext.js +135 -21
  106. package/lib/contexts/gamepadcontext.d.ts +29 -26
  107. package/lib/contexts/gamepadcontext.js +46 -46
  108. package/lib/contexts/gesturecontext.d.ts +31 -6
  109. package/lib/contexts/gesturecontext.js +110 -85
  110. package/lib/contexts/globaltagcontext.d.ts +1 -1
  111. package/lib/contexts/globaltagcontext.js +8 -11
  112. package/lib/contexts/loadcontext.d.ts +45 -8
  113. package/lib/contexts/loadcontext.js +232 -82
  114. package/lib/contexts/orientationcontext.d.ts +13 -15
  115. package/lib/contexts/orientationcontext.js +150 -67
  116. package/lib/contexts/rootcomponentscontext.d.ts +16 -0
  117. package/lib/contexts/rootcomponentscontext.js +65 -0
  118. package/lib/contexts/snapshotContext.d.ts +0 -3
  119. package/lib/contexts/snapshotContext.js +78 -23
  120. package/lib/contexts/tagcontext.d.ts +5 -5
  121. package/lib/contexts/tagcontext.js +16 -16
  122. package/lib/contexts/textalertcontext.d.ts +1 -5
  123. package/lib/contexts/textalertcontext.js +1 -5
  124. package/lib/contexts/usereventcontext.d.ts +1 -1
  125. package/lib/contexts/usereventcontext.js +12 -12
  126. package/lib/data/animation.d.ts +10 -2
  127. package/lib/data/change.d.ts +1 -1
  128. package/lib/data/change.js +7 -0
  129. package/lib/data/core.d.ts +9 -1
  130. package/lib/data/index.d.ts +1 -1
  131. package/lib/data/index.js +1 -1
  132. package/lib/decorators.d.ts +348 -0
  133. package/lib/decorators.js +239 -0
  134. package/lib/decoratorutils.d.ts +3 -0
  135. package/lib/decoratorutils.js +8 -0
  136. package/lib/emitter.d.ts +15 -2
  137. package/lib/emitter.js +15 -6
  138. package/lib/entity.d.ts +43 -25
  139. package/lib/entity.js +104 -71
  140. package/lib/event.d.ts +2 -1
  141. package/lib/event.js +1 -4
  142. package/lib/groups.d.ts +18 -0
  143. package/lib/groups.js +19 -0
  144. package/lib/icons.d.ts +3372 -0
  145. package/lib/icons.js +1 -0
  146. package/lib/index.d.ts +18 -13
  147. package/lib/index.js +17 -13
  148. package/lib/inflate.d.ts +7 -7
  149. package/lib/inflate.js +5 -5
  150. package/lib/observable.d.ts +9 -2
  151. package/lib/observable.js +5 -4
  152. package/lib/observe.d.ts +18 -0
  153. package/lib/observe.js +177 -0
  154. package/lib/profile.d.ts +9 -5
  155. package/lib/profile.js +27 -17
  156. package/lib/selectors.d.ts +1 -1
  157. package/lib/selectors.js +5 -4
  158. package/lib/types.d.ts +161 -19
  159. package/lib/types.js +22 -1
  160. package/lib/values/values.d.ts +7 -8
  161. package/lib/values/values.js +1 -2
  162. package/lib/values/valuesmutator.d.ts +4 -1
  163. package/lib/values/valuesmutator.js +10 -8
  164. package/lib/zcomponent.d.ts +21 -10
  165. package/lib/zcomponent.js +717 -540
  166. package/package.json +22 -5
  167. package/lib/behaviors/ChangeCursor.d.ts +0 -39
  168. package/lib/behaviors/ChangeCursor.js +0 -44
package/lib/icons.d.ts ADDED
@@ -0,0 +1,3372 @@
1
+ type MaterialSymbols = [
2
+ '123',
3
+ '360',
4
+ '10k',
5
+ '10mp',
6
+ '11mp',
7
+ '12mp',
8
+ '13mp',
9
+ '14mp',
10
+ '15mp',
11
+ '16mp',
12
+ '17mp',
13
+ '18_up_rating',
14
+ '18mp',
15
+ '19mp',
16
+ '1k',
17
+ '1k_plus',
18
+ '1x_mobiledata',
19
+ '1x_mobiledata_badge',
20
+ '20mp',
21
+ '21mp',
22
+ '22mp',
23
+ '23mp',
24
+ '24fps_select',
25
+ '24mp',
26
+ '2d',
27
+ '2k',
28
+ '2k_plus',
29
+ '2mp',
30
+ '30fps',
31
+ '30fps_select',
32
+ '3d_rotation',
33
+ '3g_mobiledata',
34
+ '3g_mobiledata_badge',
35
+ '3k',
36
+ '3k_plus',
37
+ '3mp',
38
+ '3p',
39
+ '4g_mobiledata',
40
+ '4g_mobiledata_badge',
41
+ '4g_plus_mobiledata',
42
+ '4k',
43
+ '4k_plus',
44
+ '4mp',
45
+ '50mp',
46
+ '5g',
47
+ '5g_mobiledata_badge',
48
+ '5k',
49
+ '5k_plus',
50
+ '5mp',
51
+ '60fps',
52
+ '60fps_select',
53
+ '6_ft_apart',
54
+ '6k',
55
+ '6k_plus',
56
+ '6mp',
57
+ '7k',
58
+ '7k_plus',
59
+ '7mp',
60
+ '8k',
61
+ '8k_plus',
62
+ '8mp',
63
+ '9k',
64
+ '9k_plus',
65
+ '9mp',
66
+ 'abc',
67
+ 'ac_unit',
68
+ 'accessibility',
69
+ 'accessibility_new',
70
+ 'accessible',
71
+ 'accessible_forward',
72
+ 'account_balance',
73
+ 'account_balance_wallet',
74
+ 'account_box',
75
+ 'account_child',
76
+ 'account_child_invert',
77
+ 'account_circle',
78
+ 'account_circle_off',
79
+ 'account_tree',
80
+ 'action_key',
81
+ 'activity_zone',
82
+ 'acute',
83
+ 'ad',
84
+ 'ad_group',
85
+ 'ad_group_off',
86
+ 'ad_off',
87
+ 'ad_units',
88
+ 'adaptive_audio_mic',
89
+ 'adaptive_audio_mic_off',
90
+ 'adb',
91
+ 'add',
92
+ 'add_a_photo',
93
+ 'add_ad',
94
+ 'add_alert',
95
+ 'add_box',
96
+ 'add_business',
97
+ 'add_call',
98
+ 'add_card',
99
+ 'add_chart',
100
+ 'add_circle',
101
+ 'add_column_left',
102
+ 'add_column_right',
103
+ 'add_comment',
104
+ 'add_diamond',
105
+ 'add_home',
106
+ 'add_home_work',
107
+ 'add_link',
108
+ 'add_location',
109
+ 'add_location_alt',
110
+ 'add_moderator',
111
+ 'add_notes',
112
+ 'add_photo_alternate',
113
+ 'add_reaction',
114
+ 'add_road',
115
+ 'add_row_above',
116
+ 'add_row_below',
117
+ 'add_shopping_cart',
118
+ 'add_task',
119
+ 'add_to_drive',
120
+ 'add_to_home_screen',
121
+ 'add_to_photos',
122
+ 'add_to_queue',
123
+ 'add_triangle',
124
+ 'adf_scanner',
125
+ 'adjust',
126
+ 'admin_meds',
127
+ 'admin_panel_settings',
128
+ 'ads_click',
129
+ 'agender',
130
+ 'agriculture',
131
+ 'air',
132
+ 'air_freshener',
133
+ 'air_purifier',
134
+ 'air_purifier_gen',
135
+ 'airline_seat_flat',
136
+ 'airline_seat_flat_angled',
137
+ 'airline_seat_individual_suite',
138
+ 'airline_seat_legroom_extra',
139
+ 'airline_seat_legroom_normal',
140
+ 'airline_seat_legroom_reduced',
141
+ 'airline_seat_recline_extra',
142
+ 'airline_seat_recline_normal',
143
+ 'airline_stops',
144
+ 'airlines',
145
+ 'airplane_ticket',
146
+ 'airplanemode_inactive',
147
+ 'airplay',
148
+ 'airport_shuttle',
149
+ 'airware',
150
+ 'airwave',
151
+ 'alarm',
152
+ 'alarm_add',
153
+ 'alarm_off',
154
+ 'alarm_on',
155
+ 'alarm_smart_wake',
156
+ 'album',
157
+ 'align_center',
158
+ 'align_end',
159
+ 'align_flex_center',
160
+ 'align_flex_end',
161
+ 'align_flex_start',
162
+ 'align_horizontal_center',
163
+ 'align_horizontal_left',
164
+ 'align_horizontal_right',
165
+ 'align_items_stretch',
166
+ 'align_justify_center',
167
+ 'align_justify_flex_end',
168
+ 'align_justify_flex_start',
169
+ 'align_justify_space_around',
170
+ 'align_justify_space_between',
171
+ 'align_justify_space_even',
172
+ 'align_justify_stretch',
173
+ 'align_self_stretch',
174
+ 'align_space_around',
175
+ 'align_space_between',
176
+ 'align_space_even',
177
+ 'align_start',
178
+ 'align_stretch',
179
+ 'align_vertical_bottom',
180
+ 'align_vertical_center',
181
+ 'align_vertical_top',
182
+ 'all_inbox',
183
+ 'all_inclusive',
184
+ 'all_match',
185
+ 'all_out',
186
+ 'allergies',
187
+ 'allergy',
188
+ 'alt_route',
189
+ 'alternate_email',
190
+ 'altitude',
191
+ 'ambulance',
192
+ 'amend',
193
+ 'amp_stories',
194
+ 'analytics',
195
+ 'anchor',
196
+ 'android',
197
+ 'animated_images',
198
+ 'animation',
199
+ 'aod',
200
+ 'aod_tablet',
201
+ 'aod_watch',
202
+ 'apartment',
203
+ 'api',
204
+ 'apk_document',
205
+ 'apk_install',
206
+ 'app_badging',
207
+ 'app_blocking',
208
+ 'app_promo',
209
+ 'app_registration',
210
+ 'app_shortcut',
211
+ 'apparel',
212
+ 'approval',
213
+ 'approval_delegation',
214
+ 'apps',
215
+ 'apps_outage',
216
+ 'aq',
217
+ 'aq_indoor',
218
+ 'ar_on_you',
219
+ 'ar_stickers',
220
+ 'architecture',
221
+ 'archive',
222
+ 'area_chart',
223
+ 'arming_countdown',
224
+ 'arrow_and_edge',
225
+ 'arrow_back',
226
+ 'arrow_back_2',
227
+ 'arrow_back_ios',
228
+ 'arrow_back_ios_new',
229
+ 'arrow_circle_down',
230
+ 'arrow_circle_left',
231
+ 'arrow_circle_right',
232
+ 'arrow_circle_up',
233
+ 'arrow_cool_down',
234
+ 'arrow_downward',
235
+ 'arrow_downward_alt',
236
+ 'arrow_drop_down',
237
+ 'arrow_drop_down_circle',
238
+ 'arrow_drop_up',
239
+ 'arrow_forward',
240
+ 'arrow_forward_ios',
241
+ 'arrow_insert',
242
+ 'arrow_left',
243
+ 'arrow_left_alt',
244
+ 'arrow_or_edge',
245
+ 'arrow_outward',
246
+ 'arrow_range',
247
+ 'arrow_right',
248
+ 'arrow_right_alt',
249
+ 'arrow_selector_tool',
250
+ 'arrow_split',
251
+ 'arrow_top_left',
252
+ 'arrow_top_right',
253
+ 'arrow_upload_progress',
254
+ 'arrow_upload_ready',
255
+ 'arrow_upward',
256
+ 'arrow_upward_alt',
257
+ 'arrow_warm_up',
258
+ 'arrows_more_down',
259
+ 'arrows_more_up',
260
+ 'arrows_outward',
261
+ 'art_track',
262
+ 'article',
263
+ 'article_shortcut',
264
+ 'artist',
265
+ 'aspect_ratio',
266
+ 'assignment',
267
+ 'assignment_add',
268
+ 'assignment_ind',
269
+ 'assignment_late',
270
+ 'assignment_return',
271
+ 'assignment_returned',
272
+ 'assignment_turned_in',
273
+ 'assist_walker',
274
+ 'assistant_device',
275
+ 'assistant_direction',
276
+ 'assistant_navigation',
277
+ 'assistant_on_hub',
278
+ 'assured_workload',
279
+ 'asterisk',
280
+ 'atm',
281
+ 'atr',
282
+ 'attach_email',
283
+ 'attach_file',
284
+ 'attach_file_add',
285
+ 'attach_file_off',
286
+ 'attach_money',
287
+ 'attachment',
288
+ 'attractions',
289
+ 'attribution',
290
+ 'audio_description',
291
+ 'audio_file',
292
+ 'audio_video_receiver',
293
+ 'auto_awesome_mosaic',
294
+ 'auto_awesome_motion',
295
+ 'auto_delete',
296
+ 'auto_read_pause',
297
+ 'auto_read_play',
298
+ 'auto_stories',
299
+ 'auto_towing',
300
+ 'auto_transmission',
301
+ 'autofps_select',
302
+ 'automation',
303
+ 'autopause',
304
+ 'autoplay',
305
+ 'autorenew',
306
+ 'autostop',
307
+ 'av1',
308
+ 'av_timer',
309
+ 'avc',
310
+ 'avg_pace',
311
+ 'avg_time',
312
+ 'award_star',
313
+ 'azm',
314
+ 'baby_changing_station',
315
+ 'back_hand',
316
+ 'back_to_tab',
317
+ 'background_dot_large',
318
+ 'background_dot_small',
319
+ 'background_grid_small',
320
+ 'background_replace',
321
+ 'backlight_high',
322
+ 'backlight_high_off',
323
+ 'backlight_low',
324
+ 'backpack',
325
+ 'backspace',
326
+ 'backup',
327
+ 'backup_table',
328
+ 'badge',
329
+ 'badge_critical_battery',
330
+ 'bakery_dining',
331
+ 'balance',
332
+ 'balcony',
333
+ 'ballot',
334
+ 'bar_chart',
335
+ 'bar_chart_4_bars',
336
+ 'bar_chart_off',
337
+ 'barcode',
338
+ 'barcode_reader',
339
+ 'barcode_scanner',
340
+ 'barefoot',
341
+ 'batch_prediction',
342
+ 'bath_outdoor',
343
+ 'bath_private',
344
+ 'bath_public_large',
345
+ 'bathroom',
346
+ 'bathtub',
347
+ 'battery_0_bar',
348
+ 'battery_1_bar',
349
+ 'battery_2_bar',
350
+ 'battery_3_bar',
351
+ 'battery_4_bar',
352
+ 'battery_5_bar',
353
+ 'battery_6_bar',
354
+ 'battery_alert',
355
+ 'battery_change',
356
+ 'battery_charging_20',
357
+ 'battery_charging_30',
358
+ 'battery_charging_50',
359
+ 'battery_charging_60',
360
+ 'battery_charging_80',
361
+ 'battery_charging_90',
362
+ 'battery_charging_full',
363
+ 'battery_error',
364
+ 'battery_full',
365
+ 'battery_full_alt',
366
+ 'battery_horiz_000',
367
+ 'battery_horiz_050',
368
+ 'battery_horiz_075',
369
+ 'battery_low',
370
+ 'battery_plus',
371
+ 'battery_profile',
372
+ 'battery_saver',
373
+ 'battery_share',
374
+ 'battery_status_good',
375
+ 'battery_unknown',
376
+ 'battery_very_low',
377
+ 'beach_access',
378
+ 'bed',
379
+ 'bedroom_baby',
380
+ 'bedroom_child',
381
+ 'bedroom_parent',
382
+ 'bedtime',
383
+ 'bedtime_off',
384
+ 'beenhere',
385
+ 'bento',
386
+ 'bia',
387
+ 'bid_landscape',
388
+ 'bid_landscape_disabled',
389
+ 'bigtop_updates',
390
+ 'bike_dock',
391
+ 'bike_lane',
392
+ 'bike_scooter',
393
+ 'biotech',
394
+ 'blanket',
395
+ 'blender',
396
+ 'blind',
397
+ 'blinds',
398
+ 'blinds_closed',
399
+ 'block',
400
+ 'blood_pressure',
401
+ 'bloodtype',
402
+ 'bluetooth',
403
+ 'bluetooth_connected',
404
+ 'bluetooth_disabled',
405
+ 'bluetooth_drive',
406
+ 'bluetooth_searching',
407
+ 'blur_circular',
408
+ 'blur_linear',
409
+ 'blur_medium',
410
+ 'blur_off',
411
+ 'blur_on',
412
+ 'blur_short',
413
+ 'body_fat',
414
+ 'body_system',
415
+ 'bolt',
416
+ 'bomb',
417
+ 'book',
418
+ 'book_2',
419
+ 'book_3',
420
+ 'book_4',
421
+ 'book_5',
422
+ 'book_online',
423
+ 'bookmark',
424
+ 'bookmark_add',
425
+ 'bookmark_added',
426
+ 'bookmark_bag',
427
+ 'bookmark_check',
428
+ 'bookmark_flag',
429
+ 'bookmark_heart',
430
+ 'bookmark_manager',
431
+ 'bookmark_remove',
432
+ 'bookmark_star',
433
+ 'bookmarks',
434
+ 'border_all',
435
+ 'border_bottom',
436
+ 'border_clear',
437
+ 'border_color',
438
+ 'border_horizontal',
439
+ 'border_inner',
440
+ 'border_left',
441
+ 'border_outer',
442
+ 'border_right',
443
+ 'border_style',
444
+ 'border_top',
445
+ 'border_vertical',
446
+ 'borg',
447
+ 'bottom_app_bar',
448
+ 'bottom_drawer',
449
+ 'bottom_navigation',
450
+ 'bottom_panel_close',
451
+ 'bottom_panel_open',
452
+ 'bottom_right_click',
453
+ 'bottom_sheets',
454
+ 'box',
455
+ 'box_add',
456
+ 'box_edit',
457
+ 'boy',
458
+ 'brand_awareness',
459
+ 'brand_family',
460
+ 'branding_watermark',
461
+ 'breakfast_dining',
462
+ 'breaking_news',
463
+ 'breaking_news_alt_1',
464
+ 'breastfeeding',
465
+ 'brightness_1',
466
+ 'brightness_2',
467
+ 'brightness_3',
468
+ 'brightness_4',
469
+ 'brightness_5',
470
+ 'brightness_6',
471
+ 'brightness_7',
472
+ 'brightness_alert',
473
+ 'brightness_auto',
474
+ 'brightness_empty',
475
+ 'brightness_high',
476
+ 'brightness_low',
477
+ 'brightness_medium',
478
+ 'bring_your_own_ip',
479
+ 'broadcast_on_home',
480
+ 'broadcast_on_personal',
481
+ 'broken_image',
482
+ 'browse',
483
+ 'browse_activity',
484
+ 'browse_gallery',
485
+ 'browser_updated',
486
+ 'brunch_dining',
487
+ 'brush',
488
+ 'bubble',
489
+ 'bubble_chart',
490
+ 'bubbles',
491
+ 'bug_report',
492
+ 'build',
493
+ 'build_circle',
494
+ 'bungalow',
495
+ 'burst_mode',
496
+ 'bus_alert',
497
+ 'business_center',
498
+ 'business_chip',
499
+ 'business_messages',
500
+ 'buttons_alt',
501
+ 'cabin',
502
+ 'cable',
503
+ 'cable_car',
504
+ 'cached',
505
+ 'cadence',
506
+ 'cake',
507
+ 'cake_add',
508
+ 'calculate',
509
+ 'calendar_add_on',
510
+ 'calendar_apps_script',
511
+ 'calendar_clock',
512
+ 'calendar_month',
513
+ 'calendar_today',
514
+ 'calendar_view_day',
515
+ 'calendar_view_month',
516
+ 'calendar_view_week',
517
+ 'call',
518
+ 'call_end',
519
+ 'call_log',
520
+ 'call_made',
521
+ 'call_merge',
522
+ 'call_missed',
523
+ 'call_missed_outgoing',
524
+ 'call_quality',
525
+ 'call_received',
526
+ 'call_split',
527
+ 'call_to_action',
528
+ 'camera',
529
+ 'camera_front',
530
+ 'camera_indoor',
531
+ 'camera_outdoor',
532
+ 'camera_rear',
533
+ 'camera_roll',
534
+ 'camera_video',
535
+ 'cameraswitch',
536
+ 'campaign',
537
+ 'camping',
538
+ 'cancel',
539
+ 'cancel_presentation',
540
+ 'cancel_schedule_send',
541
+ 'candle',
542
+ 'candlestick_chart',
543
+ 'captive_portal',
544
+ 'capture',
545
+ 'car_crash',
546
+ 'car_rental',
547
+ 'car_repair',
548
+ 'car_tag',
549
+ 'card_membership',
550
+ 'card_travel',
551
+ 'cardio_load',
552
+ 'cardiology',
553
+ 'cards',
554
+ 'carpenter',
555
+ 'carry_on_bag',
556
+ 'carry_on_bag_checked',
557
+ 'carry_on_bag_inactive',
558
+ 'carry_on_bag_question',
559
+ 'cases',
560
+ 'casino',
561
+ 'cast',
562
+ 'cast_connected',
563
+ 'cast_for_education',
564
+ 'cast_pause',
565
+ 'cast_warning',
566
+ 'castle',
567
+ 'category',
568
+ 'category_search',
569
+ 'celebration',
570
+ 'cell_merge',
571
+ 'cell_tower',
572
+ 'cell_wifi',
573
+ 'center_focus_strong',
574
+ 'center_focus_weak',
575
+ 'chair',
576
+ 'chair_alt',
577
+ 'chalet',
578
+ 'change_circle',
579
+ 'change_history',
580
+ 'charger',
581
+ 'charging_station',
582
+ 'chart_data',
583
+ 'chat',
584
+ 'chat_add_on',
585
+ 'chat_apps_script',
586
+ 'chat_bubble',
587
+ 'chat_error',
588
+ 'chat_info',
589
+ 'chat_paste_go',
590
+ 'check',
591
+ 'check_box',
592
+ 'check_box_outline_blank',
593
+ 'check_circle',
594
+ 'check_in_out',
595
+ 'check_indeterminate_small',
596
+ 'check_small',
597
+ 'checkbook',
598
+ 'checked_bag',
599
+ 'checked_bag_question',
600
+ 'checklist',
601
+ 'checklist_rtl',
602
+ 'checkroom',
603
+ 'cheer',
604
+ 'chess',
605
+ 'chevron_backward',
606
+ 'chevron_forward',
607
+ 'chevron_left',
608
+ 'chevron_right',
609
+ 'child_care',
610
+ 'child_friendly',
611
+ 'chip_extraction',
612
+ 'chips',
613
+ 'chrome_reader_mode',
614
+ 'chromecast_2',
615
+ 'chromecast_device',
616
+ 'chronic',
617
+ 'church',
618
+ 'cinematic_blur',
619
+ 'circle',
620
+ 'circle_notifications',
621
+ 'circles',
622
+ 'circles_ext',
623
+ 'clarify',
624
+ 'clean_hands',
625
+ 'cleaning',
626
+ 'cleaning_bucket',
627
+ 'cleaning_services',
628
+ 'clear_all',
629
+ 'clear_day',
630
+ 'climate_mini_split',
631
+ 'clinical_notes',
632
+ 'clock_loader_10',
633
+ 'clock_loader_20',
634
+ 'clock_loader_40',
635
+ 'clock_loader_60',
636
+ 'clock_loader_80',
637
+ 'clock_loader_90',
638
+ 'close',
639
+ 'close_fullscreen',
640
+ 'close_small',
641
+ 'closed_caption',
642
+ 'closed_caption_add',
643
+ 'closed_caption_disabled',
644
+ 'cloud',
645
+ 'cloud_circle',
646
+ 'cloud_done',
647
+ 'cloud_download',
648
+ 'cloud_off',
649
+ 'cloud_sync',
650
+ 'cloud_upload',
651
+ 'cloudy_snowing',
652
+ 'co2',
653
+ 'co_present',
654
+ 'code',
655
+ 'code_blocks',
656
+ 'code_off',
657
+ 'coffee',
658
+ 'coffee_maker',
659
+ 'cognition',
660
+ 'collapse_all',
661
+ 'collapse_content',
662
+ 'collections_bookmark',
663
+ 'colorize',
664
+ 'colors',
665
+ 'combine_columns',
666
+ 'comedy_mask',
667
+ 'comic_bubble',
668
+ 'comment',
669
+ 'comment_bank',
670
+ 'comments_disabled',
671
+ 'commit',
672
+ 'communication',
673
+ 'communities',
674
+ 'commute',
675
+ 'compare',
676
+ 'compare_arrows',
677
+ 'compass_calibration',
678
+ 'component_exchange',
679
+ 'compost',
680
+ 'compress',
681
+ 'computer',
682
+ 'concierge',
683
+ 'conditions',
684
+ 'confirmation_number',
685
+ 'congenital',
686
+ 'connect_without_contact',
687
+ 'connected_tv',
688
+ 'connecting_airports',
689
+ 'construction',
690
+ 'contact_emergency',
691
+ 'contact_mail',
692
+ 'contact_page',
693
+ 'contact_phone',
694
+ 'contact_support',
695
+ 'contactless',
696
+ 'contactless_off',
697
+ 'contacts',
698
+ 'contacts_product',
699
+ 'content_copy',
700
+ 'content_cut',
701
+ 'content_paste',
702
+ 'content_paste_go',
703
+ 'content_paste_off',
704
+ 'content_paste_search',
705
+ 'contextual_token',
706
+ 'contextual_token_add',
707
+ 'contract',
708
+ 'contract_delete',
709
+ 'contract_edit',
710
+ 'contrast',
711
+ 'contrast_circle',
712
+ 'contrast_rtl_off',
713
+ 'contrast_square',
714
+ 'control_camera',
715
+ 'control_point_duplicate',
716
+ 'controller_gen',
717
+ 'conversion_path',
718
+ 'conversion_path_off',
719
+ 'convert_to_text',
720
+ 'conveyor_belt',
721
+ 'cookie',
722
+ 'cookie_off',
723
+ 'cooking',
724
+ 'cool_to_dry',
725
+ 'copy_all',
726
+ 'copyright',
727
+ 'coronavirus',
728
+ 'corporate_fare',
729
+ 'cottage',
730
+ 'counter_0',
731
+ 'counter_1',
732
+ 'counter_2',
733
+ 'counter_3',
734
+ 'counter_4',
735
+ 'counter_5',
736
+ 'counter_6',
737
+ 'counter_7',
738
+ 'counter_8',
739
+ 'counter_9',
740
+ 'countertops',
741
+ 'create_new_folder',
742
+ 'credit_card',
743
+ 'credit_card_clock',
744
+ 'credit_card_gear',
745
+ 'credit_card_heart',
746
+ 'credit_card_off',
747
+ 'credit_score',
748
+ 'crib',
749
+ 'crisis_alert',
750
+ 'crop',
751
+ 'crop_16_9',
752
+ 'crop_3_2',
753
+ 'crop_5_4',
754
+ 'crop_7_5',
755
+ 'crop_9_16',
756
+ 'crop_free',
757
+ 'crop_landscape',
758
+ 'crop_portrait',
759
+ 'crop_rotate',
760
+ 'crop_square',
761
+ 'crossword',
762
+ 'crowdsource',
763
+ 'cruelty_free',
764
+ 'css',
765
+ 'csv',
766
+ 'currency_bitcoin',
767
+ 'currency_exchange',
768
+ 'currency_franc',
769
+ 'currency_lira',
770
+ 'currency_pound',
771
+ 'currency_ruble',
772
+ 'currency_rupee',
773
+ 'currency_rupee_circle',
774
+ 'currency_yen',
775
+ 'currency_yuan',
776
+ 'curtains',
777
+ 'curtains_closed',
778
+ 'custom_typography',
779
+ 'cycle',
780
+ 'cyclone',
781
+ 'dangerous',
782
+ 'dark_mode',
783
+ 'dashboard',
784
+ 'dashboard_customize',
785
+ 'data_alert',
786
+ 'data_array',
787
+ 'data_check',
788
+ 'data_exploration',
789
+ 'data_info_alert',
790
+ 'data_loss_prevention',
791
+ 'data_object',
792
+ 'data_saver_on',
793
+ 'data_table',
794
+ 'data_thresholding',
795
+ 'data_usage',
796
+ 'database',
797
+ 'database_off',
798
+ 'dataset',
799
+ 'dataset_linked',
800
+ 'date_range',
801
+ 'deblur',
802
+ 'deceased',
803
+ 'decimal_decrease',
804
+ 'decimal_increase',
805
+ 'deck',
806
+ 'dehaze',
807
+ 'delete',
808
+ 'delete_forever',
809
+ 'delete_history',
810
+ 'delete_sweep',
811
+ 'demography',
812
+ 'density_large',
813
+ 'density_medium',
814
+ 'density_small',
815
+ 'dentistry',
816
+ 'departure_board',
817
+ 'deployed_code',
818
+ 'deployed_code_account',
819
+ 'deployed_code_alert',
820
+ 'deployed_code_history',
821
+ 'deployed_code_update',
822
+ 'dermatology',
823
+ 'description',
824
+ 'deselect',
825
+ 'design_services',
826
+ 'desk',
827
+ 'deskphone',
828
+ 'desktop_access_disabled',
829
+ 'desktop_landscape',
830
+ 'desktop_landscape_add',
831
+ 'desktop_mac',
832
+ 'desktop_portrait',
833
+ 'desktop_windows',
834
+ 'destruction',
835
+ 'details',
836
+ 'detection_and_zone',
837
+ 'detector',
838
+ 'detector_alarm',
839
+ 'detector_battery',
840
+ 'detector_co',
841
+ 'detector_offline',
842
+ 'detector_smoke',
843
+ 'detector_status',
844
+ 'developer_board',
845
+ 'developer_board_off',
846
+ 'developer_guide',
847
+ 'developer_mode',
848
+ 'developer_mode_tv',
849
+ 'device_hub',
850
+ 'device_thermostat',
851
+ 'device_unknown',
852
+ 'devices',
853
+ 'devices_fold',
854
+ 'devices_fold_2',
855
+ 'devices_off',
856
+ 'devices_other',
857
+ 'devices_wearables',
858
+ 'dew_point',
859
+ 'diagnosis',
860
+ 'diagonal_line',
861
+ 'dialer_sip',
862
+ 'dialogs',
863
+ 'dialpad',
864
+ 'diamond',
865
+ 'dictionary',
866
+ 'difference',
867
+ 'digital_out_of_home',
868
+ 'digital_wellbeing',
869
+ 'dining',
870
+ 'dinner_dining',
871
+ 'directions',
872
+ 'directions_alt',
873
+ 'directions_alt_off',
874
+ 'directions_bike',
875
+ 'directions_boat',
876
+ 'directions_bus',
877
+ 'directions_car',
878
+ 'directions_off',
879
+ 'directions_railway',
880
+ 'directions_railway_2',
881
+ 'directions_run',
882
+ 'directions_subway',
883
+ 'directions_walk',
884
+ 'directory_sync',
885
+ 'dirty_lens',
886
+ 'disabled_by_default',
887
+ 'disabled_visible',
888
+ 'disc_full',
889
+ 'discover_tune',
890
+ 'dishwasher',
891
+ 'dishwasher_gen',
892
+ 'display_external_input',
893
+ 'display_settings',
894
+ 'distance',
895
+ 'diversity_1',
896
+ 'diversity_2',
897
+ 'diversity_3',
898
+ 'diversity_4',
899
+ 'dns',
900
+ 'do_not_disturb_off',
901
+ 'do_not_disturb_on',
902
+ 'do_not_disturb_on_total_silence',
903
+ 'do_not_step',
904
+ 'do_not_touch',
905
+ 'dock',
906
+ 'dock_to_bottom',
907
+ 'dock_to_left',
908
+ 'dock_to_right',
909
+ 'docs_add_on',
910
+ 'docs_apps_script',
911
+ 'document_scanner',
912
+ 'domain',
913
+ 'domain_add',
914
+ 'domain_disabled',
915
+ 'domain_verification',
916
+ 'domain_verification_off',
917
+ 'domino_mask',
918
+ 'done_all',
919
+ 'done_outline',
920
+ 'donut_large',
921
+ 'donut_small',
922
+ 'door_back',
923
+ 'door_front',
924
+ 'door_open',
925
+ 'door_sensor',
926
+ 'door_sliding',
927
+ 'doorbell',
928
+ 'doorbell_3p',
929
+ 'doorbell_chime',
930
+ 'double_arrow',
931
+ 'downhill_skiing',
932
+ 'download',
933
+ 'download_2',
934
+ 'download_done',
935
+ 'download_for_offline',
936
+ 'downloading',
937
+ 'draft',
938
+ 'draft_orders',
939
+ 'drafts',
940
+ 'drag_click',
941
+ 'drag_handle',
942
+ 'drag_indicator',
943
+ 'drag_pan',
944
+ 'draw',
945
+ 'draw_abstract',
946
+ 'draw_collage',
947
+ 'dresser',
948
+ 'drive_export',
949
+ 'drive_file_move',
950
+ 'drive_folder_upload',
951
+ 'dropdown',
952
+ 'dry',
953
+ 'dry_cleaning',
954
+ 'dual_screen',
955
+ 'duo',
956
+ 'dvr',
957
+ 'dynamic_feed',
958
+ 'dynamic_form',
959
+ 'e911_avatar',
960
+ 'e911_emergency',
961
+ 'e_mobiledata',
962
+ 'e_mobiledata_badge',
963
+ 'earbuds',
964
+ 'earbuds_battery',
965
+ 'early_on',
966
+ 'earthquake',
967
+ 'east',
968
+ 'ecg',
969
+ 'ecg_heart',
970
+ 'eco',
971
+ 'eda',
972
+ 'edgesensor_high',
973
+ 'edgesensor_low',
974
+ 'edit',
975
+ 'edit_attributes',
976
+ 'edit_audio',
977
+ 'edit_calendar',
978
+ 'edit_document',
979
+ 'edit_location',
980
+ 'edit_location_alt',
981
+ 'edit_note',
982
+ 'edit_notifications',
983
+ 'edit_off',
984
+ 'edit_road',
985
+ 'edit_square',
986
+ 'editor_choice',
987
+ 'egg',
988
+ 'egg_alt',
989
+ 'eject',
990
+ 'elderly',
991
+ 'elderly_woman',
992
+ 'electric_bike',
993
+ 'electric_bolt',
994
+ 'electric_car',
995
+ 'electric_meter',
996
+ 'electric_moped',
997
+ 'electric_rickshaw',
998
+ 'electric_scooter',
999
+ 'electrical_services',
1000
+ 'elevation',
1001
+ 'elevator',
1002
+ 'emergency',
1003
+ 'emergency_heat',
1004
+ 'emergency_heat_2',
1005
+ 'emergency_home',
1006
+ 'emergency_recording',
1007
+ 'emergency_share',
1008
+ 'emergency_share_off',
1009
+ 'emoji_events',
1010
+ 'emoji_food_beverage',
1011
+ 'emoji_language',
1012
+ 'emoji_nature',
1013
+ 'emoji_objects',
1014
+ 'emoji_people',
1015
+ 'emoji_symbols',
1016
+ 'emoji_transportation',
1017
+ 'emoticon',
1018
+ 'empty_dashboard',
1019
+ 'enable',
1020
+ 'encrypted',
1021
+ 'encrypted_add',
1022
+ 'encrypted_add_circle',
1023
+ 'encrypted_minus_circle',
1024
+ 'encrypted_off',
1025
+ 'endocrinology',
1026
+ 'energy',
1027
+ 'energy_program_saving',
1028
+ 'energy_program_time_used',
1029
+ 'energy_savings_leaf',
1030
+ 'engineering',
1031
+ 'enhanced_encryption',
1032
+ 'ent',
1033
+ 'enterprise',
1034
+ 'enterprise_off',
1035
+ 'equal',
1036
+ 'equalizer',
1037
+ 'eraser_size_1',
1038
+ 'eraser_size_2',
1039
+ 'eraser_size_3',
1040
+ 'eraser_size_4',
1041
+ 'eraser_size_5',
1042
+ 'error',
1043
+ 'error_med',
1044
+ 'escalator',
1045
+ 'escalator_warning',
1046
+ 'euro',
1047
+ 'euro_symbol',
1048
+ 'ev_charger',
1049
+ 'ev_mobiledata_badge',
1050
+ 'ev_shadow',
1051
+ 'ev_shadow_add',
1052
+ 'ev_shadow_minus',
1053
+ 'ev_station',
1054
+ 'event',
1055
+ 'event_available',
1056
+ 'event_busy',
1057
+ 'event_list',
1058
+ 'event_note',
1059
+ 'event_repeat',
1060
+ 'event_seat',
1061
+ 'event_upcoming',
1062
+ 'exclamation',
1063
+ 'exercise',
1064
+ 'exit_to_app',
1065
+ 'expand',
1066
+ 'expand_all',
1067
+ 'expand_circle_down',
1068
+ 'expand_circle_right',
1069
+ 'expand_circle_up',
1070
+ 'expand_content',
1071
+ 'experiment',
1072
+ 'explicit',
1073
+ 'explore',
1074
+ 'explore_nearby',
1075
+ 'explore_off',
1076
+ 'explosion',
1077
+ 'export_notes',
1078
+ 'exposure',
1079
+ 'exposure_neg_1',
1080
+ 'exposure_neg_2',
1081
+ 'exposure_plus_1',
1082
+ 'exposure_plus_2',
1083
+ 'exposure_zero',
1084
+ 'extension',
1085
+ 'extension_off',
1086
+ 'eye_tracking',
1087
+ 'eyeglasses',
1088
+ 'face',
1089
+ 'face_2',
1090
+ 'face_3',
1091
+ 'face_4',
1092
+ 'face_5',
1093
+ 'face_6',
1094
+ 'face_down',
1095
+ 'face_left',
1096
+ 'face_nod',
1097
+ 'face_retouching_off',
1098
+ 'face_right',
1099
+ 'face_shake',
1100
+ 'face_up',
1101
+ 'fact_check',
1102
+ 'factory',
1103
+ 'falling',
1104
+ 'familiar_face_and_zone',
1105
+ 'family_history',
1106
+ 'family_home',
1107
+ 'family_link',
1108
+ 'family_restroom',
1109
+ 'family_star',
1110
+ 'farsight_digital',
1111
+ 'fast_forward',
1112
+ 'fast_rewind',
1113
+ 'fastfood',
1114
+ 'faucet',
1115
+ 'favorite',
1116
+ 'fax',
1117
+ 'feature_search',
1118
+ 'featured_play_list',
1119
+ 'featured_seasonal_and_gifts',
1120
+ 'featured_video',
1121
+ 'feedback',
1122
+ 'female',
1123
+ 'femur',
1124
+ 'femur_alt',
1125
+ 'fence',
1126
+ 'fertile',
1127
+ 'festival',
1128
+ 'fiber_dvr',
1129
+ 'fiber_manual_record',
1130
+ 'fiber_new',
1131
+ 'fiber_pin',
1132
+ 'fiber_smart_record',
1133
+ 'file_copy',
1134
+ 'file_copy_off',
1135
+ 'file_download_off',
1136
+ 'file_map',
1137
+ 'file_open',
1138
+ 'file_present',
1139
+ 'file_save',
1140
+ 'file_save_off',
1141
+ 'file_upload_off',
1142
+ 'filter',
1143
+ 'filter_1',
1144
+ 'filter_2',
1145
+ 'filter_3',
1146
+ 'filter_4',
1147
+ 'filter_5',
1148
+ 'filter_6',
1149
+ 'filter_7',
1150
+ 'filter_8',
1151
+ 'filter_9',
1152
+ 'filter_9_plus',
1153
+ 'filter_alt',
1154
+ 'filter_alt_off',
1155
+ 'filter_b_and_w',
1156
+ 'filter_center_focus',
1157
+ 'filter_drama',
1158
+ 'filter_frames',
1159
+ 'filter_hdr',
1160
+ 'filter_list',
1161
+ 'filter_list_off',
1162
+ 'filter_none',
1163
+ 'filter_retrolux',
1164
+ 'filter_tilt_shift',
1165
+ 'filter_vintage',
1166
+ 'finance',
1167
+ 'finance_chip',
1168
+ 'finance_mode',
1169
+ 'find_in_page',
1170
+ 'find_replace',
1171
+ 'fingerprint',
1172
+ 'fingerprint_off',
1173
+ 'fire_extinguisher',
1174
+ 'fire_hydrant',
1175
+ 'fire_truck',
1176
+ 'fireplace',
1177
+ 'first_page',
1178
+ 'fit_page',
1179
+ 'fit_screen',
1180
+ 'fit_width',
1181
+ 'fitness_center',
1182
+ 'fitness_tracker',
1183
+ 'flag',
1184
+ 'flag_2',
1185
+ 'flag_circle',
1186
+ 'flaky',
1187
+ 'flare',
1188
+ 'flash_auto',
1189
+ 'flash_off',
1190
+ 'flash_on',
1191
+ 'flashlight_off',
1192
+ 'flashlight_on',
1193
+ 'flatware',
1194
+ 'flex_direction',
1195
+ 'flex_no_wrap',
1196
+ 'flex_wrap',
1197
+ 'flight',
1198
+ 'flight_class',
1199
+ 'flight_land',
1200
+ 'flight_takeoff',
1201
+ 'flights_and_hotels',
1202
+ 'flip',
1203
+ 'flip_camera_android',
1204
+ 'flip_camera_ios',
1205
+ 'flip_to_back',
1206
+ 'flip_to_front',
1207
+ 'float_landscape_2',
1208
+ 'float_portrait_2',
1209
+ 'flood',
1210
+ 'floor',
1211
+ 'floor_lamp',
1212
+ 'flowsheet',
1213
+ 'fluid',
1214
+ 'fluid_balance',
1215
+ 'fluid_med',
1216
+ 'fluorescent',
1217
+ 'flutter',
1218
+ 'flutter_dash',
1219
+ 'flyover',
1220
+ 'fmd_bad',
1221
+ 'foggy',
1222
+ 'folded_hands',
1223
+ 'folder',
1224
+ 'folder_copy',
1225
+ 'folder_data',
1226
+ 'folder_delete',
1227
+ 'folder_limited',
1228
+ 'folder_managed',
1229
+ 'folder_off',
1230
+ 'folder_open',
1231
+ 'folder_shared',
1232
+ 'folder_special',
1233
+ 'folder_supervised',
1234
+ 'folder_zip',
1235
+ 'follow_the_signs',
1236
+ 'font_download',
1237
+ 'font_download_off',
1238
+ 'food_bank',
1239
+ 'foot_bones',
1240
+ 'footprint',
1241
+ 'for_you',
1242
+ 'forest',
1243
+ 'fork_left',
1244
+ 'fork_right',
1245
+ 'forklift',
1246
+ 'format_align_center',
1247
+ 'format_align_justify',
1248
+ 'format_align_left',
1249
+ 'format_align_right',
1250
+ 'format_bold',
1251
+ 'format_clear',
1252
+ 'format_color_fill',
1253
+ 'format_color_reset',
1254
+ 'format_color_text',
1255
+ 'format_h1',
1256
+ 'format_h2',
1257
+ 'format_h3',
1258
+ 'format_h4',
1259
+ 'format_h5',
1260
+ 'format_h6',
1261
+ 'format_image_left',
1262
+ 'format_image_right',
1263
+ 'format_indent_decrease',
1264
+ 'format_indent_increase',
1265
+ 'format_ink_highlighter',
1266
+ 'format_italic',
1267
+ 'format_letter_spacing',
1268
+ 'format_letter_spacing_2',
1269
+ 'format_letter_spacing_standard',
1270
+ 'format_letter_spacing_wide',
1271
+ 'format_letter_spacing_wider',
1272
+ 'format_line_spacing',
1273
+ 'format_list_bulleted',
1274
+ 'format_list_bulleted_add',
1275
+ 'format_list_numbered',
1276
+ 'format_list_numbered_rtl',
1277
+ 'format_overline',
1278
+ 'format_paint',
1279
+ 'format_paragraph',
1280
+ 'format_quote',
1281
+ 'format_quote_off',
1282
+ 'format_shapes',
1283
+ 'format_size',
1284
+ 'format_strikethrough',
1285
+ 'format_text_clip',
1286
+ 'format_text_overflow',
1287
+ 'format_text_wrap',
1288
+ 'format_textdirection_l_to_r',
1289
+ 'format_textdirection_r_to_l',
1290
+ 'format_textdirection_vertical',
1291
+ 'format_underlined',
1292
+ 'format_underlined_squiggle',
1293
+ 'forms_add_on',
1294
+ 'forms_apps_script',
1295
+ 'fort',
1296
+ 'forum',
1297
+ 'forward',
1298
+ 'forward_10',
1299
+ 'forward_30',
1300
+ 'forward_5',
1301
+ 'forward_circle',
1302
+ 'forward_media',
1303
+ 'forward_to_inbox',
1304
+ 'foundation',
1305
+ 'frame_inspect',
1306
+ 'frame_person',
1307
+ 'frame_person_mic',
1308
+ 'frame_person_off',
1309
+ 'frame_reload',
1310
+ 'frame_source',
1311
+ 'free_cancellation',
1312
+ 'front_hand',
1313
+ 'front_loader',
1314
+ 'full_coverage',
1315
+ 'full_hd',
1316
+ 'full_stacked_bar_chart',
1317
+ 'fullscreen',
1318
+ 'fullscreen_exit',
1319
+ 'fullscreen_portrait',
1320
+ 'function',
1321
+ 'functions',
1322
+ 'funicular',
1323
+ 'g_mobiledata',
1324
+ 'g_mobiledata_badge',
1325
+ 'g_translate',
1326
+ 'gallery_thumbnail',
1327
+ 'gamepad',
1328
+ 'garage',
1329
+ 'garage_door',
1330
+ 'garage_home',
1331
+ 'garden_cart',
1332
+ 'gas_meter',
1333
+ 'gastroenterology',
1334
+ 'gate',
1335
+ 'gavel',
1336
+ 'general_device',
1337
+ 'genetics',
1338
+ 'genres',
1339
+ 'gesture',
1340
+ 'gesture_select',
1341
+ 'gif',
1342
+ 'gif_2',
1343
+ 'gif_box',
1344
+ 'girl',
1345
+ 'gite',
1346
+ 'glass_cup',
1347
+ 'globe',
1348
+ 'globe_asia',
1349
+ 'globe_uk',
1350
+ 'glucose',
1351
+ 'glyphs',
1352
+ 'go_to_line',
1353
+ 'golf_course',
1354
+ 'gondola_lift',
1355
+ 'google_home_devices',
1356
+ 'google_tv_remote',
1357
+ 'google_wifi',
1358
+ 'gpp_bad',
1359
+ 'gpp_maybe',
1360
+ 'grade',
1361
+ 'gradient',
1362
+ 'grading',
1363
+ 'grain',
1364
+ 'graphic_eq',
1365
+ 'grass',
1366
+ 'grid_3x3',
1367
+ 'grid_3x3_off',
1368
+ 'grid_4x4',
1369
+ 'grid_goldenratio',
1370
+ 'grid_guides',
1371
+ 'grid_off',
1372
+ 'grid_on',
1373
+ 'grid_view',
1374
+ 'grocery',
1375
+ 'group',
1376
+ 'group_add',
1377
+ 'group_off',
1378
+ 'group_remove',
1379
+ 'group_work',
1380
+ 'grouped_bar_chart',
1381
+ 'groups',
1382
+ 'groups_2',
1383
+ 'groups_3',
1384
+ 'guardian',
1385
+ 'gynecology',
1386
+ 'h_mobiledata',
1387
+ 'h_mobiledata_badge',
1388
+ 'h_plus_mobiledata',
1389
+ 'h_plus_mobiledata_badge',
1390
+ 'hail',
1391
+ 'hallway',
1392
+ 'hand_bones',
1393
+ 'hand_gesture',
1394
+ 'hand_gesture_off',
1395
+ 'handheld_controller',
1396
+ 'handshake',
1397
+ 'handyman',
1398
+ 'hangout_video',
1399
+ 'hangout_video_off',
1400
+ 'hard_drive',
1401
+ 'hard_drive_2',
1402
+ 'hardware',
1403
+ 'hd',
1404
+ 'hdr_auto',
1405
+ 'hdr_auto_select',
1406
+ 'hdr_enhanced_select',
1407
+ 'hdr_off',
1408
+ 'hdr_off_select',
1409
+ 'hdr_on',
1410
+ 'hdr_on_select',
1411
+ 'hdr_plus',
1412
+ 'hdr_plus_off',
1413
+ 'hdr_strong',
1414
+ 'hdr_weak',
1415
+ 'head_mounted_device',
1416
+ 'headphones',
1417
+ 'headphones_battery',
1418
+ 'headset_mic',
1419
+ 'headset_off',
1420
+ 'healing',
1421
+ 'health_and_beauty',
1422
+ 'health_and_safety',
1423
+ 'health_metrics',
1424
+ 'heap_snapshot_large',
1425
+ 'heap_snapshot_multiple',
1426
+ 'heap_snapshot_thumbnail',
1427
+ 'hearing',
1428
+ 'hearing_aid',
1429
+ 'hearing_disabled',
1430
+ 'heart_broken',
1431
+ 'heart_check',
1432
+ 'heart_minus',
1433
+ 'heart_plus',
1434
+ 'heat',
1435
+ 'heat_pump',
1436
+ 'heat_pump_balance',
1437
+ 'height',
1438
+ 'helicopter',
1439
+ 'help',
1440
+ 'help_center',
1441
+ 'help_clinic',
1442
+ 'hematology',
1443
+ 'hevc',
1444
+ 'hexagon',
1445
+ 'hide',
1446
+ 'hide_image',
1447
+ 'hide_source',
1448
+ 'high_density',
1449
+ 'high_quality',
1450
+ 'high_res',
1451
+ 'highlight',
1452
+ 'highlight_keyboard_focus',
1453
+ 'highlight_mouse_cursor',
1454
+ 'highlight_text_cursor',
1455
+ 'highlighter_size_1',
1456
+ 'highlighter_size_2',
1457
+ 'highlighter_size_3',
1458
+ 'highlighter_size_4',
1459
+ 'highlighter_size_5',
1460
+ 'hiking',
1461
+ 'history',
1462
+ 'history_edu',
1463
+ 'history_off',
1464
+ 'history_toggle_off',
1465
+ 'hive',
1466
+ 'hls',
1467
+ 'hls_off',
1468
+ 'holiday_village',
1469
+ 'home',
1470
+ 'home_and_garden',
1471
+ 'home_app_logo',
1472
+ 'home_health',
1473
+ 'home_improvement_and_tools',
1474
+ 'home_iot_device',
1475
+ 'home_max',
1476
+ 'home_max_dots',
1477
+ 'home_mini',
1478
+ 'home_pin',
1479
+ 'home_repair_service',
1480
+ 'home_speaker',
1481
+ 'home_storage',
1482
+ 'home_work',
1483
+ 'horizontal_distribute',
1484
+ 'horizontal_rule',
1485
+ 'horizontal_split',
1486
+ 'hot_tub',
1487
+ 'hotel',
1488
+ 'hotel_class',
1489
+ 'hourglass',
1490
+ 'hourglass_bottom',
1491
+ 'hourglass_disabled',
1492
+ 'hourglass_empty',
1493
+ 'hourglass_top',
1494
+ 'house',
1495
+ 'house_siding',
1496
+ 'house_with_shield',
1497
+ 'houseboat',
1498
+ 'household_supplies',
1499
+ 'hov',
1500
+ 'how_to_reg',
1501
+ 'how_to_vote',
1502
+ 'hr_resting',
1503
+ 'html',
1504
+ 'http',
1505
+ 'hub',
1506
+ 'humerus',
1507
+ 'humerus_alt',
1508
+ 'humidity_high',
1509
+ 'humidity_indoor',
1510
+ 'humidity_low',
1511
+ 'humidity_mid',
1512
+ 'humidity_percentage',
1513
+ 'hvac',
1514
+ 'ice_skating',
1515
+ 'icecream',
1516
+ 'id_card',
1517
+ 'ifl',
1518
+ 'iframe',
1519
+ 'iframe_off',
1520
+ 'image',
1521
+ 'image_aspect_ratio',
1522
+ 'image_search',
1523
+ 'imagesearch_roller',
1524
+ 'imagesmode',
1525
+ 'immunology',
1526
+ 'import_contacts',
1527
+ 'important_devices',
1528
+ 'in_home_mode',
1529
+ 'inactive_order',
1530
+ 'inbox',
1531
+ 'inbox_customize',
1532
+ 'incomplete_circle',
1533
+ 'indeterminate_check_box',
1534
+ 'indeterminate_question_box',
1535
+ 'info',
1536
+ 'info_i',
1537
+ 'infrared',
1538
+ 'ink_eraser',
1539
+ 'ink_eraser_off',
1540
+ 'ink_highlighter',
1541
+ 'ink_highlighter_move',
1542
+ 'ink_marker',
1543
+ 'ink_pen',
1544
+ 'inpatient',
1545
+ 'input',
1546
+ 'input_circle',
1547
+ 'insert_chart',
1548
+ 'insert_page_break',
1549
+ 'insert_text',
1550
+ 'install_desktop',
1551
+ 'install_mobile',
1552
+ 'instant_mix',
1553
+ 'integration_instructions',
1554
+ 'interactive_space',
1555
+ 'interests',
1556
+ 'interpreter_mode',
1557
+ 'inventory',
1558
+ 'inventory_2',
1559
+ 'invert_colors',
1560
+ 'invert_colors_off',
1561
+ 'ios',
1562
+ 'ios_share',
1563
+ 'iron',
1564
+ 'jamboard_kiosk',
1565
+ 'javascript',
1566
+ 'join',
1567
+ 'join_inner',
1568
+ 'join_left',
1569
+ 'join_right',
1570
+ 'joystick',
1571
+ 'jump_to_element',
1572
+ 'kayaking',
1573
+ 'kebab_dining',
1574
+ 'keep',
1575
+ 'keep_off',
1576
+ 'keep_public',
1577
+ 'kettle',
1578
+ 'key',
1579
+ 'key_off',
1580
+ 'key_vertical',
1581
+ 'key_visualizer',
1582
+ 'keyboard',
1583
+ 'keyboard_alt',
1584
+ 'keyboard_arrow_down',
1585
+ 'keyboard_arrow_left',
1586
+ 'keyboard_arrow_right',
1587
+ 'keyboard_arrow_up',
1588
+ 'keyboard_backspace',
1589
+ 'keyboard_capslock',
1590
+ 'keyboard_capslock_badge',
1591
+ 'keyboard_command_key',
1592
+ 'keyboard_control_key',
1593
+ 'keyboard_double_arrow_down',
1594
+ 'keyboard_double_arrow_left',
1595
+ 'keyboard_double_arrow_right',
1596
+ 'keyboard_double_arrow_up',
1597
+ 'keyboard_external_input',
1598
+ 'keyboard_full',
1599
+ 'keyboard_hide',
1600
+ 'keyboard_keys',
1601
+ 'keyboard_lock',
1602
+ 'keyboard_lock_off',
1603
+ 'keyboard_off',
1604
+ 'keyboard_onscreen',
1605
+ 'keyboard_option_key',
1606
+ 'keyboard_previous_language',
1607
+ 'keyboard_return',
1608
+ 'keyboard_tab',
1609
+ 'keyboard_tab_rtl',
1610
+ 'kid_star',
1611
+ 'king_bed',
1612
+ 'kitchen',
1613
+ 'kitesurfing',
1614
+ 'lab_panel',
1615
+ 'lab_profile',
1616
+ 'lab_research',
1617
+ 'label',
1618
+ 'label_important',
1619
+ 'label_off',
1620
+ 'labs',
1621
+ 'lan',
1622
+ 'landscape',
1623
+ 'landscape_2',
1624
+ 'landscape_2_off',
1625
+ 'landslide',
1626
+ 'language',
1627
+ 'language_chinese_array',
1628
+ 'language_chinese_cangjie',
1629
+ 'language_chinese_dayi',
1630
+ 'language_chinese_pinyin',
1631
+ 'language_chinese_quick',
1632
+ 'language_chinese_wubi',
1633
+ 'language_french',
1634
+ 'language_gb_english',
1635
+ 'language_international',
1636
+ 'language_japanese_kana',
1637
+ 'language_korean_latin',
1638
+ 'language_pinyin',
1639
+ 'language_spanish',
1640
+ 'language_us',
1641
+ 'language_us_colemak',
1642
+ 'language_us_dvorak',
1643
+ 'laps',
1644
+ 'laptop_chromebook',
1645
+ 'laptop_mac',
1646
+ 'laptop_windows',
1647
+ 'lasso_select',
1648
+ 'last_page',
1649
+ 'laundry',
1650
+ 'layers',
1651
+ 'layers_clear',
1652
+ 'lda',
1653
+ 'leaderboard',
1654
+ 'leak_add',
1655
+ 'leak_remove',
1656
+ 'left_click',
1657
+ 'left_panel_close',
1658
+ 'left_panel_open',
1659
+ 'legend_toggle',
1660
+ 'lens_blur',
1661
+ 'letter_switch',
1662
+ 'library_add',
1663
+ 'library_add_check',
1664
+ 'library_books',
1665
+ 'library_music',
1666
+ 'license',
1667
+ 'lift_to_talk',
1668
+ 'light',
1669
+ 'light_group',
1670
+ 'light_mode',
1671
+ 'light_off',
1672
+ 'lightbulb',
1673
+ 'lightbulb_circle',
1674
+ 'lightning_stand',
1675
+ 'line_axis',
1676
+ 'line_curve',
1677
+ 'line_end',
1678
+ 'line_end_arrow',
1679
+ 'line_end_arrow_notch',
1680
+ 'line_end_circle',
1681
+ 'line_end_diamond',
1682
+ 'line_end_square',
1683
+ 'line_start',
1684
+ 'line_start_arrow',
1685
+ 'line_start_arrow_notch',
1686
+ 'line_start_circle',
1687
+ 'line_start_diamond',
1688
+ 'line_start_square',
1689
+ 'line_style',
1690
+ 'line_weight',
1691
+ 'linear_scale',
1692
+ 'link',
1693
+ 'link_off',
1694
+ 'linked_camera',
1695
+ 'linked_services',
1696
+ 'liquor',
1697
+ 'list',
1698
+ 'list_alt',
1699
+ 'list_alt_add',
1700
+ 'lists',
1701
+ 'live_help',
1702
+ 'live_tv',
1703
+ 'living',
1704
+ 'local_activity',
1705
+ 'local_atm',
1706
+ 'local_bar',
1707
+ 'local_cafe',
1708
+ 'local_car_wash',
1709
+ 'local_convenience_store',
1710
+ 'local_dining',
1711
+ 'local_drink',
1712
+ 'local_fire_department',
1713
+ 'local_florist',
1714
+ 'local_gas_station',
1715
+ 'local_hospital',
1716
+ 'local_laundry_service',
1717
+ 'local_library',
1718
+ 'local_mall',
1719
+ 'local_parking',
1720
+ 'local_pharmacy',
1721
+ 'local_pizza',
1722
+ 'local_police',
1723
+ 'local_post_office',
1724
+ 'local_see',
1725
+ 'local_shipping',
1726
+ 'local_taxi',
1727
+ 'location_away',
1728
+ 'location_chip',
1729
+ 'location_city',
1730
+ 'location_disabled',
1731
+ 'location_home',
1732
+ 'location_off',
1733
+ 'location_on',
1734
+ 'location_searching',
1735
+ 'lock',
1736
+ 'lock_clock',
1737
+ 'lock_open',
1738
+ 'lock_open_right',
1739
+ 'lock_person',
1740
+ 'lock_reset',
1741
+ 'login',
1742
+ 'logo_dev',
1743
+ 'logout',
1744
+ 'looks',
1745
+ 'looks_3',
1746
+ 'looks_4',
1747
+ 'looks_5',
1748
+ 'looks_6',
1749
+ 'looks_one',
1750
+ 'looks_two',
1751
+ 'loupe',
1752
+ 'low_density',
1753
+ 'low_priority',
1754
+ 'lowercase',
1755
+ 'loyalty',
1756
+ 'lte_mobiledata',
1757
+ 'lte_mobiledata_badge',
1758
+ 'lte_plus_mobiledata',
1759
+ 'lte_plus_mobiledata_badge',
1760
+ 'luggage',
1761
+ 'lunch_dining',
1762
+ 'lyrics',
1763
+ 'macro_auto',
1764
+ 'macro_off',
1765
+ 'magnification_large',
1766
+ 'magnification_small',
1767
+ 'magnify_docked',
1768
+ 'magnify_fullscreen',
1769
+ 'mail',
1770
+ 'mail_lock',
1771
+ 'mail_off',
1772
+ 'male',
1773
+ 'man',
1774
+ 'man_2',
1775
+ 'man_3',
1776
+ 'man_4',
1777
+ 'manage_accounts',
1778
+ 'manage_history',
1779
+ 'manage_search',
1780
+ 'manga',
1781
+ 'manufacturing',
1782
+ 'map',
1783
+ 'maps_ugc',
1784
+ 'margin',
1785
+ 'mark_as_unread',
1786
+ 'mark_chat_read',
1787
+ 'mark_chat_unread',
1788
+ 'mark_email_read',
1789
+ 'mark_email_unread',
1790
+ 'mark_unread_chat_alt',
1791
+ 'markdown',
1792
+ 'markdown_copy',
1793
+ 'markdown_paste',
1794
+ 'markunread_mailbox',
1795
+ 'masked_transitions',
1796
+ 'masked_transitions_add',
1797
+ 'masks',
1798
+ 'match_case',
1799
+ 'match_word',
1800
+ 'matter',
1801
+ 'maximize',
1802
+ 'measuring_tape',
1803
+ 'media_bluetooth_off',
1804
+ 'media_bluetooth_on',
1805
+ 'media_link',
1806
+ 'media_output',
1807
+ 'media_output_off',
1808
+ 'mediation',
1809
+ 'medical_information',
1810
+ 'medical_mask',
1811
+ 'medical_services',
1812
+ 'medication',
1813
+ 'medication_liquid',
1814
+ 'meeting_room',
1815
+ 'memory',
1816
+ 'memory_alt',
1817
+ 'menstrual_health',
1818
+ 'menu',
1819
+ 'menu_book',
1820
+ 'menu_open',
1821
+ 'merge',
1822
+ 'merge_type',
1823
+ 'metabolism',
1824
+ 'metro',
1825
+ 'mfg_nest_yale_lock',
1826
+ 'mic',
1827
+ 'mic_double',
1828
+ 'mic_external_off',
1829
+ 'mic_external_on',
1830
+ 'mic_off',
1831
+ 'microbiology',
1832
+ 'microwave',
1833
+ 'microwave_gen',
1834
+ 'military_tech',
1835
+ 'mimo',
1836
+ 'mimo_disconnect',
1837
+ 'mindfulness',
1838
+ 'minimize',
1839
+ 'minor_crash',
1840
+ 'mintmark',
1841
+ 'missed_video_call',
1842
+ 'missing_controller',
1843
+ 'mist',
1844
+ 'mitre',
1845
+ 'mixture_med',
1846
+ 'mms',
1847
+ 'mobile_friendly',
1848
+ 'mobile_off',
1849
+ 'mobile_screen_share',
1850
+ 'mobiledata_off',
1851
+ 'mode_comment',
1852
+ 'mode_cool',
1853
+ 'mode_cool_off',
1854
+ 'mode_dual',
1855
+ 'mode_fan',
1856
+ 'mode_fan_off',
1857
+ 'mode_heat',
1858
+ 'mode_heat_cool',
1859
+ 'mode_heat_off',
1860
+ 'mode_night',
1861
+ 'mode_of_travel',
1862
+ 'mode_off_on',
1863
+ 'mode_standby',
1864
+ 'model_training',
1865
+ 'money',
1866
+ 'money_off',
1867
+ 'monitor',
1868
+ 'monitor_heart',
1869
+ 'monitor_weight',
1870
+ 'monitor_weight_gain',
1871
+ 'monitor_weight_loss',
1872
+ 'monitoring',
1873
+ 'monochrome_photos',
1874
+ 'monorail',
1875
+ 'mood',
1876
+ 'mood_bad',
1877
+ 'mop',
1878
+ 'more',
1879
+ 'more_down',
1880
+ 'more_horiz',
1881
+ 'more_time',
1882
+ 'more_up',
1883
+ 'more_vert',
1884
+ 'mosque',
1885
+ 'motion_blur',
1886
+ 'motion_mode',
1887
+ 'motion_photos_auto',
1888
+ 'motion_photos_off',
1889
+ 'motion_photos_on',
1890
+ 'motion_photos_paused',
1891
+ 'motion_play',
1892
+ 'motion_sensor_active',
1893
+ 'motion_sensor_alert',
1894
+ 'motion_sensor_idle',
1895
+ 'motion_sensor_urgent',
1896
+ 'motorcycle',
1897
+ 'mountain_flag',
1898
+ 'mouse',
1899
+ 'mouse_lock',
1900
+ 'mouse_lock_off',
1901
+ 'move',
1902
+ 'move_down',
1903
+ 'move_group',
1904
+ 'move_item',
1905
+ 'move_location',
1906
+ 'move_selection_down',
1907
+ 'move_selection_left',
1908
+ 'move_selection_right',
1909
+ 'move_selection_up',
1910
+ 'move_to_inbox',
1911
+ 'move_up',
1912
+ 'moved_location',
1913
+ 'movie',
1914
+ 'movie_edit',
1915
+ 'movie_info',
1916
+ 'movie_off',
1917
+ 'moving',
1918
+ 'moving_beds',
1919
+ 'moving_ministry',
1920
+ 'mp',
1921
+ 'multicooker',
1922
+ 'multiline_chart',
1923
+ 'multimodal_hand_eye',
1924
+ 'multiple_stop',
1925
+ 'museum',
1926
+ 'music_cast',
1927
+ 'music_note',
1928
+ 'music_off',
1929
+ 'music_video',
1930
+ 'my_location',
1931
+ 'mystery',
1932
+ 'nat',
1933
+ 'nature',
1934
+ 'nature_people',
1935
+ 'navigation',
1936
+ 'near_me',
1937
+ 'near_me_disabled',
1938
+ 'nearby',
1939
+ 'nearby_error',
1940
+ 'nearby_off',
1941
+ 'nephrology',
1942
+ 'nest_audio',
1943
+ 'nest_cam_floodlight',
1944
+ 'nest_cam_indoor',
1945
+ 'nest_cam_iq',
1946
+ 'nest_cam_iq_outdoor',
1947
+ 'nest_cam_magnet_mount',
1948
+ 'nest_cam_outdoor',
1949
+ 'nest_cam_stand',
1950
+ 'nest_cam_wall_mount',
1951
+ 'nest_cam_wired_stand',
1952
+ 'nest_clock_farsight_analog',
1953
+ 'nest_clock_farsight_digital',
1954
+ 'nest_connect',
1955
+ 'nest_detect',
1956
+ 'nest_display',
1957
+ 'nest_display_max',
1958
+ 'nest_doorbell_visitor',
1959
+ 'nest_eco_leaf',
1960
+ 'nest_farsight_weather',
1961
+ 'nest_found_savings',
1962
+ 'nest_gale_wifi',
1963
+ 'nest_heat_link_e',
1964
+ 'nest_heat_link_gen_3',
1965
+ 'nest_hello_doorbell',
1966
+ 'nest_mini',
1967
+ 'nest_multi_room',
1968
+ 'nest_protect',
1969
+ 'nest_remote',
1970
+ 'nest_remote_comfort_sensor',
1971
+ 'nest_secure_alarm',
1972
+ 'nest_sunblock',
1973
+ 'nest_tag',
1974
+ 'nest_thermostat',
1975
+ 'nest_thermostat_e_eu',
1976
+ 'nest_thermostat_gen_3',
1977
+ 'nest_thermostat_sensor',
1978
+ 'nest_thermostat_sensor_eu',
1979
+ 'nest_thermostat_zirconium_eu',
1980
+ 'nest_true_radiant',
1981
+ 'nest_wake_on_approach',
1982
+ 'nest_wake_on_press',
1983
+ 'nest_wifi_point',
1984
+ 'nest_wifi_pro',
1985
+ 'nest_wifi_pro_2',
1986
+ 'nest_wifi_router',
1987
+ 'network_cell',
1988
+ 'network_check',
1989
+ 'network_intelligence_history',
1990
+ 'network_intelligence_update',
1991
+ 'network_locked',
1992
+ 'network_manage',
1993
+ 'network_node',
1994
+ 'network_ping',
1995
+ 'network_wifi',
1996
+ 'network_wifi_1_bar',
1997
+ 'network_wifi_1_bar_locked',
1998
+ 'network_wifi_2_bar',
1999
+ 'network_wifi_2_bar_locked',
2000
+ 'network_wifi_3_bar',
2001
+ 'network_wifi_3_bar_locked',
2002
+ 'network_wifi_locked',
2003
+ 'neurology',
2004
+ 'new_label',
2005
+ 'new_releases',
2006
+ 'new_window',
2007
+ 'news',
2008
+ 'newsmode',
2009
+ 'newspaper',
2010
+ 'newsstand',
2011
+ 'next_plan',
2012
+ 'next_week',
2013
+ 'nfc',
2014
+ 'night_shelter',
2015
+ 'night_sight_auto',
2016
+ 'night_sight_auto_off',
2017
+ 'night_sight_max',
2018
+ 'nightlife',
2019
+ 'nightlight',
2020
+ 'nights_stay',
2021
+ 'no_accounts',
2022
+ 'no_adult_content',
2023
+ 'no_backpack',
2024
+ 'no_crash',
2025
+ 'no_drinks',
2026
+ 'no_encryption',
2027
+ 'no_flash',
2028
+ 'no_food',
2029
+ 'no_luggage',
2030
+ 'no_meals',
2031
+ 'no_meeting_room',
2032
+ 'no_photography',
2033
+ 'no_sim',
2034
+ 'no_sound',
2035
+ 'no_stroller',
2036
+ 'no_transfer',
2037
+ 'noise_aware',
2038
+ 'noise_control_off',
2039
+ 'noise_control_on',
2040
+ 'nordic_walking',
2041
+ 'north',
2042
+ 'north_east',
2043
+ 'north_west',
2044
+ 'not_accessible',
2045
+ 'not_accessible_forward',
2046
+ 'not_listed_location',
2047
+ 'not_started',
2048
+ 'note_add',
2049
+ 'note_alt',
2050
+ 'note_stack',
2051
+ 'note_stack_add',
2052
+ 'notes',
2053
+ 'notification_add',
2054
+ 'notification_important',
2055
+ 'notification_multiple',
2056
+ 'notifications',
2057
+ 'notifications_active',
2058
+ 'notifications_off',
2059
+ 'notifications_paused',
2060
+ 'notifications_unread',
2061
+ 'numbers',
2062
+ 'nutrition',
2063
+ 'ods',
2064
+ 'odt',
2065
+ 'offline_bolt',
2066
+ 'offline_pin',
2067
+ 'offline_pin_off',
2068
+ 'offline_share',
2069
+ 'oil_barrel',
2070
+ 'on_device_training',
2071
+ 'on_hub_device',
2072
+ 'oncology',
2073
+ 'online_prediction',
2074
+ 'onsen',
2075
+ 'opacity',
2076
+ 'open_in_browser',
2077
+ 'open_in_full',
2078
+ 'open_in_new',
2079
+ 'open_in_new_down',
2080
+ 'open_in_new_off',
2081
+ 'open_in_phone',
2082
+ 'open_jam',
2083
+ 'open_run',
2084
+ 'open_with',
2085
+ 'ophthalmology',
2086
+ 'oral_disease',
2087
+ 'orbit',
2088
+ 'order_approve',
2089
+ 'order_play',
2090
+ 'orders',
2091
+ 'orthopedics',
2092
+ 'other_admission',
2093
+ 'other_houses',
2094
+ 'outbound',
2095
+ 'outbox',
2096
+ 'outbox_alt',
2097
+ 'outdoor_garden',
2098
+ 'outdoor_grill',
2099
+ 'outgoing_mail',
2100
+ 'outlet',
2101
+ 'outpatient',
2102
+ 'outpatient_med',
2103
+ 'output',
2104
+ 'output_circle',
2105
+ 'oven',
2106
+ 'oven_gen',
2107
+ 'overview',
2108
+ 'overview_key',
2109
+ 'oxygen_saturation',
2110
+ 'p2p',
2111
+ 'pace',
2112
+ 'pacemaker',
2113
+ 'package',
2114
+ 'package_2',
2115
+ 'padding',
2116
+ 'page_control',
2117
+ 'page_info',
2118
+ 'pageless',
2119
+ 'pages',
2120
+ 'pageview',
2121
+ 'paid',
2122
+ 'palette',
2123
+ 'pallet',
2124
+ 'pan_tool',
2125
+ 'pan_tool_alt',
2126
+ 'pan_zoom',
2127
+ 'panorama',
2128
+ 'panorama_horizontal',
2129
+ 'panorama_photosphere',
2130
+ 'panorama_vertical',
2131
+ 'panorama_wide_angle',
2132
+ 'paragliding',
2133
+ 'park',
2134
+ 'partly_cloudy_day',
2135
+ 'partly_cloudy_night',
2136
+ 'partner_exchange',
2137
+ 'partner_reports',
2138
+ 'party_mode',
2139
+ 'passkey',
2140
+ 'password',
2141
+ 'password_2',
2142
+ 'password_2_off',
2143
+ 'patient_list',
2144
+ 'pattern',
2145
+ 'pause',
2146
+ 'pause_circle',
2147
+ 'pause_presentation',
2148
+ 'payments',
2149
+ 'pedal_bike',
2150
+ 'pediatrics',
2151
+ 'pen_size_1',
2152
+ 'pen_size_2',
2153
+ 'pen_size_3',
2154
+ 'pen_size_4',
2155
+ 'pen_size_5',
2156
+ 'pending',
2157
+ 'pending_actions',
2158
+ 'pentagon',
2159
+ 'percent',
2160
+ 'pergola',
2161
+ 'perm_camera_mic',
2162
+ 'perm_contact_calendar',
2163
+ 'perm_data_setting',
2164
+ 'perm_device_information',
2165
+ 'perm_media',
2166
+ 'perm_phone_msg',
2167
+ 'perm_scan_wifi',
2168
+ 'person',
2169
+ 'person_2',
2170
+ 'person_3',
2171
+ 'person_4',
2172
+ 'person_add',
2173
+ 'person_add_disabled',
2174
+ 'person_alert',
2175
+ 'person_apron',
2176
+ 'person_book',
2177
+ 'person_cancel',
2178
+ 'person_celebrate',
2179
+ 'person_check',
2180
+ 'person_edit',
2181
+ 'person_off',
2182
+ 'person_pin',
2183
+ 'person_pin_circle',
2184
+ 'person_play',
2185
+ 'person_raised_hand',
2186
+ 'person_remove',
2187
+ 'person_search',
2188
+ 'personal_bag',
2189
+ 'personal_bag_off',
2190
+ 'personal_bag_question',
2191
+ 'personal_injury',
2192
+ 'personal_places',
2193
+ 'pest_control',
2194
+ 'pest_control_rodent',
2195
+ 'pet_supplies',
2196
+ 'pets',
2197
+ 'phishing',
2198
+ 'phone_android',
2199
+ 'phone_bluetooth_speaker',
2200
+ 'phone_callback',
2201
+ 'phone_disabled',
2202
+ 'phone_enabled',
2203
+ 'phone_forwarded',
2204
+ 'phone_in_talk',
2205
+ 'phone_iphone',
2206
+ 'phone_locked',
2207
+ 'phone_missed',
2208
+ 'phone_paused',
2209
+ 'phonelink_erase',
2210
+ 'phonelink_lock',
2211
+ 'phonelink_off',
2212
+ 'phonelink_ring',
2213
+ 'phonelink_ring_off',
2214
+ 'phonelink_setup',
2215
+ 'photo',
2216
+ 'photo_album',
2217
+ 'photo_auto_merge',
2218
+ 'photo_camera',
2219
+ 'photo_camera_back',
2220
+ 'photo_camera_front',
2221
+ 'photo_frame',
2222
+ 'photo_library',
2223
+ 'photo_prints',
2224
+ 'photo_size_select_large',
2225
+ 'photo_size_select_small',
2226
+ 'php',
2227
+ 'physical_therapy',
2228
+ 'piano',
2229
+ 'piano_off',
2230
+ 'picture_as_pdf',
2231
+ 'picture_in_picture',
2232
+ 'picture_in_picture_alt',
2233
+ 'picture_in_picture_center',
2234
+ 'picture_in_picture_large',
2235
+ 'picture_in_picture_medium',
2236
+ 'picture_in_picture_mobile',
2237
+ 'picture_in_picture_off',
2238
+ 'picture_in_picture_small',
2239
+ 'pie_chart',
2240
+ 'pill',
2241
+ 'pill_off',
2242
+ 'pin',
2243
+ 'pin_drop',
2244
+ 'pin_end',
2245
+ 'pin_invoke',
2246
+ 'pinch',
2247
+ 'pinch_zoom_in',
2248
+ 'pinch_zoom_out',
2249
+ 'pip',
2250
+ 'pip_exit',
2251
+ 'pivot_table_chart',
2252
+ 'place_item',
2253
+ 'plagiarism',
2254
+ 'planner_banner_ad_pt',
2255
+ 'planner_review',
2256
+ 'play_arrow',
2257
+ 'play_circle',
2258
+ 'play_disabled',
2259
+ 'play_for_work',
2260
+ 'play_lesson',
2261
+ 'play_pause',
2262
+ 'playing_cards',
2263
+ 'playlist_add',
2264
+ 'playlist_add_check',
2265
+ 'playlist_add_check_circle',
2266
+ 'playlist_add_circle',
2267
+ 'playlist_play',
2268
+ 'playlist_remove',
2269
+ 'plumbing',
2270
+ 'podcasts',
2271
+ 'podiatry',
2272
+ 'podium',
2273
+ 'point_of_sale',
2274
+ 'point_scan',
2275
+ 'poker_chip',
2276
+ 'policy',
2277
+ 'policy_alert',
2278
+ 'polyline',
2279
+ 'polymer',
2280
+ 'pool',
2281
+ 'portable_wifi_off',
2282
+ 'position_bottom_left',
2283
+ 'position_bottom_right',
2284
+ 'position_top_right',
2285
+ 'post',
2286
+ 'post_add',
2287
+ 'potted_plant',
2288
+ 'power',
2289
+ 'power_input',
2290
+ 'power_off',
2291
+ 'power_settings_circle',
2292
+ 'power_settings_new',
2293
+ 'prayer_times',
2294
+ 'precision_manufacturing',
2295
+ 'pregnancy',
2296
+ 'pregnant_woman',
2297
+ 'preliminary',
2298
+ 'prescriptions',
2299
+ 'present_to_all',
2300
+ 'preview',
2301
+ 'preview_off',
2302
+ 'price_change',
2303
+ 'price_check',
2304
+ 'print',
2305
+ 'print_add',
2306
+ 'print_connect',
2307
+ 'print_disabled',
2308
+ 'print_error',
2309
+ 'print_lock',
2310
+ 'priority',
2311
+ 'priority_high',
2312
+ 'privacy',
2313
+ 'privacy_tip',
2314
+ 'private_connectivity',
2315
+ 'problem',
2316
+ 'procedure',
2317
+ 'process_chart',
2318
+ 'production_quantity_limits',
2319
+ 'productivity',
2320
+ 'progress_activity',
2321
+ 'prompt_suggestion',
2322
+ 'propane',
2323
+ 'propane_tank',
2324
+ 'psychiatry',
2325
+ 'psychology',
2326
+ 'psychology_alt',
2327
+ 'public',
2328
+ 'public_off',
2329
+ 'publish',
2330
+ 'published_with_changes',
2331
+ 'pulmonology',
2332
+ 'pulse_alert',
2333
+ 'punch_clock',
2334
+ 'qr_code',
2335
+ 'qr_code_2',
2336
+ 'qr_code_2_add',
2337
+ 'qr_code_scanner',
2338
+ 'query_stats',
2339
+ 'question_exchange',
2340
+ 'question_mark',
2341
+ 'queue_music',
2342
+ 'queue_play_next',
2343
+ 'quick_phrases',
2344
+ 'quick_reference',
2345
+ 'quick_reference_all',
2346
+ 'quick_reorder',
2347
+ 'quickreply',
2348
+ 'quiz',
2349
+ 'r_mobiledata',
2350
+ 'radar',
2351
+ 'radio',
2352
+ 'radio_button_checked',
2353
+ 'radio_button_partial',
2354
+ 'radio_button_unchecked',
2355
+ 'radiology',
2356
+ 'railway_alert',
2357
+ 'railway_alert_2',
2358
+ 'rainy',
2359
+ 'rainy_heavy',
2360
+ 'rainy_light',
2361
+ 'rainy_snow',
2362
+ 'ramen_dining',
2363
+ 'ramp_left',
2364
+ 'ramp_right',
2365
+ 'range_hood',
2366
+ 'rate_review',
2367
+ 'raven',
2368
+ 'raw_off',
2369
+ 'raw_on',
2370
+ 'read_more',
2371
+ 'readiness_score',
2372
+ 'real_estate_agent',
2373
+ 'rear_camera',
2374
+ 'rebase',
2375
+ 'rebase_edit',
2376
+ 'receipt',
2377
+ 'receipt_long',
2378
+ 'receipt_long_off',
2379
+ 'recent_actors',
2380
+ 'recent_patient',
2381
+ 'recenter',
2382
+ 'recommend',
2383
+ 'record_voice_over',
2384
+ 'rectangle',
2385
+ 'recycling',
2386
+ 'redeem',
2387
+ 'redo',
2388
+ 'reduce_capacity',
2389
+ 'refresh',
2390
+ 'regular_expression',
2391
+ 'relax',
2392
+ 'release_alert',
2393
+ 'remember_me',
2394
+ 'reminder',
2395
+ 'remote_gen',
2396
+ 'remove',
2397
+ 'remove_done',
2398
+ 'remove_from_queue',
2399
+ 'remove_moderator',
2400
+ 'remove_road',
2401
+ 'remove_selection',
2402
+ 'remove_shopping_cart',
2403
+ 'reopen_window',
2404
+ 'reorder',
2405
+ 'repartition',
2406
+ 'repeat',
2407
+ 'repeat_on',
2408
+ 'repeat_one',
2409
+ 'repeat_one_on',
2410
+ 'replace_audio',
2411
+ 'replace_image',
2412
+ 'replace_video',
2413
+ 'replay',
2414
+ 'replay_10',
2415
+ 'replay_30',
2416
+ 'replay_5',
2417
+ 'reply',
2418
+ 'reply_all',
2419
+ 'report',
2420
+ 'report_off',
2421
+ 'request_page',
2422
+ 'request_quote',
2423
+ 'reset_brightness',
2424
+ 'reset_focus',
2425
+ 'reset_image',
2426
+ 'reset_iso',
2427
+ 'reset_settings',
2428
+ 'reset_shadow',
2429
+ 'reset_shutter_speed',
2430
+ 'reset_tv',
2431
+ 'reset_white_balance',
2432
+ 'reset_wrench',
2433
+ 'resize',
2434
+ 'respiratory_rate',
2435
+ 'responsive_layout',
2436
+ 'restart_alt',
2437
+ 'restaurant',
2438
+ 'restore_from_trash',
2439
+ 'restore_page',
2440
+ 'resume',
2441
+ 'reviews',
2442
+ 'rewarded_ads',
2443
+ 'rheumatology',
2444
+ 'rib_cage',
2445
+ 'rice_bowl',
2446
+ 'right_click',
2447
+ 'right_panel_close',
2448
+ 'right_panel_open',
2449
+ 'ring_volume',
2450
+ 'ripples',
2451
+ 'road',
2452
+ 'robot',
2453
+ 'robot_2',
2454
+ 'rocket',
2455
+ 'rocket_launch',
2456
+ 'roller_shades',
2457
+ 'roller_shades_closed',
2458
+ 'roller_skating',
2459
+ 'roofing',
2460
+ 'room_preferences',
2461
+ 'room_service',
2462
+ 'rotate_90_degrees_ccw',
2463
+ 'rotate_90_degrees_cw',
2464
+ 'rotate_auto',
2465
+ 'rotate_left',
2466
+ 'rotate_right',
2467
+ 'roundabout_left',
2468
+ 'roundabout_right',
2469
+ 'rounded_corner',
2470
+ 'route',
2471
+ 'router',
2472
+ 'routine',
2473
+ 'rowing',
2474
+ 'rss_feed',
2475
+ 'rsvp',
2476
+ 'rtt',
2477
+ 'rubric',
2478
+ 'rule',
2479
+ 'rule_folder',
2480
+ 'rule_settings',
2481
+ 'run_circle',
2482
+ 'running_with_errors',
2483
+ 'rv_hookup',
2484
+ 'safety_check',
2485
+ 'safety_check_off',
2486
+ 'safety_divider',
2487
+ 'sailing',
2488
+ 'salinity',
2489
+ 'sanitizer',
2490
+ 'satellite',
2491
+ 'satellite_alt',
2492
+ 'sauna',
2493
+ 'save',
2494
+ 'save_as',
2495
+ 'saved_search',
2496
+ 'savings',
2497
+ 'scale',
2498
+ 'scan',
2499
+ 'scan_delete',
2500
+ 'scanner',
2501
+ 'scatter_plot',
2502
+ 'scene',
2503
+ 'schedule',
2504
+ 'schedule_send',
2505
+ 'schema',
2506
+ 'school',
2507
+ 'science',
2508
+ 'science_off',
2509
+ 'scooter',
2510
+ 'score',
2511
+ 'scoreboard',
2512
+ 'screen_lock_landscape',
2513
+ 'screen_lock_portrait',
2514
+ 'screen_lock_rotation',
2515
+ 'screen_record',
2516
+ 'screen_rotation',
2517
+ 'screen_rotation_alt',
2518
+ 'screen_rotation_up',
2519
+ 'screen_search_desktop',
2520
+ 'screen_share',
2521
+ 'screenshot',
2522
+ 'screenshot_frame',
2523
+ 'screenshot_keyboard',
2524
+ 'screenshot_monitor',
2525
+ 'screenshot_region',
2526
+ 'screenshot_tablet',
2527
+ 'script',
2528
+ 'scrollable_header',
2529
+ 'scuba_diving',
2530
+ 'sd',
2531
+ 'sd_card',
2532
+ 'sd_card_alert',
2533
+ 'sdk',
2534
+ 'search',
2535
+ 'search_check',
2536
+ 'search_check_2',
2537
+ 'search_hands_free',
2538
+ 'search_insights',
2539
+ 'search_off',
2540
+ 'security',
2541
+ 'security_key',
2542
+ 'security_update_good',
2543
+ 'security_update_warning',
2544
+ 'segment',
2545
+ 'select',
2546
+ 'select_all',
2547
+ 'select_check_box',
2548
+ 'select_to_speak',
2549
+ 'select_window',
2550
+ 'select_window_2',
2551
+ 'select_window_off',
2552
+ 'self_care',
2553
+ 'self_improvement',
2554
+ 'sell',
2555
+ 'send',
2556
+ 'send_and_archive',
2557
+ 'send_money',
2558
+ 'send_time_extension',
2559
+ 'send_to_mobile',
2560
+ 'sensor_door',
2561
+ 'sensor_occupied',
2562
+ 'sensor_window',
2563
+ 'sensors',
2564
+ 'sensors_krx',
2565
+ 'sensors_krx_off',
2566
+ 'sensors_off',
2567
+ 'sentiment_calm',
2568
+ 'sentiment_content',
2569
+ 'sentiment_dissatisfied',
2570
+ 'sentiment_excited',
2571
+ 'sentiment_extremely_dissatisfied',
2572
+ 'sentiment_frustrated',
2573
+ 'sentiment_neutral',
2574
+ 'sentiment_sad',
2575
+ 'sentiment_satisfied',
2576
+ 'sentiment_stressed',
2577
+ 'sentiment_very_dissatisfied',
2578
+ 'sentiment_very_satisfied',
2579
+ 'sentiment_worried',
2580
+ 'serif',
2581
+ 'service_toolbox',
2582
+ 'set_meal',
2583
+ 'settings',
2584
+ 'settings_accessibility',
2585
+ 'settings_account_box',
2586
+ 'settings_alert',
2587
+ 'settings_applications',
2588
+ 'settings_b_roll',
2589
+ 'settings_backup_restore',
2590
+ 'settings_bluetooth',
2591
+ 'settings_brightness',
2592
+ 'settings_cell',
2593
+ 'settings_cinematic_blur',
2594
+ 'settings_ethernet',
2595
+ 'settings_heart',
2596
+ 'settings_input_antenna',
2597
+ 'settings_input_component',
2598
+ 'settings_input_hdmi',
2599
+ 'settings_input_svideo',
2600
+ 'settings_motion_mode',
2601
+ 'settings_night_sight',
2602
+ 'settings_overscan',
2603
+ 'settings_panorama',
2604
+ 'settings_phone',
2605
+ 'settings_photo_camera',
2606
+ 'settings_power',
2607
+ 'settings_remote',
2608
+ 'settings_slow_motion',
2609
+ 'settings_system_daydream',
2610
+ 'settings_timelapse',
2611
+ 'settings_video_camera',
2612
+ 'settings_voice',
2613
+ 'settop_component',
2614
+ 'severe_cold',
2615
+ 'shadow',
2616
+ 'shadow_add',
2617
+ 'shadow_minus',
2618
+ 'shape_line',
2619
+ 'shapes',
2620
+ 'share',
2621
+ 'share_location',
2622
+ 'share_off',
2623
+ 'share_reviews',
2624
+ 'share_windows',
2625
+ 'sheets_rtl',
2626
+ 'shelf_auto_hide',
2627
+ 'shelf_position',
2628
+ 'shelves',
2629
+ 'shield',
2630
+ 'shield_lock',
2631
+ 'shield_locked',
2632
+ 'shield_moon',
2633
+ 'shield_person',
2634
+ 'shield_question',
2635
+ 'shield_with_heart',
2636
+ 'shield_with_house',
2637
+ 'shift',
2638
+ 'shift_lock',
2639
+ 'shift_lock_off',
2640
+ 'shop',
2641
+ 'shop_two',
2642
+ 'shopping_bag',
2643
+ 'shopping_basket',
2644
+ 'shopping_cart',
2645
+ 'shopping_cart_checkout',
2646
+ 'shopping_cart_off',
2647
+ 'shoppingmode',
2648
+ 'short_stay',
2649
+ 'short_text',
2650
+ 'show_chart',
2651
+ 'shower',
2652
+ 'shuffle',
2653
+ 'shuffle_on',
2654
+ 'shutter_speed',
2655
+ 'shutter_speed_add',
2656
+ 'shutter_speed_minus',
2657
+ 'sick',
2658
+ 'side_navigation',
2659
+ 'sign_language',
2660
+ 'signal_cellular_0_bar',
2661
+ 'signal_cellular_1_bar',
2662
+ 'signal_cellular_2_bar',
2663
+ 'signal_cellular_3_bar',
2664
+ 'signal_cellular_4_bar',
2665
+ 'signal_cellular_add',
2666
+ 'signal_cellular_alt',
2667
+ 'signal_cellular_alt_1_bar',
2668
+ 'signal_cellular_alt_2_bar',
2669
+ 'signal_cellular_connected_no_internet_0_bar',
2670
+ 'signal_cellular_connected_no_internet_4_bar',
2671
+ 'signal_cellular_nodata',
2672
+ 'signal_cellular_null',
2673
+ 'signal_cellular_off',
2674
+ 'signal_cellular_pause',
2675
+ 'signal_disconnected',
2676
+ 'signal_wifi_0_bar',
2677
+ 'signal_wifi_4_bar',
2678
+ 'signal_wifi_bad',
2679
+ 'signal_wifi_off',
2680
+ 'signal_wifi_statusbar_not_connected',
2681
+ 'signal_wifi_statusbar_null',
2682
+ 'signature',
2683
+ 'signpost',
2684
+ 'sim_card',
2685
+ 'sim_card_download',
2686
+ 'single_bed',
2687
+ 'sip',
2688
+ 'skateboarding',
2689
+ 'skeleton',
2690
+ 'skillet',
2691
+ 'skillet_cooktop',
2692
+ 'skip_next',
2693
+ 'skip_previous',
2694
+ 'skull',
2695
+ 'slab_serif',
2696
+ 'sledding',
2697
+ 'sleep_score',
2698
+ 'slide_library',
2699
+ 'sliders',
2700
+ 'slideshow',
2701
+ 'slow_motion_video',
2702
+ 'smart_card_reader',
2703
+ 'smart_card_reader_off',
2704
+ 'smart_display',
2705
+ 'smart_outlet',
2706
+ 'smart_screen',
2707
+ 'smart_toy',
2708
+ 'smartphone',
2709
+ 'smartphone_camera',
2710
+ 'smb_share',
2711
+ 'smoke_free',
2712
+ 'smoking_rooms',
2713
+ 'sms',
2714
+ 'snippet_folder',
2715
+ 'snooze',
2716
+ 'snowboarding',
2717
+ 'snowing',
2718
+ 'snowing_heavy',
2719
+ 'snowmobile',
2720
+ 'snowshoeing',
2721
+ 'soap',
2722
+ 'social_distance',
2723
+ 'social_leaderboard',
2724
+ 'solar_power',
2725
+ 'sort',
2726
+ 'sort_by_alpha',
2727
+ 'sos',
2728
+ 'sound_detection_dog_barking',
2729
+ 'sound_detection_glass_break',
2730
+ 'sound_detection_loud_sound',
2731
+ 'sound_sampler',
2732
+ 'soup_kitchen',
2733
+ 'source_environment',
2734
+ 'source_notes',
2735
+ 'south',
2736
+ 'south_america',
2737
+ 'south_east',
2738
+ 'south_west',
2739
+ 'spa',
2740
+ 'space_bar',
2741
+ 'space_dashboard',
2742
+ 'spatial_audio',
2743
+ 'spatial_audio_off',
2744
+ 'spatial_speaker',
2745
+ 'spatial_tracking',
2746
+ 'speaker',
2747
+ 'speaker_group',
2748
+ 'speaker_notes',
2749
+ 'speaker_notes_off',
2750
+ 'speaker_phone',
2751
+ 'special_character',
2752
+ 'specific_gravity',
2753
+ 'speech_to_text',
2754
+ 'speed',
2755
+ 'speed_0_25',
2756
+ 'speed_0_2x',
2757
+ 'speed_0_5',
2758
+ 'speed_0_5x',
2759
+ 'speed_0_75',
2760
+ 'speed_0_7x',
2761
+ 'speed_1_2',
2762
+ 'speed_1_25',
2763
+ 'speed_1_2x',
2764
+ 'speed_1_5',
2765
+ 'speed_1_5x',
2766
+ 'speed_1_75',
2767
+ 'speed_1_7x',
2768
+ 'speed_2x',
2769
+ 'speed_camera',
2770
+ 'spellcheck',
2771
+ 'splitscreen',
2772
+ 'splitscreen_add',
2773
+ 'splitscreen_bottom',
2774
+ 'splitscreen_landscape',
2775
+ 'splitscreen_left',
2776
+ 'splitscreen_portrait',
2777
+ 'splitscreen_right',
2778
+ 'splitscreen_top',
2779
+ 'splitscreen_vertical_add',
2780
+ 'spo2',
2781
+ 'spoke',
2782
+ 'sports',
2783
+ 'sports_and_outdoors',
2784
+ 'sports_bar',
2785
+ 'sports_baseball',
2786
+ 'sports_basketball',
2787
+ 'sports_cricket',
2788
+ 'sports_esports',
2789
+ 'sports_football',
2790
+ 'sports_golf',
2791
+ 'sports_gymnastics',
2792
+ 'sports_handball',
2793
+ 'sports_hockey',
2794
+ 'sports_kabaddi',
2795
+ 'sports_martial_arts',
2796
+ 'sports_mma',
2797
+ 'sports_motorsports',
2798
+ 'sports_rugby',
2799
+ 'sports_score',
2800
+ 'sports_soccer',
2801
+ 'sports_tennis',
2802
+ 'sports_volleyball',
2803
+ 'sprinkler',
2804
+ 'sprint',
2805
+ 'square',
2806
+ 'square_foot',
2807
+ 'ssid_chart',
2808
+ 'stack',
2809
+ 'stack_hexagon',
2810
+ 'stack_off',
2811
+ 'stack_star',
2812
+ 'stacked_bar_chart',
2813
+ 'stacked_email',
2814
+ 'stacked_inbox',
2815
+ 'stacked_line_chart',
2816
+ 'stacks',
2817
+ 'stadia_controller',
2818
+ 'stadium',
2819
+ 'stairs',
2820
+ 'stairs_2',
2821
+ 'star',
2822
+ 'star_half',
2823
+ 'star_rate',
2824
+ 'star_rate_half',
2825
+ 'stars',
2826
+ 'start',
2827
+ 'stat_0',
2828
+ 'stat_1',
2829
+ 'stat_2',
2830
+ 'stat_3',
2831
+ 'stat_minus_1',
2832
+ 'stat_minus_2',
2833
+ 'stat_minus_3',
2834
+ 'stay_current_landscape',
2835
+ 'stay_current_portrait',
2836
+ 'stay_primary_landscape',
2837
+ 'stay_primary_portrait',
2838
+ 'step',
2839
+ 'step_into',
2840
+ 'step_out',
2841
+ 'step_over',
2842
+ 'steppers',
2843
+ 'steps',
2844
+ 'stethoscope',
2845
+ 'stethoscope_arrow',
2846
+ 'stethoscope_check',
2847
+ 'sticky_note',
2848
+ 'sticky_note_2',
2849
+ 'stock_media',
2850
+ 'stockpot',
2851
+ 'stop',
2852
+ 'stop_circle',
2853
+ 'stop_screen_share',
2854
+ 'storage',
2855
+ 'store',
2856
+ 'storefront',
2857
+ 'storm',
2858
+ 'straight',
2859
+ 'straighten',
2860
+ 'strategy',
2861
+ 'stream',
2862
+ 'stream_apps',
2863
+ 'streetview',
2864
+ 'stress_management',
2865
+ 'strikethrough_s',
2866
+ 'stroke_full',
2867
+ 'stroke_partial',
2868
+ 'stroller',
2869
+ 'style',
2870
+ 'styler',
2871
+ 'stylus',
2872
+ 'stylus_laser_pointer',
2873
+ 'stylus_note',
2874
+ 'subdirectory_arrow_left',
2875
+ 'subdirectory_arrow_right',
2876
+ 'subheader',
2877
+ 'subject',
2878
+ 'subscript',
2879
+ 'subscriptions',
2880
+ 'subtitles',
2881
+ 'subtitles_off',
2882
+ 'subway',
2883
+ 'summarize',
2884
+ 'sunny',
2885
+ 'sunny_snowing',
2886
+ 'superscript',
2887
+ 'supervised_user_circle',
2888
+ 'supervised_user_circle_off',
2889
+ 'supervisor_account',
2890
+ 'support',
2891
+ 'support_agent',
2892
+ 'surfing',
2893
+ 'surgical',
2894
+ 'surround_sound',
2895
+ 'swap_calls',
2896
+ 'swap_driving_apps',
2897
+ 'swap_driving_apps_wheel',
2898
+ 'swap_horiz',
2899
+ 'swap_horizontal_circle',
2900
+ 'swap_vert',
2901
+ 'swap_vertical_circle',
2902
+ 'sweep',
2903
+ 'swipe',
2904
+ 'swipe_down',
2905
+ 'swipe_down_alt',
2906
+ 'swipe_left',
2907
+ 'swipe_left_alt',
2908
+ 'swipe_right',
2909
+ 'swipe_right_alt',
2910
+ 'swipe_up',
2911
+ 'swipe_up_alt',
2912
+ 'swipe_vertical',
2913
+ 'switch',
2914
+ 'switch_access',
2915
+ 'switch_access_2',
2916
+ 'switch_access_shortcut',
2917
+ 'switch_access_shortcut_add',
2918
+ 'switch_account',
2919
+ 'switch_camera',
2920
+ 'switch_left',
2921
+ 'switch_right',
2922
+ 'switch_video',
2923
+ 'switches',
2924
+ 'sword_rose',
2925
+ 'swords',
2926
+ 'symptoms',
2927
+ 'synagogue',
2928
+ 'sync',
2929
+ 'sync_alt',
2930
+ 'sync_desktop',
2931
+ 'sync_disabled',
2932
+ 'sync_lock',
2933
+ 'sync_problem',
2934
+ 'sync_saved_locally',
2935
+ 'syringe',
2936
+ 'system_update',
2937
+ 'system_update_alt',
2938
+ 'tab',
2939
+ 'tab_close',
2940
+ 'tab_close_right',
2941
+ 'tab_duplicate',
2942
+ 'tab_group',
2943
+ 'tab_inactive',
2944
+ 'tab_move',
2945
+ 'tab_new_right',
2946
+ 'tab_recent',
2947
+ 'tab_unselected',
2948
+ 'table',
2949
+ 'table_bar',
2950
+ 'table_chart',
2951
+ 'table_chart_view',
2952
+ 'table_eye',
2953
+ 'table_lamp',
2954
+ 'table_restaurant',
2955
+ 'table_rows',
2956
+ 'table_rows_narrow',
2957
+ 'table_view',
2958
+ 'tablet',
2959
+ 'tablet_android',
2960
+ 'tablet_camera',
2961
+ 'tablet_mac',
2962
+ 'tabs',
2963
+ 'tactic',
2964
+ 'tag',
2965
+ 'takeout_dining',
2966
+ 'tamper_detection_off',
2967
+ 'tamper_detection_on',
2968
+ 'tap_and_play',
2969
+ 'tapas',
2970
+ 'target',
2971
+ 'task',
2972
+ 'task_alt',
2973
+ 'taunt',
2974
+ 'taxi_alert',
2975
+ 'team_dashboard',
2976
+ 'temp_preferences_eco',
2977
+ 'temple_buddhist',
2978
+ 'temple_hindu',
2979
+ 'tenancy',
2980
+ 'terminal',
2981
+ 'text_ad',
2982
+ 'text_decrease',
2983
+ 'text_fields',
2984
+ 'text_fields_alt',
2985
+ 'text_format',
2986
+ 'text_increase',
2987
+ 'text_rotate_up',
2988
+ 'text_rotate_vertical',
2989
+ 'text_rotation_angledown',
2990
+ 'text_rotation_angleup',
2991
+ 'text_rotation_down',
2992
+ 'text_rotation_none',
2993
+ 'text_select_end',
2994
+ 'text_select_jump_to_beginning',
2995
+ 'text_select_jump_to_end',
2996
+ 'text_select_move_back_character',
2997
+ 'text_select_move_back_word',
2998
+ 'text_select_move_down',
2999
+ 'text_select_move_forward_character',
3000
+ 'text_select_move_forward_word',
3001
+ 'text_select_move_up',
3002
+ 'text_select_start',
3003
+ 'text_snippet',
3004
+ 'text_to_speech',
3005
+ 'text_up',
3006
+ 'texture',
3007
+ 'texture_add',
3008
+ 'texture_minus',
3009
+ 'theater_comedy',
3010
+ 'theaters',
3011
+ 'thermometer',
3012
+ 'thermometer_add',
3013
+ 'thermometer_gain',
3014
+ 'thermometer_loss',
3015
+ 'thermometer_minus',
3016
+ 'thermostat',
3017
+ 'thermostat_auto',
3018
+ 'thermostat_carbon',
3019
+ 'things_to_do',
3020
+ 'thread_unread',
3021
+ 'thumb_down',
3022
+ 'thumb_up',
3023
+ 'thumbnail_bar',
3024
+ 'thumbs_up_down',
3025
+ 'thunderstorm',
3026
+ 'tibia',
3027
+ 'tibia_alt',
3028
+ 'time_auto',
3029
+ 'timelapse',
3030
+ 'timeline',
3031
+ 'timer',
3032
+ 'timer_10',
3033
+ 'timer_10_alt_1',
3034
+ 'timer_10_select',
3035
+ 'timer_3',
3036
+ 'timer_3_alt_1',
3037
+ 'timer_3_select',
3038
+ 'timer_5',
3039
+ 'timer_5_shutter',
3040
+ 'timer_off',
3041
+ 'timer_pause',
3042
+ 'timer_play',
3043
+ 'tire_repair',
3044
+ 'title',
3045
+ 'titlecase',
3046
+ 'toast',
3047
+ 'toc',
3048
+ 'today',
3049
+ 'toggle_off',
3050
+ 'toggle_on',
3051
+ 'token',
3052
+ 'toll',
3053
+ 'tonality',
3054
+ 'toolbar',
3055
+ 'tools_flat_head',
3056
+ 'tools_installation_kit',
3057
+ 'tools_ladder',
3058
+ 'tools_level',
3059
+ 'tools_phillips',
3060
+ 'tools_pliers_wire_stripper',
3061
+ 'tools_power_drill',
3062
+ 'tooltip',
3063
+ 'top_panel_close',
3064
+ 'top_panel_open',
3065
+ 'topic',
3066
+ 'tornado',
3067
+ 'total_dissolved_solids',
3068
+ 'touch_app',
3069
+ 'touchpad_mouse',
3070
+ 'touchpad_mouse_off',
3071
+ 'tour',
3072
+ 'toys',
3073
+ 'toys_and_games',
3074
+ 'toys_fan',
3075
+ 'track_changes',
3076
+ 'trackpad_input',
3077
+ 'trackpad_input_2',
3078
+ 'trackpad_input_3',
3079
+ 'traffic',
3080
+ 'traffic_jam',
3081
+ 'trail_length',
3082
+ 'trail_length_medium',
3083
+ 'trail_length_short',
3084
+ 'train',
3085
+ 'tram',
3086
+ 'transcribe',
3087
+ 'transfer_within_a_station',
3088
+ 'transform',
3089
+ 'transgender',
3090
+ 'transit_enterexit',
3091
+ 'transit_ticket',
3092
+ 'transition_chop',
3093
+ 'transition_dissolve',
3094
+ 'transition_fade',
3095
+ 'transition_push',
3096
+ 'transition_slide',
3097
+ 'translate',
3098
+ 'transportation',
3099
+ 'travel',
3100
+ 'travel_explore',
3101
+ 'travel_luggage_and_bags',
3102
+ 'trending_down',
3103
+ 'trending_flat',
3104
+ 'trending_up',
3105
+ 'trip',
3106
+ 'trip_origin',
3107
+ 'trolley',
3108
+ 'trolley_cable_car',
3109
+ 'trophy',
3110
+ 'troubleshoot',
3111
+ 'tsunami',
3112
+ 'tsv',
3113
+ 'tty',
3114
+ 'tune',
3115
+ 'turn_left',
3116
+ 'turn_right',
3117
+ 'turn_sharp_left',
3118
+ 'turn_sharp_right',
3119
+ 'turn_slight_left',
3120
+ 'turn_slight_right',
3121
+ 'tv',
3122
+ 'tv_gen',
3123
+ 'tv_guide',
3124
+ 'tv_off',
3125
+ 'tv_options_edit_channels',
3126
+ 'tv_options_input_settings',
3127
+ 'tv_remote',
3128
+ 'tv_signin',
3129
+ 'tv_with_assistant',
3130
+ 'two_pager',
3131
+ 'two_wheeler',
3132
+ 'type_specimen',
3133
+ 'u_turn_left',
3134
+ 'u_turn_right',
3135
+ 'ulna_radius',
3136
+ 'ulna_radius_alt',
3137
+ 'umbrella',
3138
+ 'unarchive',
3139
+ 'undo',
3140
+ 'unfold_less',
3141
+ 'unfold_less_double',
3142
+ 'unfold_more',
3143
+ 'unfold_more_double',
3144
+ 'ungroup',
3145
+ 'universal_currency',
3146
+ 'universal_currency_alt',
3147
+ 'universal_local',
3148
+ 'unknown_2',
3149
+ 'unknown_5',
3150
+ 'unknown_7',
3151
+ 'unknown_document',
3152
+ 'unknown_med',
3153
+ 'unlicense',
3154
+ 'unpaved_road',
3155
+ 'unpublished',
3156
+ 'unsubscribe',
3157
+ 'upcoming',
3158
+ 'update',
3159
+ 'update_disabled',
3160
+ 'upgrade',
3161
+ 'upload',
3162
+ 'upload_2',
3163
+ 'upload_file',
3164
+ 'uppercase',
3165
+ 'urology',
3166
+ 'usb',
3167
+ 'usb_off',
3168
+ 'user_attributes',
3169
+ 'vaccines',
3170
+ 'vacuum',
3171
+ 'valve',
3172
+ 'vape_free',
3173
+ 'vaping_rooms',
3174
+ 'variable_add',
3175
+ 'variable_insert',
3176
+ 'variable_remove',
3177
+ 'variables',
3178
+ 'ventilator',
3179
+ 'verified',
3180
+ 'verified_user',
3181
+ 'vertical_align_bottom',
3182
+ 'vertical_align_center',
3183
+ 'vertical_align_top',
3184
+ 'vertical_distribute',
3185
+ 'vertical_shades',
3186
+ 'vertical_shades_closed',
3187
+ 'vertical_split',
3188
+ 'vibration',
3189
+ 'video_call',
3190
+ 'video_camera_back',
3191
+ 'video_camera_back_add',
3192
+ 'video_camera_front',
3193
+ 'video_camera_front_off',
3194
+ 'video_chat',
3195
+ 'video_file',
3196
+ 'video_label',
3197
+ 'video_library',
3198
+ 'video_search',
3199
+ 'video_settings',
3200
+ 'video_stable',
3201
+ 'videocam',
3202
+ 'videocam_off',
3203
+ 'videogame_asset',
3204
+ 'videogame_asset_off',
3205
+ 'view_agenda',
3206
+ 'view_array',
3207
+ 'view_carousel',
3208
+ 'view_column',
3209
+ 'view_column_2',
3210
+ 'view_comfy',
3211
+ 'view_comfy_alt',
3212
+ 'view_compact',
3213
+ 'view_compact_alt',
3214
+ 'view_cozy',
3215
+ 'view_day',
3216
+ 'view_headline',
3217
+ 'view_in_ar',
3218
+ 'view_in_ar_off',
3219
+ 'view_kanban',
3220
+ 'view_list',
3221
+ 'view_module',
3222
+ 'view_object_track',
3223
+ 'view_quilt',
3224
+ 'view_real_size',
3225
+ 'view_sidebar',
3226
+ 'view_stream',
3227
+ 'view_timeline',
3228
+ 'view_week',
3229
+ 'vignette',
3230
+ 'villa',
3231
+ 'visibility',
3232
+ 'visibility_lock',
3233
+ 'visibility_off',
3234
+ 'vital_signs',
3235
+ 'vo2_max',
3236
+ 'voice_chat',
3237
+ 'voice_over_off',
3238
+ 'voice_selection',
3239
+ 'voice_selection_off',
3240
+ 'voicemail',
3241
+ 'volcano',
3242
+ 'volume_down',
3243
+ 'volume_down_alt',
3244
+ 'volume_mute',
3245
+ 'volume_off',
3246
+ 'volume_up',
3247
+ 'volunteer_activism',
3248
+ 'voting_chip',
3249
+ 'vpn_key',
3250
+ 'vpn_key_alert',
3251
+ 'vpn_key_off',
3252
+ 'vpn_lock',
3253
+ 'vr180_create2d',
3254
+ 'vr180_create2d_off',
3255
+ 'vrpano',
3256
+ 'wall_art',
3257
+ 'wall_lamp',
3258
+ 'wallet',
3259
+ 'wallpaper',
3260
+ 'wallpaper_slideshow',
3261
+ 'ward',
3262
+ 'warehouse',
3263
+ 'warning',
3264
+ 'warning_off',
3265
+ 'wash',
3266
+ 'watch',
3267
+ 'watch_button_press',
3268
+ 'watch_check',
3269
+ 'watch_off',
3270
+ 'watch_screentime',
3271
+ 'watch_vibration',
3272
+ 'watch_wake',
3273
+ 'water',
3274
+ 'water_bottle',
3275
+ 'water_bottle_large',
3276
+ 'water_damage',
3277
+ 'water_do',
3278
+ 'water_drop',
3279
+ 'water_ec',
3280
+ 'water_full',
3281
+ 'water_heater',
3282
+ 'water_lock',
3283
+ 'water_loss',
3284
+ 'water_lux',
3285
+ 'water_medium',
3286
+ 'water_orp',
3287
+ 'water_ph',
3288
+ 'water_pump',
3289
+ 'water_voc',
3290
+ 'waterfall_chart',
3291
+ 'waves',
3292
+ 'waving_hand',
3293
+ 'wb_auto',
3294
+ 'wb_incandescent',
3295
+ 'wb_iridescent',
3296
+ 'wb_shade',
3297
+ 'wb_sunny',
3298
+ 'wb_twilight',
3299
+ 'wc',
3300
+ 'weather_hail',
3301
+ 'weather_mix',
3302
+ 'weather_snowy',
3303
+ 'web',
3304
+ 'web_asset',
3305
+ 'web_asset_off',
3306
+ 'web_stories',
3307
+ 'web_traffic',
3308
+ 'webhook',
3309
+ 'weekend',
3310
+ 'weight',
3311
+ 'west',
3312
+ 'whatshot',
3313
+ 'wheelchair_pickup',
3314
+ 'where_to_vote',
3315
+ 'widgets',
3316
+ 'width',
3317
+ 'width_full',
3318
+ 'width_normal',
3319
+ 'width_wide',
3320
+ 'wifi',
3321
+ 'wifi_1_bar',
3322
+ 'wifi_2_bar',
3323
+ 'wifi_add',
3324
+ 'wifi_calling',
3325
+ 'wifi_calling_bar_1',
3326
+ 'wifi_calling_bar_2',
3327
+ 'wifi_calling_bar_3',
3328
+ 'wifi_channel',
3329
+ 'wifi_find',
3330
+ 'wifi_home',
3331
+ 'wifi_lock',
3332
+ 'wifi_notification',
3333
+ 'wifi_off',
3334
+ 'wifi_password',
3335
+ 'wifi_protected_setup',
3336
+ 'wifi_proxy',
3337
+ 'wifi_tethering',
3338
+ 'wifi_tethering_error',
3339
+ 'wifi_tethering_off',
3340
+ 'wind_power',
3341
+ 'window',
3342
+ 'window_closed',
3343
+ 'window_open',
3344
+ 'window_sensor',
3345
+ 'wine_bar',
3346
+ 'woman',
3347
+ 'woman_2',
3348
+ 'work',
3349
+ 'work_alert',
3350
+ 'work_history',
3351
+ 'work_update',
3352
+ 'workspace_premium',
3353
+ 'workspaces',
3354
+ 'wounds_injuries',
3355
+ 'wrap_text',
3356
+ 'wrist',
3357
+ 'wrong_location',
3358
+ 'wysiwyg',
3359
+ 'yard',
3360
+ 'your_trips',
3361
+ 'youtube_activity',
3362
+ 'youtube_searched_for',
3363
+ 'zone_person_alert',
3364
+ 'zone_person_idle',
3365
+ 'zone_person_urgent',
3366
+ 'zoom_in',
3367
+ 'zoom_in_map',
3368
+ 'zoom_out',
3369
+ 'zoom_out_map'
3370
+ ];
3371
+ export type MaterialSymbol = MaterialSymbols[number];
3372
+ export {};