current_versions.json 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118
  1. {
  2. "action::123": 1,
  3. "action::3d_rotation": 17,
  4. "action::abc": 1,
  5. "action::accessibility": 12,
  6. "action::accessibility_new": 12,
  7. "action::accessible": 13,
  8. "action::accessible_forward": 13,
  9. "action::account_balance": 19,
  10. "action::account_balance_wallet": 12,
  11. "action::account_box": 12,
  12. "action::account_circle": 17,
  13. "action::add_card": 1,
  14. "action::add_shopping_cart": 15,
  15. "action::add_task": 6,
  16. "action::add_to_drive": 18,
  17. "action::addchart": 13,
  18. "action::admin_panel_settings": 13,
  19. "action::ads_click": 3,
  20. "action::alarm": 12,
  21. "action::alarm_add": 12,
  22. "action::alarm_off": 12,
  23. "action::alarm_on": 12,
  24. "action::all_inbox": 11,
  25. "action::all_out": 12,
  26. "action::analytics": 12,
  27. "action::anchor": 7,
  28. "action::android": 15,
  29. "action::announcement": 18,
  30. "action::api": 7,
  31. "action::app_blocking": 13,
  32. "action::app_shortcut": 1,
  33. "action::arrow_circle_down": 8,
  34. "action::arrow_circle_left": 2,
  35. "action::arrow_circle_right": 2,
  36. "action::arrow_circle_up": 8,
  37. "action::arrow_right_alt": 13,
  38. "action::article": 13,
  39. "action::aspect_ratio": 12,
  40. "action::assessment": 12,
  41. "action::assignment": 13,
  42. "action::assignment_ind": 12,
  43. "action::assignment_late": 15,
  44. "action::assignment_return": 14,
  45. "action::assignment_returned": 12,
  46. "action::assignment_turned_in": 16,
  47. "action::assured_workload": 1,
  48. "action::autorenew": 12,
  49. "action::backup": 15,
  50. "action::backup_table": 11,
  51. "action::balance": 1,
  52. "action::batch_prediction": 12,
  53. "action::book": 14,
  54. "action::book_online": 10,
  55. "action::bookmark": 17,
  56. "action::bookmark_add": 3,
  57. "action::bookmark_added": 3,
  58. "action::bookmark_border": 12,
  59. "action::bookmark_remove": 3,
  60. "action::bookmarks": 12,
  61. "action::browse_gallery": 1,
  62. "action::bug_report": 12,
  63. "action::build": 12,
  64. "action::build_circle": 14,
  65. "action::cached": 12,
  66. "action::calendar_month": 1,
  67. "action::calendar_today": 12,
  68. "action::calendar_view_day": 15,
  69. "action::calendar_view_month": 10,
  70. "action::calendar_view_week": 10,
  71. "action::camera_enhance": 12,
  72. "action::cancel_schedule_send": 12,
  73. "action::card_giftcard": 14,
  74. "action::card_membership": 14,
  75. "action::card_travel": 13,
  76. "action::change_history": 11,
  77. "action::check_circle": 18,
  78. "action::check_circle_outline": 12,
  79. "action::chrome_reader_mode": 12,
  80. "action::circle_notifications": 11,
  81. "action::class": 11,
  82. "action::close_fullscreen": 7,
  83. "action::code": 11,
  84. "action::code_off": 4,
  85. "action::comment_bank": 15,
  86. "action::commit": 1,
  87. "action::commute": 12,
  88. "action::compare_arrows": 14,
  89. "action::compress": 10,
  90. "action::contact_page": 6,
  91. "action::contact_support": 13,
  92. "action::contactless": 11,
  93. "action::copyright": 17,
  94. "action::credit_card": 12,
  95. "action::credit_card_off": 4,
  96. "action::css": 1,
  97. "action::currency_exchange": 1,
  98. "action::dangerous": 12,
  99. "action::dashboard": 13,
  100. "action::dashboard_customize": 11,
  101. "action::data_exploration": 3,
  102. "action::data_thresholding": 1,
  103. "action::date_range": 12,
  104. "action::delete": 17,
  105. "action::delete_forever": 15,
  106. "action::delete_outline": 11,
  107. "action::density_large": 1,
  108. "action::density_medium": 1,
  109. "action::density_small": 1,
  110. "action::description": 12,
  111. "action::disabled_by_default": 6,
  112. "action::disabled_visible": 3,
  113. "action::display_settings": 1,
  114. "action::dns": 12,
  115. "action::done": 19,
  116. "action::done_all": 12,
  117. "action::done_outline": 12,
  118. "action::donut_large": 13,
  119. "action::donut_small": 12,
  120. "action::drag_indicator": 15,
  121. "action::dynamic_form": 7,
  122. "action::eco": 5,
  123. "action::edit_calendar": 5,
  124. "action::edit_off": 12,
  125. "action::eject": 11,
  126. "action::euro_symbol": 13,
  127. "action::event": 19,
  128. "action::event_repeat": 1,
  129. "action::event_seat": 19,
  130. "action::exit_to_app": 13,
  131. "action::expand": 11,
  132. "action::explore": 12,
  133. "action::explore_off": 12,
  134. "action::extension": 12,
  135. "action::extension_off": 4,
  136. "action::face": 15,
  137. "action::face_unlock": 11,
  138. "action::fact_check": 14,
  139. "action::favorite": 17,
  140. "action::favorite_border": 12,
  141. "action::fax": 2,
  142. "action::feedback": 12,
  143. "action::file_present": 10,
  144. "action::filter_alt": 11,
  145. "action::filter_alt_off": 1,
  146. "action::filter_list_alt": 10,
  147. "action::find_in_page": 12,
  148. "action::find_replace": 12,
  149. "action::fingerprint": 12,
  150. "action::fit_screen": 15,
  151. "action::flaky": 13,
  152. "action::flight_land": 13,
  153. "action::flight_takeoff": 13,
  154. "action::flip_to_back": 12,
  155. "action::flip_to_front": 12,
  156. "action::flutter_dash": 5,
  157. "action::free_cancellation": 5,
  158. "action::g_translate": 15,
  159. "action::gavel": 14,
  160. "action::generating_tokens": 5,
  161. "action::get_app": 12,
  162. "action::gif": 14,
  163. "action::gif_box": 3,
  164. "action::grade": 16,
  165. "action::grading": 12,
  166. "action::group_work": 12,
  167. "action::help": 13,
  168. "action::help_center": 9,
  169. "action::help_outline": 12,
  170. "action::hide_source": 9,
  171. "action::highlight_alt": 12,
  172. "action::highlight_off": 17,
  173. "action::history": 12,
  174. "action::history_toggle_off": 9,
  175. "action::hls": 1,
  176. "action::hls_off": 1,
  177. "action::home": 16,
  178. "action::home_filled": 14,
  179. "action::horizontal_split": 15,
  180. "action::hotel_class": 5,
  181. "action::hourglass_disabled": 12,
  182. "action::hourglass_empty": 15,
  183. "action::hourglass_full": 15,
  184. "action::html": 1,
  185. "action::http": 11,
  186. "action::https": 16,
  187. "action::important_devices": 11,
  188. "action::info": 20,
  189. "action::info_outline": 16,
  190. "action::input": 13,
  191. "action::install_desktop": 1,
  192. "action::install_mobile": 1,
  193. "action::integration_instructions": 11,
  194. "action::invert_colors": 13,
  195. "action::javascript": 1,
  196. "action::join_full": 1,
  197. "action::join_inner": 1,
  198. "action::join_left": 1,
  199. "action::join_right": 1,
  200. "action::label": 17,
  201. "action::label_important": 20,
  202. "action::label_important_outline": 16,
  203. "action::label_off": 13,
  204. "action::label_outline": 6,
  205. "action::language": 12,
  206. "action::launch": 17,
  207. "action::leaderboard": 6,
  208. "action::lightbulb": 18,
  209. "action::lightbulb_outline": 20,
  210. "action::line_style": 14,
  211. "action::line_weight": 14,
  212. "action::list": 17,
  213. "action::lock": 18,
  214. "action::lock_clock": 11,
  215. "action::lock_open": 16,
  216. "action::lock_outline": 13,
  217. "action::lock_reset": 1,
  218. "action::login": 12,
  219. "action::logout": 12,
  220. "action::loyalty": 12,
  221. "action::manage_accounts": 10,
  222. "action::manage_history": 1,
  223. "action::mark_as_unread": 10,
  224. "action::markunread_mailbox": 12,
  225. "action::maximize": 11,
  226. "action::mediation": 15,
  227. "action::minimize": 11,
  228. "action::model_training": 13,
  229. "action::network_ping": 1,
  230. "action::new_label": 3,
  231. "action::next_plan": 16,
  232. "action::nightlight_round": 10,
  233. "action::no_accounts": 10,
  234. "action::noise_aware": 1,
  235. "action::noise_control_off": 1,
  236. "action::not_accessible": 13,
  237. "action::not_started": 13,
  238. "action::note_add": 13,
  239. "action::offline_bolt": 18,
  240. "action::offline_pin": 18,
  241. "action::online_prediction": 12,
  242. "action::opacity": 15,
  243. "action::open_in_browser": 12,
  244. "action::open_in_full": 7,
  245. "action::open_in_new": 21,
  246. "action::open_in_new_off": 4,
  247. "action::open_with": 12,
  248. "action::outbond": 1,
  249. "action::outbound": 8,
  250. "action::outbox": 10,
  251. "action::outgoing_mail": 11,
  252. "action::outlet": 7,
  253. "action::output": 1,
  254. "action::pageview": 12,
  255. "action::paid": 9,
  256. "action::pan_tool": 14,
  257. "action::pan_tool_alt": 1,
  258. "action::payment": 12,
  259. "action::pending": 17,
  260. "action::pending_actions": 7,
  261. "action::percent": 1,
  262. "action::perm_camera_mic": 12,
  263. "action::perm_contact_calendar": 13,
  264. "action::perm_data_setting": 12,
  265. "action::perm_device_information": 13,
  266. "action::perm_identity": 12,
  267. "action::perm_media": 15,
  268. "action::perm_phone_msg": 12,
  269. "action::perm_scan_wifi": 12,
  270. "action::pets": 12,
  271. "action::php": 1,
  272. "action::picture_in_picture": 12,
  273. "action::picture_in_picture_alt": 12,
  274. "action::pin_end": 3,
  275. "action::pin_invoke": 3,
  276. "action::pinch": 1,
  277. "action::plagiarism": 11,
  278. "action::play_for_work": 12,
  279. "action::polymer": 12,
  280. "action::power_settings_new": 12,
  281. "action::pregnant_woman": 14,
  282. "action::preview": 7,
  283. "action::print": 16,
  284. "action::privacy_tip": 12,
  285. "action::private_connectivity": 5,
  286. "action::production_quantity_limits": 7,
  287. "action::published_with_changes": 6,
  288. "action::query_builder": 13,
  289. "action::question_answer": 12,
  290. "action::question_mark": 1,
  291. "action::quickreply": 12,
  292. "action::receipt": 12,
  293. "action::record_voice_over": 12,
  294. "action::redeem": 12,
  295. "action::remove_done": 10,
  296. "action::remove_shopping_cart": 12,
  297. "action::reorder": 16,
  298. "action::report_problem": 18,
  299. "action::request_page": 7,
  300. "action::restore": 12,
  301. "action::restore_from_trash": 12,
  302. "action::restore_page": 12,
  303. "action::rocket": 1,
  304. "action::rocket_launch": 1,
  305. "action::room": 19,
  306. "action::rounded_corner": 14,
  307. "action::rowing": 14,
  308. "action::rule": 8,
  309. "action::satellite_alt": 1,
  310. "action::saved_search": 11,
  311. "action::savings": 5,
  312. "action::schedule": 17,
  313. "action::schedule_send": 14,
  314. "action::search": 17,
  315. "action::search_off": 12,
  316. "action::segment": 11,
  317. "action::send_and_archive": 11,
  318. "action::sensors": 4,
  319. "action::sensors_off": 5,
  320. "action::settings": 19,
  321. "action::settings_accessibility": 10,
  322. "action::settings_applications": 11,
  323. "action::settings_backup_restore": 11,
  324. "action::settings_bluetooth": 11,
  325. "action::settings_brightness": 12,
  326. "action::settings_cell": 11,
  327. "action::settings_ethernet": 11,
  328. "action::settings_input_antenna": 11,
  329. "action::settings_input_component": 11,
  330. "action::settings_input_composite": 11,
  331. "action::settings_input_hdmi": 11,
  332. "action::settings_input_svideo": 11,
  333. "action::settings_overscan": 11,
  334. "action::settings_phone": 15,
  335. "action::settings_power": 11,
  336. "action::settings_remote": 11,
  337. "action::settings_voice": 11,
  338. "action::shop": 12,
  339. "action::shop_2": 9,
  340. "action::shop_two": 11,
  341. "action::shopping_bag": 8,
  342. "action::shopping_basket": 12,
  343. "action::shopping_cart": 18,
  344. "action::shopping_cart_checkout": 1,
  345. "action::smart_button": 7,
  346. "action::source": 7,
  347. "action::space_dashboard": 3,
  348. "action::spatial_audio": 1,
  349. "action::spatial_audio_off": 1,
  350. "action::spatial_tracking": 1,
  351. "action::speaker_notes": 13,
  352. "action::speaker_notes_off": 13,
  353. "action::spellcheck": 12,
  354. "action::star_rate": 12,
  355. "action::stars": 12,
  356. "action::sticky_note_2": 7,
  357. "action::store": 11,
  358. "action::subject": 13,
  359. "action::subtitles_off": 11,
  360. "action::supervised_user_circle": 12,
  361. "action::supervisor_account": 13,
  362. "action::support": 11,
  363. "action::swap_horiz": 12,
  364. "action::swap_horizontal_circle": 12,
  365. "action::swap_vert": 12,
  366. "action::swap_vertical_circle": 13,
  367. "action::swipe": 12,
  368. "action::swipe_down": 1,
  369. "action::swipe_down_alt": 1,
  370. "action::swipe_left": 1,
  371. "action::swipe_left_alt": 1,
  372. "action::swipe_right": 1,
  373. "action::swipe_right_alt": 1,
  374. "action::swipe_up": 1,
  375. "action::swipe_up_alt": 1,
  376. "action::swipe_vertical": 1,
  377. "action::switch_access_shortcut": 2,
  378. "action::switch_access_shortcut_add": 2,
  379. "action::sync_alt": 12,
  380. "action::system_update_alt": 13,
  381. "action::tab": 12,
  382. "action::tab_unselected": 12,
  383. "action::table_view": 8,
  384. "action::task_alt": 6,
  385. "action::terminal": 1,
  386. "action::text_rotate_up": 12,
  387. "action::text_rotate_vertical": 12,
  388. "action::text_rotation_angledown": 12,
  389. "action::text_rotation_angleup": 12,
  390. "action::text_rotation_down": 12,
  391. "action::text_rotation_none": 12,
  392. "action::theaters": 12,
  393. "action::thumb_down": 18,
  394. "action::thumb_down_off_alt": 13,
  395. "action::thumb_up": 18,
  396. "action::thumb_up_off_alt": 13,
  397. "action::thumbs_up_down": 12,
  398. "action::timeline": 13,
  399. "action::tips_and_updates": 3,
  400. "action::toc": 13,
  401. "action::today": 17,
  402. "action::token": 2,
  403. "action::toll": 12,
  404. "action::touch_app": 13,
  405. "action::tour": 12,
  406. "action::track_changes": 11,
  407. "action::translate": 16,
  408. "action::trending_down": 18,
  409. "action::trending_flat": 19,
  410. "action::trending_up": 19,
  411. "action::try": 9,
  412. "action::turned_in": 11,
  413. "action::turned_in_not": 11,
  414. "action::unpublished": 7,
  415. "action::update": 13,
  416. "action::update_disabled": 8,
  417. "action::upgrade": 12,
  418. "action::verified": 11,
  419. "action::verified_user": 18,
  420. "action::vertical_split": 15,
  421. "action::view_agenda": 14,
  422. "action::view_array": 13,
  423. "action::view_carousel": 13,
  424. "action::view_column": 13,
  425. "action::view_comfy_alt": 1,
  426. "action::view_compact_alt": 1,
  427. "action::view_cozy": 1,
  428. "action::view_day": 13,
  429. "action::view_headline": 11,
  430. "action::view_in_ar": 11,
  431. "action::view_kanban": 1,
  432. "action::view_list": 14,
  433. "action::view_module": 13,
  434. "action::view_quilt": 14,
  435. "action::view_sidebar": 13,
  436. "action::view_stream": 13,
  437. "action::view_timeline": 1,
  438. "action::view_week": 13,
  439. "action::visibility": 16,
  440. "action::visibility_off": 12,
  441. "action::voice_over_off": 11,
  442. "action::watch_later": 17,
  443. "action::webhook": 1,
  444. "action::wifi_protected_setup": 12,
  445. "action::work": 12,
  446. "action::work_off": 12,
  447. "action::work_outline": 12,
  448. "action::wysiwyg": 8,
  449. "action::youtube_searched_for": 12,
  450. "action::zoom_in": 11,
  451. "action::zoom_out": 11,
  452. "alert::add_alert": 15,
  453. "alert::auto_delete": 11,
  454. "alert::error": 20,
  455. "alert::error_outline": 16,
  456. "alert::notification_important": 11,
  457. "alert::warning": 17,
  458. "alert::warning_amber": 16,
  459. "av::10k": 10,
  460. "av::1k": 10,
  461. "av::1k_plus": 10,
  462. "av::2k": 10,
  463. "av::2k_plus": 10,
  464. "av::3k": 10,
  465. "av::3k_plus": 10,
  466. "av::4k": 11,
  467. "av::4k_plus": 10,
  468. "av::5g": 13,
  469. "av::5k": 10,
  470. "av::5k_plus": 10,
  471. "av::6k": 10,
  472. "av::6k_plus": 10,
  473. "av::7k": 10,
  474. "av::7k_plus": 10,
  475. "av::8k": 11,
  476. "av::8k_plus": 11,
  477. "av::9k": 10,
  478. "av::9k_plus": 10,
  479. "av::add_to_queue": 11,
  480. "av::airplay": 13,
  481. "av::album": 12,
  482. "av::art_track": 13,
  483. "av::audio_file": 1,
  484. "av::av_timer": 12,
  485. "av::branding_watermark": 13,
  486. "av::call_to_action": 11,
  487. "av::closed_caption": 12,
  488. "av::closed_caption_disabled": 8,
  489. "av::closed_caption_off": 11,
  490. "av::control_camera": 12,
  491. "av::equalizer": 12,
  492. "av::explicit": 12,
  493. "av::fast_forward": 18,
  494. "av::fast_rewind": 12,
  495. "av::featured_play_list": 12,
  496. "av::featured_video": 12,
  497. "av::fiber_dvr": 13,
  498. "av::fiber_manual_record": 16,
  499. "av::fiber_new": 13,
  500. "av::fiber_pin": 12,
  501. "av::fiber_smart_record": 12,
  502. "av::forward_10": 13,
  503. "av::forward_30": 13,
  504. "av::forward_5": 13,
  505. "av::games": 12,
  506. "av::hd": 12,
  507. "av::hearing": 12,
  508. "av::hearing_disabled": 14,
  509. "av::high_quality": 12,
  510. "av::interpreter_mode": 2,
  511. "av::library_add": 13,
  512. "av::library_add_check": 17,
  513. "av::library_books": 14,
  514. "av::library_music": 13,
  515. "av::loop": 12,
  516. "av::mic": 13,
  517. "av::mic_none": 12,
  518. "av::mic_off": 14,
  519. "av::missed_video_call": 13,
  520. "av::movie": 12,
  521. "av::music_video": 15,
  522. "av::new_releases": 12,
  523. "av::not_interested": 12,
  524. "av::note": 12,
  525. "av::pause": 16,
  526. "av::pause_circle": 10,
  527. "av::pause_circle_filled": 15,
  528. "av::pause_circle_outline": 19,
  529. "av::play_arrow": 16,
  530. "av::play_circle": 9,
  531. "av::play_circle_filled": 14,
  532. "av::play_circle_outline": 19,
  533. "av::play_disabled": 10,
  534. "av::playlist_add": 16,
  535. "av::playlist_add_check": 17,
  536. "av::playlist_add_check_circle": 2,
  537. "av::playlist_add_circle": 2,
  538. "av::playlist_play": 14,
  539. "av::playlist_remove": 1,
  540. "av::queue": 12,
  541. "av::queue_music": 18,
  542. "av::queue_play_next": 14,
  543. "av::radio": 12,
  544. "av::recent_actors": 12,
  545. "av::remove_from_queue": 13,
  546. "av::repeat": 12,
  547. "av::repeat_on": 12,
  548. "av::repeat_one": 12,
  549. "av::repeat_one_on": 12,
  550. "av::replay": 13,
  551. "av::replay_10": 14,
  552. "av::replay_30": 14,
  553. "av::replay_5": 14,
  554. "av::replay_circle_filled": 12,
  555. "av::sd": 10,
  556. "av::shuffle": 14,
  557. "av::shuffle_on": 12,
  558. "av::skip_next": 16,
  559. "av::skip_previous": 16,
  560. "av::slow_motion_video": 11,
  561. "av::snooze": 12,
  562. "av::sort_by_alpha": 11,
  563. "av::speed": 12,
  564. "av::stop": 12,
  565. "av::stop_circle": 15,
  566. "av::subscriptions": 11,
  567. "av::subtitles": 12,
  568. "av::surround_sound": 13,
  569. "av::video_call": 11,
  570. "av::video_file": 1,
  571. "av::video_label": 11,
  572. "av::video_library": 13,
  573. "av::video_settings": 12,
  574. "av::videocam": 16,
  575. "av::videocam_off": 12,
  576. "av::volume_down": 13,
  577. "av::volume_down_alt": 3,
  578. "av::volume_mute": 13,
  579. "av::volume_off": 17,
  580. "av::volume_up": 13,
  581. "av::web": 13,
  582. "av::web_asset": 12,
  583. "av::web_asset_off": 4,
  584. "communication::3p": 11,
  585. "communication::add_ic_call": 12,
  586. "communication::alternate_email": 13,
  587. "communication::app_registration": 11,
  588. "communication::business": 12,
  589. "communication::call": 17,
  590. "communication::call_end": 16,
  591. "communication::call_made": 13,
  592. "communication::call_merge": 13,
  593. "communication::call_missed": 13,
  594. "communication::call_missed_outgoing": 15,
  595. "communication::call_received": 13,
  596. "communication::call_split": 13,
  597. "communication::cancel_presentation": 14,
  598. "communication::cell_tower": 1,
  599. "communication::cell_wifi": 14,
  600. "communication::chat": 19,
  601. "communication::chat_bubble": 13,
  602. "communication::chat_bubble_outline": 16,
  603. "communication::clear_all": 12,
  604. "communication::co_present": 1,
  605. "communication::comment": 19,
  606. "communication::comments_disabled": 3,
  607. "communication::contact_mail": 13,
  608. "communication::contact_phone": 13,
  609. "communication::contacts": 11,
  610. "communication::desktop_access_disabled": 11,
  611. "communication::dialer_sip": 12,
  612. "communication::dialpad": 12,
  613. "communication::document_scanner": 3,
  614. "communication::domain_disabled": 12,
  615. "communication::domain_verification": 11,
  616. "communication::duo": 12,
  617. "communication::email": 18,
  618. "communication::forum": 19,
  619. "communication::forward_to_inbox": 9,
  620. "communication::hourglass_bottom": 11,
  621. "communication::hourglass_top": 11,
  622. "communication::hub": 2,
  623. "communication::import_contacts": 14,
  624. "communication::import_export": 12,
  625. "communication::invert_colors_off": 12,
  626. "communication::key": 2,
  627. "communication::key_off": 1,
  628. "communication::list_alt": 13,
  629. "communication::live_help": 13,
  630. "communication::location_off": 11,
  631. "communication::location_on": 15,
  632. "communication::mail_outline": 12,
  633. "communication::mark_chat_read": 8,
  634. "communication::mark_chat_unread": 8,
  635. "communication::mark_email_read": 8,
  636. "communication::mark_email_unread": 8,
  637. "communication::mark_unread_chat_alt": 1,
  638. "communication::message": 13,
  639. "communication::mobile_screen_share": 12,
  640. "communication::more_time": 11,
  641. "communication::nat": 11,
  642. "communication::no_sim": 12,
  643. "communication::pause_presentation": 12,
  644. "communication::person_add_disabled": 11,
  645. "communication::person_search": 12,
  646. "communication::phone": 12,
  647. "communication::phone_disabled": 12,
  648. "communication::phone_enabled": 13,
  649. "communication::phonelink_erase": 12,
  650. "communication::phonelink_lock": 15,
  651. "communication::phonelink_ring": 12,
  652. "communication::phonelink_setup": 13,
  653. "communication::portable_wifi_off": 12,
  654. "communication::present_to_all": 11,
  655. "communication::print_disabled": 12,
  656. "communication::qr_code": 12,
  657. "communication::qr_code_2": 6,
  658. "communication::qr_code_scanner": 7,
  659. "communication::read_more": 13,
  660. "communication::ring_volume": 13,
  661. "communication::rss_feed": 12,
  662. "communication::rtt": 12,
  663. "communication::screen_share": 12,
  664. "communication::send_time_extension": 2,
  665. "communication::sentiment_satisfied_alt": 11,
  666. "communication::sip": 10,
  667. "communication::speaker_phone": 15,
  668. "communication::spoke": 2,
  669. "communication::stay_current_landscape": 12,
  670. "communication::stay_current_portrait": 12,
  671. "communication::stay_primary_landscape": 12,
  672. "communication::stay_primary_portrait": 12,
  673. "communication::stop_screen_share": 13,
  674. "communication::swap_calls": 12,
  675. "communication::textsms": 12,
  676. "communication::unsubscribe": 12,
  677. "communication::voicemail": 12,
  678. "communication::vpn_key": 12,
  679. "communication::vpn_key_off": 1,
  680. "communication::wifi_calling": 11,
  681. "content::add": 21,
  682. "content::add_box": 13,
  683. "content::add_circle": 13,
  684. "content::add_circle_outline": 16,
  685. "content::add_link": 11,
  686. "content::amp_stories": 5,
  687. "content::archive": 16,
  688. "content::attribution": 11,
  689. "content::backspace": 13,
  690. "content::ballot": 14,
  691. "content::biotech": 11,
  692. "content::block": 16,
  693. "content::block_flipped": 12,
  694. "content::bolt": 10,
  695. "content::calculate": 11,
  696. "content::change_circle": 8,
  697. "content::clear": 12,
  698. "content::content_copy": 17,
  699. "content::content_cut": 17,
  700. "content::content_paste": 14,
  701. "content::content_paste_go": 2,
  702. "content::content_paste_off": 4,
  703. "content::content_paste_search": 2,
  704. "content::copy_all": 8,
  705. "content::create": 16,
  706. "content::delete_sweep": 12,
  707. "content::deselect": 1,
  708. "content::drafts": 17,
  709. "content::dynamic_feed": 15,
  710. "content::file_copy": 12,
  711. "content::filter_list": 12,
  712. "content::filter_list_off": 1,
  713. "content::flag": 18,
  714. "content::flag_circle": 1,
  715. "content::font_download": 11,
  716. "content::font_download_off": 4,
  717. "content::forward": 17,
  718. "content::gesture": 12,
  719. "content::how_to_reg": 14,
  720. "content::how_to_vote": 15,
  721. "content::inbox": 18,
  722. "content::insights": 12,
  723. "content::inventory": 13,
  724. "content::inventory_2": 9,
  725. "content::link": 21,
  726. "content::link_off": 11,
  727. "content::low_priority": 18,
  728. "content::mail": 16,
  729. "content::markunread": 12,
  730. "content::move_to_inbox": 15,
  731. "content::next_week": 14,
  732. "content::outlined_flag": 12,
  733. "content::policy": 12,
  734. "content::push_pin": 13,
  735. "content::redo": 13,
  736. "content::remove": 16,
  737. "content::remove_circle": 19,
  738. "content::remove_circle_outline": 12,
  739. "content::reply": 20,
  740. "content::reply_all": 17,
  741. "content::report": 18,
  742. "content::report_gmailerrorred": 11,
  743. "content::report_off": 12,
  744. "content::save": 12,
  745. "content::save_alt": 12,
  746. "content::save_as": 2,
  747. "content::select_all": 12,
  748. "content::send": 20,
  749. "content::shield": 11,
  750. "content::sort": 13,
  751. "content::square_foot": 11,
  752. "content::stacked_bar_chart": 11,
  753. "content::stream": 11,
  754. "content::tag": 10,
  755. "content::text_format": 12,
  756. "content::unarchive": 13,
  757. "content::undo": 13,
  758. "content::upcoming": 9,
  759. "content::waves": 11,
  760. "content::web_stories": 3,
  761. "content::weekend": 12,
  762. "content::where_to_vote": 16,
  763. "device::1x_mobiledata": 9,
  764. "device::30fps": 10,
  765. "device::3g_mobiledata": 9,
  766. "device::4g_mobiledata": 9,
  767. "device::4g_plus_mobiledata": 9,
  768. "device::60fps": 10,
  769. "device::access_alarm": 12,
  770. "device::access_alarms": 12,
  771. "device::access_time": 12,
  772. "device::access_time_filled": 10,
  773. "device::ad_units": 13,
  774. "device::add_alarm": 13,
  775. "device::add_to_home_screen": 12,
  776. "device::air": 10,
  777. "device::airplane_ticket": 11,
  778. "device::airplanemode_active": 16,
  779. "device::airplanemode_inactive": 17,
  780. "device::aod": 10,
  781. "device::battery_0_bar": 1,
  782. "device::battery_1_bar": 1,
  783. "device::battery_20": 12,
  784. "device::battery_2_bar": 1,
  785. "device::battery_30": 12,
  786. "device::battery_3_bar": 1,
  787. "device::battery_4_bar": 1,
  788. "device::battery_50": 12,
  789. "device::battery_5_bar": 1,
  790. "device::battery_60": 12,
  791. "device::battery_6_bar": 1,
  792. "device::battery_80": 12,
  793. "device::battery_90": 12,
  794. "device::battery_alert": 12,
  795. "device::battery_charging_20": 12,
  796. "device::battery_charging_30": 12,
  797. "device::battery_charging_50": 11,
  798. "device::battery_charging_60": 13,
  799. "device::battery_charging_80": 12,
  800. "device::battery_charging_90": 12,
  801. "device::battery_charging_full": 12,
  802. "device::battery_full": 12,
  803. "device::battery_saver": 9,
  804. "device::battery_std": 12,
  805. "device::battery_unknown": 13,
  806. "device::bloodtype": 10,
  807. "device::bluetooth": 11,
  808. "device::bluetooth_connected": 12,
  809. "device::bluetooth_disabled": 17,
  810. "device::bluetooth_drive": 9,
  811. "device::bluetooth_searching": 13,
  812. "device::brightness_auto": 12,
  813. "device::brightness_high": 13,
  814. "device::brightness_low": 12,
  815. "device::brightness_medium": 12,
  816. "device::cable": 10,
  817. "device::cameraswitch": 10,
  818. "device::credit_score": 10,
  819. "device::dark_mode": 4,
  820. "device::data_saver_off": 10,
  821. "device::data_saver_on": 10,
  822. "device::data_usage": 12,
  823. "device::developer_mode": 12,
  824. "device::device_thermostat": 11,
  825. "device::devices": 16,
  826. "device::devices_fold": 1,
  827. "device::discount": 1,
  828. "device::do_not_disturb_on_total_silence": 15,
  829. "device::dvr": 13,
  830. "device::e_mobiledata": 9,
  831. "device::edgesensor_high": 10,
  832. "device::edgesensor_low": 10,
  833. "device::flashlight_off": 10,
  834. "device::flashlight_on": 10,
  835. "device::flourescent": 10,
  836. "device::fmd_bad": 15,
  837. "device::fmd_good": 15,
  838. "device::g_mobiledata": 9,
  839. "device::gpp_bad": 10,
  840. "device::gpp_good": 9,
  841. "device::gpp_maybe": 10,
  842. "device::gps_fixed": 12,
  843. "device::gps_not_fixed": 12,
  844. "device::gps_off": 12,
  845. "device::graphic_eq": 13,
  846. "device::grid_3x3": 10,
  847. "device::grid_4x4": 10,
  848. "device::grid_goldenratio": 10,
  849. "device::h_mobiledata": 9,
  850. "device::h_plus_mobiledata": 9,
  851. "device::hdr_auto": 10,
  852. "device::hdr_auto_select": 10,
  853. "device::hdr_off_select": 10,
  854. "device::hdr_on_select": 10,
  855. "device::lan": 1,
  856. "device::lens_blur": 10,
  857. "device::light_mode": 4,
  858. "device::location_disabled": 12,
  859. "device::location_searching": 12,
  860. "device::lte_mobiledata": 9,
  861. "device::lte_plus_mobiledata": 9,
  862. "device::media_bluetooth_off": 10,
  863. "device::media_bluetooth_on": 10,
  864. "device::medication": 10,
  865. "device::medication_liquid": 2,
  866. "device::mobile_friendly": 12,
  867. "device::mobile_off": 12,
  868. "device::mobiledata_off": 10,
  869. "device::mode_night": 10,
  870. "device::mode_standby": 9,
  871. "device::monitor_heart": 2,
  872. "device::monitor_weight": 10,
  873. "device::nearby_error": 10,
  874. "device::nearby_off": 10,
  875. "device::network_cell": 16,
  876. "device::network_wifi": 16,
  877. "device::network_wifi_1_bar": 1,
  878. "device::network_wifi_2_bar": 1,
  879. "device::network_wifi_3_bar": 1,
  880. "device::nfc": 12,
  881. "device::nightlight": 10,
  882. "device::note_alt": 10,
  883. "device::password": 10,
  884. "device::pattern": 11,
  885. "device::phishing": 2,
  886. "device::pin": 10,
  887. "device::play_lesson": 10,
  888. "device::price_change": 10,
  889. "device::price_check": 10,
  890. "device::punch_clock": 2,
  891. "device::quiz": 10,
  892. "device::r_mobiledata": 9,
  893. "device::radar": 10,
  894. "device::remember_me": 10,
  895. "device::reset_tv": 10,
  896. "device::restart_alt": 10,
  897. "device::reviews": 10,
  898. "device::rsvp": 10,
  899. "device::screen_lock_landscape": 16,
  900. "device::screen_lock_portrait": 17,
  901. "device::screen_lock_rotation": 16,
  902. "device::screen_rotation": 12,
  903. "device::screen_search_desktop": 10,
  904. "device::screenshot": 10,
  905. "device::sd_storage": 12,
  906. "device::security_update": 11,
  907. "device::security_update_good": 10,
  908. "device::security_update_warning": 10,
  909. "device::sell": 10,
  910. "device::send_to_mobile": 11,
  911. "device::settings_suggest": 20,
  912. "device::settings_system_daydream": 12,
  913. "device::share_location": 17,
  914. "device::shortcut": 10,
  915. "device::signal_cellular_0_bar": 15,
  916. "device::signal_cellular_1_bar": 11,
  917. "device::signal_cellular_2_bar": 12,
  918. "device::signal_cellular_3_bar": 12,
  919. "device::signal_cellular_4_bar": 12,
  920. "device::signal_cellular_alt": 12,
  921. "device::signal_cellular_alt_1_bar": 1,
  922. "device::signal_cellular_alt_2_bar": 1,
  923. "device::signal_cellular_connected_no_internet_0_bar": 13,
  924. "device::signal_cellular_connected_no_internet_1_bar": 12,
  925. "device::signal_cellular_connected_no_internet_2_bar": 12,
  926. "device::signal_cellular_connected_no_internet_3_bar": 12,
  927. "device::signal_cellular_connected_no_internet_4_bar": 13,
  928. "device::signal_cellular_no_sim": 11,
  929. "device::signal_cellular_nodata": 10,
  930. "device::signal_cellular_null": 12,
  931. "device::signal_cellular_off": 12,
  932. "device::signal_wifi_0_bar": 15,
  933. "device::signal_wifi_1_bar": 12,
  934. "device::signal_wifi_1_bar_lock": 12,
  935. "device::signal_wifi_2_bar": 12,
  936. "device::signal_wifi_2_bar_lock": 12,
  937. "device::signal_wifi_3_bar": 12,
  938. "device::signal_wifi_3_bar_lock": 12,
  939. "device::signal_wifi_4_bar": 12,
  940. "device::signal_wifi_4_bar_lock": 13,
  941. "device::signal_wifi_bad": 10,
  942. "device::signal_wifi_connected_no_internet_0": 10,
  943. "device::signal_wifi_connected_no_internet_1": 10,
  944. "device::signal_wifi_connected_no_internet_2": 10,
  945. "device::signal_wifi_connected_no_internet_3": 11,
  946. "device::signal_wifi_connected_no_internet_4": 10,
  947. "device::signal_wifi_off": 17,
  948. "device::signal_wifi_statusbar_1_bar": 9,
  949. "device::signal_wifi_statusbar_2_bar": 9,
  950. "device::signal_wifi_statusbar_3_bar": 10,
  951. "device::signal_wifi_statusbar_4_bar": 9,
  952. "device::signal_wifi_statusbar_connected_no_internet": 9,
  953. "device::signal_wifi_statusbar_connected_no_internet_1": 9,
  954. "device::signal_wifi_statusbar_connected_no_internet_2": 9,
  955. "device::signal_wifi_statusbar_connected_no_internet_3": 9,
  956. "device::signal_wifi_statusbar_connected_no_internet_4": 11,
  957. "device::signal_wifi_statusbar_not_connected": 9,
  958. "device::signal_wifi_statusbar_null": 9,
  959. "device::sim_card_download": 9,
  960. "device::splitscreen": 11,
  961. "device::sports_score": 10,
  962. "device::ssid_chart": 1,
  963. "device::storage": 13,
  964. "device::storm": 10,
  965. "device::summarize": 10,
  966. "device::system_security_update": 10,
  967. "device::system_security_update_good": 10,
  968. "device::system_security_update_warning": 10,
  969. "device::task": 10,
  970. "device::thermostat": 11,
  971. "device::timer_10_select": 15,
  972. "device::timer_3_select": 15,
  973. "device::tungsten": 10,
  974. "device::usb": 12,
  975. "device::usb_off": 4,
  976. "device::wallpaper": 13,
  977. "device::water": 11,
  978. "device::widgets": 13,
  979. "device::wifi_1_bar": 1,
  980. "device::wifi_2_bar": 1,
  981. "device::wifi_calling_1": 10,
  982. "device::wifi_calling_2": 10,
  983. "device::wifi_calling_3": 10,
  984. "device::wifi_channel": 1,
  985. "device::wifi_find": 1,
  986. "device::wifi_lock": 13,
  987. "device::wifi_password": 1,
  988. "device::wifi_tethering": 12,
  989. "device::wifi_tethering_error": 3,
  990. "device::wifi_tethering_error_rounded": 8,
  991. "device::wifi_tethering_off": 10,
  992. "editor::add_chart": 10,
  993. "editor::add_comment": 11,
  994. "editor::align_horizontal_center": 6,
  995. "editor::align_horizontal_left": 7,
  996. "editor::align_horizontal_right": 7,
  997. "editor::align_vertical_bottom": 6,
  998. "editor::align_vertical_center": 6,
  999. "editor::align_vertical_top": 6,
  1000. "editor::area_chart": 3,
  1001. "editor::attach_file": 16,
  1002. "editor::attach_money": 17,
  1003. "editor::auto_graph": 4,
  1004. "editor::bar_chart": 12,
  1005. "editor::border_all": 12,
  1006. "editor::border_bottom": 12,
  1007. "editor::border_clear": 12,
  1008. "editor::border_color": 14,
  1009. "editor::border_horizontal": 12,
  1010. "editor::border_inner": 12,
  1011. "editor::border_left": 12,
  1012. "editor::border_outer": 12,
  1013. "editor::border_right": 12,
  1014. "editor::border_style": 12,
  1015. "editor::border_top": 12,
  1016. "editor::border_vertical": 12,
  1017. "editor::bubble_chart": 12,
  1018. "editor::candlestick_chart": 2,
  1019. "editor::checklist": 3,
  1020. "editor::checklist_rtl": 3,
  1021. "editor::data_array": 2,
  1022. "editor::data_object": 2,
  1023. "editor::drag_handle": 14,
  1024. "editor::draw": 6,
  1025. "editor::edit_note": 5,
  1026. "editor::format_align_center": 12,
  1027. "editor::format_align_justify": 12,
  1028. "editor::format_align_left": 13,
  1029. "editor::format_align_right": 13,
  1030. "editor::format_bold": 12,
  1031. "editor::format_clear": 12,
  1032. "editor::format_color_fill": 14,
  1033. "editor::format_color_reset": 11,
  1034. "editor::format_color_text": 16,
  1035. "editor::format_indent_decrease": 13,
  1036. "editor::format_indent_increase": 13,
  1037. "editor::format_italic": 12,
  1038. "editor::format_line_spacing": 12,
  1039. "editor::format_list_bulleted": 13,
  1040. "editor::format_list_numbered": 12,
  1041. "editor::format_list_numbered_rtl": 12,
  1042. "editor::format_paint": 12,
  1043. "editor::format_quote": 12,
  1044. "editor::format_shapes": 12,
  1045. "editor::format_size": 12,
  1046. "editor::format_strikethrough": 12,
  1047. "editor::format_textdirection_l_to_r": 13,
  1048. "editor::format_textdirection_r_to_l": 13,
  1049. "editor::format_underlined": 13,
  1050. "editor::functions": 12,
  1051. "editor::height": 11,
  1052. "editor::hexagon": 1,
  1053. "editor::highlight": 14,
  1054. "editor::horizontal_distribute": 6,
  1055. "editor::horizontal_rule": 13,
  1056. "editor::insert_chart": 12,
  1057. "editor::insert_chart_outlined": 12,
  1058. "editor::insert_comment": 13,
  1059. "editor::insert_drive_file": 17,
  1060. "editor::insert_emoticon": 15,
  1061. "editor::insert_invitation": 12,
  1062. "editor::insert_link": 12,
  1063. "editor::insert_page_break": 2,
  1064. "editor::insert_photo": 12,
  1065. "editor::line_axis": 2,
  1066. "editor::linear_scale": 17,
  1067. "editor::margin": 11,
  1068. "editor::merge_type": 13,
  1069. "editor::mode": 10,
  1070. "editor::mode_comment": 12,
  1071. "editor::mode_edit": 11,
  1072. "editor::mode_edit_outline": 10,
  1073. "editor::monetization_on": 12,
  1074. "editor::money_off": 12,
  1075. "editor::money_off_csred": 11,
  1076. "editor::move_down": 2,
  1077. "editor::move_up": 2,
  1078. "editor::multiline_chart": 13,
  1079. "editor::notes": 12,
  1080. "editor::numbers": 2,
  1081. "editor::padding": 11,
  1082. "editor::pentagon": 1,
  1083. "editor::pie_chart": 11,
  1084. "editor::pie_chart_outline": 10,
  1085. "editor::pie_chart_outlined": 10,
  1086. "editor::polyline": 1,
  1087. "editor::post_add": 11,
  1088. "editor::publish": 12,
  1089. "editor::query_stats": 4,
  1090. "editor::rectangle": 1,
  1091. "editor::scatter_plot": 12,
  1092. "editor::schema": 4,
  1093. "editor::score": 12,
  1094. "editor::short_text": 15,
  1095. "editor::show_chart": 13,
  1096. "editor::space_bar": 11,
  1097. "editor::square": 1,
  1098. "editor::stacked_line_chart": 6,
  1099. "editor::strikethrough_s": 14,
  1100. "editor::subscript": 13,
  1101. "editor::superscript": 12,
  1102. "editor::table_chart": 12,
  1103. "editor::table_rows": 17,
  1104. "editor::text_decrease": 1,
  1105. "editor::text_fields": 14,
  1106. "editor::text_increase": 1,
  1107. "editor::title": 11,
  1108. "editor::vertical_align_bottom": 12,
  1109. "editor::vertical_align_center": 12,
  1110. "editor::vertical_align_top": 12,
  1111. "editor::vertical_distribute": 6,
  1112. "editor::wrap_text": 13,
  1113. "file::approval": 11,
  1114. "file::attach_email": 16,
  1115. "file::attachment": 15,
  1116. "file::cloud": 12,
  1117. "file::cloud_circle": 12,
  1118. "file::cloud_done": 12,
  1119. "file::cloud_download": 12,
  1120. "file::cloud_off": 16,
  1121. "file::cloud_queue": 12,
  1122. "file::cloud_sync": 1,
  1123. "file::cloud_upload": 12,
  1124. "file::create_new_folder": 11,
  1125. "file::difference": 1,
  1126. "file::download": 10,
  1127. "file::download_done": 10,
  1128. "file::download_for_offline": 9,
  1129. "file::downloading": 9,
  1130. "file::drive_file_move": 19,
  1131. "file::drive_file_move_outline": 12,
  1132. "file::drive_file_move_rtl": 3,
  1133. "file::drive_file_rename_outline": 12,
  1134. "file::drive_folder_upload": 11,
  1135. "file::file_download": 11,
  1136. "file::file_download_done": 11,
  1137. "file::file_download_off": 4,
  1138. "file::file_open": 1,
  1139. "file::file_upload": 11,
  1140. "file::folder": 16,
  1141. "file::folder_copy": 1,
  1142. "file::folder_delete": 1,
  1143. "file::folder_off": 1,
  1144. "file::folder_open": 13,
  1145. "file::folder_shared": 16,
  1146. "file::folder_zip": 1,
  1147. "file::format_overline": 1,
  1148. "file::grid_view": 12,
  1149. "file::newspaper": 1,
  1150. "file::request_quote": 7,
  1151. "file::rule_folder": 7,
  1152. "file::snippet_folder": 7,
  1153. "file::text_snippet": 8,
  1154. "file::topic": 7,
  1155. "file::upload": 10,
  1156. "file::upload_file": 10,
  1157. "file::workspaces": 9,
  1158. "file::workspaces_filled": 13,
  1159. "file::workspaces_outline": 13,
  1160. "hardware::adf_scanner": 2,
  1161. "hardware::browser_not_supported": 12,
  1162. "hardware::browser_updated": 2,
  1163. "hardware::cast": 18,
  1164. "hardware::cast_connected": 13,
  1165. "hardware::cast_for_education": 14,
  1166. "hardware::computer": 12,
  1167. "hardware::connected_tv": 11,
  1168. "hardware::desktop_mac": 16,
  1169. "hardware::desktop_windows": 12,
  1170. "hardware::developer_board": 13,
  1171. "hardware::developer_board_off": 4,
  1172. "hardware::device_hub": 12,
  1173. "hardware::device_unknown": 12,
  1174. "hardware::devices_other": 12,
  1175. "hardware::dock": 12,
  1176. "hardware::earbuds": 9,
  1177. "hardware::earbuds_battery": 9,
  1178. "hardware::gamepad": 12,
  1179. "hardware::headphones": 9,
  1180. "hardware::headphones_battery": 9,
  1181. "hardware::headset": 12,
  1182. "hardware::headset_mic": 12,
  1183. "hardware::headset_off": 12,
  1184. "hardware::home_max": 10,
  1185. "hardware::home_mini": 10,
  1186. "hardware::keyboard": 13,
  1187. "hardware::keyboard_alt": 15,
  1188. "hardware::keyboard_arrow_down": 16,
  1189. "hardware::keyboard_arrow_left": 17,
  1190. "hardware::keyboard_arrow_right": 17,
  1191. "hardware::keyboard_arrow_up": 16,
  1192. "hardware::keyboard_backspace": 13,
  1193. "hardware::keyboard_capslock": 13,
  1194. "hardware::keyboard_command_key": 1,
  1195. "hardware::keyboard_control_key": 1,
  1196. "hardware::keyboard_double_arrow_down": 2,
  1197. "hardware::keyboard_double_arrow_left": 2,
  1198. "hardware::keyboard_double_arrow_right": 2,
  1199. "hardware::keyboard_double_arrow_up": 2,
  1200. "hardware::keyboard_hide": 12,
  1201. "hardware::keyboard_option_key": 1,
  1202. "hardware::keyboard_return": 13,
  1203. "hardware::keyboard_tab": 13,
  1204. "hardware::keyboard_voice": 17,
  1205. "hardware::laptop": 13,
  1206. "hardware::laptop_chromebook": 12,
  1207. "hardware::laptop_mac": 12,
  1208. "hardware::laptop_windows": 12,
  1209. "hardware::memory": 12,
  1210. "hardware::monitor": 11,
  1211. "hardware::mouse": 12,
  1212. "hardware::phone_android": 12,
  1213. "hardware::phone_iphone": 12,
  1214. "hardware::phonelink": 12,
  1215. "hardware::phonelink_off": 12,
  1216. "hardware::point_of_sale": 8,
  1217. "hardware::power_input": 12,
  1218. "hardware::router": 13,
  1219. "hardware::scanner": 12,
  1220. "hardware::security": 12,
  1221. "hardware::sim_card": 12,
  1222. "hardware::smart_display": 9,
  1223. "hardware::smart_screen": 9,
  1224. "hardware::smart_toy": 9,
  1225. "hardware::smartphone": 16,
  1226. "hardware::speaker": 16,
  1227. "hardware::speaker_group": 12,
  1228. "hardware::start": 1,
  1229. "hardware::tablet": 12,
  1230. "hardware::tablet_android": 14,
  1231. "hardware::tablet_mac": 12,
  1232. "hardware::toys": 14,
  1233. "hardware::tv": 16,
  1234. "hardware::videogame_asset": 11,
  1235. "hardware::videogame_asset_off": 4,
  1236. "hardware::watch": 12,
  1237. "hardware::watch_off": 1,
  1238. "home::cloudy_snowing": 2,
  1239. "home::foggy": 2,
  1240. "home::sensor_door": 8,
  1241. "home::sensor_window": 8,
  1242. "home::shield_moon": 2,
  1243. "home::snowing": 2,
  1244. "home::sunny": 2,
  1245. "home::sunny_snowing": 2,
  1246. "image::10mp": 10,
  1247. "image::11mp": 10,
  1248. "image::12mp": 10,
  1249. "image::13mp": 10,
  1250. "image::14mp": 10,
  1251. "image::15mp": 10,
  1252. "image::16mp": 10,
  1253. "image::17mp": 10,
  1254. "image::18mp": 10,
  1255. "image::19mp": 10,
  1256. "image::20mp": 10,
  1257. "image::21mp": 10,
  1258. "image::22mp": 10,
  1259. "image::23mp": 10,
  1260. "image::24mp": 10,
  1261. "image::2mp": 10,
  1262. "image::30fps_select": 10,
  1263. "image::3mp": 10,
  1264. "image::4mp": 10,
  1265. "image::5mp": 10,
  1266. "image::60fps_select": 10,
  1267. "image::6mp": 10,
  1268. "image::7mp": 10,
  1269. "image::8mp": 10,
  1270. "image::9mp": 10,
  1271. "image::add_a_photo": 14,
  1272. "image::add_photo_alternate": 12,
  1273. "image::add_to_photos": 12,
  1274. "image::adjust": 12,
  1275. "image::animation": 14,
  1276. "image::assistant": 12,
  1277. "image::assistant_photo": 12,
  1278. "image::audiotrack": 12,
  1279. "image::auto_awesome": 14,
  1280. "image::auto_awesome_mosaic": 14,
  1281. "image::auto_awesome_motion": 14,
  1282. "image::auto_fix_high": 14,
  1283. "image::auto_fix_normal": 14,
  1284. "image::auto_fix_off": 13,
  1285. "image::auto_stories": 13,
  1286. "image::autofps_select": 10,
  1287. "image::bedtime": 14,
  1288. "image::bedtime_off": 1,
  1289. "image::blur_circular": 12,
  1290. "image::blur_linear": 12,
  1291. "image::blur_off": 12,
  1292. "image::blur_on": 12,
  1293. "image::brightness_1": 19,
  1294. "image::brightness_2": 12,
  1295. "image::brightness_3": 16,
  1296. "image::brightness_4": 16,
  1297. "image::brightness_5": 12,
  1298. "image::brightness_6": 12,
  1299. "image::brightness_7": 13,
  1300. "image::broken_image": 11,
  1301. "image::brush": 13,
  1302. "image::burst_mode": 12,
  1303. "image::camera": 12,
  1304. "image::camera_alt": 12,
  1305. "image::camera_front": 12,
  1306. "image::camera_rear": 13,
  1307. "image::camera_roll": 12,
  1308. "image::cases": 11,
  1309. "image::center_focus_strong": 12,
  1310. "image::center_focus_weak": 12,
  1311. "image::circle": 11,
  1312. "image::collections": 12,
  1313. "image::collections_bookmark": 12,
  1314. "image::color_lens": 16,
  1315. "image::colorize": 12,
  1316. "image::compare": 12,
  1317. "image::contrast": 1,
  1318. "image::control_point": 13,
  1319. "image::control_point_duplicate": 12,
  1320. "image::crop": 12,
  1321. "image::crop_16_9": 12,
  1322. "image::crop_3_2": 12,
  1323. "image::crop_5_4": 12,
  1324. "image::crop_7_5": 12,
  1325. "image::crop_din": 12,
  1326. "image::crop_free": 12,
  1327. "image::crop_landscape": 12,
  1328. "image::crop_original": 13,
  1329. "image::crop_portrait": 12,
  1330. "image::crop_rotate": 12,
  1331. "image::crop_square": 12,
  1332. "image::currency_bitcoin": 1,
  1333. "image::currency_franc": 1,
  1334. "image::currency_lira": 1,
  1335. "image::currency_pound": 1,
  1336. "image::currency_ruble": 1,
  1337. "image::currency_rupee": 1,
  1338. "image::currency_yen": 1,
  1339. "image::currency_yuan": 1,
  1340. "image::deblur": 1,
  1341. "image::dehaze": 12,
  1342. "image::details": 16,
  1343. "image::dirty_lens": 15,
  1344. "image::edit": 12,
  1345. "image::euro": 12,
  1346. "image::exposure": 12,
  1347. "image::exposure_neg_1": 13,
  1348. "image::exposure_neg_2": 13,
  1349. "image::exposure_plus_1": 12,
  1350. "image::exposure_plus_2": 12,
  1351. "image::exposure_zero": 12,
  1352. "image::face_retouching_natural": 16,
  1353. "image::face_retouching_off": 15,
  1354. "image::filter": 12,
  1355. "image::filter_1": 12,
  1356. "image::filter_2": 12,
  1357. "image::filter_3": 12,
  1358. "image::filter_4": 12,
  1359. "image::filter_5": 12,
  1360. "image::filter_6": 12,
  1361. "image::filter_7": 12,
  1362. "image::filter_8": 12,
  1363. "image::filter_9": 12,
  1364. "image::filter_9_plus": 13,
  1365. "image::filter_b_and_w": 13,
  1366. "image::filter_center_focus": 12,
  1367. "image::filter_drama": 12,
  1368. "image::filter_frames": 13,
  1369. "image::filter_hdr": 13,
  1370. "image::filter_none": 13,
  1371. "image::filter_tilt_shift": 14,
  1372. "image::filter_vintage": 13,
  1373. "image::flare": 12,
  1374. "image::flash_auto": 12,
  1375. "image::flash_off": 12,
  1376. "image::flash_on": 12,
  1377. "image::flip": 12,
  1378. "image::flip_camera_android": 12,
  1379. "image::flip_camera_ios": 12,
  1380. "image::gradient": 12,
  1381. "image::grain": 12,
  1382. "image::grid_off": 12,
  1383. "image::grid_on": 12,
  1384. "image::hdr_enhanced_select": 11,
  1385. "image::hdr_off": 11,
  1386. "image::hdr_on": 11,
  1387. "image::hdr_plus": 10,
  1388. "image::hdr_strong": 12,
  1389. "image::hdr_weak": 12,
  1390. "image::healing": 12,
  1391. "image::hevc": 10,
  1392. "image::hide_image": 10,
  1393. "image::image": 16,
  1394. "image::image_aspect_ratio": 12,
  1395. "image::image_not_supported": 13,
  1396. "image::image_search": 12,
  1397. "image::incomplete_circle": 3,
  1398. "image::iso": 11,
  1399. "image::landscape": 12,
  1400. "image::leak_add": 12,
  1401. "image::leak_remove": 12,
  1402. "image::lens": 12,
  1403. "image::linked_camera": 15,
  1404. "image::logo_dev": 2,
  1405. "image::looks": 13,
  1406. "image::looks_3": 12,
  1407. "image::looks_4": 12,
  1408. "image::looks_5": 12,
  1409. "image::looks_6": 13,
  1410. "image::looks_one": 12,
  1411. "image::looks_two": 12,
  1412. "image::loupe": 12,
  1413. "image::mic_external_off": 11,
  1414. "image::mic_external_on": 11,
  1415. "image::monochrome_photos": 11,
  1416. "image::motion_photos_auto": 15,
  1417. "image::motion_photos_off": 14,
  1418. "image::motion_photos_on": 18,
  1419. "image::motion_photos_pause": 8,
  1420. "image::motion_photos_paused": 17,
  1421. "image::movie_creation": 12,
  1422. "image::movie_filter": 13,
  1423. "image::mp": 15,
  1424. "image::music_note": 12,
  1425. "image::music_off": 12,
  1426. "image::nature": 12,
  1427. "image::nature_people": 12,
  1428. "image::navigate_before": 13,
  1429. "image::navigate_next": 13,
  1430. "image::palette": 16,
  1431. "image::panorama": 17,
  1432. "image::panorama_fish_eye": 13,
  1433. "image::panorama_horizontal": 12,
  1434. "image::panorama_horizontal_select": 11,
  1435. "image::panorama_photosphere": 11,
  1436. "image::panorama_photosphere_select": 12,
  1437. "image::panorama_vertical": 13,
  1438. "image::panorama_vertical_select": 12,
  1439. "image::panorama_wide_angle": 14,
  1440. "image::panorama_wide_angle_select": 12,
  1441. "image::photo": 12,
  1442. "image::photo_album": 14,
  1443. "image::photo_camera": 18,
  1444. "image::photo_camera_back": 11,
  1445. "image::photo_camera_front": 11,
  1446. "image::photo_filter": 12,
  1447. "image::photo_library": 12,
  1448. "image::photo_size_select_actual": 12,
  1449. "image::photo_size_select_large": 12,
  1450. "image::photo_size_select_small": 12,
  1451. "image::picture_as_pdf": 12,
  1452. "image::portrait": 12,
  1453. "image::raw_off": 10,
  1454. "image::raw_on": 10,
  1455. "image::receipt_long": 12,
  1456. "image::remove_red_eye": 12,
  1457. "image::rotate_90_degrees_ccw": 12,
  1458. "image::rotate_90_degrees_cw": 2,
  1459. "image::rotate_left": 13,
  1460. "image::rotate_right": 13,
  1461. "image::shutter_speed": 11,
  1462. "image::slideshow": 12,
  1463. "image::straighten": 12,
  1464. "image::style": 12,
  1465. "image::switch_camera": 12,
  1466. "image::switch_video": 12,
  1467. "image::tag_faces": 19,
  1468. "image::texture": 12,
  1469. "image::thermostat_auto": 10,
  1470. "image::timelapse": 12,
  1471. "image::timer": 13,
  1472. "image::timer_10": 12,
  1473. "image::timer_3": 12,
  1474. "image::timer_off": 13,
  1475. "image::tonality": 12,
  1476. "image::transform": 12,
  1477. "image::tune": 12,
  1478. "image::video_camera_back": 10,
  1479. "image::video_camera_front": 10,
  1480. "image::video_stable": 10,
  1481. "image::view_comfy": 13,
  1482. "image::view_compact": 12,
  1483. "image::vignette": 12,
  1484. "image::vrpano": 10,
  1485. "image::wb_auto": 12,
  1486. "image::wb_cloudy": 12,
  1487. "image::wb_incandescent": 12,
  1488. "image::wb_iridescent": 11,
  1489. "image::wb_shade": 10,
  1490. "image::wb_sunny": 12,
  1491. "image::wb_twighlight": 10,
  1492. "image::wb_twilight": 9,
  1493. "maps::360": 14,
  1494. "maps::add_business": 17,
  1495. "maps::add_location": 16,
  1496. "maps::add_location_alt": 13,
  1497. "maps::add_road": 12,
  1498. "maps::agriculture": 11,
  1499. "maps::airline_stops": 2,
  1500. "maps::airlines": 2,
  1501. "maps::alt_route": 9,
  1502. "maps::atm": 12,
  1503. "maps::attractions": 10,
  1504. "maps::badge": 11,
  1505. "maps::bakery_dining": 11,
  1506. "maps::beenhere": 12,
  1507. "maps::bike_scooter": 11,
  1508. "maps::breakfast_dining": 11,
  1509. "maps::brunch_dining": 11,
  1510. "maps::bus_alert": 15,
  1511. "maps::car_crash": 1,
  1512. "maps::car_rental": 10,
  1513. "maps::car_repair": 10,
  1514. "maps::castle": 2,
  1515. "maps::category": 12,
  1516. "maps::celebration": 11,
  1517. "maps::church": 2,
  1518. "maps::cleaning_services": 12,
  1519. "maps::compass_calibration": 12,
  1520. "maps::connecting_airports": 2,
  1521. "maps::crisis_alert": 1,
  1522. "maps::delivery_dining": 15,
  1523. "maps::departure_board": 11,
  1524. "maps::design_services": 12,
  1525. "maps::diamond": 2,
  1526. "maps::dinner_dining": 10,
  1527. "maps::directions": 12,
  1528. "maps::directions_bike": 13,
  1529. "maps::directions_boat": 17,
  1530. "maps::directions_boat_filled": 16,
  1531. "maps::directions_bus": 12,
  1532. "maps::directions_bus_filled": 10,
  1533. "maps::directions_car": 18,
  1534. "maps::directions_car_filled": 10,
  1535. "maps::directions_railway": 13,
  1536. "maps::directions_railway_filled": 10,
  1537. "maps::directions_run": 13,
  1538. "maps::directions_subway": 12,
  1539. "maps::directions_subway_filled": 10,
  1540. "maps::directions_transit": 12,
  1541. "maps::directions_transit_filled": 10,
  1542. "maps::directions_walk": 13,
  1543. "maps::dry_cleaning": 10,
  1544. "maps::edit_attributes": 12,
  1545. "maps::edit_location": 16,
  1546. "maps::edit_location_alt": 8,
  1547. "maps::edit_road": 11,
  1548. "maps::egg": 2,
  1549. "maps::egg_alt": 2,
  1550. "maps::electric_bike": 14,
  1551. "maps::electric_car": 14,
  1552. "maps::electric_moped": 14,
  1553. "maps::electric_rickshaw": 15,
  1554. "maps::electric_scooter": 14,
  1555. "maps::electrical_services": 12,
  1556. "maps::emergency": 5,
  1557. "maps::emergency_recording": 1,
  1558. "maps::emergency_share": 1,
  1559. "maps::ev_station": 11,
  1560. "maps::factory": 1,
  1561. "maps::fastfood": 12,
  1562. "maps::festival": 10,
  1563. "maps::flight": 18,
  1564. "maps::flight_class": 2,
  1565. "maps::forest": 2,
  1566. "maps::fork_left": 1,
  1567. "maps::fork_right": 1,
  1568. "maps::fort": 2,
  1569. "maps::hail": 11,
  1570. "maps::handyman": 12,
  1571. "maps::hardware": 10,
  1572. "maps::home_repair_service": 12,
  1573. "maps::hotel": 18,
  1574. "maps::hvac": 12,
  1575. "maps::icecream": 11,
  1576. "maps::kebab_dining": 2,
  1577. "maps::layers": 12,
  1578. "maps::layers_clear": 12,
  1579. "maps::liquor": 10,
  1580. "maps::local_activity": 19,
  1581. "maps::local_airport": 14,
  1582. "maps::local_atm": 12,
  1583. "maps::local_bar": 12,
  1584. "maps::local_cafe": 11,
  1585. "maps::local_car_wash": 12,
  1586. "maps::local_convenience_store": 16,
  1587. "maps::local_dining": 21,
  1588. "maps::local_drink": 12,
  1589. "maps::local_fire_department": 13,
  1590. "maps::local_florist": 12,
  1591. "maps::local_gas_station": 12,
  1592. "maps::local_grocery_store": 12,
  1593. "maps::local_hospital": 12,
  1594. "maps::local_hotel": 13,
  1595. "maps::local_laundry_service": 16,
  1596. "maps::local_library": 12,
  1597. "maps::local_mall": 12,
  1598. "maps::local_movies": 12,
  1599. "maps::local_offer": 19,
  1600. "maps::local_parking": 12,
  1601. "maps::local_pharmacy": 12,
  1602. "maps::local_phone": 17,
  1603. "maps::local_pizza": 12,
  1604. "maps::local_play": 12,
  1605. "maps::local_police": 13,
  1606. "maps::local_post_office": 12,
  1607. "maps::local_printshop": 17,
  1608. "maps::local_see": 16,
  1609. "maps::local_shipping": 12,
  1610. "maps::local_taxi": 12,
  1611. "maps::location_pin": 7,
  1612. "maps::lunch_dining": 11,
  1613. "maps::map": 16,
  1614. "maps::maps_ugc": 13,
  1615. "maps::medical_information": 1,
  1616. "maps::medical_services": 12,
  1617. "maps::menu_book": 12,
  1618. "maps::merge": 1,
  1619. "maps::minor_crash": 1,
  1620. "maps::miscellaneous_services": 12,
  1621. "maps::mode_of_travel": 2,
  1622. "maps::money": 11,
  1623. "maps::moped": 14,
  1624. "maps::mosque": 2,
  1625. "maps::moving": 4,
  1626. "maps::multiple_stop": 7,
  1627. "maps::museum": 11,
  1628. "maps::my_location": 12,
  1629. "maps::navigation": 12,
  1630. "maps::near_me": 12,
  1631. "maps::near_me_disabled": 6,
  1632. "maps::nightlife": 10,
  1633. "maps::no_crash": 1,
  1634. "maps::no_meals": 7,
  1635. "maps::no_meals_ouline": 6,
  1636. "maps::no_transfer": 7,
  1637. "maps::not_listed_location": 17,
  1638. "maps::park": 10,
  1639. "maps::pedal_bike": 14,
  1640. "maps::person_pin": 13,
  1641. "maps::person_pin_circle": 17,
  1642. "maps::pest_control": 12,
  1643. "maps::pest_control_rodent": 12,
  1644. "maps::pin_drop": 17,
  1645. "maps::place": 17,
  1646. "maps::plumbing": 12,
  1647. "maps::railway_alert": 10,
  1648. "maps::ramen_dining": 10,
  1649. "maps::ramp_left": 1,
  1650. "maps::ramp_right": 1,
  1651. "maps::rate_review": 11,
  1652. "maps::restaurant": 16,
  1653. "maps::restaurant_menu": 12,
  1654. "maps::roundabout_left": 1,
  1655. "maps::roundabout_right": 1,
  1656. "maps::route": 2,
  1657. "maps::run_circle": 11,
  1658. "maps::safety_check": 1,
  1659. "maps::sailing": 4,
  1660. "maps::satellite": 12,
  1661. "maps::screen_rotation_alt": 1,
  1662. "maps::set_meal": 6,
  1663. "maps::signpost": 1,
  1664. "maps::snowmobile": 4,
  1665. "maps::sos": 1,
  1666. "maps::soup_kitchen": 2,
  1667. "maps::stadium": 1,
  1668. "maps::store_mall_directory": 12,
  1669. "maps::straight": 1,
  1670. "maps::streetview": 12,
  1671. "maps::subway": 11,
  1672. "maps::synagogue": 2,
  1673. "maps::takeout_dining": 16,
  1674. "maps::taxi_alert": 11,
  1675. "maps::temple_buddhist": 2,
  1676. "maps::temple_hindu": 2,
  1677. "maps::terrain": 12,
  1678. "maps::theater_comedy": 11,
  1679. "maps::tire_repair": 1,
  1680. "maps::traffic": 12,
  1681. "maps::train": 11,
  1682. "maps::tram": 11,
  1683. "maps::transfer_within_a_station": 12,
  1684. "maps::transit_enterexit": 12,
  1685. "maps::trip_origin": 12,
  1686. "maps::turn_left": 1,
  1687. "maps::turn_right": 1,
  1688. "maps::turn_sharp_left": 1,
  1689. "maps::turn_sharp_right": 1,
  1690. "maps::turn_slight_left": 1,
  1691. "maps::turn_slight_right": 1,
  1692. "maps::two_wheeler": 14,
  1693. "maps::u_turn_left": 1,
  1694. "maps::u_turn_right": 1,
  1695. "maps::volunteer_activism": 10,
  1696. "maps::warehouse": 1,
  1697. "maps::wine_bar": 6,
  1698. "maps::wrong_location": 17,
  1699. "maps::zoom_in_map": 1,
  1700. "maps::zoom_out_map": 17,
  1701. "navigation::app_settings_alt": 17,
  1702. "navigation::apps": 12,
  1703. "navigation::apps_outage": 2,
  1704. "navigation::arrow_back": 17,
  1705. "navigation::arrow_back_ios": 14,
  1706. "navigation::arrow_back_ios_new": 6,
  1707. "navigation::arrow_downward": 17,
  1708. "navigation::arrow_drop_down": 16,
  1709. "navigation::arrow_drop_down_circle": 12,
  1710. "navigation::arrow_drop_up": 12,
  1711. "navigation::arrow_forward": 13,
  1712. "navigation::arrow_forward_ios": 16,
  1713. "navigation::arrow_left": 12,
  1714. "navigation::arrow_right": 12,
  1715. "navigation::arrow_upward": 11,
  1716. "navigation::assistant_direction": 11,
  1717. "navigation::assistant_navigation": 10,
  1718. "navigation::campaign": 12,
  1719. "navigation::cancel": 16,
  1720. "navigation::check": 18,
  1721. "navigation::chevron_left": 16,
  1722. "navigation::chevron_right": 16,
  1723. "navigation::close": 19,
  1724. "navigation::double_arrow": 11,
  1725. "navigation::east": 7,
  1726. "navigation::expand_circle_down": 2,
  1727. "navigation::expand_less": 12,
  1728. "navigation::expand_more": 14,
  1729. "navigation::first_page": 11,
  1730. "navigation::fullscreen": 12,
  1731. "navigation::fullscreen_exit": 12,
  1732. "navigation::home_work": 12,
  1733. "navigation::last_page": 13,
  1734. "navigation::legend_toggle": 8,
  1735. "navigation::maps_home_work": 10,
  1736. "navigation::menu": 13,
  1737. "navigation::menu_open": 13,
  1738. "navigation::more_horiz": 13,
  1739. "navigation::more_vert": 19,
  1740. "navigation::north": 7,
  1741. "navigation::north_east": 7,
  1742. "navigation::north_west": 7,
  1743. "navigation::offline_share": 12,
  1744. "navigation::payments": 12,
  1745. "navigation::pivot_table_chart": 11,
  1746. "navigation::refresh": 16,
  1747. "navigation::south": 7,
  1748. "navigation::south_east": 7,
  1749. "navigation::south_west": 7,
  1750. "navigation::subdirectory_arrow_left": 11,
  1751. "navigation::subdirectory_arrow_right": 11,
  1752. "navigation::switch_left": 8,
  1753. "navigation::switch_right": 9,
  1754. "navigation::unfold_less": 12,
  1755. "navigation::unfold_more": 12,
  1756. "navigation::waterfall_chart": 11,
  1757. "navigation::west": 7,
  1758. "notification::account_tree": 12,
  1759. "notification::adb": 12,
  1760. "notification::add_call": 10,
  1761. "notification::airline_seat_flat": 12,
  1762. "notification::airline_seat_flat_angled": 12,
  1763. "notification::airline_seat_individual_suite": 11,
  1764. "notification::airline_seat_legroom_extra": 12,
  1765. "notification::airline_seat_legroom_normal": 12,
  1766. "notification::airline_seat_legroom_reduced": 12,
  1767. "notification::airline_seat_recline_extra": 12,
  1768. "notification::airline_seat_recline_normal": 12,
  1769. "notification::bluetooth_audio": 12,
  1770. "notification::confirmation_number": 15,
  1771. "notification::directions_off": 12,
  1772. "notification::disc_full": 12,
  1773. "notification::do_disturb": 10,
  1774. "notification::do_disturb_alt": 11,
  1775. "notification::do_disturb_off": 10,
  1776. "notification::do_disturb_on": 10,
  1777. "notification::do_not_disturb": 11,
  1778. "notification::do_not_disturb_alt": 12,
  1779. "notification::do_not_disturb_off": 11,
  1780. "notification::do_not_disturb_on": 11,
  1781. "notification::drive_eta": 12,
  1782. "notification::enhanced_encryption": 19,
  1783. "notification::event_available": 17,
  1784. "notification::event_busy": 20,
  1785. "notification::event_note": 14,
  1786. "notification::folder_special": 11,
  1787. "notification::imagesearch_roller": 11,
  1788. "notification::live_tv": 11,
  1789. "notification::mms": 12,
  1790. "notification::more": 13,
  1791. "notification::network_check": 12,
  1792. "notification::network_locked": 17,
  1793. "notification::no_encryption": 17,
  1794. "notification::no_encryption_gmailerrorred": 10,
  1795. "notification::ondemand_video": 11,
  1796. "notification::personal_video": 13,
  1797. "notification::phone_bluetooth_speaker": 12,
  1798. "notification::phone_callback": 13,
  1799. "notification::phone_forwarded": 13,
  1800. "notification::phone_in_talk": 12,
  1801. "notification::phone_locked": 19,
  1802. "notification::phone_missed": 13,
  1803. "notification::phone_paused": 13,
  1804. "notification::power": 12,
  1805. "notification::power_off": 12,
  1806. "notification::priority_high": 19,
  1807. "notification::running_with_errors": 4,
  1808. "notification::sd_card": 12,
  1809. "notification::sd_card_alert": 11,
  1810. "notification::sim_card_alert": 11,
  1811. "notification::sms": 12,
  1812. "notification::sms_failed": 13,
  1813. "notification::support_agent": 12,
  1814. "notification::sync": 17,
  1815. "notification::sync_disabled": 16,
  1816. "notification::sync_lock": 1,
  1817. "notification::sync_problem": 21,
  1818. "notification::system_update": 12,
  1819. "notification::tap_and_play": 12,
  1820. "notification::time_to_leave": 12,
  1821. "notification::tv_off": 11,
  1822. "notification::vibration": 12,
  1823. "notification::voice_chat": 12,
  1824. "notification::vpn_lock": 17,
  1825. "notification::wc": 11,
  1826. "notification::wifi": 12,
  1827. "notification::wifi_off": 12,
  1828. "places::ac_unit": 12,
  1829. "places::airport_shuttle": 12,
  1830. "places::all_inclusive": 11,
  1831. "places::apartment": 11,
  1832. "places::baby_changing_station": 8,
  1833. "places::backpack": 8,
  1834. "places::balcony": 4,
  1835. "places::bathtub": 11,
  1836. "places::beach_access": 12,
  1837. "places::bento": 6,
  1838. "places::bungalow": 4,
  1839. "places::business_center": 15,
  1840. "places::cabin": 4,
  1841. "places::carpenter": 6,
  1842. "places::casino": 13,
  1843. "places::chalet": 4,
  1844. "places::charging_station": 8,
  1845. "places::checkroom": 8,
  1846. "places::child_care": 12,
  1847. "places::child_friendly": 12,
  1848. "places::corporate_fare": 7,
  1849. "places::cottage": 4,
  1850. "places::countertops": 6,
  1851. "places::crib": 4,
  1852. "places::do_not_step": 8,
  1853. "places::do_not_touch": 8,
  1854. "places::dry": 8,
  1855. "places::elevator": 8,
  1856. "places::escalator": 8,
  1857. "places::escalator_warning": 8,
  1858. "places::family_restroom": 9,
  1859. "places::fence": 6,
  1860. "places::fire_extinguisher": 7,
  1861. "places::fitness_center": 12,
  1862. "places::food_bank": 7,
  1863. "places::foundation": 6,
  1864. "places::free_breakfast": 11,
  1865. "places::gite": 4,
  1866. "places::golf_course": 11,
  1867. "places::grass": 7,
  1868. "places::holiday_village": 4,
  1869. "places::hot_tub": 12,
  1870. "places::house": 11,
  1871. "places::house_siding": 6,
  1872. "places::houseboat": 4,
  1873. "places::iron": 4,
  1874. "places::kitchen": 11,
  1875. "places::meeting_room": 17,
  1876. "places::microwave": 6,
  1877. "places::night_shelter": 6,
  1878. "places::no_backpack": 6,
  1879. "places::no_cell": 8,
  1880. "places::no_drinks": 8,
  1881. "places::no_flash": 8,
  1882. "places::no_food": 8,
  1883. "places::no_meeting_room": 11,
  1884. "places::no_photography": 8,
  1885. "places::no_stroller": 9,
  1886. "places::other_houses": 4,
  1887. "places::pool": 12,
  1888. "places::rice_bowl": 6,
  1889. "places::roofing": 6,
  1890. "places::room_preferences": 7,
  1891. "places::room_service": 11,
  1892. "places::rv_hookup": 12,
  1893. "places::smoke_free": 12,
  1894. "places::smoking_rooms": 12,
  1895. "places::soap": 8,
  1896. "places::spa": 12,
  1897. "places::sports_bar": 7,
  1898. "places::stairs": 8,
  1899. "places::storefront": 17,
  1900. "places::stroller": 8,
  1901. "places::tapas": 6,
  1902. "places::tty": 8,
  1903. "places::umbrella": 8,
  1904. "places::vape_free": 1,
  1905. "places::vaping_rooms": 1,
  1906. "places::villa": 4,
  1907. "places::wash": 8,
  1908. "places::water_damage": 6,
  1909. "places::wheelchair_pickup": 8,
  1910. "search::bathroom": 10,
  1911. "search::bed": 9,
  1912. "search::bedroom_baby": 9,
  1913. "search::bedroom_child": 9,
  1914. "search::bedroom_parent": 9,
  1915. "search::blender": 9,
  1916. "search::camera_indoor": 9,
  1917. "search::camera_outdoor": 9,
  1918. "search::chair": 10,
  1919. "search::chair_alt": 9,
  1920. "search::coffee": 9,
  1921. "search::coffee_maker": 9,
  1922. "search::dining": 9,
  1923. "search::door_back": 10,
  1924. "search::door_front": 10,
  1925. "search::door_sliding": 10,
  1926. "search::doorbell": 10,
  1927. "search::feed": 10,
  1928. "search::flatware": 9,
  1929. "search::garage": 10,
  1930. "search::light": 9,
  1931. "search::living": 9,
  1932. "search::manage_search": 10,
  1933. "search::podcasts": 9,
  1934. "search::shower": 9,
  1935. "search::table_bar": 2,
  1936. "search::table_restaurant": 2,
  1937. "search::window": 9,
  1938. "search::yard": 9,
  1939. "social::6_ft_apart": 9,
  1940. "social::add_moderator": 12,
  1941. "social::add_reaction": 9,
  1942. "social::architecture": 11,
  1943. "social::back_hand": 3,
  1944. "social::boy": 1,
  1945. "social::cake": 13,
  1946. "social::catching_pokemon": 4,
  1947. "social::clean_hands": 7,
  1948. "social::co2": 3,
  1949. "social::compost": 3,
  1950. "social::connect_without_contact": 7,
  1951. "social::construction": 11,
  1952. "social::cookie": 2,
  1953. "social::coronavirus": 6,
  1954. "social::cruelty_free": 3,
  1955. "social::cyclone": 1,
  1956. "social::deck": 11,
  1957. "social::domain": 16,
  1958. "social::domain_add": 1,
  1959. "social::downhill_skiing": 4,
  1960. "social::edit_notifications": 4,
  1961. "social::elderly": 7,
  1962. "social::elderly_woman": 1,
  1963. "social::emoji_emotions": 11,
  1964. "social::emoji_events": 13,
  1965. "social::emoji_flags": 9,
  1966. "social::emoji_food_beverage": 11,
  1967. "social::emoji_nature": 11,
  1968. "social::emoji_objects": 11,
  1969. "social::emoji_people": 11,
  1970. "social::emoji_symbols": 11,
  1971. "social::emoji_transportation": 11,
  1972. "social::engineering": 11,
  1973. "social::facebook": 4,
  1974. "social::female": 3,
  1975. "social::fireplace": 11,
  1976. "social::fitbit": 2,
  1977. "social::flood": 1,
  1978. "social::follow_the_signs": 7,
  1979. "social::front_hand": 3,
  1980. "social::girl": 1,
  1981. "social::group": 19,
  1982. "social::group_add": 18,
  1983. "social::group_off": 5,
  1984. "social::group_remove": 3,
  1985. "social::groups": 6,
  1986. "social::handshake": 1,
  1987. "social::health_and_safety": 7,
  1988. "social::heart_broken": 2,
  1989. "social::hiking": 4,
  1990. "social::history_edu": 11,
  1991. "social::hive": 2,
  1992. "social::ice_skating": 4,
  1993. "social::interests": 2,
  1994. "social::ios_share": 13,
  1995. "social::kayaking": 4,
  1996. "social::king_bed": 12,
  1997. "social::kitesurfing": 4,
  1998. "social::landslide": 1,
  1999. "social::location_city": 12,
  2000. "social::luggage": 7,
  2001. "social::male": 3,
  2002. "social::man": 2,
  2003. "social::masks": 7,
  2004. "social::military_tech": 11,
  2005. "social::mood": 16,
  2006. "social::mood_bad": 12,
  2007. "social::nights_stay": 11,
  2008. "social::no_luggage": 7,
  2009. "social::nordic_walking": 4,
  2010. "social::notification_add": 5,
  2011. "social::notifications": 18,
  2012. "social::notifications_active": 13,
  2013. "social::notifications_none": 12,
  2014. "social::notifications_off": 12,
  2015. "social::notifications_paused": 12,
  2016. "social::outdoor_grill": 11,
  2017. "social::pages": 11,
  2018. "social::paragliding": 4,
  2019. "social::party_mode": 12,
  2020. "social::people": 23,
  2021. "social::people_alt": 21,
  2022. "social::people_outline": 12,
  2023. "social::person": 17,
  2024. "social::person_add": 16,
  2025. "social::person_add_alt": 11,
  2026. "social::person_add_alt_1": 13,
  2027. "social::person_off": 4,
  2028. "social::person_outline": 19,
  2029. "social::person_remove": 12,
  2030. "social::person_remove_alt_1": 13,
  2031. "social::personal_injury": 3,
  2032. "social::piano": 4,
  2033. "social::piano_off": 4,
  2034. "social::pix": 2,
  2035. "social::plus_one": 17,
  2036. "social::poll": 13,
  2037. "social::precision_manufacturing": 10,
  2038. "social::psychology": 11,
  2039. "social::public": 12,
  2040. "social::public_off": 8,
  2041. "social::real_estate_agent": 3,
  2042. "social::recommend": 11,
  2043. "social::recycling": 3,
  2044. "social::reduce_capacity": 6,
  2045. "social::remove_moderator": 11,
  2046. "social::roller_skating": 1,
  2047. "social::safety_divider": 7,
  2048. "social::sanitizer": 6,
  2049. "social::scale": 1,
  2050. "social::school": 12,
  2051. "social::science": 17,
  2052. "social::scoreboard": 1,
  2053. "social::scuba_diving": 1,
  2054. "social::self_improvement": 11,
  2055. "social::sentiment_dissatisfied": 11,
  2056. "social::sentiment_neutral": 11,
  2057. "social::sentiment_satisfied": 11,
  2058. "social::sentiment_very_dissatisfied": 11,
  2059. "social::sentiment_very_satisfied": 11,
  2060. "social::severe_cold": 1,
  2061. "social::share": 18,
  2062. "social::sick": 6,
  2063. "social::sign_language": 1,
  2064. "social::single_bed": 11,
  2065. "social::skateboarding": 4,
  2066. "social::sledding": 5,
  2067. "social::snowboarding": 4,
  2068. "social::snowshoeing": 4,
  2069. "social::social_distance": 7,
  2070. "social::south_america": 2,
  2071. "social::sports": 11,
  2072. "social::sports_baseball": 11,
  2073. "social::sports_basketball": 11,
  2074. "social::sports_cricket": 11,
  2075. "social::sports_esports": 11,
  2076. "social::sports_football": 12,
  2077. "social::sports_golf": 11,
  2078. "social::sports_gymnastics": 1,
  2079. "social::sports_handball": 11,
  2080. "social::sports_hockey": 11,
  2081. "social::sports_kabaddi": 11,
  2082. "social::sports_martial_arts": 1,
  2083. "social::sports_mma": 11,
  2084. "social::sports_motorsports": 11,
  2085. "social::sports_rugby": 11,
  2086. "social::sports_soccer": 11,
  2087. "social::sports_tennis": 11,
  2088. "social::sports_volleyball": 11,
  2089. "social::surfing": 4,
  2090. "social::switch_account": 11,
  2091. "social::thumb_down_alt": 11,
  2092. "social::thumb_up_alt": 11,
  2093. "social::thunderstorm": 1,
  2094. "social::transgender": 3,
  2095. "social::travel_explore": 8,
  2096. "social::tsunami": 1,
  2097. "social::vaccines": 2,
  2098. "social::volcano": 1,
  2099. "social::water_drop": 3,
  2100. "social::waving_hand": 3,
  2101. "social::whatsapp": 2,
  2102. "social::whatshot": 17,
  2103. "social::woman": 2,
  2104. "social::workspace_premium": 3,
  2105. "toggle::check_box": 16,
  2106. "toggle::check_box_outline_blank": 16,
  2107. "toggle::indeterminate_check_box": 18,
  2108. "toggle::radio_button_checked": 13,
  2109. "toggle::radio_button_unchecked": 13,
  2110. "toggle::star": 20,
  2111. "toggle::star_border": 19,
  2112. "toggle::star_border_purple500": 10,
  2113. "toggle::star_half": 22,
  2114. "toggle::star_outline": 11,
  2115. "toggle::star_purple500": 10,
  2116. "toggle::toggle_off": 12,
  2117. "toggle::toggle_on": 12
  2118. }