icons_fontawesome_6.py 90 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408
  1. # By default, HelloImGui uses Font Awesome 4
  2. # In order to use Font Awesome 4:
  3. # from imgui_bundle import icons_fontawesome_4
  4. #
  5. # In order to use Font Awesome 6:
  6. # runnerParams.callbacks.default_icon_font = hello_imgui.DefaultIconFont.font_awesome_6
  7. # And
  8. # from imgui_bundle import icons_fontawesome_6
  9. # Generated by https://github.com/juliettef/IconFontCppHeaders script GenerateIconFontCppHeaders.py for languages C and C++
  10. # from https://github.com/FortAwesome/Font-Awesome/raw/6.x/metadata/icons.yml
  11. # for use with https://github.com/FortAwesome/Font-Awesome/blob/6.x/webfonts/fa-regular-400.ttf, https://github.com/FortAwesome/Font-Awesome/blob/6.x/webfonts/fa-solid-900.ttf
  12. ICON_MIN_FA = 0xe005
  13. ICON_MAX_16_FA = 0xf8ff
  14. ICON_MAX_FA = 0xf8ff
  15. ICON_FA_0 = b"0".decode("utf-8") # U+0030
  16. ICON_FA_1 = b"1".decode("utf-8") # U+0031
  17. ICON_FA_2 = b"2".decode("utf-8") # U+0032
  18. ICON_FA_3 = b"3".decode("utf-8") # U+0033
  19. ICON_FA_4 = b"4".decode("utf-8") # U+0034
  20. ICON_FA_5 = b"5".decode("utf-8") # U+0035
  21. ICON_FA_6 = b"6".decode("utf-8") # U+0036
  22. ICON_FA_7 = b"7".decode("utf-8") # U+0037
  23. ICON_FA_8 = b"8".decode("utf-8") # U+0038
  24. ICON_FA_9 = b"9".decode("utf-8") # U+0039
  25. ICON_FA_A = b"A".decode("utf-8") # U+0041
  26. ICON_FA_ADDRESS_BOOK = b"\xef\x8a\xb9".decode("utf-8") # U+f2b9
  27. ICON_FA_ADDRESS_CARD = b"\xef\x8a\xbb".decode("utf-8") # U+f2bb
  28. ICON_FA_ALIGN_CENTER = b"\xef\x80\xb7".decode("utf-8") # U+f037
  29. ICON_FA_ALIGN_JUSTIFY = b"\xef\x80\xb9".decode("utf-8") # U+f039
  30. ICON_FA_ALIGN_LEFT = b"\xef\x80\xb6".decode("utf-8") # U+f036
  31. ICON_FA_ALIGN_RIGHT = b"\xef\x80\xb8".decode("utf-8") # U+f038
  32. ICON_FA_ANCHOR = b"\xef\x84\xbd".decode("utf-8") # U+f13d
  33. ICON_FA_ANCHOR_CIRCLE_CHECK = b"\xee\x92\xaa".decode("utf-8") # U+e4aa
  34. ICON_FA_ANCHOR_CIRCLE_EXCLAMATION = b"\xee\x92\xab".decode("utf-8") # U+e4ab
  35. ICON_FA_ANCHOR_CIRCLE_XMARK = b"\xee\x92\xac".decode("utf-8") # U+e4ac
  36. ICON_FA_ANCHOR_LOCK = b"\xee\x92\xad".decode("utf-8") # U+e4ad
  37. ICON_FA_ANGLE_DOWN = b"\xef\x84\x87".decode("utf-8") # U+f107
  38. ICON_FA_ANGLE_LEFT = b"\xef\x84\x84".decode("utf-8") # U+f104
  39. ICON_FA_ANGLE_RIGHT = b"\xef\x84\x85".decode("utf-8") # U+f105
  40. ICON_FA_ANGLE_UP = b"\xef\x84\x86".decode("utf-8") # U+f106
  41. ICON_FA_ANGLES_DOWN = b"\xef\x84\x83".decode("utf-8") # U+f103
  42. ICON_FA_ANGLES_LEFT = b"\xef\x84\x80".decode("utf-8") # U+f100
  43. ICON_FA_ANGLES_RIGHT = b"\xef\x84\x81".decode("utf-8") # U+f101
  44. ICON_FA_ANGLES_UP = b"\xef\x84\x82".decode("utf-8") # U+f102
  45. ICON_FA_ANKH = b"\xef\x99\x84".decode("utf-8") # U+f644
  46. ICON_FA_APPLE_WHOLE = b"\xef\x97\x91".decode("utf-8") # U+f5d1
  47. ICON_FA_ARCHWAY = b"\xef\x95\x97".decode("utf-8") # U+f557
  48. ICON_FA_ARROW_DOWN = b"\xef\x81\xa3".decode("utf-8") # U+f063
  49. ICON_FA_ARROW_DOWN_1_9 = b"\xef\x85\xa2".decode("utf-8") # U+f162
  50. ICON_FA_ARROW_DOWN_9_1 = b"\xef\xa2\x86".decode("utf-8") # U+f886
  51. ICON_FA_ARROW_DOWN_A_Z = b"\xef\x85\x9d".decode("utf-8") # U+f15d
  52. ICON_FA_ARROW_DOWN_LONG = b"\xef\x85\xb5".decode("utf-8") # U+f175
  53. ICON_FA_ARROW_DOWN_SHORT_WIDE = b"\xef\xa2\x84".decode("utf-8") # U+f884
  54. ICON_FA_ARROW_DOWN_UP_ACROSS_LINE = b"\xee\x92\xaf".decode("utf-8") # U+e4af
  55. ICON_FA_ARROW_DOWN_UP_LOCK = b"\xee\x92\xb0".decode("utf-8") # U+e4b0
  56. ICON_FA_ARROW_DOWN_WIDE_SHORT = b"\xef\x85\xa0".decode("utf-8") # U+f160
  57. ICON_FA_ARROW_DOWN_Z_A = b"\xef\xa2\x81".decode("utf-8") # U+f881
  58. ICON_FA_ARROW_LEFT = b"\xef\x81\xa0".decode("utf-8") # U+f060
  59. ICON_FA_ARROW_LEFT_LONG = b"\xef\x85\xb7".decode("utf-8") # U+f177
  60. ICON_FA_ARROW_POINTER = b"\xef\x89\x85".decode("utf-8") # U+f245
  61. ICON_FA_ARROW_RIGHT = b"\xef\x81\xa1".decode("utf-8") # U+f061
  62. ICON_FA_ARROW_RIGHT_ARROW_LEFT = b"\xef\x83\xac".decode("utf-8") # U+f0ec
  63. ICON_FA_ARROW_RIGHT_FROM_BRACKET = b"\xef\x82\x8b".decode("utf-8") # U+f08b
  64. ICON_FA_ARROW_RIGHT_LONG = b"\xef\x85\xb8".decode("utf-8") # U+f178
  65. ICON_FA_ARROW_RIGHT_TO_BRACKET = b"\xef\x82\x90".decode("utf-8") # U+f090
  66. ICON_FA_ARROW_RIGHT_TO_CITY = b"\xee\x92\xb3".decode("utf-8") # U+e4b3
  67. ICON_FA_ARROW_ROTATE_LEFT = b"\xef\x83\xa2".decode("utf-8") # U+f0e2
  68. ICON_FA_ARROW_ROTATE_RIGHT = b"\xef\x80\x9e".decode("utf-8") # U+f01e
  69. ICON_FA_ARROW_TREND_DOWN = b"\xee\x82\x97".decode("utf-8") # U+e097
  70. ICON_FA_ARROW_TREND_UP = b"\xee\x82\x98".decode("utf-8") # U+e098
  71. ICON_FA_ARROW_TURN_DOWN = b"\xef\x85\x89".decode("utf-8") # U+f149
  72. ICON_FA_ARROW_TURN_UP = b"\xef\x85\x88".decode("utf-8") # U+f148
  73. ICON_FA_ARROW_UP = b"\xef\x81\xa2".decode("utf-8") # U+f062
  74. ICON_FA_ARROW_UP_1_9 = b"\xef\x85\xa3".decode("utf-8") # U+f163
  75. ICON_FA_ARROW_UP_9_1 = b"\xef\xa2\x87".decode("utf-8") # U+f887
  76. ICON_FA_ARROW_UP_A_Z = b"\xef\x85\x9e".decode("utf-8") # U+f15e
  77. ICON_FA_ARROW_UP_FROM_BRACKET = b"\xee\x82\x9a".decode("utf-8") # U+e09a
  78. ICON_FA_ARROW_UP_FROM_GROUND_WATER = b"\xee\x92\xb5".decode("utf-8") # U+e4b5
  79. ICON_FA_ARROW_UP_FROM_WATER_PUMP = b"\xee\x92\xb6".decode("utf-8") # U+e4b6
  80. ICON_FA_ARROW_UP_LONG = b"\xef\x85\xb6".decode("utf-8") # U+f176
  81. ICON_FA_ARROW_UP_RIGHT_DOTS = b"\xee\x92\xb7".decode("utf-8") # U+e4b7
  82. ICON_FA_ARROW_UP_RIGHT_FROM_SQUARE = b"\xef\x82\x8e".decode("utf-8") # U+f08e
  83. ICON_FA_ARROW_UP_SHORT_WIDE = b"\xef\xa2\x85".decode("utf-8") # U+f885
  84. ICON_FA_ARROW_UP_WIDE_SHORT = b"\xef\x85\xa1".decode("utf-8") # U+f161
  85. ICON_FA_ARROW_UP_Z_A = b"\xef\xa2\x82".decode("utf-8") # U+f882
  86. ICON_FA_ARROWS_DOWN_TO_LINE = b"\xee\x92\xb8".decode("utf-8") # U+e4b8
  87. ICON_FA_ARROWS_DOWN_TO_PEOPLE = b"\xee\x92\xb9".decode("utf-8") # U+e4b9
  88. ICON_FA_ARROWS_LEFT_RIGHT = b"\xef\x81\xbe".decode("utf-8") # U+f07e
  89. ICON_FA_ARROWS_LEFT_RIGHT_TO_LINE = b"\xee\x92\xba".decode("utf-8") # U+e4ba
  90. ICON_FA_ARROWS_ROTATE = b"\xef\x80\xa1".decode("utf-8") # U+f021
  91. ICON_FA_ARROWS_SPIN = b"\xee\x92\xbb".decode("utf-8") # U+e4bb
  92. ICON_FA_ARROWS_SPLIT_UP_AND_LEFT = b"\xee\x92\xbc".decode("utf-8") # U+e4bc
  93. ICON_FA_ARROWS_TO_CIRCLE = b"\xee\x92\xbd".decode("utf-8") # U+e4bd
  94. ICON_FA_ARROWS_TO_DOT = b"\xee\x92\xbe".decode("utf-8") # U+e4be
  95. ICON_FA_ARROWS_TO_EYE = b"\xee\x92\xbf".decode("utf-8") # U+e4bf
  96. ICON_FA_ARROWS_TURN_RIGHT = b"\xee\x93\x80".decode("utf-8") # U+e4c0
  97. ICON_FA_ARROWS_TURN_TO_DOTS = b"\xee\x93\x81".decode("utf-8") # U+e4c1
  98. ICON_FA_ARROWS_UP_DOWN = b"\xef\x81\xbd".decode("utf-8") # U+f07d
  99. ICON_FA_ARROWS_UP_DOWN_LEFT_RIGHT = b"\xef\x81\x87".decode("utf-8") # U+f047
  100. ICON_FA_ARROWS_UP_TO_LINE = b"\xee\x93\x82".decode("utf-8") # U+e4c2
  101. ICON_FA_ASTERISK = b"*".decode("utf-8") # U+002a
  102. ICON_FA_AT = b"@".decode("utf-8") # U+0040
  103. ICON_FA_ATOM = b"\xef\x97\x92".decode("utf-8") # U+f5d2
  104. ICON_FA_AUDIO_DESCRIPTION = b"\xef\x8a\x9e".decode("utf-8") # U+f29e
  105. ICON_FA_AUSTRAL_SIGN = b"\xee\x82\xa9".decode("utf-8") # U+e0a9
  106. ICON_FA_AWARD = b"\xef\x95\x99".decode("utf-8") # U+f559
  107. ICON_FA_B = b"B".decode("utf-8") # U+0042
  108. ICON_FA_BABY = b"\xef\x9d\xbc".decode("utf-8") # U+f77c
  109. ICON_FA_BABY_CARRIAGE = b"\xef\x9d\xbd".decode("utf-8") # U+f77d
  110. ICON_FA_BACKWARD = b"\xef\x81\x8a".decode("utf-8") # U+f04a
  111. ICON_FA_BACKWARD_FAST = b"\xef\x81\x89".decode("utf-8") # U+f049
  112. ICON_FA_BACKWARD_STEP = b"\xef\x81\x88".decode("utf-8") # U+f048
  113. ICON_FA_BACON = b"\xef\x9f\xa5".decode("utf-8") # U+f7e5
  114. ICON_FA_BACTERIA = b"\xee\x81\x99".decode("utf-8") # U+e059
  115. ICON_FA_BACTERIUM = b"\xee\x81\x9a".decode("utf-8") # U+e05a
  116. ICON_FA_BAG_SHOPPING = b"\xef\x8a\x90".decode("utf-8") # U+f290
  117. ICON_FA_BAHAI = b"\xef\x99\xa6".decode("utf-8") # U+f666
  118. ICON_FA_BAHT_SIGN = b"\xee\x82\xac".decode("utf-8") # U+e0ac
  119. ICON_FA_BAN = b"\xef\x81\x9e".decode("utf-8") # U+f05e
  120. ICON_FA_BAN_SMOKING = b"\xef\x95\x8d".decode("utf-8") # U+f54d
  121. ICON_FA_BANDAGE = b"\xef\x91\xa2".decode("utf-8") # U+f462
  122. ICON_FA_BANGLADESHI_TAKA_SIGN = b"\xee\x8b\xa6".decode("utf-8") # U+e2e6
  123. ICON_FA_BARCODE = b"\xef\x80\xaa".decode("utf-8") # U+f02a
  124. ICON_FA_BARS = b"\xef\x83\x89".decode("utf-8") # U+f0c9
  125. ICON_FA_BARS_PROGRESS = b"\xef\xa0\xa8".decode("utf-8") # U+f828
  126. ICON_FA_BARS_STAGGERED = b"\xef\x95\x90".decode("utf-8") # U+f550
  127. ICON_FA_BASEBALL = b"\xef\x90\xb3".decode("utf-8") # U+f433
  128. ICON_FA_BASEBALL_BAT_BALL = b"\xef\x90\xb2".decode("utf-8") # U+f432
  129. ICON_FA_BASKET_SHOPPING = b"\xef\x8a\x91".decode("utf-8") # U+f291
  130. ICON_FA_BASKETBALL = b"\xef\x90\xb4".decode("utf-8") # U+f434
  131. ICON_FA_BATH = b"\xef\x8b\x8d".decode("utf-8") # U+f2cd
  132. ICON_FA_BATTERY_EMPTY = b"\xef\x89\x84".decode("utf-8") # U+f244
  133. ICON_FA_BATTERY_FULL = b"\xef\x89\x80".decode("utf-8") # U+f240
  134. ICON_FA_BATTERY_HALF = b"\xef\x89\x82".decode("utf-8") # U+f242
  135. ICON_FA_BATTERY_QUARTER = b"\xef\x89\x83".decode("utf-8") # U+f243
  136. ICON_FA_BATTERY_THREE_QUARTERS = b"\xef\x89\x81".decode("utf-8") # U+f241
  137. ICON_FA_BED = b"\xef\x88\xb6".decode("utf-8") # U+f236
  138. ICON_FA_BED_PULSE = b"\xef\x92\x87".decode("utf-8") # U+f487
  139. ICON_FA_BEER_MUG_EMPTY = b"\xef\x83\xbc".decode("utf-8") # U+f0fc
  140. ICON_FA_BELL = b"\xef\x83\xb3".decode("utf-8") # U+f0f3
  141. ICON_FA_BELL_CONCIERGE = b"\xef\x95\xa2".decode("utf-8") # U+f562
  142. ICON_FA_BELL_SLASH = b"\xef\x87\xb6".decode("utf-8") # U+f1f6
  143. ICON_FA_BEZIER_CURVE = b"\xef\x95\x9b".decode("utf-8") # U+f55b
  144. ICON_FA_BICYCLE = b"\xef\x88\x86".decode("utf-8") # U+f206
  145. ICON_FA_BINOCULARS = b"\xef\x87\xa5".decode("utf-8") # U+f1e5
  146. ICON_FA_BIOHAZARD = b"\xef\x9e\x80".decode("utf-8") # U+f780
  147. ICON_FA_BITCOIN_SIGN = b"\xee\x82\xb4".decode("utf-8") # U+e0b4
  148. ICON_FA_BLENDER = b"\xef\x94\x97".decode("utf-8") # U+f517
  149. ICON_FA_BLENDER_PHONE = b"\xef\x9a\xb6".decode("utf-8") # U+f6b6
  150. ICON_FA_BLOG = b"\xef\x9e\x81".decode("utf-8") # U+f781
  151. ICON_FA_BOLD = b"\xef\x80\xb2".decode("utf-8") # U+f032
  152. ICON_FA_BOLT = b"\xef\x83\xa7".decode("utf-8") # U+f0e7
  153. ICON_FA_BOLT_LIGHTNING = b"\xee\x82\xb7".decode("utf-8") # U+e0b7
  154. ICON_FA_BOMB = b"\xef\x87\xa2".decode("utf-8") # U+f1e2
  155. ICON_FA_BONE = b"\xef\x97\x97".decode("utf-8") # U+f5d7
  156. ICON_FA_BONG = b"\xef\x95\x9c".decode("utf-8") # U+f55c
  157. ICON_FA_BOOK = b"\xef\x80\xad".decode("utf-8") # U+f02d
  158. ICON_FA_BOOK_ATLAS = b"\xef\x95\x98".decode("utf-8") # U+f558
  159. ICON_FA_BOOK_BIBLE = b"\xef\x99\x87".decode("utf-8") # U+f647
  160. ICON_FA_BOOK_BOOKMARK = b"\xee\x82\xbb".decode("utf-8") # U+e0bb
  161. ICON_FA_BOOK_JOURNAL_WHILLS = b"\xef\x99\xaa".decode("utf-8") # U+f66a
  162. ICON_FA_BOOK_MEDICAL = b"\xef\x9f\xa6".decode("utf-8") # U+f7e6
  163. ICON_FA_BOOK_OPEN = b"\xef\x94\x98".decode("utf-8") # U+f518
  164. ICON_FA_BOOK_OPEN_READER = b"\xef\x97\x9a".decode("utf-8") # U+f5da
  165. ICON_FA_BOOK_QURAN = b"\xef\x9a\x87".decode("utf-8") # U+f687
  166. ICON_FA_BOOK_SKULL = b"\xef\x9a\xb7".decode("utf-8") # U+f6b7
  167. ICON_FA_BOOK_TANAKH = b"\xef\xa0\xa7".decode("utf-8") # U+f827
  168. ICON_FA_BOOKMARK = b"\xef\x80\xae".decode("utf-8") # U+f02e
  169. ICON_FA_BORDER_ALL = b"\xef\xa1\x8c".decode("utf-8") # U+f84c
  170. ICON_FA_BORDER_NONE = b"\xef\xa1\x90".decode("utf-8") # U+f850
  171. ICON_FA_BORDER_TOP_LEFT = b"\xef\xa1\x93".decode("utf-8") # U+f853
  172. ICON_FA_BORE_HOLE = b"\xee\x93\x83".decode("utf-8") # U+e4c3
  173. ICON_FA_BOTTLE_DROPLET = b"\xee\x93\x84".decode("utf-8") # U+e4c4
  174. ICON_FA_BOTTLE_WATER = b"\xee\x93\x85".decode("utf-8") # U+e4c5
  175. ICON_FA_BOWL_FOOD = b"\xee\x93\x86".decode("utf-8") # U+e4c6
  176. ICON_FA_BOWL_RICE = b"\xee\x8b\xab".decode("utf-8") # U+e2eb
  177. ICON_FA_BOWLING_BALL = b"\xef\x90\xb6".decode("utf-8") # U+f436
  178. ICON_FA_BOX = b"\xef\x91\xa6".decode("utf-8") # U+f466
  179. ICON_FA_BOX_ARCHIVE = b"\xef\x86\x87".decode("utf-8") # U+f187
  180. ICON_FA_BOX_OPEN = b"\xef\x92\x9e".decode("utf-8") # U+f49e
  181. ICON_FA_BOX_TISSUE = b"\xee\x81\x9b".decode("utf-8") # U+e05b
  182. ICON_FA_BOXES_PACKING = b"\xee\x93\x87".decode("utf-8") # U+e4c7
  183. ICON_FA_BOXES_STACKED = b"\xef\x91\xa8".decode("utf-8") # U+f468
  184. ICON_FA_BRAILLE = b"\xef\x8a\xa1".decode("utf-8") # U+f2a1
  185. ICON_FA_BRAIN = b"\xef\x97\x9c".decode("utf-8") # U+f5dc
  186. ICON_FA_BRAZILIAN_REAL_SIGN = b"\xee\x91\xac".decode("utf-8") # U+e46c
  187. ICON_FA_BREAD_SLICE = b"\xef\x9f\xac".decode("utf-8") # U+f7ec
  188. ICON_FA_BRIDGE = b"\xee\x93\x88".decode("utf-8") # U+e4c8
  189. ICON_FA_BRIDGE_CIRCLE_CHECK = b"\xee\x93\x89".decode("utf-8") # U+e4c9
  190. ICON_FA_BRIDGE_CIRCLE_EXCLAMATION = b"\xee\x93\x8a".decode("utf-8") # U+e4ca
  191. ICON_FA_BRIDGE_CIRCLE_XMARK = b"\xee\x93\x8b".decode("utf-8") # U+e4cb
  192. ICON_FA_BRIDGE_LOCK = b"\xee\x93\x8c".decode("utf-8") # U+e4cc
  193. ICON_FA_BRIDGE_WATER = b"\xee\x93\x8e".decode("utf-8") # U+e4ce
  194. ICON_FA_BRIEFCASE = b"\xef\x82\xb1".decode("utf-8") # U+f0b1
  195. ICON_FA_BRIEFCASE_MEDICAL = b"\xef\x91\xa9".decode("utf-8") # U+f469
  196. ICON_FA_BROOM = b"\xef\x94\x9a".decode("utf-8") # U+f51a
  197. ICON_FA_BROOM_BALL = b"\xef\x91\x98".decode("utf-8") # U+f458
  198. ICON_FA_BRUSH = b"\xef\x95\x9d".decode("utf-8") # U+f55d
  199. ICON_FA_BUCKET = b"\xee\x93\x8f".decode("utf-8") # U+e4cf
  200. ICON_FA_BUG = b"\xef\x86\x88".decode("utf-8") # U+f188
  201. ICON_FA_BUG_SLASH = b"\xee\x92\x90".decode("utf-8") # U+e490
  202. ICON_FA_BUGS = b"\xee\x93\x90".decode("utf-8") # U+e4d0
  203. ICON_FA_BUILDING = b"\xef\x86\xad".decode("utf-8") # U+f1ad
  204. ICON_FA_BUILDING_CIRCLE_ARROW_RIGHT = b"\xee\x93\x91".decode("utf-8") # U+e4d1
  205. ICON_FA_BUILDING_CIRCLE_CHECK = b"\xee\x93\x92".decode("utf-8") # U+e4d2
  206. ICON_FA_BUILDING_CIRCLE_EXCLAMATION = b"\xee\x93\x93".decode("utf-8") # U+e4d3
  207. ICON_FA_BUILDING_CIRCLE_XMARK = b"\xee\x93\x94".decode("utf-8") # U+e4d4
  208. ICON_FA_BUILDING_COLUMNS = b"\xef\x86\x9c".decode("utf-8") # U+f19c
  209. ICON_FA_BUILDING_FLAG = b"\xee\x93\x95".decode("utf-8") # U+e4d5
  210. ICON_FA_BUILDING_LOCK = b"\xee\x93\x96".decode("utf-8") # U+e4d6
  211. ICON_FA_BUILDING_NGO = b"\xee\x93\x97".decode("utf-8") # U+e4d7
  212. ICON_FA_BUILDING_SHIELD = b"\xee\x93\x98".decode("utf-8") # U+e4d8
  213. ICON_FA_BUILDING_UN = b"\xee\x93\x99".decode("utf-8") # U+e4d9
  214. ICON_FA_BUILDING_USER = b"\xee\x93\x9a".decode("utf-8") # U+e4da
  215. ICON_FA_BUILDING_WHEAT = b"\xee\x93\x9b".decode("utf-8") # U+e4db
  216. ICON_FA_BULLHORN = b"\xef\x82\xa1".decode("utf-8") # U+f0a1
  217. ICON_FA_BULLSEYE = b"\xef\x85\x80".decode("utf-8") # U+f140
  218. ICON_FA_BURGER = b"\xef\xa0\x85".decode("utf-8") # U+f805
  219. ICON_FA_BURST = b"\xee\x93\x9c".decode("utf-8") # U+e4dc
  220. ICON_FA_BUS = b"\xef\x88\x87".decode("utf-8") # U+f207
  221. ICON_FA_BUS_SIMPLE = b"\xef\x95\x9e".decode("utf-8") # U+f55e
  222. ICON_FA_BUSINESS_TIME = b"\xef\x99\x8a".decode("utf-8") # U+f64a
  223. ICON_FA_C = b"C".decode("utf-8") # U+0043
  224. ICON_FA_CABLE_CAR = b"\xef\x9f\x9a".decode("utf-8") # U+f7da
  225. ICON_FA_CAKE_CANDLES = b"\xef\x87\xbd".decode("utf-8") # U+f1fd
  226. ICON_FA_CALCULATOR = b"\xef\x87\xac".decode("utf-8") # U+f1ec
  227. ICON_FA_CALENDAR = b"\xef\x84\xb3".decode("utf-8") # U+f133
  228. ICON_FA_CALENDAR_CHECK = b"\xef\x89\xb4".decode("utf-8") # U+f274
  229. ICON_FA_CALENDAR_DAY = b"\xef\x9e\x83".decode("utf-8") # U+f783
  230. ICON_FA_CALENDAR_DAYS = b"\xef\x81\xb3".decode("utf-8") # U+f073
  231. ICON_FA_CALENDAR_MINUS = b"\xef\x89\xb2".decode("utf-8") # U+f272
  232. ICON_FA_CALENDAR_PLUS = b"\xef\x89\xb1".decode("utf-8") # U+f271
  233. ICON_FA_CALENDAR_WEEK = b"\xef\x9e\x84".decode("utf-8") # U+f784
  234. ICON_FA_CALENDAR_XMARK = b"\xef\x89\xb3".decode("utf-8") # U+f273
  235. ICON_FA_CAMERA = b"\xef\x80\xb0".decode("utf-8") # U+f030
  236. ICON_FA_CAMERA_RETRO = b"\xef\x82\x83".decode("utf-8") # U+f083
  237. ICON_FA_CAMERA_ROTATE = b"\xee\x83\x98".decode("utf-8") # U+e0d8
  238. ICON_FA_CAMPGROUND = b"\xef\x9a\xbb".decode("utf-8") # U+f6bb
  239. ICON_FA_CANDY_CANE = b"\xef\x9e\x86".decode("utf-8") # U+f786
  240. ICON_FA_CANNABIS = b"\xef\x95\x9f".decode("utf-8") # U+f55f
  241. ICON_FA_CAPSULES = b"\xef\x91\xab".decode("utf-8") # U+f46b
  242. ICON_FA_CAR = b"\xef\x86\xb9".decode("utf-8") # U+f1b9
  243. ICON_FA_CAR_BATTERY = b"\xef\x97\x9f".decode("utf-8") # U+f5df
  244. ICON_FA_CAR_BURST = b"\xef\x97\xa1".decode("utf-8") # U+f5e1
  245. ICON_FA_CAR_ON = b"\xee\x93\x9d".decode("utf-8") # U+e4dd
  246. ICON_FA_CAR_REAR = b"\xef\x97\x9e".decode("utf-8") # U+f5de
  247. ICON_FA_CAR_SIDE = b"\xef\x97\xa4".decode("utf-8") # U+f5e4
  248. ICON_FA_CAR_TUNNEL = b"\xee\x93\x9e".decode("utf-8") # U+e4de
  249. ICON_FA_CARAVAN = b"\xef\xa3\xbf".decode("utf-8") # U+f8ff
  250. ICON_FA_CARET_DOWN = b"\xef\x83\x97".decode("utf-8") # U+f0d7
  251. ICON_FA_CARET_LEFT = b"\xef\x83\x99".decode("utf-8") # U+f0d9
  252. ICON_FA_CARET_RIGHT = b"\xef\x83\x9a".decode("utf-8") # U+f0da
  253. ICON_FA_CARET_UP = b"\xef\x83\x98".decode("utf-8") # U+f0d8
  254. ICON_FA_CARROT = b"\xef\x9e\x87".decode("utf-8") # U+f787
  255. ICON_FA_CART_ARROW_DOWN = b"\xef\x88\x98".decode("utf-8") # U+f218
  256. ICON_FA_CART_FLATBED = b"\xef\x91\xb4".decode("utf-8") # U+f474
  257. ICON_FA_CART_FLATBED_SUITCASE = b"\xef\x96\x9d".decode("utf-8") # U+f59d
  258. ICON_FA_CART_PLUS = b"\xef\x88\x97".decode("utf-8") # U+f217
  259. ICON_FA_CART_SHOPPING = b"\xef\x81\xba".decode("utf-8") # U+f07a
  260. ICON_FA_CASH_REGISTER = b"\xef\x9e\x88".decode("utf-8") # U+f788
  261. ICON_FA_CAT = b"\xef\x9a\xbe".decode("utf-8") # U+f6be
  262. ICON_FA_CEDI_SIGN = b"\xee\x83\x9f".decode("utf-8") # U+e0df
  263. ICON_FA_CENT_SIGN = b"\xee\x8f\xb5".decode("utf-8") # U+e3f5
  264. ICON_FA_CERTIFICATE = b"\xef\x82\xa3".decode("utf-8") # U+f0a3
  265. ICON_FA_CHAIR = b"\xef\x9b\x80".decode("utf-8") # U+f6c0
  266. ICON_FA_CHALKBOARD = b"\xef\x94\x9b".decode("utf-8") # U+f51b
  267. ICON_FA_CHALKBOARD_USER = b"\xef\x94\x9c".decode("utf-8") # U+f51c
  268. ICON_FA_CHAMPAGNE_GLASSES = b"\xef\x9e\x9f".decode("utf-8") # U+f79f
  269. ICON_FA_CHARGING_STATION = b"\xef\x97\xa7".decode("utf-8") # U+f5e7
  270. ICON_FA_CHART_AREA = b"\xef\x87\xbe".decode("utf-8") # U+f1fe
  271. ICON_FA_CHART_BAR = b"\xef\x82\x80".decode("utf-8") # U+f080
  272. ICON_FA_CHART_COLUMN = b"\xee\x83\xa3".decode("utf-8") # U+e0e3
  273. ICON_FA_CHART_GANTT = b"\xee\x83\xa4".decode("utf-8") # U+e0e4
  274. ICON_FA_CHART_LINE = b"\xef\x88\x81".decode("utf-8") # U+f201
  275. ICON_FA_CHART_PIE = b"\xef\x88\x80".decode("utf-8") # U+f200
  276. ICON_FA_CHART_SIMPLE = b"\xee\x91\xb3".decode("utf-8") # U+e473
  277. ICON_FA_CHECK = b"\xef\x80\x8c".decode("utf-8") # U+f00c
  278. ICON_FA_CHECK_DOUBLE = b"\xef\x95\xa0".decode("utf-8") # U+f560
  279. ICON_FA_CHECK_TO_SLOT = b"\xef\x9d\xb2".decode("utf-8") # U+f772
  280. ICON_FA_CHEESE = b"\xef\x9f\xaf".decode("utf-8") # U+f7ef
  281. ICON_FA_CHESS = b"\xef\x90\xb9".decode("utf-8") # U+f439
  282. ICON_FA_CHESS_BISHOP = b"\xef\x90\xba".decode("utf-8") # U+f43a
  283. ICON_FA_CHESS_BOARD = b"\xef\x90\xbc".decode("utf-8") # U+f43c
  284. ICON_FA_CHESS_KING = b"\xef\x90\xbf".decode("utf-8") # U+f43f
  285. ICON_FA_CHESS_KNIGHT = b"\xef\x91\x81".decode("utf-8") # U+f441
  286. ICON_FA_CHESS_PAWN = b"\xef\x91\x83".decode("utf-8") # U+f443
  287. ICON_FA_CHESS_QUEEN = b"\xef\x91\x85".decode("utf-8") # U+f445
  288. ICON_FA_CHESS_ROOK = b"\xef\x91\x87".decode("utf-8") # U+f447
  289. ICON_FA_CHEVRON_DOWN = b"\xef\x81\xb8".decode("utf-8") # U+f078
  290. ICON_FA_CHEVRON_LEFT = b"\xef\x81\x93".decode("utf-8") # U+f053
  291. ICON_FA_CHEVRON_RIGHT = b"\xef\x81\x94".decode("utf-8") # U+f054
  292. ICON_FA_CHEVRON_UP = b"\xef\x81\xb7".decode("utf-8") # U+f077
  293. ICON_FA_CHILD = b"\xef\x86\xae".decode("utf-8") # U+f1ae
  294. ICON_FA_CHILD_COMBATANT = b"\xee\x93\xa0".decode("utf-8") # U+e4e0
  295. ICON_FA_CHILD_DRESS = b"\xee\x96\x9c".decode("utf-8") # U+e59c
  296. ICON_FA_CHILD_REACHING = b"\xee\x96\x9d".decode("utf-8") # U+e59d
  297. ICON_FA_CHILDREN = b"\xee\x93\xa1".decode("utf-8") # U+e4e1
  298. ICON_FA_CHURCH = b"\xef\x94\x9d".decode("utf-8") # U+f51d
  299. ICON_FA_CIRCLE = b"\xef\x84\x91".decode("utf-8") # U+f111
  300. ICON_FA_CIRCLE_ARROW_DOWN = b"\xef\x82\xab".decode("utf-8") # U+f0ab
  301. ICON_FA_CIRCLE_ARROW_LEFT = b"\xef\x82\xa8".decode("utf-8") # U+f0a8
  302. ICON_FA_CIRCLE_ARROW_RIGHT = b"\xef\x82\xa9".decode("utf-8") # U+f0a9
  303. ICON_FA_CIRCLE_ARROW_UP = b"\xef\x82\xaa".decode("utf-8") # U+f0aa
  304. ICON_FA_CIRCLE_CHECK = b"\xef\x81\x98".decode("utf-8") # U+f058
  305. ICON_FA_CIRCLE_CHEVRON_DOWN = b"\xef\x84\xba".decode("utf-8") # U+f13a
  306. ICON_FA_CIRCLE_CHEVRON_LEFT = b"\xef\x84\xb7".decode("utf-8") # U+f137
  307. ICON_FA_CIRCLE_CHEVRON_RIGHT = b"\xef\x84\xb8".decode("utf-8") # U+f138
  308. ICON_FA_CIRCLE_CHEVRON_UP = b"\xef\x84\xb9".decode("utf-8") # U+f139
  309. ICON_FA_CIRCLE_DOLLAR_TO_SLOT = b"\xef\x92\xb9".decode("utf-8") # U+f4b9
  310. ICON_FA_CIRCLE_DOT = b"\xef\x86\x92".decode("utf-8") # U+f192
  311. ICON_FA_CIRCLE_DOWN = b"\xef\x8d\x98".decode("utf-8") # U+f358
  312. ICON_FA_CIRCLE_EXCLAMATION = b"\xef\x81\xaa".decode("utf-8") # U+f06a
  313. ICON_FA_CIRCLE_H = b"\xef\x91\xbe".decode("utf-8") # U+f47e
  314. ICON_FA_CIRCLE_HALF_STROKE = b"\xef\x81\x82".decode("utf-8") # U+f042
  315. ICON_FA_CIRCLE_INFO = b"\xef\x81\x9a".decode("utf-8") # U+f05a
  316. ICON_FA_CIRCLE_LEFT = b"\xef\x8d\x99".decode("utf-8") # U+f359
  317. ICON_FA_CIRCLE_MINUS = b"\xef\x81\x96".decode("utf-8") # U+f056
  318. ICON_FA_CIRCLE_NODES = b"\xee\x93\xa2".decode("utf-8") # U+e4e2
  319. ICON_FA_CIRCLE_NOTCH = b"\xef\x87\x8e".decode("utf-8") # U+f1ce
  320. ICON_FA_CIRCLE_PAUSE = b"\xef\x8a\x8b".decode("utf-8") # U+f28b
  321. ICON_FA_CIRCLE_PLAY = b"\xef\x85\x84".decode("utf-8") # U+f144
  322. ICON_FA_CIRCLE_PLUS = b"\xef\x81\x95".decode("utf-8") # U+f055
  323. ICON_FA_CIRCLE_QUESTION = b"\xef\x81\x99".decode("utf-8") # U+f059
  324. ICON_FA_CIRCLE_RADIATION = b"\xef\x9e\xba".decode("utf-8") # U+f7ba
  325. ICON_FA_CIRCLE_RIGHT = b"\xef\x8d\x9a".decode("utf-8") # U+f35a
  326. ICON_FA_CIRCLE_STOP = b"\xef\x8a\x8d".decode("utf-8") # U+f28d
  327. ICON_FA_CIRCLE_UP = b"\xef\x8d\x9b".decode("utf-8") # U+f35b
  328. ICON_FA_CIRCLE_USER = b"\xef\x8a\xbd".decode("utf-8") # U+f2bd
  329. ICON_FA_CIRCLE_XMARK = b"\xef\x81\x97".decode("utf-8") # U+f057
  330. ICON_FA_CITY = b"\xef\x99\x8f".decode("utf-8") # U+f64f
  331. ICON_FA_CLAPPERBOARD = b"\xee\x84\xb1".decode("utf-8") # U+e131
  332. ICON_FA_CLIPBOARD = b"\xef\x8c\xa8".decode("utf-8") # U+f328
  333. ICON_FA_CLIPBOARD_CHECK = b"\xef\x91\xac".decode("utf-8") # U+f46c
  334. ICON_FA_CLIPBOARD_LIST = b"\xef\x91\xad".decode("utf-8") # U+f46d
  335. ICON_FA_CLIPBOARD_QUESTION = b"\xee\x93\xa3".decode("utf-8") # U+e4e3
  336. ICON_FA_CLIPBOARD_USER = b"\xef\x9f\xb3".decode("utf-8") # U+f7f3
  337. ICON_FA_CLOCK = b"\xef\x80\x97".decode("utf-8") # U+f017
  338. ICON_FA_CLOCK_ROTATE_LEFT = b"\xef\x87\x9a".decode("utf-8") # U+f1da
  339. ICON_FA_CLONE = b"\xef\x89\x8d".decode("utf-8") # U+f24d
  340. ICON_FA_CLOSED_CAPTIONING = b"\xef\x88\x8a".decode("utf-8") # U+f20a
  341. ICON_FA_CLOUD = b"\xef\x83\x82".decode("utf-8") # U+f0c2
  342. ICON_FA_CLOUD_ARROW_DOWN = b"\xef\x83\xad".decode("utf-8") # U+f0ed
  343. ICON_FA_CLOUD_ARROW_UP = b"\xef\x83\xae".decode("utf-8") # U+f0ee
  344. ICON_FA_CLOUD_BOLT = b"\xef\x9d\xac".decode("utf-8") # U+f76c
  345. ICON_FA_CLOUD_MEATBALL = b"\xef\x9c\xbb".decode("utf-8") # U+f73b
  346. ICON_FA_CLOUD_MOON = b"\xef\x9b\x83".decode("utf-8") # U+f6c3
  347. ICON_FA_CLOUD_MOON_RAIN = b"\xef\x9c\xbc".decode("utf-8") # U+f73c
  348. ICON_FA_CLOUD_RAIN = b"\xef\x9c\xbd".decode("utf-8") # U+f73d
  349. ICON_FA_CLOUD_SHOWERS_HEAVY = b"\xef\x9d\x80".decode("utf-8") # U+f740
  350. ICON_FA_CLOUD_SHOWERS_WATER = b"\xee\x93\xa4".decode("utf-8") # U+e4e4
  351. ICON_FA_CLOUD_SUN = b"\xef\x9b\x84".decode("utf-8") # U+f6c4
  352. ICON_FA_CLOUD_SUN_RAIN = b"\xef\x9d\x83".decode("utf-8") # U+f743
  353. ICON_FA_CLOVER = b"\xee\x84\xb9".decode("utf-8") # U+e139
  354. ICON_FA_CODE = b"\xef\x84\xa1".decode("utf-8") # U+f121
  355. ICON_FA_CODE_BRANCH = b"\xef\x84\xa6".decode("utf-8") # U+f126
  356. ICON_FA_CODE_COMMIT = b"\xef\x8e\x86".decode("utf-8") # U+f386
  357. ICON_FA_CODE_COMPARE = b"\xee\x84\xba".decode("utf-8") # U+e13a
  358. ICON_FA_CODE_FORK = b"\xee\x84\xbb".decode("utf-8") # U+e13b
  359. ICON_FA_CODE_MERGE = b"\xef\x8e\x87".decode("utf-8") # U+f387
  360. ICON_FA_CODE_PULL_REQUEST = b"\xee\x84\xbc".decode("utf-8") # U+e13c
  361. ICON_FA_COINS = b"\xef\x94\x9e".decode("utf-8") # U+f51e
  362. ICON_FA_COLON_SIGN = b"\xee\x85\x80".decode("utf-8") # U+e140
  363. ICON_FA_COMMENT = b"\xef\x81\xb5".decode("utf-8") # U+f075
  364. ICON_FA_COMMENT_DOLLAR = b"\xef\x99\x91".decode("utf-8") # U+f651
  365. ICON_FA_COMMENT_DOTS = b"\xef\x92\xad".decode("utf-8") # U+f4ad
  366. ICON_FA_COMMENT_MEDICAL = b"\xef\x9f\xb5".decode("utf-8") # U+f7f5
  367. ICON_FA_COMMENT_SLASH = b"\xef\x92\xb3".decode("utf-8") # U+f4b3
  368. ICON_FA_COMMENT_SMS = b"\xef\x9f\x8d".decode("utf-8") # U+f7cd
  369. ICON_FA_COMMENTS = b"\xef\x82\x86".decode("utf-8") # U+f086
  370. ICON_FA_COMMENTS_DOLLAR = b"\xef\x99\x93".decode("utf-8") # U+f653
  371. ICON_FA_COMPACT_DISC = b"\xef\x94\x9f".decode("utf-8") # U+f51f
  372. ICON_FA_COMPASS = b"\xef\x85\x8e".decode("utf-8") # U+f14e
  373. ICON_FA_COMPASS_DRAFTING = b"\xef\x95\xa8".decode("utf-8") # U+f568
  374. ICON_FA_COMPRESS = b"\xef\x81\xa6".decode("utf-8") # U+f066
  375. ICON_FA_COMPUTER = b"\xee\x93\xa5".decode("utf-8") # U+e4e5
  376. ICON_FA_COMPUTER_MOUSE = b"\xef\xa3\x8c".decode("utf-8") # U+f8cc
  377. ICON_FA_COOKIE = b"\xef\x95\xa3".decode("utf-8") # U+f563
  378. ICON_FA_COOKIE_BITE = b"\xef\x95\xa4".decode("utf-8") # U+f564
  379. ICON_FA_COPY = b"\xef\x83\x85".decode("utf-8") # U+f0c5
  380. ICON_FA_COPYRIGHT = b"\xef\x87\xb9".decode("utf-8") # U+f1f9
  381. ICON_FA_COUCH = b"\xef\x92\xb8".decode("utf-8") # U+f4b8
  382. ICON_FA_COW = b"\xef\x9b\x88".decode("utf-8") # U+f6c8
  383. ICON_FA_CREDIT_CARD = b"\xef\x82\x9d".decode("utf-8") # U+f09d
  384. ICON_FA_CROP = b"\xef\x84\xa5".decode("utf-8") # U+f125
  385. ICON_FA_CROP_SIMPLE = b"\xef\x95\xa5".decode("utf-8") # U+f565
  386. ICON_FA_CROSS = b"\xef\x99\x94".decode("utf-8") # U+f654
  387. ICON_FA_CROSSHAIRS = b"\xef\x81\x9b".decode("utf-8") # U+f05b
  388. ICON_FA_CROW = b"\xef\x94\xa0".decode("utf-8") # U+f520
  389. ICON_FA_CROWN = b"\xef\x94\xa1".decode("utf-8") # U+f521
  390. ICON_FA_CRUTCH = b"\xef\x9f\xb7".decode("utf-8") # U+f7f7
  391. ICON_FA_CRUZEIRO_SIGN = b"\xee\x85\x92".decode("utf-8") # U+e152
  392. ICON_FA_CUBE = b"\xef\x86\xb2".decode("utf-8") # U+f1b2
  393. ICON_FA_CUBES = b"\xef\x86\xb3".decode("utf-8") # U+f1b3
  394. ICON_FA_CUBES_STACKED = b"\xee\x93\xa6".decode("utf-8") # U+e4e6
  395. ICON_FA_D = b"D".decode("utf-8") # U+0044
  396. ICON_FA_DATABASE = b"\xef\x87\x80".decode("utf-8") # U+f1c0
  397. ICON_FA_DELETE_LEFT = b"\xef\x95\x9a".decode("utf-8") # U+f55a
  398. ICON_FA_DEMOCRAT = b"\xef\x9d\x87".decode("utf-8") # U+f747
  399. ICON_FA_DESKTOP = b"\xef\x8e\x90".decode("utf-8") # U+f390
  400. ICON_FA_DHARMACHAKRA = b"\xef\x99\x95".decode("utf-8") # U+f655
  401. ICON_FA_DIAGRAM_NEXT = b"\xee\x91\xb6".decode("utf-8") # U+e476
  402. ICON_FA_DIAGRAM_PREDECESSOR = b"\xee\x91\xb7".decode("utf-8") # U+e477
  403. ICON_FA_DIAGRAM_PROJECT = b"\xef\x95\x82".decode("utf-8") # U+f542
  404. ICON_FA_DIAGRAM_SUCCESSOR = b"\xee\x91\xba".decode("utf-8") # U+e47a
  405. ICON_FA_DIAMOND = b"\xef\x88\x99".decode("utf-8") # U+f219
  406. ICON_FA_DIAMOND_TURN_RIGHT = b"\xef\x97\xab".decode("utf-8") # U+f5eb
  407. ICON_FA_DICE = b"\xef\x94\xa2".decode("utf-8") # U+f522
  408. ICON_FA_DICE_D20 = b"\xef\x9b\x8f".decode("utf-8") # U+f6cf
  409. ICON_FA_DICE_D6 = b"\xef\x9b\x91".decode("utf-8") # U+f6d1
  410. ICON_FA_DICE_FIVE = b"\xef\x94\xa3".decode("utf-8") # U+f523
  411. ICON_FA_DICE_FOUR = b"\xef\x94\xa4".decode("utf-8") # U+f524
  412. ICON_FA_DICE_ONE = b"\xef\x94\xa5".decode("utf-8") # U+f525
  413. ICON_FA_DICE_SIX = b"\xef\x94\xa6".decode("utf-8") # U+f526
  414. ICON_FA_DICE_THREE = b"\xef\x94\xa7".decode("utf-8") # U+f527
  415. ICON_FA_DICE_TWO = b"\xef\x94\xa8".decode("utf-8") # U+f528
  416. ICON_FA_DISEASE = b"\xef\x9f\xba".decode("utf-8") # U+f7fa
  417. ICON_FA_DISPLAY = b"\xee\x85\xa3".decode("utf-8") # U+e163
  418. ICON_FA_DIVIDE = b"\xef\x94\xa9".decode("utf-8") # U+f529
  419. ICON_FA_DNA = b"\xef\x91\xb1".decode("utf-8") # U+f471
  420. ICON_FA_DOG = b"\xef\x9b\x93".decode("utf-8") # U+f6d3
  421. ICON_FA_DOLLAR_SIGN = b"$".decode("utf-8") # U+0024
  422. ICON_FA_DOLLY = b"\xef\x91\xb2".decode("utf-8") # U+f472
  423. ICON_FA_DONG_SIGN = b"\xee\x85\xa9".decode("utf-8") # U+e169
  424. ICON_FA_DOOR_CLOSED = b"\xef\x94\xaa".decode("utf-8") # U+f52a
  425. ICON_FA_DOOR_OPEN = b"\xef\x94\xab".decode("utf-8") # U+f52b
  426. ICON_FA_DOVE = b"\xef\x92\xba".decode("utf-8") # U+f4ba
  427. ICON_FA_DOWN_LEFT_AND_UP_RIGHT_TO_CENTER = b"\xef\x90\xa2".decode("utf-8") # U+f422
  428. ICON_FA_DOWN_LONG = b"\xef\x8c\x89".decode("utf-8") # U+f309
  429. ICON_FA_DOWNLOAD = b"\xef\x80\x99".decode("utf-8") # U+f019
  430. ICON_FA_DRAGON = b"\xef\x9b\x95".decode("utf-8") # U+f6d5
  431. ICON_FA_DRAW_POLYGON = b"\xef\x97\xae".decode("utf-8") # U+f5ee
  432. ICON_FA_DROPLET = b"\xef\x81\x83".decode("utf-8") # U+f043
  433. ICON_FA_DROPLET_SLASH = b"\xef\x97\x87".decode("utf-8") # U+f5c7
  434. ICON_FA_DRUM = b"\xef\x95\xa9".decode("utf-8") # U+f569
  435. ICON_FA_DRUM_STEELPAN = b"\xef\x95\xaa".decode("utf-8") # U+f56a
  436. ICON_FA_DRUMSTICK_BITE = b"\xef\x9b\x97".decode("utf-8") # U+f6d7
  437. ICON_FA_DUMBBELL = b"\xef\x91\x8b".decode("utf-8") # U+f44b
  438. ICON_FA_DUMPSTER = b"\xef\x9e\x93".decode("utf-8") # U+f793
  439. ICON_FA_DUMPSTER_FIRE = b"\xef\x9e\x94".decode("utf-8") # U+f794
  440. ICON_FA_DUNGEON = b"\xef\x9b\x99".decode("utf-8") # U+f6d9
  441. ICON_FA_E = b"E".decode("utf-8") # U+0045
  442. ICON_FA_EAR_DEAF = b"\xef\x8a\xa4".decode("utf-8") # U+f2a4
  443. ICON_FA_EAR_LISTEN = b"\xef\x8a\xa2".decode("utf-8") # U+f2a2
  444. ICON_FA_EARTH_AFRICA = b"\xef\x95\xbc".decode("utf-8") # U+f57c
  445. ICON_FA_EARTH_AMERICAS = b"\xef\x95\xbd".decode("utf-8") # U+f57d
  446. ICON_FA_EARTH_ASIA = b"\xef\x95\xbe".decode("utf-8") # U+f57e
  447. ICON_FA_EARTH_EUROPE = b"\xef\x9e\xa2".decode("utf-8") # U+f7a2
  448. ICON_FA_EARTH_OCEANIA = b"\xee\x91\xbb".decode("utf-8") # U+e47b
  449. ICON_FA_EGG = b"\xef\x9f\xbb".decode("utf-8") # U+f7fb
  450. ICON_FA_EJECT = b"\xef\x81\x92".decode("utf-8") # U+f052
  451. ICON_FA_ELEVATOR = b"\xee\x85\xad".decode("utf-8") # U+e16d
  452. ICON_FA_ELLIPSIS = b"\xef\x85\x81".decode("utf-8") # U+f141
  453. ICON_FA_ELLIPSIS_VERTICAL = b"\xef\x85\x82".decode("utf-8") # U+f142
  454. ICON_FA_ENVELOPE = b"\xef\x83\xa0".decode("utf-8") # U+f0e0
  455. ICON_FA_ENVELOPE_CIRCLE_CHECK = b"\xee\x93\xa8".decode("utf-8") # U+e4e8
  456. ICON_FA_ENVELOPE_OPEN = b"\xef\x8a\xb6".decode("utf-8") # U+f2b6
  457. ICON_FA_ENVELOPE_OPEN_TEXT = b"\xef\x99\x98".decode("utf-8") # U+f658
  458. ICON_FA_ENVELOPES_BULK = b"\xef\x99\xb4".decode("utf-8") # U+f674
  459. ICON_FA_EQUALS = b"=".decode("utf-8") # U+003d
  460. ICON_FA_ERASER = b"\xef\x84\xad".decode("utf-8") # U+f12d
  461. ICON_FA_ETHERNET = b"\xef\x9e\x96".decode("utf-8") # U+f796
  462. ICON_FA_EURO_SIGN = b"\xef\x85\x93".decode("utf-8") # U+f153
  463. ICON_FA_EXCLAMATION = b"!".decode("utf-8") # U+0021
  464. ICON_FA_EXPAND = b"\xef\x81\xa5".decode("utf-8") # U+f065
  465. ICON_FA_EXPLOSION = b"\xee\x93\xa9".decode("utf-8") # U+e4e9
  466. ICON_FA_EYE = b"\xef\x81\xae".decode("utf-8") # U+f06e
  467. ICON_FA_EYE_DROPPER = b"\xef\x87\xbb".decode("utf-8") # U+f1fb
  468. ICON_FA_EYE_LOW_VISION = b"\xef\x8a\xa8".decode("utf-8") # U+f2a8
  469. ICON_FA_EYE_SLASH = b"\xef\x81\xb0".decode("utf-8") # U+f070
  470. ICON_FA_F = b"F".decode("utf-8") # U+0046
  471. ICON_FA_FACE_ANGRY = b"\xef\x95\x96".decode("utf-8") # U+f556
  472. ICON_FA_FACE_DIZZY = b"\xef\x95\xa7".decode("utf-8") # U+f567
  473. ICON_FA_FACE_FLUSHED = b"\xef\x95\xb9".decode("utf-8") # U+f579
  474. ICON_FA_FACE_FROWN = b"\xef\x84\x99".decode("utf-8") # U+f119
  475. ICON_FA_FACE_FROWN_OPEN = b"\xef\x95\xba".decode("utf-8") # U+f57a
  476. ICON_FA_FACE_GRIMACE = b"\xef\x95\xbf".decode("utf-8") # U+f57f
  477. ICON_FA_FACE_GRIN = b"\xef\x96\x80".decode("utf-8") # U+f580
  478. ICON_FA_FACE_GRIN_BEAM = b"\xef\x96\x82".decode("utf-8") # U+f582
  479. ICON_FA_FACE_GRIN_BEAM_SWEAT = b"\xef\x96\x83".decode("utf-8") # U+f583
  480. ICON_FA_FACE_GRIN_HEARTS = b"\xef\x96\x84".decode("utf-8") # U+f584
  481. ICON_FA_FACE_GRIN_SQUINT = b"\xef\x96\x85".decode("utf-8") # U+f585
  482. ICON_FA_FACE_GRIN_SQUINT_TEARS = b"\xef\x96\x86".decode("utf-8") # U+f586
  483. ICON_FA_FACE_GRIN_STARS = b"\xef\x96\x87".decode("utf-8") # U+f587
  484. ICON_FA_FACE_GRIN_TEARS = b"\xef\x96\x88".decode("utf-8") # U+f588
  485. ICON_FA_FACE_GRIN_TONGUE = b"\xef\x96\x89".decode("utf-8") # U+f589
  486. ICON_FA_FACE_GRIN_TONGUE_SQUINT = b"\xef\x96\x8a".decode("utf-8") # U+f58a
  487. ICON_FA_FACE_GRIN_TONGUE_WINK = b"\xef\x96\x8b".decode("utf-8") # U+f58b
  488. ICON_FA_FACE_GRIN_WIDE = b"\xef\x96\x81".decode("utf-8") # U+f581
  489. ICON_FA_FACE_GRIN_WINK = b"\xef\x96\x8c".decode("utf-8") # U+f58c
  490. ICON_FA_FACE_KISS = b"\xef\x96\x96".decode("utf-8") # U+f596
  491. ICON_FA_FACE_KISS_BEAM = b"\xef\x96\x97".decode("utf-8") # U+f597
  492. ICON_FA_FACE_KISS_WINK_HEART = b"\xef\x96\x98".decode("utf-8") # U+f598
  493. ICON_FA_FACE_LAUGH = b"\xef\x96\x99".decode("utf-8") # U+f599
  494. ICON_FA_FACE_LAUGH_BEAM = b"\xef\x96\x9a".decode("utf-8") # U+f59a
  495. ICON_FA_FACE_LAUGH_SQUINT = b"\xef\x96\x9b".decode("utf-8") # U+f59b
  496. ICON_FA_FACE_LAUGH_WINK = b"\xef\x96\x9c".decode("utf-8") # U+f59c
  497. ICON_FA_FACE_MEH = b"\xef\x84\x9a".decode("utf-8") # U+f11a
  498. ICON_FA_FACE_MEH_BLANK = b"\xef\x96\xa4".decode("utf-8") # U+f5a4
  499. ICON_FA_FACE_ROLLING_EYES = b"\xef\x96\xa5".decode("utf-8") # U+f5a5
  500. ICON_FA_FACE_SAD_CRY = b"\xef\x96\xb3".decode("utf-8") # U+f5b3
  501. ICON_FA_FACE_SAD_TEAR = b"\xef\x96\xb4".decode("utf-8") # U+f5b4
  502. ICON_FA_FACE_SMILE = b"\xef\x84\x98".decode("utf-8") # U+f118
  503. ICON_FA_FACE_SMILE_BEAM = b"\xef\x96\xb8".decode("utf-8") # U+f5b8
  504. ICON_FA_FACE_SMILE_WINK = b"\xef\x93\x9a".decode("utf-8") # U+f4da
  505. ICON_FA_FACE_SURPRISE = b"\xef\x97\x82".decode("utf-8") # U+f5c2
  506. ICON_FA_FACE_TIRED = b"\xef\x97\x88".decode("utf-8") # U+f5c8
  507. ICON_FA_FAN = b"\xef\xa1\xa3".decode("utf-8") # U+f863
  508. ICON_FA_FAUCET = b"\xee\x80\x85".decode("utf-8") # U+e005
  509. ICON_FA_FAUCET_DRIP = b"\xee\x80\x86".decode("utf-8") # U+e006
  510. ICON_FA_FAX = b"\xef\x86\xac".decode("utf-8") # U+f1ac
  511. ICON_FA_FEATHER = b"\xef\x94\xad".decode("utf-8") # U+f52d
  512. ICON_FA_FEATHER_POINTED = b"\xef\x95\xab".decode("utf-8") # U+f56b
  513. ICON_FA_FERRY = b"\xee\x93\xaa".decode("utf-8") # U+e4ea
  514. ICON_FA_FILE = b"\xef\x85\x9b".decode("utf-8") # U+f15b
  515. ICON_FA_FILE_ARROW_DOWN = b"\xef\x95\xad".decode("utf-8") # U+f56d
  516. ICON_FA_FILE_ARROW_UP = b"\xef\x95\xb4".decode("utf-8") # U+f574
  517. ICON_FA_FILE_AUDIO = b"\xef\x87\x87".decode("utf-8") # U+f1c7
  518. ICON_FA_FILE_CIRCLE_CHECK = b"\xee\x96\xa0".decode("utf-8") # U+e5a0
  519. ICON_FA_FILE_CIRCLE_EXCLAMATION = b"\xee\x93\xab".decode("utf-8") # U+e4eb
  520. ICON_FA_FILE_CIRCLE_MINUS = b"\xee\x93\xad".decode("utf-8") # U+e4ed
  521. ICON_FA_FILE_CIRCLE_PLUS = b"\xee\x92\x94".decode("utf-8") # U+e494
  522. ICON_FA_FILE_CIRCLE_QUESTION = b"\xee\x93\xaf".decode("utf-8") # U+e4ef
  523. ICON_FA_FILE_CIRCLE_XMARK = b"\xee\x96\xa1".decode("utf-8") # U+e5a1
  524. ICON_FA_FILE_CODE = b"\xef\x87\x89".decode("utf-8") # U+f1c9
  525. ICON_FA_FILE_CONTRACT = b"\xef\x95\xac".decode("utf-8") # U+f56c
  526. ICON_FA_FILE_CSV = b"\xef\x9b\x9d".decode("utf-8") # U+f6dd
  527. ICON_FA_FILE_EXCEL = b"\xef\x87\x83".decode("utf-8") # U+f1c3
  528. ICON_FA_FILE_EXPORT = b"\xef\x95\xae".decode("utf-8") # U+f56e
  529. ICON_FA_FILE_IMAGE = b"\xef\x87\x85".decode("utf-8") # U+f1c5
  530. ICON_FA_FILE_IMPORT = b"\xef\x95\xaf".decode("utf-8") # U+f56f
  531. ICON_FA_FILE_INVOICE = b"\xef\x95\xb0".decode("utf-8") # U+f570
  532. ICON_FA_FILE_INVOICE_DOLLAR = b"\xef\x95\xb1".decode("utf-8") # U+f571
  533. ICON_FA_FILE_LINES = b"\xef\x85\x9c".decode("utf-8") # U+f15c
  534. ICON_FA_FILE_MEDICAL = b"\xef\x91\xb7".decode("utf-8") # U+f477
  535. ICON_FA_FILE_PDF = b"\xef\x87\x81".decode("utf-8") # U+f1c1
  536. ICON_FA_FILE_PEN = b"\xef\x8c\x9c".decode("utf-8") # U+f31c
  537. ICON_FA_FILE_POWERPOINT = b"\xef\x87\x84".decode("utf-8") # U+f1c4
  538. ICON_FA_FILE_PRESCRIPTION = b"\xef\x95\xb2".decode("utf-8") # U+f572
  539. ICON_FA_FILE_SHIELD = b"\xee\x93\xb0".decode("utf-8") # U+e4f0
  540. ICON_FA_FILE_SIGNATURE = b"\xef\x95\xb3".decode("utf-8") # U+f573
  541. ICON_FA_FILE_VIDEO = b"\xef\x87\x88".decode("utf-8") # U+f1c8
  542. ICON_FA_FILE_WAVEFORM = b"\xef\x91\xb8".decode("utf-8") # U+f478
  543. ICON_FA_FILE_WORD = b"\xef\x87\x82".decode("utf-8") # U+f1c2
  544. ICON_FA_FILE_ZIPPER = b"\xef\x87\x86".decode("utf-8") # U+f1c6
  545. ICON_FA_FILL = b"\xef\x95\xb5".decode("utf-8") # U+f575
  546. ICON_FA_FILL_DRIP = b"\xef\x95\xb6".decode("utf-8") # U+f576
  547. ICON_FA_FILM = b"\xef\x80\x88".decode("utf-8") # U+f008
  548. ICON_FA_FILTER = b"\xef\x82\xb0".decode("utf-8") # U+f0b0
  549. ICON_FA_FILTER_CIRCLE_DOLLAR = b"\xef\x99\xa2".decode("utf-8") # U+f662
  550. ICON_FA_FILTER_CIRCLE_XMARK = b"\xee\x85\xbb".decode("utf-8") # U+e17b
  551. ICON_FA_FINGERPRINT = b"\xef\x95\xb7".decode("utf-8") # U+f577
  552. ICON_FA_FIRE = b"\xef\x81\xad".decode("utf-8") # U+f06d
  553. ICON_FA_FIRE_BURNER = b"\xee\x93\xb1".decode("utf-8") # U+e4f1
  554. ICON_FA_FIRE_EXTINGUISHER = b"\xef\x84\xb4".decode("utf-8") # U+f134
  555. ICON_FA_FIRE_FLAME_CURVED = b"\xef\x9f\xa4".decode("utf-8") # U+f7e4
  556. ICON_FA_FIRE_FLAME_SIMPLE = b"\xef\x91\xaa".decode("utf-8") # U+f46a
  557. ICON_FA_FISH = b"\xef\x95\xb8".decode("utf-8") # U+f578
  558. ICON_FA_FISH_FINS = b"\xee\x93\xb2".decode("utf-8") # U+e4f2
  559. ICON_FA_FLAG = b"\xef\x80\xa4".decode("utf-8") # U+f024
  560. ICON_FA_FLAG_CHECKERED = b"\xef\x84\x9e".decode("utf-8") # U+f11e
  561. ICON_FA_FLAG_USA = b"\xef\x9d\x8d".decode("utf-8") # U+f74d
  562. ICON_FA_FLASK = b"\xef\x83\x83".decode("utf-8") # U+f0c3
  563. ICON_FA_FLASK_VIAL = b"\xee\x93\xb3".decode("utf-8") # U+e4f3
  564. ICON_FA_FLOPPY_DISK = b"\xef\x83\x87".decode("utf-8") # U+f0c7
  565. ICON_FA_FLORIN_SIGN = b"\xee\x86\x84".decode("utf-8") # U+e184
  566. ICON_FA_FOLDER = b"\xef\x81\xbb".decode("utf-8") # U+f07b
  567. ICON_FA_FOLDER_CLOSED = b"\xee\x86\x85".decode("utf-8") # U+e185
  568. ICON_FA_FOLDER_MINUS = b"\xef\x99\x9d".decode("utf-8") # U+f65d
  569. ICON_FA_FOLDER_OPEN = b"\xef\x81\xbc".decode("utf-8") # U+f07c
  570. ICON_FA_FOLDER_PLUS = b"\xef\x99\x9e".decode("utf-8") # U+f65e
  571. ICON_FA_FOLDER_TREE = b"\xef\xa0\x82".decode("utf-8") # U+f802
  572. ICON_FA_FONT = b"\xef\x80\xb1".decode("utf-8") # U+f031
  573. ICON_FA_FONT_AWESOME = b"\xef\x8a\xb4".decode("utf-8") # U+f2b4
  574. ICON_FA_FOOTBALL = b"\xef\x91\x8e".decode("utf-8") # U+f44e
  575. ICON_FA_FORWARD = b"\xef\x81\x8e".decode("utf-8") # U+f04e
  576. ICON_FA_FORWARD_FAST = b"\xef\x81\x90".decode("utf-8") # U+f050
  577. ICON_FA_FORWARD_STEP = b"\xef\x81\x91".decode("utf-8") # U+f051
  578. ICON_FA_FRANC_SIGN = b"\xee\x86\x8f".decode("utf-8") # U+e18f
  579. ICON_FA_FROG = b"\xef\x94\xae".decode("utf-8") # U+f52e
  580. ICON_FA_FUTBOL = b"\xef\x87\xa3".decode("utf-8") # U+f1e3
  581. ICON_FA_G = b"G".decode("utf-8") # U+0047
  582. ICON_FA_GAMEPAD = b"\xef\x84\x9b".decode("utf-8") # U+f11b
  583. ICON_FA_GAS_PUMP = b"\xef\x94\xaf".decode("utf-8") # U+f52f
  584. ICON_FA_GAUGE = b"\xef\x98\xa4".decode("utf-8") # U+f624
  585. ICON_FA_GAUGE_HIGH = b"\xef\x98\xa5".decode("utf-8") # U+f625
  586. ICON_FA_GAUGE_SIMPLE = b"\xef\x98\xa9".decode("utf-8") # U+f629
  587. ICON_FA_GAUGE_SIMPLE_HIGH = b"\xef\x98\xaa".decode("utf-8") # U+f62a
  588. ICON_FA_GAVEL = b"\xef\x83\xa3".decode("utf-8") # U+f0e3
  589. ICON_FA_GEAR = b"\xef\x80\x93".decode("utf-8") # U+f013
  590. ICON_FA_GEARS = b"\xef\x82\x85".decode("utf-8") # U+f085
  591. ICON_FA_GEM = b"\xef\x8e\xa5".decode("utf-8") # U+f3a5
  592. ICON_FA_GENDERLESS = b"\xef\x88\xad".decode("utf-8") # U+f22d
  593. ICON_FA_GHOST = b"\xef\x9b\xa2".decode("utf-8") # U+f6e2
  594. ICON_FA_GIFT = b"\xef\x81\xab".decode("utf-8") # U+f06b
  595. ICON_FA_GIFTS = b"\xef\x9e\x9c".decode("utf-8") # U+f79c
  596. ICON_FA_GLASS_WATER = b"\xee\x93\xb4".decode("utf-8") # U+e4f4
  597. ICON_FA_GLASS_WATER_DROPLET = b"\xee\x93\xb5".decode("utf-8") # U+e4f5
  598. ICON_FA_GLASSES = b"\xef\x94\xb0".decode("utf-8") # U+f530
  599. ICON_FA_GLOBE = b"\xef\x82\xac".decode("utf-8") # U+f0ac
  600. ICON_FA_GOLF_BALL_TEE = b"\xef\x91\x90".decode("utf-8") # U+f450
  601. ICON_FA_GOPURAM = b"\xef\x99\xa4".decode("utf-8") # U+f664
  602. ICON_FA_GRADUATION_CAP = b"\xef\x86\x9d".decode("utf-8") # U+f19d
  603. ICON_FA_GREATER_THAN = b">".decode("utf-8") # U+003e
  604. ICON_FA_GREATER_THAN_EQUAL = b"\xef\x94\xb2".decode("utf-8") # U+f532
  605. ICON_FA_GRIP = b"\xef\x96\x8d".decode("utf-8") # U+f58d
  606. ICON_FA_GRIP_LINES = b"\xef\x9e\xa4".decode("utf-8") # U+f7a4
  607. ICON_FA_GRIP_LINES_VERTICAL = b"\xef\x9e\xa5".decode("utf-8") # U+f7a5
  608. ICON_FA_GRIP_VERTICAL = b"\xef\x96\x8e".decode("utf-8") # U+f58e
  609. ICON_FA_GROUP_ARROWS_ROTATE = b"\xee\x93\xb6".decode("utf-8") # U+e4f6
  610. ICON_FA_GUARANI_SIGN = b"\xee\x86\x9a".decode("utf-8") # U+e19a
  611. ICON_FA_GUITAR = b"\xef\x9e\xa6".decode("utf-8") # U+f7a6
  612. ICON_FA_GUN = b"\xee\x86\x9b".decode("utf-8") # U+e19b
  613. ICON_FA_H = b"H".decode("utf-8") # U+0048
  614. ICON_FA_HAMMER = b"\xef\x9b\xa3".decode("utf-8") # U+f6e3
  615. ICON_FA_HAMSA = b"\xef\x99\xa5".decode("utf-8") # U+f665
  616. ICON_FA_HAND = b"\xef\x89\x96".decode("utf-8") # U+f256
  617. ICON_FA_HAND_BACK_FIST = b"\xef\x89\x95".decode("utf-8") # U+f255
  618. ICON_FA_HAND_DOTS = b"\xef\x91\xa1".decode("utf-8") # U+f461
  619. ICON_FA_HAND_FIST = b"\xef\x9b\x9e".decode("utf-8") # U+f6de
  620. ICON_FA_HAND_HOLDING = b"\xef\x92\xbd".decode("utf-8") # U+f4bd
  621. ICON_FA_HAND_HOLDING_DOLLAR = b"\xef\x93\x80".decode("utf-8") # U+f4c0
  622. ICON_FA_HAND_HOLDING_DROPLET = b"\xef\x93\x81".decode("utf-8") # U+f4c1
  623. ICON_FA_HAND_HOLDING_HAND = b"\xee\x93\xb7".decode("utf-8") # U+e4f7
  624. ICON_FA_HAND_HOLDING_HEART = b"\xef\x92\xbe".decode("utf-8") # U+f4be
  625. ICON_FA_HAND_HOLDING_MEDICAL = b"\xee\x81\x9c".decode("utf-8") # U+e05c
  626. ICON_FA_HAND_LIZARD = b"\xef\x89\x98".decode("utf-8") # U+f258
  627. ICON_FA_HAND_MIDDLE_FINGER = b"\xef\xa0\x86".decode("utf-8") # U+f806
  628. ICON_FA_HAND_PEACE = b"\xef\x89\x9b".decode("utf-8") # U+f25b
  629. ICON_FA_HAND_POINT_DOWN = b"\xef\x82\xa7".decode("utf-8") # U+f0a7
  630. ICON_FA_HAND_POINT_LEFT = b"\xef\x82\xa5".decode("utf-8") # U+f0a5
  631. ICON_FA_HAND_POINT_RIGHT = b"\xef\x82\xa4".decode("utf-8") # U+f0a4
  632. ICON_FA_HAND_POINT_UP = b"\xef\x82\xa6".decode("utf-8") # U+f0a6
  633. ICON_FA_HAND_POINTER = b"\xef\x89\x9a".decode("utf-8") # U+f25a
  634. ICON_FA_HAND_SCISSORS = b"\xef\x89\x97".decode("utf-8") # U+f257
  635. ICON_FA_HAND_SPARKLES = b"\xee\x81\x9d".decode("utf-8") # U+e05d
  636. ICON_FA_HAND_SPOCK = b"\xef\x89\x99".decode("utf-8") # U+f259
  637. ICON_FA_HANDCUFFS = b"\xee\x93\xb8".decode("utf-8") # U+e4f8
  638. ICON_FA_HANDS = b"\xef\x8a\xa7".decode("utf-8") # U+f2a7
  639. ICON_FA_HANDS_ASL_INTERPRETING = b"\xef\x8a\xa3".decode("utf-8") # U+f2a3
  640. ICON_FA_HANDS_BOUND = b"\xee\x93\xb9".decode("utf-8") # U+e4f9
  641. ICON_FA_HANDS_BUBBLES = b"\xee\x81\x9e".decode("utf-8") # U+e05e
  642. ICON_FA_HANDS_CLAPPING = b"\xee\x86\xa8".decode("utf-8") # U+e1a8
  643. ICON_FA_HANDS_HOLDING = b"\xef\x93\x82".decode("utf-8") # U+f4c2
  644. ICON_FA_HANDS_HOLDING_CHILD = b"\xee\x93\xba".decode("utf-8") # U+e4fa
  645. ICON_FA_HANDS_HOLDING_CIRCLE = b"\xee\x93\xbb".decode("utf-8") # U+e4fb
  646. ICON_FA_HANDS_PRAYING = b"\xef\x9a\x84".decode("utf-8") # U+f684
  647. ICON_FA_HANDSHAKE = b"\xef\x8a\xb5".decode("utf-8") # U+f2b5
  648. ICON_FA_HANDSHAKE_ANGLE = b"\xef\x93\x84".decode("utf-8") # U+f4c4
  649. ICON_FA_HANDSHAKE_SIMPLE = b"\xef\x93\x86".decode("utf-8") # U+f4c6
  650. ICON_FA_HANDSHAKE_SIMPLE_SLASH = b"\xee\x81\x9f".decode("utf-8") # U+e05f
  651. ICON_FA_HANDSHAKE_SLASH = b"\xee\x81\xa0".decode("utf-8") # U+e060
  652. ICON_FA_HANUKIAH = b"\xef\x9b\xa6".decode("utf-8") # U+f6e6
  653. ICON_FA_HARD_DRIVE = b"\xef\x82\xa0".decode("utf-8") # U+f0a0
  654. ICON_FA_HASHTAG = b"#".decode("utf-8") # U+0023
  655. ICON_FA_HAT_COWBOY = b"\xef\xa3\x80".decode("utf-8") # U+f8c0
  656. ICON_FA_HAT_COWBOY_SIDE = b"\xef\xa3\x81".decode("utf-8") # U+f8c1
  657. ICON_FA_HAT_WIZARD = b"\xef\x9b\xa8".decode("utf-8") # U+f6e8
  658. ICON_FA_HEAD_SIDE_COUGH = b"\xee\x81\xa1".decode("utf-8") # U+e061
  659. ICON_FA_HEAD_SIDE_COUGH_SLASH = b"\xee\x81\xa2".decode("utf-8") # U+e062
  660. ICON_FA_HEAD_SIDE_MASK = b"\xee\x81\xa3".decode("utf-8") # U+e063
  661. ICON_FA_HEAD_SIDE_VIRUS = b"\xee\x81\xa4".decode("utf-8") # U+e064
  662. ICON_FA_HEADING = b"\xef\x87\x9c".decode("utf-8") # U+f1dc
  663. ICON_FA_HEADPHONES = b"\xef\x80\xa5".decode("utf-8") # U+f025
  664. ICON_FA_HEADPHONES_SIMPLE = b"\xef\x96\x8f".decode("utf-8") # U+f58f
  665. ICON_FA_HEADSET = b"\xef\x96\x90".decode("utf-8") # U+f590
  666. ICON_FA_HEART = b"\xef\x80\x84".decode("utf-8") # U+f004
  667. ICON_FA_HEART_CIRCLE_BOLT = b"\xee\x93\xbc".decode("utf-8") # U+e4fc
  668. ICON_FA_HEART_CIRCLE_CHECK = b"\xee\x93\xbd".decode("utf-8") # U+e4fd
  669. ICON_FA_HEART_CIRCLE_EXCLAMATION = b"\xee\x93\xbe".decode("utf-8") # U+e4fe
  670. ICON_FA_HEART_CIRCLE_MINUS = b"\xee\x93\xbf".decode("utf-8") # U+e4ff
  671. ICON_FA_HEART_CIRCLE_PLUS = b"\xee\x94\x80".decode("utf-8") # U+e500
  672. ICON_FA_HEART_CIRCLE_XMARK = b"\xee\x94\x81".decode("utf-8") # U+e501
  673. ICON_FA_HEART_CRACK = b"\xef\x9e\xa9".decode("utf-8") # U+f7a9
  674. ICON_FA_HEART_PULSE = b"\xef\x88\x9e".decode("utf-8") # U+f21e
  675. ICON_FA_HELICOPTER = b"\xef\x94\xb3".decode("utf-8") # U+f533
  676. ICON_FA_HELICOPTER_SYMBOL = b"\xee\x94\x82".decode("utf-8") # U+e502
  677. ICON_FA_HELMET_SAFETY = b"\xef\xa0\x87".decode("utf-8") # U+f807
  678. ICON_FA_HELMET_UN = b"\xee\x94\x83".decode("utf-8") # U+e503
  679. ICON_FA_HIGHLIGHTER = b"\xef\x96\x91".decode("utf-8") # U+f591
  680. ICON_FA_HILL_AVALANCHE = b"\xee\x94\x87".decode("utf-8") # U+e507
  681. ICON_FA_HILL_ROCKSLIDE = b"\xee\x94\x88".decode("utf-8") # U+e508
  682. ICON_FA_HIPPO = b"\xef\x9b\xad".decode("utf-8") # U+f6ed
  683. ICON_FA_HOCKEY_PUCK = b"\xef\x91\x93".decode("utf-8") # U+f453
  684. ICON_FA_HOLLY_BERRY = b"\xef\x9e\xaa".decode("utf-8") # U+f7aa
  685. ICON_FA_HORSE = b"\xef\x9b\xb0".decode("utf-8") # U+f6f0
  686. ICON_FA_HORSE_HEAD = b"\xef\x9e\xab".decode("utf-8") # U+f7ab
  687. ICON_FA_HOSPITAL = b"\xef\x83\xb8".decode("utf-8") # U+f0f8
  688. ICON_FA_HOSPITAL_USER = b"\xef\xa0\x8d".decode("utf-8") # U+f80d
  689. ICON_FA_HOT_TUB_PERSON = b"\xef\x96\x93".decode("utf-8") # U+f593
  690. ICON_FA_HOTDOG = b"\xef\xa0\x8f".decode("utf-8") # U+f80f
  691. ICON_FA_HOTEL = b"\xef\x96\x94".decode("utf-8") # U+f594
  692. ICON_FA_HOURGLASS = b"\xef\x89\x94".decode("utf-8") # U+f254
  693. ICON_FA_HOURGLASS_END = b"\xef\x89\x93".decode("utf-8") # U+f253
  694. ICON_FA_HOURGLASS_HALF = b"\xef\x89\x92".decode("utf-8") # U+f252
  695. ICON_FA_HOURGLASS_START = b"\xef\x89\x91".decode("utf-8") # U+f251
  696. ICON_FA_HOUSE = b"\xef\x80\x95".decode("utf-8") # U+f015
  697. ICON_FA_HOUSE_CHIMNEY = b"\xee\x8e\xaf".decode("utf-8") # U+e3af
  698. ICON_FA_HOUSE_CHIMNEY_CRACK = b"\xef\x9b\xb1".decode("utf-8") # U+f6f1
  699. ICON_FA_HOUSE_CHIMNEY_MEDICAL = b"\xef\x9f\xb2".decode("utf-8") # U+f7f2
  700. ICON_FA_HOUSE_CHIMNEY_USER = b"\xee\x81\xa5".decode("utf-8") # U+e065
  701. ICON_FA_HOUSE_CHIMNEY_WINDOW = b"\xee\x80\x8d".decode("utf-8") # U+e00d
  702. ICON_FA_HOUSE_CIRCLE_CHECK = b"\xee\x94\x89".decode("utf-8") # U+e509
  703. ICON_FA_HOUSE_CIRCLE_EXCLAMATION = b"\xee\x94\x8a".decode("utf-8") # U+e50a
  704. ICON_FA_HOUSE_CIRCLE_XMARK = b"\xee\x94\x8b".decode("utf-8") # U+e50b
  705. ICON_FA_HOUSE_CRACK = b"\xee\x8e\xb1".decode("utf-8") # U+e3b1
  706. ICON_FA_HOUSE_FIRE = b"\xee\x94\x8c".decode("utf-8") # U+e50c
  707. ICON_FA_HOUSE_FLAG = b"\xee\x94\x8d".decode("utf-8") # U+e50d
  708. ICON_FA_HOUSE_FLOOD_WATER = b"\xee\x94\x8e".decode("utf-8") # U+e50e
  709. ICON_FA_HOUSE_FLOOD_WATER_CIRCLE_ARROW_RIGHT = b"\xee\x94\x8f".decode("utf-8") # U+e50f
  710. ICON_FA_HOUSE_LAPTOP = b"\xee\x81\xa6".decode("utf-8") # U+e066
  711. ICON_FA_HOUSE_LOCK = b"\xee\x94\x90".decode("utf-8") # U+e510
  712. ICON_FA_HOUSE_MEDICAL = b"\xee\x8e\xb2".decode("utf-8") # U+e3b2
  713. ICON_FA_HOUSE_MEDICAL_CIRCLE_CHECK = b"\xee\x94\x91".decode("utf-8") # U+e511
  714. ICON_FA_HOUSE_MEDICAL_CIRCLE_EXCLAMATION = b"\xee\x94\x92".decode("utf-8") # U+e512
  715. ICON_FA_HOUSE_MEDICAL_CIRCLE_XMARK = b"\xee\x94\x93".decode("utf-8") # U+e513
  716. ICON_FA_HOUSE_MEDICAL_FLAG = b"\xee\x94\x94".decode("utf-8") # U+e514
  717. ICON_FA_HOUSE_SIGNAL = b"\xee\x80\x92".decode("utf-8") # U+e012
  718. ICON_FA_HOUSE_TSUNAMI = b"\xee\x94\x95".decode("utf-8") # U+e515
  719. ICON_FA_HOUSE_USER = b"\xee\x86\xb0".decode("utf-8") # U+e1b0
  720. ICON_FA_HRYVNIA_SIGN = b"\xef\x9b\xb2".decode("utf-8") # U+f6f2
  721. ICON_FA_HURRICANE = b"\xef\x9d\x91".decode("utf-8") # U+f751
  722. ICON_FA_I = b"I".decode("utf-8") # U+0049
  723. ICON_FA_I_CURSOR = b"\xef\x89\x86".decode("utf-8") # U+f246
  724. ICON_FA_ICE_CREAM = b"\xef\xa0\x90".decode("utf-8") # U+f810
  725. ICON_FA_ICICLES = b"\xef\x9e\xad".decode("utf-8") # U+f7ad
  726. ICON_FA_ICONS = b"\xef\xa1\xad".decode("utf-8") # U+f86d
  727. ICON_FA_ID_BADGE = b"\xef\x8b\x81".decode("utf-8") # U+f2c1
  728. ICON_FA_ID_CARD = b"\xef\x8b\x82".decode("utf-8") # U+f2c2
  729. ICON_FA_ID_CARD_CLIP = b"\xef\x91\xbf".decode("utf-8") # U+f47f
  730. ICON_FA_IGLOO = b"\xef\x9e\xae".decode("utf-8") # U+f7ae
  731. ICON_FA_IMAGE = b"\xef\x80\xbe".decode("utf-8") # U+f03e
  732. ICON_FA_IMAGE_PORTRAIT = b"\xef\x8f\xa0".decode("utf-8") # U+f3e0
  733. ICON_FA_IMAGES = b"\xef\x8c\x82".decode("utf-8") # U+f302
  734. ICON_FA_INBOX = b"\xef\x80\x9c".decode("utf-8") # U+f01c
  735. ICON_FA_INDENT = b"\xef\x80\xbc".decode("utf-8") # U+f03c
  736. ICON_FA_INDIAN_RUPEE_SIGN = b"\xee\x86\xbc".decode("utf-8") # U+e1bc
  737. ICON_FA_INDUSTRY = b"\xef\x89\xb5".decode("utf-8") # U+f275
  738. ICON_FA_INFINITY = b"\xef\x94\xb4".decode("utf-8") # U+f534
  739. ICON_FA_INFO = b"\xef\x84\xa9".decode("utf-8") # U+f129
  740. ICON_FA_ITALIC = b"\xef\x80\xb3".decode("utf-8") # U+f033
  741. ICON_FA_J = b"J".decode("utf-8") # U+004a
  742. ICON_FA_JAR = b"\xee\x94\x96".decode("utf-8") # U+e516
  743. ICON_FA_JAR_WHEAT = b"\xee\x94\x97".decode("utf-8") # U+e517
  744. ICON_FA_JEDI = b"\xef\x99\xa9".decode("utf-8") # U+f669
  745. ICON_FA_JET_FIGHTER = b"\xef\x83\xbb".decode("utf-8") # U+f0fb
  746. ICON_FA_JET_FIGHTER_UP = b"\xee\x94\x98".decode("utf-8") # U+e518
  747. ICON_FA_JOINT = b"\xef\x96\x95".decode("utf-8") # U+f595
  748. ICON_FA_JUG_DETERGENT = b"\xee\x94\x99".decode("utf-8") # U+e519
  749. ICON_FA_K = b"K".decode("utf-8") # U+004b
  750. ICON_FA_KAABA = b"\xef\x99\xab".decode("utf-8") # U+f66b
  751. ICON_FA_KEY = b"\xef\x82\x84".decode("utf-8") # U+f084
  752. ICON_FA_KEYBOARD = b"\xef\x84\x9c".decode("utf-8") # U+f11c
  753. ICON_FA_KHANDA = b"\xef\x99\xad".decode("utf-8") # U+f66d
  754. ICON_FA_KIP_SIGN = b"\xee\x87\x84".decode("utf-8") # U+e1c4
  755. ICON_FA_KIT_MEDICAL = b"\xef\x91\xb9".decode("utf-8") # U+f479
  756. ICON_FA_KITCHEN_SET = b"\xee\x94\x9a".decode("utf-8") # U+e51a
  757. ICON_FA_KIWI_BIRD = b"\xef\x94\xb5".decode("utf-8") # U+f535
  758. ICON_FA_L = b"L".decode("utf-8") # U+004c
  759. ICON_FA_LAND_MINE_ON = b"\xee\x94\x9b".decode("utf-8") # U+e51b
  760. ICON_FA_LANDMARK = b"\xef\x99\xaf".decode("utf-8") # U+f66f
  761. ICON_FA_LANDMARK_DOME = b"\xef\x9d\x92".decode("utf-8") # U+f752
  762. ICON_FA_LANDMARK_FLAG = b"\xee\x94\x9c".decode("utf-8") # U+e51c
  763. ICON_FA_LANGUAGE = b"\xef\x86\xab".decode("utf-8") # U+f1ab
  764. ICON_FA_LAPTOP = b"\xef\x84\x89".decode("utf-8") # U+f109
  765. ICON_FA_LAPTOP_CODE = b"\xef\x97\xbc".decode("utf-8") # U+f5fc
  766. ICON_FA_LAPTOP_FILE = b"\xee\x94\x9d".decode("utf-8") # U+e51d
  767. ICON_FA_LAPTOP_MEDICAL = b"\xef\xa0\x92".decode("utf-8") # U+f812
  768. ICON_FA_LARI_SIGN = b"\xee\x87\x88".decode("utf-8") # U+e1c8
  769. ICON_FA_LAYER_GROUP = b"\xef\x97\xbd".decode("utf-8") # U+f5fd
  770. ICON_FA_LEAF = b"\xef\x81\xac".decode("utf-8") # U+f06c
  771. ICON_FA_LEFT_LONG = b"\xef\x8c\x8a".decode("utf-8") # U+f30a
  772. ICON_FA_LEFT_RIGHT = b"\xef\x8c\xb7".decode("utf-8") # U+f337
  773. ICON_FA_LEMON = b"\xef\x82\x94".decode("utf-8") # U+f094
  774. ICON_FA_LESS_THAN = b"<".decode("utf-8") # U+003c
  775. ICON_FA_LESS_THAN_EQUAL = b"\xef\x94\xb7".decode("utf-8") # U+f537
  776. ICON_FA_LIFE_RING = b"\xef\x87\x8d".decode("utf-8") # U+f1cd
  777. ICON_FA_LIGHTBULB = b"\xef\x83\xab".decode("utf-8") # U+f0eb
  778. ICON_FA_LINES_LEANING = b"\xee\x94\x9e".decode("utf-8") # U+e51e
  779. ICON_FA_LINK = b"\xef\x83\x81".decode("utf-8") # U+f0c1
  780. ICON_FA_LINK_SLASH = b"\xef\x84\xa7".decode("utf-8") # U+f127
  781. ICON_FA_LIRA_SIGN = b"\xef\x86\x95".decode("utf-8") # U+f195
  782. ICON_FA_LIST = b"\xef\x80\xba".decode("utf-8") # U+f03a
  783. ICON_FA_LIST_CHECK = b"\xef\x82\xae".decode("utf-8") # U+f0ae
  784. ICON_FA_LIST_OL = b"\xef\x83\x8b".decode("utf-8") # U+f0cb
  785. ICON_FA_LIST_UL = b"\xef\x83\x8a".decode("utf-8") # U+f0ca
  786. ICON_FA_LITECOIN_SIGN = b"\xee\x87\x93".decode("utf-8") # U+e1d3
  787. ICON_FA_LOCATION_ARROW = b"\xef\x84\xa4".decode("utf-8") # U+f124
  788. ICON_FA_LOCATION_CROSSHAIRS = b"\xef\x98\x81".decode("utf-8") # U+f601
  789. ICON_FA_LOCATION_DOT = b"\xef\x8f\x85".decode("utf-8") # U+f3c5
  790. ICON_FA_LOCATION_PIN = b"\xef\x81\x81".decode("utf-8") # U+f041
  791. ICON_FA_LOCATION_PIN_LOCK = b"\xee\x94\x9f".decode("utf-8") # U+e51f
  792. ICON_FA_LOCK = b"\xef\x80\xa3".decode("utf-8") # U+f023
  793. ICON_FA_LOCK_OPEN = b"\xef\x8f\x81".decode("utf-8") # U+f3c1
  794. ICON_FA_LOCUST = b"\xee\x94\xa0".decode("utf-8") # U+e520
  795. ICON_FA_LUNGS = b"\xef\x98\x84".decode("utf-8") # U+f604
  796. ICON_FA_LUNGS_VIRUS = b"\xee\x81\xa7".decode("utf-8") # U+e067
  797. ICON_FA_M = b"M".decode("utf-8") # U+004d
  798. ICON_FA_MAGNET = b"\xef\x81\xb6".decode("utf-8") # U+f076
  799. ICON_FA_MAGNIFYING_GLASS = b"\xef\x80\x82".decode("utf-8") # U+f002
  800. ICON_FA_MAGNIFYING_GLASS_ARROW_RIGHT = b"\xee\x94\xa1".decode("utf-8") # U+e521
  801. ICON_FA_MAGNIFYING_GLASS_CHART = b"\xee\x94\xa2".decode("utf-8") # U+e522
  802. ICON_FA_MAGNIFYING_GLASS_DOLLAR = b"\xef\x9a\x88".decode("utf-8") # U+f688
  803. ICON_FA_MAGNIFYING_GLASS_LOCATION = b"\xef\x9a\x89".decode("utf-8") # U+f689
  804. ICON_FA_MAGNIFYING_GLASS_MINUS = b"\xef\x80\x90".decode("utf-8") # U+f010
  805. ICON_FA_MAGNIFYING_GLASS_PLUS = b"\xef\x80\x8e".decode("utf-8") # U+f00e
  806. ICON_FA_MANAT_SIGN = b"\xee\x87\x95".decode("utf-8") # U+e1d5
  807. ICON_FA_MAP = b"\xef\x89\xb9".decode("utf-8") # U+f279
  808. ICON_FA_MAP_LOCATION = b"\xef\x96\x9f".decode("utf-8") # U+f59f
  809. ICON_FA_MAP_LOCATION_DOT = b"\xef\x96\xa0".decode("utf-8") # U+f5a0
  810. ICON_FA_MAP_PIN = b"\xef\x89\xb6".decode("utf-8") # U+f276
  811. ICON_FA_MARKER = b"\xef\x96\xa1".decode("utf-8") # U+f5a1
  812. ICON_FA_MARS = b"\xef\x88\xa2".decode("utf-8") # U+f222
  813. ICON_FA_MARS_AND_VENUS = b"\xef\x88\xa4".decode("utf-8") # U+f224
  814. ICON_FA_MARS_AND_VENUS_BURST = b"\xee\x94\xa3".decode("utf-8") # U+e523
  815. ICON_FA_MARS_DOUBLE = b"\xef\x88\xa7".decode("utf-8") # U+f227
  816. ICON_FA_MARS_STROKE = b"\xef\x88\xa9".decode("utf-8") # U+f229
  817. ICON_FA_MARS_STROKE_RIGHT = b"\xef\x88\xab".decode("utf-8") # U+f22b
  818. ICON_FA_MARS_STROKE_UP = b"\xef\x88\xaa".decode("utf-8") # U+f22a
  819. ICON_FA_MARTINI_GLASS = b"\xef\x95\xbb".decode("utf-8") # U+f57b
  820. ICON_FA_MARTINI_GLASS_CITRUS = b"\xef\x95\xa1".decode("utf-8") # U+f561
  821. ICON_FA_MARTINI_GLASS_EMPTY = b"\xef\x80\x80".decode("utf-8") # U+f000
  822. ICON_FA_MASK = b"\xef\x9b\xba".decode("utf-8") # U+f6fa
  823. ICON_FA_MASK_FACE = b"\xee\x87\x97".decode("utf-8") # U+e1d7
  824. ICON_FA_MASK_VENTILATOR = b"\xee\x94\xa4".decode("utf-8") # U+e524
  825. ICON_FA_MASKS_THEATER = b"\xef\x98\xb0".decode("utf-8") # U+f630
  826. ICON_FA_MATTRESS_PILLOW = b"\xee\x94\xa5".decode("utf-8") # U+e525
  827. ICON_FA_MAXIMIZE = b"\xef\x8c\x9e".decode("utf-8") # U+f31e
  828. ICON_FA_MEDAL = b"\xef\x96\xa2".decode("utf-8") # U+f5a2
  829. ICON_FA_MEMORY = b"\xef\x94\xb8".decode("utf-8") # U+f538
  830. ICON_FA_MENORAH = b"\xef\x99\xb6".decode("utf-8") # U+f676
  831. ICON_FA_MERCURY = b"\xef\x88\xa3".decode("utf-8") # U+f223
  832. ICON_FA_MESSAGE = b"\xef\x89\xba".decode("utf-8") # U+f27a
  833. ICON_FA_METEOR = b"\xef\x9d\x93".decode("utf-8") # U+f753
  834. ICON_FA_MICROCHIP = b"\xef\x8b\x9b".decode("utf-8") # U+f2db
  835. ICON_FA_MICROPHONE = b"\xef\x84\xb0".decode("utf-8") # U+f130
  836. ICON_FA_MICROPHONE_LINES = b"\xef\x8f\x89".decode("utf-8") # U+f3c9
  837. ICON_FA_MICROPHONE_LINES_SLASH = b"\xef\x94\xb9".decode("utf-8") # U+f539
  838. ICON_FA_MICROPHONE_SLASH = b"\xef\x84\xb1".decode("utf-8") # U+f131
  839. ICON_FA_MICROSCOPE = b"\xef\x98\x90".decode("utf-8") # U+f610
  840. ICON_FA_MILL_SIGN = b"\xee\x87\xad".decode("utf-8") # U+e1ed
  841. ICON_FA_MINIMIZE = b"\xef\x9e\x8c".decode("utf-8") # U+f78c
  842. ICON_FA_MINUS = b"\xef\x81\xa8".decode("utf-8") # U+f068
  843. ICON_FA_MITTEN = b"\xef\x9e\xb5".decode("utf-8") # U+f7b5
  844. ICON_FA_MOBILE = b"\xef\x8f\x8e".decode("utf-8") # U+f3ce
  845. ICON_FA_MOBILE_BUTTON = b"\xef\x84\x8b".decode("utf-8") # U+f10b
  846. ICON_FA_MOBILE_RETRO = b"\xee\x94\xa7".decode("utf-8") # U+e527
  847. ICON_FA_MOBILE_SCREEN = b"\xef\x8f\x8f".decode("utf-8") # U+f3cf
  848. ICON_FA_MOBILE_SCREEN_BUTTON = b"\xef\x8f\x8d".decode("utf-8") # U+f3cd
  849. ICON_FA_MONEY_BILL = b"\xef\x83\x96".decode("utf-8") # U+f0d6
  850. ICON_FA_MONEY_BILL_1 = b"\xef\x8f\x91".decode("utf-8") # U+f3d1
  851. ICON_FA_MONEY_BILL_1_WAVE = b"\xef\x94\xbb".decode("utf-8") # U+f53b
  852. ICON_FA_MONEY_BILL_TRANSFER = b"\xee\x94\xa8".decode("utf-8") # U+e528
  853. ICON_FA_MONEY_BILL_TREND_UP = b"\xee\x94\xa9".decode("utf-8") # U+e529
  854. ICON_FA_MONEY_BILL_WAVE = b"\xef\x94\xba".decode("utf-8") # U+f53a
  855. ICON_FA_MONEY_BILL_WHEAT = b"\xee\x94\xaa".decode("utf-8") # U+e52a
  856. ICON_FA_MONEY_BILLS = b"\xee\x87\xb3".decode("utf-8") # U+e1f3
  857. ICON_FA_MONEY_CHECK = b"\xef\x94\xbc".decode("utf-8") # U+f53c
  858. ICON_FA_MONEY_CHECK_DOLLAR = b"\xef\x94\xbd".decode("utf-8") # U+f53d
  859. ICON_FA_MONUMENT = b"\xef\x96\xa6".decode("utf-8") # U+f5a6
  860. ICON_FA_MOON = b"\xef\x86\x86".decode("utf-8") # U+f186
  861. ICON_FA_MORTAR_PESTLE = b"\xef\x96\xa7".decode("utf-8") # U+f5a7
  862. ICON_FA_MOSQUE = b"\xef\x99\xb8".decode("utf-8") # U+f678
  863. ICON_FA_MOSQUITO = b"\xee\x94\xab".decode("utf-8") # U+e52b
  864. ICON_FA_MOSQUITO_NET = b"\xee\x94\xac".decode("utf-8") # U+e52c
  865. ICON_FA_MOTORCYCLE = b"\xef\x88\x9c".decode("utf-8") # U+f21c
  866. ICON_FA_MOUND = b"\xee\x94\xad".decode("utf-8") # U+e52d
  867. ICON_FA_MOUNTAIN = b"\xef\x9b\xbc".decode("utf-8") # U+f6fc
  868. ICON_FA_MOUNTAIN_CITY = b"\xee\x94\xae".decode("utf-8") # U+e52e
  869. ICON_FA_MOUNTAIN_SUN = b"\xee\x94\xaf".decode("utf-8") # U+e52f
  870. ICON_FA_MUG_HOT = b"\xef\x9e\xb6".decode("utf-8") # U+f7b6
  871. ICON_FA_MUG_SAUCER = b"\xef\x83\xb4".decode("utf-8") # U+f0f4
  872. ICON_FA_MUSIC = b"\xef\x80\x81".decode("utf-8") # U+f001
  873. ICON_FA_N = b"N".decode("utf-8") # U+004e
  874. ICON_FA_NAIRA_SIGN = b"\xee\x87\xb6".decode("utf-8") # U+e1f6
  875. ICON_FA_NETWORK_WIRED = b"\xef\x9b\xbf".decode("utf-8") # U+f6ff
  876. ICON_FA_NEUTER = b"\xef\x88\xac".decode("utf-8") # U+f22c
  877. ICON_FA_NEWSPAPER = b"\xef\x87\xaa".decode("utf-8") # U+f1ea
  878. ICON_FA_NOT_EQUAL = b"\xef\x94\xbe".decode("utf-8") # U+f53e
  879. ICON_FA_NOTDEF = b"\xee\x87\xbe".decode("utf-8") # U+e1fe
  880. ICON_FA_NOTE_STICKY = b"\xef\x89\x89".decode("utf-8") # U+f249
  881. ICON_FA_NOTES_MEDICAL = b"\xef\x92\x81".decode("utf-8") # U+f481
  882. ICON_FA_O = b"O".decode("utf-8") # U+004f
  883. ICON_FA_OBJECT_GROUP = b"\xef\x89\x87".decode("utf-8") # U+f247
  884. ICON_FA_OBJECT_UNGROUP = b"\xef\x89\x88".decode("utf-8") # U+f248
  885. ICON_FA_OIL_CAN = b"\xef\x98\x93".decode("utf-8") # U+f613
  886. ICON_FA_OIL_WELL = b"\xee\x94\xb2".decode("utf-8") # U+e532
  887. ICON_FA_OM = b"\xef\x99\xb9".decode("utf-8") # U+f679
  888. ICON_FA_OTTER = b"\xef\x9c\x80".decode("utf-8") # U+f700
  889. ICON_FA_OUTDENT = b"\xef\x80\xbb".decode("utf-8") # U+f03b
  890. ICON_FA_P = b"P".decode("utf-8") # U+0050
  891. ICON_FA_PAGER = b"\xef\xa0\x95".decode("utf-8") # U+f815
  892. ICON_FA_PAINT_ROLLER = b"\xef\x96\xaa".decode("utf-8") # U+f5aa
  893. ICON_FA_PAINTBRUSH = b"\xef\x87\xbc".decode("utf-8") # U+f1fc
  894. ICON_FA_PALETTE = b"\xef\x94\xbf".decode("utf-8") # U+f53f
  895. ICON_FA_PALLET = b"\xef\x92\x82".decode("utf-8") # U+f482
  896. ICON_FA_PANORAMA = b"\xee\x88\x89".decode("utf-8") # U+e209
  897. ICON_FA_PAPER_PLANE = b"\xef\x87\x98".decode("utf-8") # U+f1d8
  898. ICON_FA_PAPERCLIP = b"\xef\x83\x86".decode("utf-8") # U+f0c6
  899. ICON_FA_PARACHUTE_BOX = b"\xef\x93\x8d".decode("utf-8") # U+f4cd
  900. ICON_FA_PARAGRAPH = b"\xef\x87\x9d".decode("utf-8") # U+f1dd
  901. ICON_FA_PASSPORT = b"\xef\x96\xab".decode("utf-8") # U+f5ab
  902. ICON_FA_PASTE = b"\xef\x83\xaa".decode("utf-8") # U+f0ea
  903. ICON_FA_PAUSE = b"\xef\x81\x8c".decode("utf-8") # U+f04c
  904. ICON_FA_PAW = b"\xef\x86\xb0".decode("utf-8") # U+f1b0
  905. ICON_FA_PEACE = b"\xef\x99\xbc".decode("utf-8") # U+f67c
  906. ICON_FA_PEN = b"\xef\x8c\x84".decode("utf-8") # U+f304
  907. ICON_FA_PEN_CLIP = b"\xef\x8c\x85".decode("utf-8") # U+f305
  908. ICON_FA_PEN_FANCY = b"\xef\x96\xac".decode("utf-8") # U+f5ac
  909. ICON_FA_PEN_NIB = b"\xef\x96\xad".decode("utf-8") # U+f5ad
  910. ICON_FA_PEN_RULER = b"\xef\x96\xae".decode("utf-8") # U+f5ae
  911. ICON_FA_PEN_TO_SQUARE = b"\xef\x81\x84".decode("utf-8") # U+f044
  912. ICON_FA_PENCIL = b"\xef\x8c\x83".decode("utf-8") # U+f303
  913. ICON_FA_PEOPLE_ARROWS = b"\xee\x81\xa8".decode("utf-8") # U+e068
  914. ICON_FA_PEOPLE_CARRY_BOX = b"\xef\x93\x8e".decode("utf-8") # U+f4ce
  915. ICON_FA_PEOPLE_GROUP = b"\xee\x94\xb3".decode("utf-8") # U+e533
  916. ICON_FA_PEOPLE_LINE = b"\xee\x94\xb4".decode("utf-8") # U+e534
  917. ICON_FA_PEOPLE_PULLING = b"\xee\x94\xb5".decode("utf-8") # U+e535
  918. ICON_FA_PEOPLE_ROBBERY = b"\xee\x94\xb6".decode("utf-8") # U+e536
  919. ICON_FA_PEOPLE_ROOF = b"\xee\x94\xb7".decode("utf-8") # U+e537
  920. ICON_FA_PEPPER_HOT = b"\xef\xa0\x96".decode("utf-8") # U+f816
  921. ICON_FA_PERCENT = b"%".decode("utf-8") # U+0025
  922. ICON_FA_PERSON = b"\xef\x86\x83".decode("utf-8") # U+f183
  923. ICON_FA_PERSON_ARROW_DOWN_TO_LINE = b"\xee\x94\xb8".decode("utf-8") # U+e538
  924. ICON_FA_PERSON_ARROW_UP_FROM_LINE = b"\xee\x94\xb9".decode("utf-8") # U+e539
  925. ICON_FA_PERSON_BIKING = b"\xef\xa1\x8a".decode("utf-8") # U+f84a
  926. ICON_FA_PERSON_BOOTH = b"\xef\x9d\x96".decode("utf-8") # U+f756
  927. ICON_FA_PERSON_BREASTFEEDING = b"\xee\x94\xba".decode("utf-8") # U+e53a
  928. ICON_FA_PERSON_BURST = b"\xee\x94\xbb".decode("utf-8") # U+e53b
  929. ICON_FA_PERSON_CANE = b"\xee\x94\xbc".decode("utf-8") # U+e53c
  930. ICON_FA_PERSON_CHALKBOARD = b"\xee\x94\xbd".decode("utf-8") # U+e53d
  931. ICON_FA_PERSON_CIRCLE_CHECK = b"\xee\x94\xbe".decode("utf-8") # U+e53e
  932. ICON_FA_PERSON_CIRCLE_EXCLAMATION = b"\xee\x94\xbf".decode("utf-8") # U+e53f
  933. ICON_FA_PERSON_CIRCLE_MINUS = b"\xee\x95\x80".decode("utf-8") # U+e540
  934. ICON_FA_PERSON_CIRCLE_PLUS = b"\xee\x95\x81".decode("utf-8") # U+e541
  935. ICON_FA_PERSON_CIRCLE_QUESTION = b"\xee\x95\x82".decode("utf-8") # U+e542
  936. ICON_FA_PERSON_CIRCLE_XMARK = b"\xee\x95\x83".decode("utf-8") # U+e543
  937. ICON_FA_PERSON_DIGGING = b"\xef\xa1\x9e".decode("utf-8") # U+f85e
  938. ICON_FA_PERSON_DOTS_FROM_LINE = b"\xef\x91\xb0".decode("utf-8") # U+f470
  939. ICON_FA_PERSON_DRESS = b"\xef\x86\x82".decode("utf-8") # U+f182
  940. ICON_FA_PERSON_DRESS_BURST = b"\xee\x95\x84".decode("utf-8") # U+e544
  941. ICON_FA_PERSON_DROWNING = b"\xee\x95\x85".decode("utf-8") # U+e545
  942. ICON_FA_PERSON_FALLING = b"\xee\x95\x86".decode("utf-8") # U+e546
  943. ICON_FA_PERSON_FALLING_BURST = b"\xee\x95\x87".decode("utf-8") # U+e547
  944. ICON_FA_PERSON_HALF_DRESS = b"\xee\x95\x88".decode("utf-8") # U+e548
  945. ICON_FA_PERSON_HARASSING = b"\xee\x95\x89".decode("utf-8") # U+e549
  946. ICON_FA_PERSON_HIKING = b"\xef\x9b\xac".decode("utf-8") # U+f6ec
  947. ICON_FA_PERSON_MILITARY_POINTING = b"\xee\x95\x8a".decode("utf-8") # U+e54a
  948. ICON_FA_PERSON_MILITARY_RIFLE = b"\xee\x95\x8b".decode("utf-8") # U+e54b
  949. ICON_FA_PERSON_MILITARY_TO_PERSON = b"\xee\x95\x8c".decode("utf-8") # U+e54c
  950. ICON_FA_PERSON_PRAYING = b"\xef\x9a\x83".decode("utf-8") # U+f683
  951. ICON_FA_PERSON_PREGNANT = b"\xee\x8c\x9e".decode("utf-8") # U+e31e
  952. ICON_FA_PERSON_RAYS = b"\xee\x95\x8d".decode("utf-8") # U+e54d
  953. ICON_FA_PERSON_RIFLE = b"\xee\x95\x8e".decode("utf-8") # U+e54e
  954. ICON_FA_PERSON_RUNNING = b"\xef\x9c\x8c".decode("utf-8") # U+f70c
  955. ICON_FA_PERSON_SHELTER = b"\xee\x95\x8f".decode("utf-8") # U+e54f
  956. ICON_FA_PERSON_SKATING = b"\xef\x9f\x85".decode("utf-8") # U+f7c5
  957. ICON_FA_PERSON_SKIING = b"\xef\x9f\x89".decode("utf-8") # U+f7c9
  958. ICON_FA_PERSON_SKIING_NORDIC = b"\xef\x9f\x8a".decode("utf-8") # U+f7ca
  959. ICON_FA_PERSON_SNOWBOARDING = b"\xef\x9f\x8e".decode("utf-8") # U+f7ce
  960. ICON_FA_PERSON_SWIMMING = b"\xef\x97\x84".decode("utf-8") # U+f5c4
  961. ICON_FA_PERSON_THROUGH_WINDOW = b"\xee\x96\xa9".decode("utf-8") # U+e5a9
  962. ICON_FA_PERSON_WALKING = b"\xef\x95\x94".decode("utf-8") # U+f554
  963. ICON_FA_PERSON_WALKING_ARROW_LOOP_LEFT = b"\xee\x95\x91".decode("utf-8") # U+e551
  964. ICON_FA_PERSON_WALKING_ARROW_RIGHT = b"\xee\x95\x92".decode("utf-8") # U+e552
  965. ICON_FA_PERSON_WALKING_DASHED_LINE_ARROW_RIGHT = b"\xee\x95\x93".decode("utf-8") # U+e553
  966. ICON_FA_PERSON_WALKING_LUGGAGE = b"\xee\x95\x94".decode("utf-8") # U+e554
  967. ICON_FA_PERSON_WALKING_WITH_CANE = b"\xef\x8a\x9d".decode("utf-8") # U+f29d
  968. ICON_FA_PESETA_SIGN = b"\xee\x88\xa1".decode("utf-8") # U+e221
  969. ICON_FA_PESO_SIGN = b"\xee\x88\xa2".decode("utf-8") # U+e222
  970. ICON_FA_PHONE = b"\xef\x82\x95".decode("utf-8") # U+f095
  971. ICON_FA_PHONE_FLIP = b"\xef\xa1\xb9".decode("utf-8") # U+f879
  972. ICON_FA_PHONE_SLASH = b"\xef\x8f\x9d".decode("utf-8") # U+f3dd
  973. ICON_FA_PHONE_VOLUME = b"\xef\x8a\xa0".decode("utf-8") # U+f2a0
  974. ICON_FA_PHOTO_FILM = b"\xef\xa1\xbc".decode("utf-8") # U+f87c
  975. ICON_FA_PIGGY_BANK = b"\xef\x93\x93".decode("utf-8") # U+f4d3
  976. ICON_FA_PILLS = b"\xef\x92\x84".decode("utf-8") # U+f484
  977. ICON_FA_PIZZA_SLICE = b"\xef\xa0\x98".decode("utf-8") # U+f818
  978. ICON_FA_PLACE_OF_WORSHIP = b"\xef\x99\xbf".decode("utf-8") # U+f67f
  979. ICON_FA_PLANE = b"\xef\x81\xb2".decode("utf-8") # U+f072
  980. ICON_FA_PLANE_ARRIVAL = b"\xef\x96\xaf".decode("utf-8") # U+f5af
  981. ICON_FA_PLANE_CIRCLE_CHECK = b"\xee\x95\x95".decode("utf-8") # U+e555
  982. ICON_FA_PLANE_CIRCLE_EXCLAMATION = b"\xee\x95\x96".decode("utf-8") # U+e556
  983. ICON_FA_PLANE_CIRCLE_XMARK = b"\xee\x95\x97".decode("utf-8") # U+e557
  984. ICON_FA_PLANE_DEPARTURE = b"\xef\x96\xb0".decode("utf-8") # U+f5b0
  985. ICON_FA_PLANE_LOCK = b"\xee\x95\x98".decode("utf-8") # U+e558
  986. ICON_FA_PLANE_SLASH = b"\xee\x81\xa9".decode("utf-8") # U+e069
  987. ICON_FA_PLANE_UP = b"\xee\x88\xad".decode("utf-8") # U+e22d
  988. ICON_FA_PLANT_WILT = b"\xee\x96\xaa".decode("utf-8") # U+e5aa
  989. ICON_FA_PLATE_WHEAT = b"\xee\x95\x9a".decode("utf-8") # U+e55a
  990. ICON_FA_PLAY = b"\xef\x81\x8b".decode("utf-8") # U+f04b
  991. ICON_FA_PLUG = b"\xef\x87\xa6".decode("utf-8") # U+f1e6
  992. ICON_FA_PLUG_CIRCLE_BOLT = b"\xee\x95\x9b".decode("utf-8") # U+e55b
  993. ICON_FA_PLUG_CIRCLE_CHECK = b"\xee\x95\x9c".decode("utf-8") # U+e55c
  994. ICON_FA_PLUG_CIRCLE_EXCLAMATION = b"\xee\x95\x9d".decode("utf-8") # U+e55d
  995. ICON_FA_PLUG_CIRCLE_MINUS = b"\xee\x95\x9e".decode("utf-8") # U+e55e
  996. ICON_FA_PLUG_CIRCLE_PLUS = b"\xee\x95\x9f".decode("utf-8") # U+e55f
  997. ICON_FA_PLUG_CIRCLE_XMARK = b"\xee\x95\xa0".decode("utf-8") # U+e560
  998. ICON_FA_PLUS = b"+".decode("utf-8") # U+002b
  999. ICON_FA_PLUS_MINUS = b"\xee\x90\xbc".decode("utf-8") # U+e43c
  1000. ICON_FA_PODCAST = b"\xef\x8b\x8e".decode("utf-8") # U+f2ce
  1001. ICON_FA_POO = b"\xef\x8b\xbe".decode("utf-8") # U+f2fe
  1002. ICON_FA_POO_STORM = b"\xef\x9d\x9a".decode("utf-8") # U+f75a
  1003. ICON_FA_POOP = b"\xef\x98\x99".decode("utf-8") # U+f619
  1004. ICON_FA_POWER_OFF = b"\xef\x80\x91".decode("utf-8") # U+f011
  1005. ICON_FA_PRESCRIPTION = b"\xef\x96\xb1".decode("utf-8") # U+f5b1
  1006. ICON_FA_PRESCRIPTION_BOTTLE = b"\xef\x92\x85".decode("utf-8") # U+f485
  1007. ICON_FA_PRESCRIPTION_BOTTLE_MEDICAL = b"\xef\x92\x86".decode("utf-8") # U+f486
  1008. ICON_FA_PRINT = b"\xef\x80\xaf".decode("utf-8") # U+f02f
  1009. ICON_FA_PUMP_MEDICAL = b"\xee\x81\xaa".decode("utf-8") # U+e06a
  1010. ICON_FA_PUMP_SOAP = b"\xee\x81\xab".decode("utf-8") # U+e06b
  1011. ICON_FA_PUZZLE_PIECE = b"\xef\x84\xae".decode("utf-8") # U+f12e
  1012. ICON_FA_Q = b"Q".decode("utf-8") # U+0051
  1013. ICON_FA_QRCODE = b"\xef\x80\xa9".decode("utf-8") # U+f029
  1014. ICON_FA_QUESTION = b"?".decode("utf-8") # U+003f
  1015. ICON_FA_QUOTE_LEFT = b"\xef\x84\x8d".decode("utf-8") # U+f10d
  1016. ICON_FA_QUOTE_RIGHT = b"\xef\x84\x8e".decode("utf-8") # U+f10e
  1017. ICON_FA_R = b"R".decode("utf-8") # U+0052
  1018. ICON_FA_RADIATION = b"\xef\x9e\xb9".decode("utf-8") # U+f7b9
  1019. ICON_FA_RADIO = b"\xef\xa3\x97".decode("utf-8") # U+f8d7
  1020. ICON_FA_RAINBOW = b"\xef\x9d\x9b".decode("utf-8") # U+f75b
  1021. ICON_FA_RANKING_STAR = b"\xee\x95\xa1".decode("utf-8") # U+e561
  1022. ICON_FA_RECEIPT = b"\xef\x95\x83".decode("utf-8") # U+f543
  1023. ICON_FA_RECORD_VINYL = b"\xef\xa3\x99".decode("utf-8") # U+f8d9
  1024. ICON_FA_RECTANGLE_AD = b"\xef\x99\x81".decode("utf-8") # U+f641
  1025. ICON_FA_RECTANGLE_LIST = b"\xef\x80\xa2".decode("utf-8") # U+f022
  1026. ICON_FA_RECTANGLE_XMARK = b"\xef\x90\x90".decode("utf-8") # U+f410
  1027. ICON_FA_RECYCLE = b"\xef\x86\xb8".decode("utf-8") # U+f1b8
  1028. ICON_FA_REGISTERED = b"\xef\x89\x9d".decode("utf-8") # U+f25d
  1029. ICON_FA_REPEAT = b"\xef\x8d\xa3".decode("utf-8") # U+f363
  1030. ICON_FA_REPLY = b"\xef\x8f\xa5".decode("utf-8") # U+f3e5
  1031. ICON_FA_REPLY_ALL = b"\xef\x84\xa2".decode("utf-8") # U+f122
  1032. ICON_FA_REPUBLICAN = b"\xef\x9d\x9e".decode("utf-8") # U+f75e
  1033. ICON_FA_RESTROOM = b"\xef\x9e\xbd".decode("utf-8") # U+f7bd
  1034. ICON_FA_RETWEET = b"\xef\x81\xb9".decode("utf-8") # U+f079
  1035. ICON_FA_RIBBON = b"\xef\x93\x96".decode("utf-8") # U+f4d6
  1036. ICON_FA_RIGHT_FROM_BRACKET = b"\xef\x8b\xb5".decode("utf-8") # U+f2f5
  1037. ICON_FA_RIGHT_LEFT = b"\xef\x8d\xa2".decode("utf-8") # U+f362
  1038. ICON_FA_RIGHT_LONG = b"\xef\x8c\x8b".decode("utf-8") # U+f30b
  1039. ICON_FA_RIGHT_TO_BRACKET = b"\xef\x8b\xb6".decode("utf-8") # U+f2f6
  1040. ICON_FA_RING = b"\xef\x9c\x8b".decode("utf-8") # U+f70b
  1041. ICON_FA_ROAD = b"\xef\x80\x98".decode("utf-8") # U+f018
  1042. ICON_FA_ROAD_BARRIER = b"\xee\x95\xa2".decode("utf-8") # U+e562
  1043. ICON_FA_ROAD_BRIDGE = b"\xee\x95\xa3".decode("utf-8") # U+e563
  1044. ICON_FA_ROAD_CIRCLE_CHECK = b"\xee\x95\xa4".decode("utf-8") # U+e564
  1045. ICON_FA_ROAD_CIRCLE_EXCLAMATION = b"\xee\x95\xa5".decode("utf-8") # U+e565
  1046. ICON_FA_ROAD_CIRCLE_XMARK = b"\xee\x95\xa6".decode("utf-8") # U+e566
  1047. ICON_FA_ROAD_LOCK = b"\xee\x95\xa7".decode("utf-8") # U+e567
  1048. ICON_FA_ROAD_SPIKES = b"\xee\x95\xa8".decode("utf-8") # U+e568
  1049. ICON_FA_ROBOT = b"\xef\x95\x84".decode("utf-8") # U+f544
  1050. ICON_FA_ROCKET = b"\xef\x84\xb5".decode("utf-8") # U+f135
  1051. ICON_FA_ROTATE = b"\xef\x8b\xb1".decode("utf-8") # U+f2f1
  1052. ICON_FA_ROTATE_LEFT = b"\xef\x8b\xaa".decode("utf-8") # U+f2ea
  1053. ICON_FA_ROTATE_RIGHT = b"\xef\x8b\xb9".decode("utf-8") # U+f2f9
  1054. ICON_FA_ROUTE = b"\xef\x93\x97".decode("utf-8") # U+f4d7
  1055. ICON_FA_RSS = b"\xef\x82\x9e".decode("utf-8") # U+f09e
  1056. ICON_FA_RUBLE_SIGN = b"\xef\x85\x98".decode("utf-8") # U+f158
  1057. ICON_FA_RUG = b"\xee\x95\xa9".decode("utf-8") # U+e569
  1058. ICON_FA_RULER = b"\xef\x95\x85".decode("utf-8") # U+f545
  1059. ICON_FA_RULER_COMBINED = b"\xef\x95\x86".decode("utf-8") # U+f546
  1060. ICON_FA_RULER_HORIZONTAL = b"\xef\x95\x87".decode("utf-8") # U+f547
  1061. ICON_FA_RULER_VERTICAL = b"\xef\x95\x88".decode("utf-8") # U+f548
  1062. ICON_FA_RUPEE_SIGN = b"\xef\x85\x96".decode("utf-8") # U+f156
  1063. ICON_FA_RUPIAH_SIGN = b"\xee\x88\xbd".decode("utf-8") # U+e23d
  1064. ICON_FA_S = b"S".decode("utf-8") # U+0053
  1065. ICON_FA_SACK_DOLLAR = b"\xef\xa0\x9d".decode("utf-8") # U+f81d
  1066. ICON_FA_SACK_XMARK = b"\xee\x95\xaa".decode("utf-8") # U+e56a
  1067. ICON_FA_SAILBOAT = b"\xee\x91\x85".decode("utf-8") # U+e445
  1068. ICON_FA_SATELLITE = b"\xef\x9e\xbf".decode("utf-8") # U+f7bf
  1069. ICON_FA_SATELLITE_DISH = b"\xef\x9f\x80".decode("utf-8") # U+f7c0
  1070. ICON_FA_SCALE_BALANCED = b"\xef\x89\x8e".decode("utf-8") # U+f24e
  1071. ICON_FA_SCALE_UNBALANCED = b"\xef\x94\x95".decode("utf-8") # U+f515
  1072. ICON_FA_SCALE_UNBALANCED_FLIP = b"\xef\x94\x96".decode("utf-8") # U+f516
  1073. ICON_FA_SCHOOL = b"\xef\x95\x89".decode("utf-8") # U+f549
  1074. ICON_FA_SCHOOL_CIRCLE_CHECK = b"\xee\x95\xab".decode("utf-8") # U+e56b
  1075. ICON_FA_SCHOOL_CIRCLE_EXCLAMATION = b"\xee\x95\xac".decode("utf-8") # U+e56c
  1076. ICON_FA_SCHOOL_CIRCLE_XMARK = b"\xee\x95\xad".decode("utf-8") # U+e56d
  1077. ICON_FA_SCHOOL_FLAG = b"\xee\x95\xae".decode("utf-8") # U+e56e
  1078. ICON_FA_SCHOOL_LOCK = b"\xee\x95\xaf".decode("utf-8") # U+e56f
  1079. ICON_FA_SCISSORS = b"\xef\x83\x84".decode("utf-8") # U+f0c4
  1080. ICON_FA_SCREWDRIVER = b"\xef\x95\x8a".decode("utf-8") # U+f54a
  1081. ICON_FA_SCREWDRIVER_WRENCH = b"\xef\x9f\x99".decode("utf-8") # U+f7d9
  1082. ICON_FA_SCROLL = b"\xef\x9c\x8e".decode("utf-8") # U+f70e
  1083. ICON_FA_SCROLL_TORAH = b"\xef\x9a\xa0".decode("utf-8") # U+f6a0
  1084. ICON_FA_SD_CARD = b"\xef\x9f\x82".decode("utf-8") # U+f7c2
  1085. ICON_FA_SECTION = b"\xee\x91\x87".decode("utf-8") # U+e447
  1086. ICON_FA_SEEDLING = b"\xef\x93\x98".decode("utf-8") # U+f4d8
  1087. ICON_FA_SERVER = b"\xef\x88\xb3".decode("utf-8") # U+f233
  1088. ICON_FA_SHAPES = b"\xef\x98\x9f".decode("utf-8") # U+f61f
  1089. ICON_FA_SHARE = b"\xef\x81\xa4".decode("utf-8") # U+f064
  1090. ICON_FA_SHARE_FROM_SQUARE = b"\xef\x85\x8d".decode("utf-8") # U+f14d
  1091. ICON_FA_SHARE_NODES = b"\xef\x87\xa0".decode("utf-8") # U+f1e0
  1092. ICON_FA_SHEET_PLASTIC = b"\xee\x95\xb1".decode("utf-8") # U+e571
  1093. ICON_FA_SHEKEL_SIGN = b"\xef\x88\x8b".decode("utf-8") # U+f20b
  1094. ICON_FA_SHIELD = b"\xef\x84\xb2".decode("utf-8") # U+f132
  1095. ICON_FA_SHIELD_CAT = b"\xee\x95\xb2".decode("utf-8") # U+e572
  1096. ICON_FA_SHIELD_DOG = b"\xee\x95\xb3".decode("utf-8") # U+e573
  1097. ICON_FA_SHIELD_HALVED = b"\xef\x8f\xad".decode("utf-8") # U+f3ed
  1098. ICON_FA_SHIELD_HEART = b"\xee\x95\xb4".decode("utf-8") # U+e574
  1099. ICON_FA_SHIELD_VIRUS = b"\xee\x81\xac".decode("utf-8") # U+e06c
  1100. ICON_FA_SHIP = b"\xef\x88\x9a".decode("utf-8") # U+f21a
  1101. ICON_FA_SHIRT = b"\xef\x95\x93".decode("utf-8") # U+f553
  1102. ICON_FA_SHOE_PRINTS = b"\xef\x95\x8b".decode("utf-8") # U+f54b
  1103. ICON_FA_SHOP = b"\xef\x95\x8f".decode("utf-8") # U+f54f
  1104. ICON_FA_SHOP_LOCK = b"\xee\x92\xa5".decode("utf-8") # U+e4a5
  1105. ICON_FA_SHOP_SLASH = b"\xee\x81\xb0".decode("utf-8") # U+e070
  1106. ICON_FA_SHOWER = b"\xef\x8b\x8c".decode("utf-8") # U+f2cc
  1107. ICON_FA_SHRIMP = b"\xee\x91\x88".decode("utf-8") # U+e448
  1108. ICON_FA_SHUFFLE = b"\xef\x81\xb4".decode("utf-8") # U+f074
  1109. ICON_FA_SHUTTLE_SPACE = b"\xef\x86\x97".decode("utf-8") # U+f197
  1110. ICON_FA_SIGN_HANGING = b"\xef\x93\x99".decode("utf-8") # U+f4d9
  1111. ICON_FA_SIGNAL = b"\xef\x80\x92".decode("utf-8") # U+f012
  1112. ICON_FA_SIGNATURE = b"\xef\x96\xb7".decode("utf-8") # U+f5b7
  1113. ICON_FA_SIGNS_POST = b"\xef\x89\xb7".decode("utf-8") # U+f277
  1114. ICON_FA_SIM_CARD = b"\xef\x9f\x84".decode("utf-8") # U+f7c4
  1115. ICON_FA_SINK = b"\xee\x81\xad".decode("utf-8") # U+e06d
  1116. ICON_FA_SITEMAP = b"\xef\x83\xa8".decode("utf-8") # U+f0e8
  1117. ICON_FA_SKULL = b"\xef\x95\x8c".decode("utf-8") # U+f54c
  1118. ICON_FA_SKULL_CROSSBONES = b"\xef\x9c\x94".decode("utf-8") # U+f714
  1119. ICON_FA_SLASH = b"\xef\x9c\x95".decode("utf-8") # U+f715
  1120. ICON_FA_SLEIGH = b"\xef\x9f\x8c".decode("utf-8") # U+f7cc
  1121. ICON_FA_SLIDERS = b"\xef\x87\x9e".decode("utf-8") # U+f1de
  1122. ICON_FA_SMOG = b"\xef\x9d\x9f".decode("utf-8") # U+f75f
  1123. ICON_FA_SMOKING = b"\xef\x92\x8d".decode("utf-8") # U+f48d
  1124. ICON_FA_SNOWFLAKE = b"\xef\x8b\x9c".decode("utf-8") # U+f2dc
  1125. ICON_FA_SNOWMAN = b"\xef\x9f\x90".decode("utf-8") # U+f7d0
  1126. ICON_FA_SNOWPLOW = b"\xef\x9f\x92".decode("utf-8") # U+f7d2
  1127. ICON_FA_SOAP = b"\xee\x81\xae".decode("utf-8") # U+e06e
  1128. ICON_FA_SOCKS = b"\xef\x9a\x96".decode("utf-8") # U+f696
  1129. ICON_FA_SOLAR_PANEL = b"\xef\x96\xba".decode("utf-8") # U+f5ba
  1130. ICON_FA_SORT = b"\xef\x83\x9c".decode("utf-8") # U+f0dc
  1131. ICON_FA_SORT_DOWN = b"\xef\x83\x9d".decode("utf-8") # U+f0dd
  1132. ICON_FA_SORT_UP = b"\xef\x83\x9e".decode("utf-8") # U+f0de
  1133. ICON_FA_SPA = b"\xef\x96\xbb".decode("utf-8") # U+f5bb
  1134. ICON_FA_SPAGHETTI_MONSTER_FLYING = b"\xef\x99\xbb".decode("utf-8") # U+f67b
  1135. ICON_FA_SPELL_CHECK = b"\xef\xa2\x91".decode("utf-8") # U+f891
  1136. ICON_FA_SPIDER = b"\xef\x9c\x97".decode("utf-8") # U+f717
  1137. ICON_FA_SPINNER = b"\xef\x84\x90".decode("utf-8") # U+f110
  1138. ICON_FA_SPLOTCH = b"\xef\x96\xbc".decode("utf-8") # U+f5bc
  1139. ICON_FA_SPOON = b"\xef\x8b\xa5".decode("utf-8") # U+f2e5
  1140. ICON_FA_SPRAY_CAN = b"\xef\x96\xbd".decode("utf-8") # U+f5bd
  1141. ICON_FA_SPRAY_CAN_SPARKLES = b"\xef\x97\x90".decode("utf-8") # U+f5d0
  1142. ICON_FA_SQUARE = b"\xef\x83\x88".decode("utf-8") # U+f0c8
  1143. ICON_FA_SQUARE_ARROW_UP_RIGHT = b"\xef\x85\x8c".decode("utf-8") # U+f14c
  1144. ICON_FA_SQUARE_CARET_DOWN = b"\xef\x85\x90".decode("utf-8") # U+f150
  1145. ICON_FA_SQUARE_CARET_LEFT = b"\xef\x86\x91".decode("utf-8") # U+f191
  1146. ICON_FA_SQUARE_CARET_RIGHT = b"\xef\x85\x92".decode("utf-8") # U+f152
  1147. ICON_FA_SQUARE_CARET_UP = b"\xef\x85\x91".decode("utf-8") # U+f151
  1148. ICON_FA_SQUARE_CHECK = b"\xef\x85\x8a".decode("utf-8") # U+f14a
  1149. ICON_FA_SQUARE_ENVELOPE = b"\xef\x86\x99".decode("utf-8") # U+f199
  1150. ICON_FA_SQUARE_FULL = b"\xef\x91\x9c".decode("utf-8") # U+f45c
  1151. ICON_FA_SQUARE_H = b"\xef\x83\xbd".decode("utf-8") # U+f0fd
  1152. ICON_FA_SQUARE_MINUS = b"\xef\x85\x86".decode("utf-8") # U+f146
  1153. ICON_FA_SQUARE_NFI = b"\xee\x95\xb6".decode("utf-8") # U+e576
  1154. ICON_FA_SQUARE_PARKING = b"\xef\x95\x80".decode("utf-8") # U+f540
  1155. ICON_FA_SQUARE_PEN = b"\xef\x85\x8b".decode("utf-8") # U+f14b
  1156. ICON_FA_SQUARE_PERSON_CONFINED = b"\xee\x95\xb7".decode("utf-8") # U+e577
  1157. ICON_FA_SQUARE_PHONE = b"\xef\x82\x98".decode("utf-8") # U+f098
  1158. ICON_FA_SQUARE_PHONE_FLIP = b"\xef\xa1\xbb".decode("utf-8") # U+f87b
  1159. ICON_FA_SQUARE_PLUS = b"\xef\x83\xbe".decode("utf-8") # U+f0fe
  1160. ICON_FA_SQUARE_POLL_HORIZONTAL = b"\xef\x9a\x82".decode("utf-8") # U+f682
  1161. ICON_FA_SQUARE_POLL_VERTICAL = b"\xef\x9a\x81".decode("utf-8") # U+f681
  1162. ICON_FA_SQUARE_ROOT_VARIABLE = b"\xef\x9a\x98".decode("utf-8") # U+f698
  1163. ICON_FA_SQUARE_RSS = b"\xef\x85\x83".decode("utf-8") # U+f143
  1164. ICON_FA_SQUARE_SHARE_NODES = b"\xef\x87\xa1".decode("utf-8") # U+f1e1
  1165. ICON_FA_SQUARE_UP_RIGHT = b"\xef\x8d\xa0".decode("utf-8") # U+f360
  1166. ICON_FA_SQUARE_VIRUS = b"\xee\x95\xb8".decode("utf-8") # U+e578
  1167. ICON_FA_SQUARE_XMARK = b"\xef\x8b\x93".decode("utf-8") # U+f2d3
  1168. ICON_FA_STAFF_SNAKE = b"\xee\x95\xb9".decode("utf-8") # U+e579
  1169. ICON_FA_STAIRS = b"\xee\x8a\x89".decode("utf-8") # U+e289
  1170. ICON_FA_STAMP = b"\xef\x96\xbf".decode("utf-8") # U+f5bf
  1171. ICON_FA_STAPLER = b"\xee\x96\xaf".decode("utf-8") # U+e5af
  1172. ICON_FA_STAR = b"\xef\x80\x85".decode("utf-8") # U+f005
  1173. ICON_FA_STAR_AND_CRESCENT = b"\xef\x9a\x99".decode("utf-8") # U+f699
  1174. ICON_FA_STAR_HALF = b"\xef\x82\x89".decode("utf-8") # U+f089
  1175. ICON_FA_STAR_HALF_STROKE = b"\xef\x97\x80".decode("utf-8") # U+f5c0
  1176. ICON_FA_STAR_OF_DAVID = b"\xef\x9a\x9a".decode("utf-8") # U+f69a
  1177. ICON_FA_STAR_OF_LIFE = b"\xef\x98\xa1".decode("utf-8") # U+f621
  1178. ICON_FA_STERLING_SIGN = b"\xef\x85\x94".decode("utf-8") # U+f154
  1179. ICON_FA_STETHOSCOPE = b"\xef\x83\xb1".decode("utf-8") # U+f0f1
  1180. ICON_FA_STOP = b"\xef\x81\x8d".decode("utf-8") # U+f04d
  1181. ICON_FA_STOPWATCH = b"\xef\x8b\xb2".decode("utf-8") # U+f2f2
  1182. ICON_FA_STOPWATCH_20 = b"\xee\x81\xaf".decode("utf-8") # U+e06f
  1183. ICON_FA_STORE = b"\xef\x95\x8e".decode("utf-8") # U+f54e
  1184. ICON_FA_STORE_SLASH = b"\xee\x81\xb1".decode("utf-8") # U+e071
  1185. ICON_FA_STREET_VIEW = b"\xef\x88\x9d".decode("utf-8") # U+f21d
  1186. ICON_FA_STRIKETHROUGH = b"\xef\x83\x8c".decode("utf-8") # U+f0cc
  1187. ICON_FA_STROOPWAFEL = b"\xef\x95\x91".decode("utf-8") # U+f551
  1188. ICON_FA_SUBSCRIPT = b"\xef\x84\xac".decode("utf-8") # U+f12c
  1189. ICON_FA_SUITCASE = b"\xef\x83\xb2".decode("utf-8") # U+f0f2
  1190. ICON_FA_SUITCASE_MEDICAL = b"\xef\x83\xba".decode("utf-8") # U+f0fa
  1191. ICON_FA_SUITCASE_ROLLING = b"\xef\x97\x81".decode("utf-8") # U+f5c1
  1192. ICON_FA_SUN = b"\xef\x86\x85".decode("utf-8") # U+f185
  1193. ICON_FA_SUN_PLANT_WILT = b"\xee\x95\xba".decode("utf-8") # U+e57a
  1194. ICON_FA_SUPERSCRIPT = b"\xef\x84\xab".decode("utf-8") # U+f12b
  1195. ICON_FA_SWATCHBOOK = b"\xef\x97\x83".decode("utf-8") # U+f5c3
  1196. ICON_FA_SYNAGOGUE = b"\xef\x9a\x9b".decode("utf-8") # U+f69b
  1197. ICON_FA_SYRINGE = b"\xef\x92\x8e".decode("utf-8") # U+f48e
  1198. ICON_FA_T = b"T".decode("utf-8") # U+0054
  1199. ICON_FA_TABLE = b"\xef\x83\x8e".decode("utf-8") # U+f0ce
  1200. ICON_FA_TABLE_CELLS = b"\xef\x80\x8a".decode("utf-8") # U+f00a
  1201. ICON_FA_TABLE_CELLS_LARGE = b"\xef\x80\x89".decode("utf-8") # U+f009
  1202. ICON_FA_TABLE_COLUMNS = b"\xef\x83\x9b".decode("utf-8") # U+f0db
  1203. ICON_FA_TABLE_LIST = b"\xef\x80\x8b".decode("utf-8") # U+f00b
  1204. ICON_FA_TABLE_TENNIS_PADDLE_BALL = b"\xef\x91\x9d".decode("utf-8") # U+f45d
  1205. ICON_FA_TABLET = b"\xef\x8f\xbb".decode("utf-8") # U+f3fb
  1206. ICON_FA_TABLET_BUTTON = b"\xef\x84\x8a".decode("utf-8") # U+f10a
  1207. ICON_FA_TABLET_SCREEN_BUTTON = b"\xef\x8f\xba".decode("utf-8") # U+f3fa
  1208. ICON_FA_TABLETS = b"\xef\x92\x90".decode("utf-8") # U+f490
  1209. ICON_FA_TACHOGRAPH_DIGITAL = b"\xef\x95\xa6".decode("utf-8") # U+f566
  1210. ICON_FA_TAG = b"\xef\x80\xab".decode("utf-8") # U+f02b
  1211. ICON_FA_TAGS = b"\xef\x80\xac".decode("utf-8") # U+f02c
  1212. ICON_FA_TAPE = b"\xef\x93\x9b".decode("utf-8") # U+f4db
  1213. ICON_FA_TARP = b"\xee\x95\xbb".decode("utf-8") # U+e57b
  1214. ICON_FA_TARP_DROPLET = b"\xee\x95\xbc".decode("utf-8") # U+e57c
  1215. ICON_FA_TAXI = b"\xef\x86\xba".decode("utf-8") # U+f1ba
  1216. ICON_FA_TEETH = b"\xef\x98\xae".decode("utf-8") # U+f62e
  1217. ICON_FA_TEETH_OPEN = b"\xef\x98\xaf".decode("utf-8") # U+f62f
  1218. ICON_FA_TEMPERATURE_ARROW_DOWN = b"\xee\x80\xbf".decode("utf-8") # U+e03f
  1219. ICON_FA_TEMPERATURE_ARROW_UP = b"\xee\x81\x80".decode("utf-8") # U+e040
  1220. ICON_FA_TEMPERATURE_EMPTY = b"\xef\x8b\x8b".decode("utf-8") # U+f2cb
  1221. ICON_FA_TEMPERATURE_FULL = b"\xef\x8b\x87".decode("utf-8") # U+f2c7
  1222. ICON_FA_TEMPERATURE_HALF = b"\xef\x8b\x89".decode("utf-8") # U+f2c9
  1223. ICON_FA_TEMPERATURE_HIGH = b"\xef\x9d\xa9".decode("utf-8") # U+f769
  1224. ICON_FA_TEMPERATURE_LOW = b"\xef\x9d\xab".decode("utf-8") # U+f76b
  1225. ICON_FA_TEMPERATURE_QUARTER = b"\xef\x8b\x8a".decode("utf-8") # U+f2ca
  1226. ICON_FA_TEMPERATURE_THREE_QUARTERS = b"\xef\x8b\x88".decode("utf-8") # U+f2c8
  1227. ICON_FA_TENGE_SIGN = b"\xef\x9f\x97".decode("utf-8") # U+f7d7
  1228. ICON_FA_TENT = b"\xee\x95\xbd".decode("utf-8") # U+e57d
  1229. ICON_FA_TENT_ARROW_DOWN_TO_LINE = b"\xee\x95\xbe".decode("utf-8") # U+e57e
  1230. ICON_FA_TENT_ARROW_LEFT_RIGHT = b"\xee\x95\xbf".decode("utf-8") # U+e57f
  1231. ICON_FA_TENT_ARROW_TURN_LEFT = b"\xee\x96\x80".decode("utf-8") # U+e580
  1232. ICON_FA_TENT_ARROWS_DOWN = b"\xee\x96\x81".decode("utf-8") # U+e581
  1233. ICON_FA_TENTS = b"\xee\x96\x82".decode("utf-8") # U+e582
  1234. ICON_FA_TERMINAL = b"\xef\x84\xa0".decode("utf-8") # U+f120
  1235. ICON_FA_TEXT_HEIGHT = b"\xef\x80\xb4".decode("utf-8") # U+f034
  1236. ICON_FA_TEXT_SLASH = b"\xef\xa1\xbd".decode("utf-8") # U+f87d
  1237. ICON_FA_TEXT_WIDTH = b"\xef\x80\xb5".decode("utf-8") # U+f035
  1238. ICON_FA_THERMOMETER = b"\xef\x92\x91".decode("utf-8") # U+f491
  1239. ICON_FA_THUMBS_DOWN = b"\xef\x85\xa5".decode("utf-8") # U+f165
  1240. ICON_FA_THUMBS_UP = b"\xef\x85\xa4".decode("utf-8") # U+f164
  1241. ICON_FA_THUMBTACK = b"\xef\x82\x8d".decode("utf-8") # U+f08d
  1242. ICON_FA_TICKET = b"\xef\x85\x85".decode("utf-8") # U+f145
  1243. ICON_FA_TICKET_SIMPLE = b"\xef\x8f\xbf".decode("utf-8") # U+f3ff
  1244. ICON_FA_TIMELINE = b"\xee\x8a\x9c".decode("utf-8") # U+e29c
  1245. ICON_FA_TOGGLE_OFF = b"\xef\x88\x84".decode("utf-8") # U+f204
  1246. ICON_FA_TOGGLE_ON = b"\xef\x88\x85".decode("utf-8") # U+f205
  1247. ICON_FA_TOILET = b"\xef\x9f\x98".decode("utf-8") # U+f7d8
  1248. ICON_FA_TOILET_PAPER = b"\xef\x9c\x9e".decode("utf-8") # U+f71e
  1249. ICON_FA_TOILET_PAPER_SLASH = b"\xee\x81\xb2".decode("utf-8") # U+e072
  1250. ICON_FA_TOILET_PORTABLE = b"\xee\x96\x83".decode("utf-8") # U+e583
  1251. ICON_FA_TOILETS_PORTABLE = b"\xee\x96\x84".decode("utf-8") # U+e584
  1252. ICON_FA_TOOLBOX = b"\xef\x95\x92".decode("utf-8") # U+f552
  1253. ICON_FA_TOOTH = b"\xef\x97\x89".decode("utf-8") # U+f5c9
  1254. ICON_FA_TORII_GATE = b"\xef\x9a\xa1".decode("utf-8") # U+f6a1
  1255. ICON_FA_TORNADO = b"\xef\x9d\xaf".decode("utf-8") # U+f76f
  1256. ICON_FA_TOWER_BROADCAST = b"\xef\x94\x99".decode("utf-8") # U+f519
  1257. ICON_FA_TOWER_CELL = b"\xee\x96\x85".decode("utf-8") # U+e585
  1258. ICON_FA_TOWER_OBSERVATION = b"\xee\x96\x86".decode("utf-8") # U+e586
  1259. ICON_FA_TRACTOR = b"\xef\x9c\xa2".decode("utf-8") # U+f722
  1260. ICON_FA_TRADEMARK = b"\xef\x89\x9c".decode("utf-8") # U+f25c
  1261. ICON_FA_TRAFFIC_LIGHT = b"\xef\x98\xb7".decode("utf-8") # U+f637
  1262. ICON_FA_TRAILER = b"\xee\x81\x81".decode("utf-8") # U+e041
  1263. ICON_FA_TRAIN = b"\xef\x88\xb8".decode("utf-8") # U+f238
  1264. ICON_FA_TRAIN_SUBWAY = b"\xef\x88\xb9".decode("utf-8") # U+f239
  1265. ICON_FA_TRAIN_TRAM = b"\xee\x96\xb4".decode("utf-8") # U+e5b4
  1266. ICON_FA_TRANSGENDER = b"\xef\x88\xa5".decode("utf-8") # U+f225
  1267. ICON_FA_TRASH = b"\xef\x87\xb8".decode("utf-8") # U+f1f8
  1268. ICON_FA_TRASH_ARROW_UP = b"\xef\xa0\xa9".decode("utf-8") # U+f829
  1269. ICON_FA_TRASH_CAN = b"\xef\x8b\xad".decode("utf-8") # U+f2ed
  1270. ICON_FA_TRASH_CAN_ARROW_UP = b"\xef\xa0\xaa".decode("utf-8") # U+f82a
  1271. ICON_FA_TREE = b"\xef\x86\xbb".decode("utf-8") # U+f1bb
  1272. ICON_FA_TREE_CITY = b"\xee\x96\x87".decode("utf-8") # U+e587
  1273. ICON_FA_TRIANGLE_EXCLAMATION = b"\xef\x81\xb1".decode("utf-8") # U+f071
  1274. ICON_FA_TROPHY = b"\xef\x82\x91".decode("utf-8") # U+f091
  1275. ICON_FA_TROWEL = b"\xee\x96\x89".decode("utf-8") # U+e589
  1276. ICON_FA_TROWEL_BRICKS = b"\xee\x96\x8a".decode("utf-8") # U+e58a
  1277. ICON_FA_TRUCK = b"\xef\x83\x91".decode("utf-8") # U+f0d1
  1278. ICON_FA_TRUCK_ARROW_RIGHT = b"\xee\x96\x8b".decode("utf-8") # U+e58b
  1279. ICON_FA_TRUCK_DROPLET = b"\xee\x96\x8c".decode("utf-8") # U+e58c
  1280. ICON_FA_TRUCK_FAST = b"\xef\x92\x8b".decode("utf-8") # U+f48b
  1281. ICON_FA_TRUCK_FIELD = b"\xee\x96\x8d".decode("utf-8") # U+e58d
  1282. ICON_FA_TRUCK_FIELD_UN = b"\xee\x96\x8e".decode("utf-8") # U+e58e
  1283. ICON_FA_TRUCK_FRONT = b"\xee\x8a\xb7".decode("utf-8") # U+e2b7
  1284. ICON_FA_TRUCK_MEDICAL = b"\xef\x83\xb9".decode("utf-8") # U+f0f9
  1285. ICON_FA_TRUCK_MONSTER = b"\xef\x98\xbb".decode("utf-8") # U+f63b
  1286. ICON_FA_TRUCK_MOVING = b"\xef\x93\x9f".decode("utf-8") # U+f4df
  1287. ICON_FA_TRUCK_PICKUP = b"\xef\x98\xbc".decode("utf-8") # U+f63c
  1288. ICON_FA_TRUCK_PLANE = b"\xee\x96\x8f".decode("utf-8") # U+e58f
  1289. ICON_FA_TRUCK_RAMP_BOX = b"\xef\x93\x9e".decode("utf-8") # U+f4de
  1290. ICON_FA_TTY = b"\xef\x87\xa4".decode("utf-8") # U+f1e4
  1291. ICON_FA_TURKISH_LIRA_SIGN = b"\xee\x8a\xbb".decode("utf-8") # U+e2bb
  1292. ICON_FA_TURN_DOWN = b"\xef\x8e\xbe".decode("utf-8") # U+f3be
  1293. ICON_FA_TURN_UP = b"\xef\x8e\xbf".decode("utf-8") # U+f3bf
  1294. ICON_FA_TV = b"\xef\x89\xac".decode("utf-8") # U+f26c
  1295. ICON_FA_U = b"U".decode("utf-8") # U+0055
  1296. ICON_FA_UMBRELLA = b"\xef\x83\xa9".decode("utf-8") # U+f0e9
  1297. ICON_FA_UMBRELLA_BEACH = b"\xef\x97\x8a".decode("utf-8") # U+f5ca
  1298. ICON_FA_UNDERLINE = b"\xef\x83\x8d".decode("utf-8") # U+f0cd
  1299. ICON_FA_UNIVERSAL_ACCESS = b"\xef\x8a\x9a".decode("utf-8") # U+f29a
  1300. ICON_FA_UNLOCK = b"\xef\x82\x9c".decode("utf-8") # U+f09c
  1301. ICON_FA_UNLOCK_KEYHOLE = b"\xef\x84\xbe".decode("utf-8") # U+f13e
  1302. ICON_FA_UP_DOWN = b"\xef\x8c\xb8".decode("utf-8") # U+f338
  1303. ICON_FA_UP_DOWN_LEFT_RIGHT = b"\xef\x82\xb2".decode("utf-8") # U+f0b2
  1304. ICON_FA_UP_LONG = b"\xef\x8c\x8c".decode("utf-8") # U+f30c
  1305. ICON_FA_UP_RIGHT_AND_DOWN_LEFT_FROM_CENTER = b"\xef\x90\xa4".decode("utf-8") # U+f424
  1306. ICON_FA_UP_RIGHT_FROM_SQUARE = b"\xef\x8d\x9d".decode("utf-8") # U+f35d
  1307. ICON_FA_UPLOAD = b"\xef\x82\x93".decode("utf-8") # U+f093
  1308. ICON_FA_USER = b"\xef\x80\x87".decode("utf-8") # U+f007
  1309. ICON_FA_USER_ASTRONAUT = b"\xef\x93\xbb".decode("utf-8") # U+f4fb
  1310. ICON_FA_USER_CHECK = b"\xef\x93\xbc".decode("utf-8") # U+f4fc
  1311. ICON_FA_USER_CLOCK = b"\xef\x93\xbd".decode("utf-8") # U+f4fd
  1312. ICON_FA_USER_DOCTOR = b"\xef\x83\xb0".decode("utf-8") # U+f0f0
  1313. ICON_FA_USER_GEAR = b"\xef\x93\xbe".decode("utf-8") # U+f4fe
  1314. ICON_FA_USER_GRADUATE = b"\xef\x94\x81".decode("utf-8") # U+f501
  1315. ICON_FA_USER_GROUP = b"\xef\x94\x80".decode("utf-8") # U+f500
  1316. ICON_FA_USER_INJURED = b"\xef\x9c\xa8".decode("utf-8") # U+f728
  1317. ICON_FA_USER_LARGE = b"\xef\x90\x86".decode("utf-8") # U+f406
  1318. ICON_FA_USER_LARGE_SLASH = b"\xef\x93\xba".decode("utf-8") # U+f4fa
  1319. ICON_FA_USER_LOCK = b"\xef\x94\x82".decode("utf-8") # U+f502
  1320. ICON_FA_USER_MINUS = b"\xef\x94\x83".decode("utf-8") # U+f503
  1321. ICON_FA_USER_NINJA = b"\xef\x94\x84".decode("utf-8") # U+f504
  1322. ICON_FA_USER_NURSE = b"\xef\xa0\xaf".decode("utf-8") # U+f82f
  1323. ICON_FA_USER_PEN = b"\xef\x93\xbf".decode("utf-8") # U+f4ff
  1324. ICON_FA_USER_PLUS = b"\xef\x88\xb4".decode("utf-8") # U+f234
  1325. ICON_FA_USER_SECRET = b"\xef\x88\x9b".decode("utf-8") # U+f21b
  1326. ICON_FA_USER_SHIELD = b"\xef\x94\x85".decode("utf-8") # U+f505
  1327. ICON_FA_USER_SLASH = b"\xef\x94\x86".decode("utf-8") # U+f506
  1328. ICON_FA_USER_TAG = b"\xef\x94\x87".decode("utf-8") # U+f507
  1329. ICON_FA_USER_TIE = b"\xef\x94\x88".decode("utf-8") # U+f508
  1330. ICON_FA_USER_XMARK = b"\xef\x88\xb5".decode("utf-8") # U+f235
  1331. ICON_FA_USERS = b"\xef\x83\x80".decode("utf-8") # U+f0c0
  1332. ICON_FA_USERS_BETWEEN_LINES = b"\xee\x96\x91".decode("utf-8") # U+e591
  1333. ICON_FA_USERS_GEAR = b"\xef\x94\x89".decode("utf-8") # U+f509
  1334. ICON_FA_USERS_LINE = b"\xee\x96\x92".decode("utf-8") # U+e592
  1335. ICON_FA_USERS_RAYS = b"\xee\x96\x93".decode("utf-8") # U+e593
  1336. ICON_FA_USERS_RECTANGLE = b"\xee\x96\x94".decode("utf-8") # U+e594
  1337. ICON_FA_USERS_SLASH = b"\xee\x81\xb3".decode("utf-8") # U+e073
  1338. ICON_FA_USERS_VIEWFINDER = b"\xee\x96\x95".decode("utf-8") # U+e595
  1339. ICON_FA_UTENSILS = b"\xef\x8b\xa7".decode("utf-8") # U+f2e7
  1340. ICON_FA_V = b"V".decode("utf-8") # U+0056
  1341. ICON_FA_VAN_SHUTTLE = b"\xef\x96\xb6".decode("utf-8") # U+f5b6
  1342. ICON_FA_VAULT = b"\xee\x8b\x85".decode("utf-8") # U+e2c5
  1343. ICON_FA_VECTOR_SQUARE = b"\xef\x97\x8b".decode("utf-8") # U+f5cb
  1344. ICON_FA_VENUS = b"\xef\x88\xa1".decode("utf-8") # U+f221
  1345. ICON_FA_VENUS_DOUBLE = b"\xef\x88\xa6".decode("utf-8") # U+f226
  1346. ICON_FA_VENUS_MARS = b"\xef\x88\xa8".decode("utf-8") # U+f228
  1347. ICON_FA_VEST = b"\xee\x82\x85".decode("utf-8") # U+e085
  1348. ICON_FA_VEST_PATCHES = b"\xee\x82\x86".decode("utf-8") # U+e086
  1349. ICON_FA_VIAL = b"\xef\x92\x92".decode("utf-8") # U+f492
  1350. ICON_FA_VIAL_CIRCLE_CHECK = b"\xee\x96\x96".decode("utf-8") # U+e596
  1351. ICON_FA_VIAL_VIRUS = b"\xee\x96\x97".decode("utf-8") # U+e597
  1352. ICON_FA_VIALS = b"\xef\x92\x93".decode("utf-8") # U+f493
  1353. ICON_FA_VIDEO = b"\xef\x80\xbd".decode("utf-8") # U+f03d
  1354. ICON_FA_VIDEO_SLASH = b"\xef\x93\xa2".decode("utf-8") # U+f4e2
  1355. ICON_FA_VIHARA = b"\xef\x9a\xa7".decode("utf-8") # U+f6a7
  1356. ICON_FA_VIRUS = b"\xee\x81\xb4".decode("utf-8") # U+e074
  1357. ICON_FA_VIRUS_COVID = b"\xee\x92\xa8".decode("utf-8") # U+e4a8
  1358. ICON_FA_VIRUS_COVID_SLASH = b"\xee\x92\xa9".decode("utf-8") # U+e4a9
  1359. ICON_FA_VIRUS_SLASH = b"\xee\x81\xb5".decode("utf-8") # U+e075
  1360. ICON_FA_VIRUSES = b"\xee\x81\xb6".decode("utf-8") # U+e076
  1361. ICON_FA_VOICEMAIL = b"\xef\xa2\x97".decode("utf-8") # U+f897
  1362. ICON_FA_VOLCANO = b"\xef\x9d\xb0".decode("utf-8") # U+f770
  1363. ICON_FA_VOLLEYBALL = b"\xef\x91\x9f".decode("utf-8") # U+f45f
  1364. ICON_FA_VOLUME_HIGH = b"\xef\x80\xa8".decode("utf-8") # U+f028
  1365. ICON_FA_VOLUME_LOW = b"\xef\x80\xa7".decode("utf-8") # U+f027
  1366. ICON_FA_VOLUME_OFF = b"\xef\x80\xa6".decode("utf-8") # U+f026
  1367. ICON_FA_VOLUME_XMARK = b"\xef\x9a\xa9".decode("utf-8") # U+f6a9
  1368. ICON_FA_VR_CARDBOARD = b"\xef\x9c\xa9".decode("utf-8") # U+f729
  1369. ICON_FA_W = b"W".decode("utf-8") # U+0057
  1370. ICON_FA_WALKIE_TALKIE = b"\xef\xa3\xaf".decode("utf-8") # U+f8ef
  1371. ICON_FA_WALLET = b"\xef\x95\x95".decode("utf-8") # U+f555
  1372. ICON_FA_WAND_MAGIC = b"\xef\x83\x90".decode("utf-8") # U+f0d0
  1373. ICON_FA_WAND_MAGIC_SPARKLES = b"\xee\x8b\x8a".decode("utf-8") # U+e2ca
  1374. ICON_FA_WAND_SPARKLES = b"\xef\x9c\xab".decode("utf-8") # U+f72b
  1375. ICON_FA_WAREHOUSE = b"\xef\x92\x94".decode("utf-8") # U+f494
  1376. ICON_FA_WATER = b"\xef\x9d\xb3".decode("utf-8") # U+f773
  1377. ICON_FA_WATER_LADDER = b"\xef\x97\x85".decode("utf-8") # U+f5c5
  1378. ICON_FA_WAVE_SQUARE = b"\xef\xa0\xbe".decode("utf-8") # U+f83e
  1379. ICON_FA_WEIGHT_HANGING = b"\xef\x97\x8d".decode("utf-8") # U+f5cd
  1380. ICON_FA_WEIGHT_SCALE = b"\xef\x92\x96".decode("utf-8") # U+f496
  1381. ICON_FA_WHEAT_AWN = b"\xee\x8b\x8d".decode("utf-8") # U+e2cd
  1382. ICON_FA_WHEAT_AWN_CIRCLE_EXCLAMATION = b"\xee\x96\x98".decode("utf-8") # U+e598
  1383. ICON_FA_WHEELCHAIR = b"\xef\x86\x93".decode("utf-8") # U+f193
  1384. ICON_FA_WHEELCHAIR_MOVE = b"\xee\x8b\x8e".decode("utf-8") # U+e2ce
  1385. ICON_FA_WHISKEY_GLASS = b"\xef\x9e\xa0".decode("utf-8") # U+f7a0
  1386. ICON_FA_WIFI = b"\xef\x87\xab".decode("utf-8") # U+f1eb
  1387. ICON_FA_WIND = b"\xef\x9c\xae".decode("utf-8") # U+f72e
  1388. ICON_FA_WINDOW_MAXIMIZE = b"\xef\x8b\x90".decode("utf-8") # U+f2d0
  1389. ICON_FA_WINDOW_MINIMIZE = b"\xef\x8b\x91".decode("utf-8") # U+f2d1
  1390. ICON_FA_WINDOW_RESTORE = b"\xef\x8b\x92".decode("utf-8") # U+f2d2
  1391. ICON_FA_WINE_BOTTLE = b"\xef\x9c\xaf".decode("utf-8") # U+f72f
  1392. ICON_FA_WINE_GLASS = b"\xef\x93\xa3".decode("utf-8") # U+f4e3
  1393. ICON_FA_WINE_GLASS_EMPTY = b"\xef\x97\x8e".decode("utf-8") # U+f5ce
  1394. ICON_FA_WON_SIGN = b"\xef\x85\x99".decode("utf-8") # U+f159
  1395. ICON_FA_WORM = b"\xee\x96\x99".decode("utf-8") # U+e599
  1396. ICON_FA_WRENCH = b"\xef\x82\xad".decode("utf-8") # U+f0ad
  1397. ICON_FA_X = b"X".decode("utf-8") # U+0058
  1398. ICON_FA_X_RAY = b"\xef\x92\x97".decode("utf-8") # U+f497
  1399. ICON_FA_XMARK = b"\xef\x80\x8d".decode("utf-8") # U+f00d
  1400. ICON_FA_XMARKS_LINES = b"\xee\x96\x9a".decode("utf-8") # U+e59a
  1401. ICON_FA_Y = b"Y".decode("utf-8") # U+0059
  1402. ICON_FA_YEN_SIGN = b"\xef\x85\x97".decode("utf-8") # U+f157
  1403. ICON_FA_YIN_YANG = b"\xef\x9a\xad".decode("utf-8") # U+f6ad
  1404. ICON_FA_Z = b"Z".decode("utf-8") # U+005a