| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408 |
- # By default, HelloImGui uses Font Awesome 4
- # In order to use Font Awesome 4:
- # from imgui_bundle import icons_fontawesome_4
- #
- # In order to use Font Awesome 6:
- # runnerParams.callbacks.default_icon_font = hello_imgui.DefaultIconFont.font_awesome_6
- # And
- # from imgui_bundle import icons_fontawesome_6
- # Generated by https://github.com/juliettef/IconFontCppHeaders script GenerateIconFontCppHeaders.py for languages C and C++
- # from https://github.com/FortAwesome/Font-Awesome/raw/6.x/metadata/icons.yml
- # 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
- ICON_MIN_FA = 0xe005
- ICON_MAX_16_FA = 0xf8ff
- ICON_MAX_FA = 0xf8ff
- ICON_FA_0 = b"0".decode("utf-8") # U+0030
- ICON_FA_1 = b"1".decode("utf-8") # U+0031
- ICON_FA_2 = b"2".decode("utf-8") # U+0032
- ICON_FA_3 = b"3".decode("utf-8") # U+0033
- ICON_FA_4 = b"4".decode("utf-8") # U+0034
- ICON_FA_5 = b"5".decode("utf-8") # U+0035
- ICON_FA_6 = b"6".decode("utf-8") # U+0036
- ICON_FA_7 = b"7".decode("utf-8") # U+0037
- ICON_FA_8 = b"8".decode("utf-8") # U+0038
- ICON_FA_9 = b"9".decode("utf-8") # U+0039
- ICON_FA_A = b"A".decode("utf-8") # U+0041
- ICON_FA_ADDRESS_BOOK = b"\xef\x8a\xb9".decode("utf-8") # U+f2b9
- ICON_FA_ADDRESS_CARD = b"\xef\x8a\xbb".decode("utf-8") # U+f2bb
- ICON_FA_ALIGN_CENTER = b"\xef\x80\xb7".decode("utf-8") # U+f037
- ICON_FA_ALIGN_JUSTIFY = b"\xef\x80\xb9".decode("utf-8") # U+f039
- ICON_FA_ALIGN_LEFT = b"\xef\x80\xb6".decode("utf-8") # U+f036
- ICON_FA_ALIGN_RIGHT = b"\xef\x80\xb8".decode("utf-8") # U+f038
- ICON_FA_ANCHOR = b"\xef\x84\xbd".decode("utf-8") # U+f13d
- ICON_FA_ANCHOR_CIRCLE_CHECK = b"\xee\x92\xaa".decode("utf-8") # U+e4aa
- ICON_FA_ANCHOR_CIRCLE_EXCLAMATION = b"\xee\x92\xab".decode("utf-8") # U+e4ab
- ICON_FA_ANCHOR_CIRCLE_XMARK = b"\xee\x92\xac".decode("utf-8") # U+e4ac
- ICON_FA_ANCHOR_LOCK = b"\xee\x92\xad".decode("utf-8") # U+e4ad
- ICON_FA_ANGLE_DOWN = b"\xef\x84\x87".decode("utf-8") # U+f107
- ICON_FA_ANGLE_LEFT = b"\xef\x84\x84".decode("utf-8") # U+f104
- ICON_FA_ANGLE_RIGHT = b"\xef\x84\x85".decode("utf-8") # U+f105
- ICON_FA_ANGLE_UP = b"\xef\x84\x86".decode("utf-8") # U+f106
- ICON_FA_ANGLES_DOWN = b"\xef\x84\x83".decode("utf-8") # U+f103
- ICON_FA_ANGLES_LEFT = b"\xef\x84\x80".decode("utf-8") # U+f100
- ICON_FA_ANGLES_RIGHT = b"\xef\x84\x81".decode("utf-8") # U+f101
- ICON_FA_ANGLES_UP = b"\xef\x84\x82".decode("utf-8") # U+f102
- ICON_FA_ANKH = b"\xef\x99\x84".decode("utf-8") # U+f644
- ICON_FA_APPLE_WHOLE = b"\xef\x97\x91".decode("utf-8") # U+f5d1
- ICON_FA_ARCHWAY = b"\xef\x95\x97".decode("utf-8") # U+f557
- ICON_FA_ARROW_DOWN = b"\xef\x81\xa3".decode("utf-8") # U+f063
- ICON_FA_ARROW_DOWN_1_9 = b"\xef\x85\xa2".decode("utf-8") # U+f162
- ICON_FA_ARROW_DOWN_9_1 = b"\xef\xa2\x86".decode("utf-8") # U+f886
- ICON_FA_ARROW_DOWN_A_Z = b"\xef\x85\x9d".decode("utf-8") # U+f15d
- ICON_FA_ARROW_DOWN_LONG = b"\xef\x85\xb5".decode("utf-8") # U+f175
- ICON_FA_ARROW_DOWN_SHORT_WIDE = b"\xef\xa2\x84".decode("utf-8") # U+f884
- ICON_FA_ARROW_DOWN_UP_ACROSS_LINE = b"\xee\x92\xaf".decode("utf-8") # U+e4af
- ICON_FA_ARROW_DOWN_UP_LOCK = b"\xee\x92\xb0".decode("utf-8") # U+e4b0
- ICON_FA_ARROW_DOWN_WIDE_SHORT = b"\xef\x85\xa0".decode("utf-8") # U+f160
- ICON_FA_ARROW_DOWN_Z_A = b"\xef\xa2\x81".decode("utf-8") # U+f881
- ICON_FA_ARROW_LEFT = b"\xef\x81\xa0".decode("utf-8") # U+f060
- ICON_FA_ARROW_LEFT_LONG = b"\xef\x85\xb7".decode("utf-8") # U+f177
- ICON_FA_ARROW_POINTER = b"\xef\x89\x85".decode("utf-8") # U+f245
- ICON_FA_ARROW_RIGHT = b"\xef\x81\xa1".decode("utf-8") # U+f061
- ICON_FA_ARROW_RIGHT_ARROW_LEFT = b"\xef\x83\xac".decode("utf-8") # U+f0ec
- ICON_FA_ARROW_RIGHT_FROM_BRACKET = b"\xef\x82\x8b".decode("utf-8") # U+f08b
- ICON_FA_ARROW_RIGHT_LONG = b"\xef\x85\xb8".decode("utf-8") # U+f178
- ICON_FA_ARROW_RIGHT_TO_BRACKET = b"\xef\x82\x90".decode("utf-8") # U+f090
- ICON_FA_ARROW_RIGHT_TO_CITY = b"\xee\x92\xb3".decode("utf-8") # U+e4b3
- ICON_FA_ARROW_ROTATE_LEFT = b"\xef\x83\xa2".decode("utf-8") # U+f0e2
- ICON_FA_ARROW_ROTATE_RIGHT = b"\xef\x80\x9e".decode("utf-8") # U+f01e
- ICON_FA_ARROW_TREND_DOWN = b"\xee\x82\x97".decode("utf-8") # U+e097
- ICON_FA_ARROW_TREND_UP = b"\xee\x82\x98".decode("utf-8") # U+e098
- ICON_FA_ARROW_TURN_DOWN = b"\xef\x85\x89".decode("utf-8") # U+f149
- ICON_FA_ARROW_TURN_UP = b"\xef\x85\x88".decode("utf-8") # U+f148
- ICON_FA_ARROW_UP = b"\xef\x81\xa2".decode("utf-8") # U+f062
- ICON_FA_ARROW_UP_1_9 = b"\xef\x85\xa3".decode("utf-8") # U+f163
- ICON_FA_ARROW_UP_9_1 = b"\xef\xa2\x87".decode("utf-8") # U+f887
- ICON_FA_ARROW_UP_A_Z = b"\xef\x85\x9e".decode("utf-8") # U+f15e
- ICON_FA_ARROW_UP_FROM_BRACKET = b"\xee\x82\x9a".decode("utf-8") # U+e09a
- ICON_FA_ARROW_UP_FROM_GROUND_WATER = b"\xee\x92\xb5".decode("utf-8") # U+e4b5
- ICON_FA_ARROW_UP_FROM_WATER_PUMP = b"\xee\x92\xb6".decode("utf-8") # U+e4b6
- ICON_FA_ARROW_UP_LONG = b"\xef\x85\xb6".decode("utf-8") # U+f176
- ICON_FA_ARROW_UP_RIGHT_DOTS = b"\xee\x92\xb7".decode("utf-8") # U+e4b7
- ICON_FA_ARROW_UP_RIGHT_FROM_SQUARE = b"\xef\x82\x8e".decode("utf-8") # U+f08e
- ICON_FA_ARROW_UP_SHORT_WIDE = b"\xef\xa2\x85".decode("utf-8") # U+f885
- ICON_FA_ARROW_UP_WIDE_SHORT = b"\xef\x85\xa1".decode("utf-8") # U+f161
- ICON_FA_ARROW_UP_Z_A = b"\xef\xa2\x82".decode("utf-8") # U+f882
- ICON_FA_ARROWS_DOWN_TO_LINE = b"\xee\x92\xb8".decode("utf-8") # U+e4b8
- ICON_FA_ARROWS_DOWN_TO_PEOPLE = b"\xee\x92\xb9".decode("utf-8") # U+e4b9
- ICON_FA_ARROWS_LEFT_RIGHT = b"\xef\x81\xbe".decode("utf-8") # U+f07e
- ICON_FA_ARROWS_LEFT_RIGHT_TO_LINE = b"\xee\x92\xba".decode("utf-8") # U+e4ba
- ICON_FA_ARROWS_ROTATE = b"\xef\x80\xa1".decode("utf-8") # U+f021
- ICON_FA_ARROWS_SPIN = b"\xee\x92\xbb".decode("utf-8") # U+e4bb
- ICON_FA_ARROWS_SPLIT_UP_AND_LEFT = b"\xee\x92\xbc".decode("utf-8") # U+e4bc
- ICON_FA_ARROWS_TO_CIRCLE = b"\xee\x92\xbd".decode("utf-8") # U+e4bd
- ICON_FA_ARROWS_TO_DOT = b"\xee\x92\xbe".decode("utf-8") # U+e4be
- ICON_FA_ARROWS_TO_EYE = b"\xee\x92\xbf".decode("utf-8") # U+e4bf
- ICON_FA_ARROWS_TURN_RIGHT = b"\xee\x93\x80".decode("utf-8") # U+e4c0
- ICON_FA_ARROWS_TURN_TO_DOTS = b"\xee\x93\x81".decode("utf-8") # U+e4c1
- ICON_FA_ARROWS_UP_DOWN = b"\xef\x81\xbd".decode("utf-8") # U+f07d
- ICON_FA_ARROWS_UP_DOWN_LEFT_RIGHT = b"\xef\x81\x87".decode("utf-8") # U+f047
- ICON_FA_ARROWS_UP_TO_LINE = b"\xee\x93\x82".decode("utf-8") # U+e4c2
- ICON_FA_ASTERISK = b"*".decode("utf-8") # U+002a
- ICON_FA_AT = b"@".decode("utf-8") # U+0040
- ICON_FA_ATOM = b"\xef\x97\x92".decode("utf-8") # U+f5d2
- ICON_FA_AUDIO_DESCRIPTION = b"\xef\x8a\x9e".decode("utf-8") # U+f29e
- ICON_FA_AUSTRAL_SIGN = b"\xee\x82\xa9".decode("utf-8") # U+e0a9
- ICON_FA_AWARD = b"\xef\x95\x99".decode("utf-8") # U+f559
- ICON_FA_B = b"B".decode("utf-8") # U+0042
- ICON_FA_BABY = b"\xef\x9d\xbc".decode("utf-8") # U+f77c
- ICON_FA_BABY_CARRIAGE = b"\xef\x9d\xbd".decode("utf-8") # U+f77d
- ICON_FA_BACKWARD = b"\xef\x81\x8a".decode("utf-8") # U+f04a
- ICON_FA_BACKWARD_FAST = b"\xef\x81\x89".decode("utf-8") # U+f049
- ICON_FA_BACKWARD_STEP = b"\xef\x81\x88".decode("utf-8") # U+f048
- ICON_FA_BACON = b"\xef\x9f\xa5".decode("utf-8") # U+f7e5
- ICON_FA_BACTERIA = b"\xee\x81\x99".decode("utf-8") # U+e059
- ICON_FA_BACTERIUM = b"\xee\x81\x9a".decode("utf-8") # U+e05a
- ICON_FA_BAG_SHOPPING = b"\xef\x8a\x90".decode("utf-8") # U+f290
- ICON_FA_BAHAI = b"\xef\x99\xa6".decode("utf-8") # U+f666
- ICON_FA_BAHT_SIGN = b"\xee\x82\xac".decode("utf-8") # U+e0ac
- ICON_FA_BAN = b"\xef\x81\x9e".decode("utf-8") # U+f05e
- ICON_FA_BAN_SMOKING = b"\xef\x95\x8d".decode("utf-8") # U+f54d
- ICON_FA_BANDAGE = b"\xef\x91\xa2".decode("utf-8") # U+f462
- ICON_FA_BANGLADESHI_TAKA_SIGN = b"\xee\x8b\xa6".decode("utf-8") # U+e2e6
- ICON_FA_BARCODE = b"\xef\x80\xaa".decode("utf-8") # U+f02a
- ICON_FA_BARS = b"\xef\x83\x89".decode("utf-8") # U+f0c9
- ICON_FA_BARS_PROGRESS = b"\xef\xa0\xa8".decode("utf-8") # U+f828
- ICON_FA_BARS_STAGGERED = b"\xef\x95\x90".decode("utf-8") # U+f550
- ICON_FA_BASEBALL = b"\xef\x90\xb3".decode("utf-8") # U+f433
- ICON_FA_BASEBALL_BAT_BALL = b"\xef\x90\xb2".decode("utf-8") # U+f432
- ICON_FA_BASKET_SHOPPING = b"\xef\x8a\x91".decode("utf-8") # U+f291
- ICON_FA_BASKETBALL = b"\xef\x90\xb4".decode("utf-8") # U+f434
- ICON_FA_BATH = b"\xef\x8b\x8d".decode("utf-8") # U+f2cd
- ICON_FA_BATTERY_EMPTY = b"\xef\x89\x84".decode("utf-8") # U+f244
- ICON_FA_BATTERY_FULL = b"\xef\x89\x80".decode("utf-8") # U+f240
- ICON_FA_BATTERY_HALF = b"\xef\x89\x82".decode("utf-8") # U+f242
- ICON_FA_BATTERY_QUARTER = b"\xef\x89\x83".decode("utf-8") # U+f243
- ICON_FA_BATTERY_THREE_QUARTERS = b"\xef\x89\x81".decode("utf-8") # U+f241
- ICON_FA_BED = b"\xef\x88\xb6".decode("utf-8") # U+f236
- ICON_FA_BED_PULSE = b"\xef\x92\x87".decode("utf-8") # U+f487
- ICON_FA_BEER_MUG_EMPTY = b"\xef\x83\xbc".decode("utf-8") # U+f0fc
- ICON_FA_BELL = b"\xef\x83\xb3".decode("utf-8") # U+f0f3
- ICON_FA_BELL_CONCIERGE = b"\xef\x95\xa2".decode("utf-8") # U+f562
- ICON_FA_BELL_SLASH = b"\xef\x87\xb6".decode("utf-8") # U+f1f6
- ICON_FA_BEZIER_CURVE = b"\xef\x95\x9b".decode("utf-8") # U+f55b
- ICON_FA_BICYCLE = b"\xef\x88\x86".decode("utf-8") # U+f206
- ICON_FA_BINOCULARS = b"\xef\x87\xa5".decode("utf-8") # U+f1e5
- ICON_FA_BIOHAZARD = b"\xef\x9e\x80".decode("utf-8") # U+f780
- ICON_FA_BITCOIN_SIGN = b"\xee\x82\xb4".decode("utf-8") # U+e0b4
- ICON_FA_BLENDER = b"\xef\x94\x97".decode("utf-8") # U+f517
- ICON_FA_BLENDER_PHONE = b"\xef\x9a\xb6".decode("utf-8") # U+f6b6
- ICON_FA_BLOG = b"\xef\x9e\x81".decode("utf-8") # U+f781
- ICON_FA_BOLD = b"\xef\x80\xb2".decode("utf-8") # U+f032
- ICON_FA_BOLT = b"\xef\x83\xa7".decode("utf-8") # U+f0e7
- ICON_FA_BOLT_LIGHTNING = b"\xee\x82\xb7".decode("utf-8") # U+e0b7
- ICON_FA_BOMB = b"\xef\x87\xa2".decode("utf-8") # U+f1e2
- ICON_FA_BONE = b"\xef\x97\x97".decode("utf-8") # U+f5d7
- ICON_FA_BONG = b"\xef\x95\x9c".decode("utf-8") # U+f55c
- ICON_FA_BOOK = b"\xef\x80\xad".decode("utf-8") # U+f02d
- ICON_FA_BOOK_ATLAS = b"\xef\x95\x98".decode("utf-8") # U+f558
- ICON_FA_BOOK_BIBLE = b"\xef\x99\x87".decode("utf-8") # U+f647
- ICON_FA_BOOK_BOOKMARK = b"\xee\x82\xbb".decode("utf-8") # U+e0bb
- ICON_FA_BOOK_JOURNAL_WHILLS = b"\xef\x99\xaa".decode("utf-8") # U+f66a
- ICON_FA_BOOK_MEDICAL = b"\xef\x9f\xa6".decode("utf-8") # U+f7e6
- ICON_FA_BOOK_OPEN = b"\xef\x94\x98".decode("utf-8") # U+f518
- ICON_FA_BOOK_OPEN_READER = b"\xef\x97\x9a".decode("utf-8") # U+f5da
- ICON_FA_BOOK_QURAN = b"\xef\x9a\x87".decode("utf-8") # U+f687
- ICON_FA_BOOK_SKULL = b"\xef\x9a\xb7".decode("utf-8") # U+f6b7
- ICON_FA_BOOK_TANAKH = b"\xef\xa0\xa7".decode("utf-8") # U+f827
- ICON_FA_BOOKMARK = b"\xef\x80\xae".decode("utf-8") # U+f02e
- ICON_FA_BORDER_ALL = b"\xef\xa1\x8c".decode("utf-8") # U+f84c
- ICON_FA_BORDER_NONE = b"\xef\xa1\x90".decode("utf-8") # U+f850
- ICON_FA_BORDER_TOP_LEFT = b"\xef\xa1\x93".decode("utf-8") # U+f853
- ICON_FA_BORE_HOLE = b"\xee\x93\x83".decode("utf-8") # U+e4c3
- ICON_FA_BOTTLE_DROPLET = b"\xee\x93\x84".decode("utf-8") # U+e4c4
- ICON_FA_BOTTLE_WATER = b"\xee\x93\x85".decode("utf-8") # U+e4c5
- ICON_FA_BOWL_FOOD = b"\xee\x93\x86".decode("utf-8") # U+e4c6
- ICON_FA_BOWL_RICE = b"\xee\x8b\xab".decode("utf-8") # U+e2eb
- ICON_FA_BOWLING_BALL = b"\xef\x90\xb6".decode("utf-8") # U+f436
- ICON_FA_BOX = b"\xef\x91\xa6".decode("utf-8") # U+f466
- ICON_FA_BOX_ARCHIVE = b"\xef\x86\x87".decode("utf-8") # U+f187
- ICON_FA_BOX_OPEN = b"\xef\x92\x9e".decode("utf-8") # U+f49e
- ICON_FA_BOX_TISSUE = b"\xee\x81\x9b".decode("utf-8") # U+e05b
- ICON_FA_BOXES_PACKING = b"\xee\x93\x87".decode("utf-8") # U+e4c7
- ICON_FA_BOXES_STACKED = b"\xef\x91\xa8".decode("utf-8") # U+f468
- ICON_FA_BRAILLE = b"\xef\x8a\xa1".decode("utf-8") # U+f2a1
- ICON_FA_BRAIN = b"\xef\x97\x9c".decode("utf-8") # U+f5dc
- ICON_FA_BRAZILIAN_REAL_SIGN = b"\xee\x91\xac".decode("utf-8") # U+e46c
- ICON_FA_BREAD_SLICE = b"\xef\x9f\xac".decode("utf-8") # U+f7ec
- ICON_FA_BRIDGE = b"\xee\x93\x88".decode("utf-8") # U+e4c8
- ICON_FA_BRIDGE_CIRCLE_CHECK = b"\xee\x93\x89".decode("utf-8") # U+e4c9
- ICON_FA_BRIDGE_CIRCLE_EXCLAMATION = b"\xee\x93\x8a".decode("utf-8") # U+e4ca
- ICON_FA_BRIDGE_CIRCLE_XMARK = b"\xee\x93\x8b".decode("utf-8") # U+e4cb
- ICON_FA_BRIDGE_LOCK = b"\xee\x93\x8c".decode("utf-8") # U+e4cc
- ICON_FA_BRIDGE_WATER = b"\xee\x93\x8e".decode("utf-8") # U+e4ce
- ICON_FA_BRIEFCASE = b"\xef\x82\xb1".decode("utf-8") # U+f0b1
- ICON_FA_BRIEFCASE_MEDICAL = b"\xef\x91\xa9".decode("utf-8") # U+f469
- ICON_FA_BROOM = b"\xef\x94\x9a".decode("utf-8") # U+f51a
- ICON_FA_BROOM_BALL = b"\xef\x91\x98".decode("utf-8") # U+f458
- ICON_FA_BRUSH = b"\xef\x95\x9d".decode("utf-8") # U+f55d
- ICON_FA_BUCKET = b"\xee\x93\x8f".decode("utf-8") # U+e4cf
- ICON_FA_BUG = b"\xef\x86\x88".decode("utf-8") # U+f188
- ICON_FA_BUG_SLASH = b"\xee\x92\x90".decode("utf-8") # U+e490
- ICON_FA_BUGS = b"\xee\x93\x90".decode("utf-8") # U+e4d0
- ICON_FA_BUILDING = b"\xef\x86\xad".decode("utf-8") # U+f1ad
- ICON_FA_BUILDING_CIRCLE_ARROW_RIGHT = b"\xee\x93\x91".decode("utf-8") # U+e4d1
- ICON_FA_BUILDING_CIRCLE_CHECK = b"\xee\x93\x92".decode("utf-8") # U+e4d2
- ICON_FA_BUILDING_CIRCLE_EXCLAMATION = b"\xee\x93\x93".decode("utf-8") # U+e4d3
- ICON_FA_BUILDING_CIRCLE_XMARK = b"\xee\x93\x94".decode("utf-8") # U+e4d4
- ICON_FA_BUILDING_COLUMNS = b"\xef\x86\x9c".decode("utf-8") # U+f19c
- ICON_FA_BUILDING_FLAG = b"\xee\x93\x95".decode("utf-8") # U+e4d5
- ICON_FA_BUILDING_LOCK = b"\xee\x93\x96".decode("utf-8") # U+e4d6
- ICON_FA_BUILDING_NGO = b"\xee\x93\x97".decode("utf-8") # U+e4d7
- ICON_FA_BUILDING_SHIELD = b"\xee\x93\x98".decode("utf-8") # U+e4d8
- ICON_FA_BUILDING_UN = b"\xee\x93\x99".decode("utf-8") # U+e4d9
- ICON_FA_BUILDING_USER = b"\xee\x93\x9a".decode("utf-8") # U+e4da
- ICON_FA_BUILDING_WHEAT = b"\xee\x93\x9b".decode("utf-8") # U+e4db
- ICON_FA_BULLHORN = b"\xef\x82\xa1".decode("utf-8") # U+f0a1
- ICON_FA_BULLSEYE = b"\xef\x85\x80".decode("utf-8") # U+f140
- ICON_FA_BURGER = b"\xef\xa0\x85".decode("utf-8") # U+f805
- ICON_FA_BURST = b"\xee\x93\x9c".decode("utf-8") # U+e4dc
- ICON_FA_BUS = b"\xef\x88\x87".decode("utf-8") # U+f207
- ICON_FA_BUS_SIMPLE = b"\xef\x95\x9e".decode("utf-8") # U+f55e
- ICON_FA_BUSINESS_TIME = b"\xef\x99\x8a".decode("utf-8") # U+f64a
- ICON_FA_C = b"C".decode("utf-8") # U+0043
- ICON_FA_CABLE_CAR = b"\xef\x9f\x9a".decode("utf-8") # U+f7da
- ICON_FA_CAKE_CANDLES = b"\xef\x87\xbd".decode("utf-8") # U+f1fd
- ICON_FA_CALCULATOR = b"\xef\x87\xac".decode("utf-8") # U+f1ec
- ICON_FA_CALENDAR = b"\xef\x84\xb3".decode("utf-8") # U+f133
- ICON_FA_CALENDAR_CHECK = b"\xef\x89\xb4".decode("utf-8") # U+f274
- ICON_FA_CALENDAR_DAY = b"\xef\x9e\x83".decode("utf-8") # U+f783
- ICON_FA_CALENDAR_DAYS = b"\xef\x81\xb3".decode("utf-8") # U+f073
- ICON_FA_CALENDAR_MINUS = b"\xef\x89\xb2".decode("utf-8") # U+f272
- ICON_FA_CALENDAR_PLUS = b"\xef\x89\xb1".decode("utf-8") # U+f271
- ICON_FA_CALENDAR_WEEK = b"\xef\x9e\x84".decode("utf-8") # U+f784
- ICON_FA_CALENDAR_XMARK = b"\xef\x89\xb3".decode("utf-8") # U+f273
- ICON_FA_CAMERA = b"\xef\x80\xb0".decode("utf-8") # U+f030
- ICON_FA_CAMERA_RETRO = b"\xef\x82\x83".decode("utf-8") # U+f083
- ICON_FA_CAMERA_ROTATE = b"\xee\x83\x98".decode("utf-8") # U+e0d8
- ICON_FA_CAMPGROUND = b"\xef\x9a\xbb".decode("utf-8") # U+f6bb
- ICON_FA_CANDY_CANE = b"\xef\x9e\x86".decode("utf-8") # U+f786
- ICON_FA_CANNABIS = b"\xef\x95\x9f".decode("utf-8") # U+f55f
- ICON_FA_CAPSULES = b"\xef\x91\xab".decode("utf-8") # U+f46b
- ICON_FA_CAR = b"\xef\x86\xb9".decode("utf-8") # U+f1b9
- ICON_FA_CAR_BATTERY = b"\xef\x97\x9f".decode("utf-8") # U+f5df
- ICON_FA_CAR_BURST = b"\xef\x97\xa1".decode("utf-8") # U+f5e1
- ICON_FA_CAR_ON = b"\xee\x93\x9d".decode("utf-8") # U+e4dd
- ICON_FA_CAR_REAR = b"\xef\x97\x9e".decode("utf-8") # U+f5de
- ICON_FA_CAR_SIDE = b"\xef\x97\xa4".decode("utf-8") # U+f5e4
- ICON_FA_CAR_TUNNEL = b"\xee\x93\x9e".decode("utf-8") # U+e4de
- ICON_FA_CARAVAN = b"\xef\xa3\xbf".decode("utf-8") # U+f8ff
- ICON_FA_CARET_DOWN = b"\xef\x83\x97".decode("utf-8") # U+f0d7
- ICON_FA_CARET_LEFT = b"\xef\x83\x99".decode("utf-8") # U+f0d9
- ICON_FA_CARET_RIGHT = b"\xef\x83\x9a".decode("utf-8") # U+f0da
- ICON_FA_CARET_UP = b"\xef\x83\x98".decode("utf-8") # U+f0d8
- ICON_FA_CARROT = b"\xef\x9e\x87".decode("utf-8") # U+f787
- ICON_FA_CART_ARROW_DOWN = b"\xef\x88\x98".decode("utf-8") # U+f218
- ICON_FA_CART_FLATBED = b"\xef\x91\xb4".decode("utf-8") # U+f474
- ICON_FA_CART_FLATBED_SUITCASE = b"\xef\x96\x9d".decode("utf-8") # U+f59d
- ICON_FA_CART_PLUS = b"\xef\x88\x97".decode("utf-8") # U+f217
- ICON_FA_CART_SHOPPING = b"\xef\x81\xba".decode("utf-8") # U+f07a
- ICON_FA_CASH_REGISTER = b"\xef\x9e\x88".decode("utf-8") # U+f788
- ICON_FA_CAT = b"\xef\x9a\xbe".decode("utf-8") # U+f6be
- ICON_FA_CEDI_SIGN = b"\xee\x83\x9f".decode("utf-8") # U+e0df
- ICON_FA_CENT_SIGN = b"\xee\x8f\xb5".decode("utf-8") # U+e3f5
- ICON_FA_CERTIFICATE = b"\xef\x82\xa3".decode("utf-8") # U+f0a3
- ICON_FA_CHAIR = b"\xef\x9b\x80".decode("utf-8") # U+f6c0
- ICON_FA_CHALKBOARD = b"\xef\x94\x9b".decode("utf-8") # U+f51b
- ICON_FA_CHALKBOARD_USER = b"\xef\x94\x9c".decode("utf-8") # U+f51c
- ICON_FA_CHAMPAGNE_GLASSES = b"\xef\x9e\x9f".decode("utf-8") # U+f79f
- ICON_FA_CHARGING_STATION = b"\xef\x97\xa7".decode("utf-8") # U+f5e7
- ICON_FA_CHART_AREA = b"\xef\x87\xbe".decode("utf-8") # U+f1fe
- ICON_FA_CHART_BAR = b"\xef\x82\x80".decode("utf-8") # U+f080
- ICON_FA_CHART_COLUMN = b"\xee\x83\xa3".decode("utf-8") # U+e0e3
- ICON_FA_CHART_GANTT = b"\xee\x83\xa4".decode("utf-8") # U+e0e4
- ICON_FA_CHART_LINE = b"\xef\x88\x81".decode("utf-8") # U+f201
- ICON_FA_CHART_PIE = b"\xef\x88\x80".decode("utf-8") # U+f200
- ICON_FA_CHART_SIMPLE = b"\xee\x91\xb3".decode("utf-8") # U+e473
- ICON_FA_CHECK = b"\xef\x80\x8c".decode("utf-8") # U+f00c
- ICON_FA_CHECK_DOUBLE = b"\xef\x95\xa0".decode("utf-8") # U+f560
- ICON_FA_CHECK_TO_SLOT = b"\xef\x9d\xb2".decode("utf-8") # U+f772
- ICON_FA_CHEESE = b"\xef\x9f\xaf".decode("utf-8") # U+f7ef
- ICON_FA_CHESS = b"\xef\x90\xb9".decode("utf-8") # U+f439
- ICON_FA_CHESS_BISHOP = b"\xef\x90\xba".decode("utf-8") # U+f43a
- ICON_FA_CHESS_BOARD = b"\xef\x90\xbc".decode("utf-8") # U+f43c
- ICON_FA_CHESS_KING = b"\xef\x90\xbf".decode("utf-8") # U+f43f
- ICON_FA_CHESS_KNIGHT = b"\xef\x91\x81".decode("utf-8") # U+f441
- ICON_FA_CHESS_PAWN = b"\xef\x91\x83".decode("utf-8") # U+f443
- ICON_FA_CHESS_QUEEN = b"\xef\x91\x85".decode("utf-8") # U+f445
- ICON_FA_CHESS_ROOK = b"\xef\x91\x87".decode("utf-8") # U+f447
- ICON_FA_CHEVRON_DOWN = b"\xef\x81\xb8".decode("utf-8") # U+f078
- ICON_FA_CHEVRON_LEFT = b"\xef\x81\x93".decode("utf-8") # U+f053
- ICON_FA_CHEVRON_RIGHT = b"\xef\x81\x94".decode("utf-8") # U+f054
- ICON_FA_CHEVRON_UP = b"\xef\x81\xb7".decode("utf-8") # U+f077
- ICON_FA_CHILD = b"\xef\x86\xae".decode("utf-8") # U+f1ae
- ICON_FA_CHILD_COMBATANT = b"\xee\x93\xa0".decode("utf-8") # U+e4e0
- ICON_FA_CHILD_DRESS = b"\xee\x96\x9c".decode("utf-8") # U+e59c
- ICON_FA_CHILD_REACHING = b"\xee\x96\x9d".decode("utf-8") # U+e59d
- ICON_FA_CHILDREN = b"\xee\x93\xa1".decode("utf-8") # U+e4e1
- ICON_FA_CHURCH = b"\xef\x94\x9d".decode("utf-8") # U+f51d
- ICON_FA_CIRCLE = b"\xef\x84\x91".decode("utf-8") # U+f111
- ICON_FA_CIRCLE_ARROW_DOWN = b"\xef\x82\xab".decode("utf-8") # U+f0ab
- ICON_FA_CIRCLE_ARROW_LEFT = b"\xef\x82\xa8".decode("utf-8") # U+f0a8
- ICON_FA_CIRCLE_ARROW_RIGHT = b"\xef\x82\xa9".decode("utf-8") # U+f0a9
- ICON_FA_CIRCLE_ARROW_UP = b"\xef\x82\xaa".decode("utf-8") # U+f0aa
- ICON_FA_CIRCLE_CHECK = b"\xef\x81\x98".decode("utf-8") # U+f058
- ICON_FA_CIRCLE_CHEVRON_DOWN = b"\xef\x84\xba".decode("utf-8") # U+f13a
- ICON_FA_CIRCLE_CHEVRON_LEFT = b"\xef\x84\xb7".decode("utf-8") # U+f137
- ICON_FA_CIRCLE_CHEVRON_RIGHT = b"\xef\x84\xb8".decode("utf-8") # U+f138
- ICON_FA_CIRCLE_CHEVRON_UP = b"\xef\x84\xb9".decode("utf-8") # U+f139
- ICON_FA_CIRCLE_DOLLAR_TO_SLOT = b"\xef\x92\xb9".decode("utf-8") # U+f4b9
- ICON_FA_CIRCLE_DOT = b"\xef\x86\x92".decode("utf-8") # U+f192
- ICON_FA_CIRCLE_DOWN = b"\xef\x8d\x98".decode("utf-8") # U+f358
- ICON_FA_CIRCLE_EXCLAMATION = b"\xef\x81\xaa".decode("utf-8") # U+f06a
- ICON_FA_CIRCLE_H = b"\xef\x91\xbe".decode("utf-8") # U+f47e
- ICON_FA_CIRCLE_HALF_STROKE = b"\xef\x81\x82".decode("utf-8") # U+f042
- ICON_FA_CIRCLE_INFO = b"\xef\x81\x9a".decode("utf-8") # U+f05a
- ICON_FA_CIRCLE_LEFT = b"\xef\x8d\x99".decode("utf-8") # U+f359
- ICON_FA_CIRCLE_MINUS = b"\xef\x81\x96".decode("utf-8") # U+f056
- ICON_FA_CIRCLE_NODES = b"\xee\x93\xa2".decode("utf-8") # U+e4e2
- ICON_FA_CIRCLE_NOTCH = b"\xef\x87\x8e".decode("utf-8") # U+f1ce
- ICON_FA_CIRCLE_PAUSE = b"\xef\x8a\x8b".decode("utf-8") # U+f28b
- ICON_FA_CIRCLE_PLAY = b"\xef\x85\x84".decode("utf-8") # U+f144
- ICON_FA_CIRCLE_PLUS = b"\xef\x81\x95".decode("utf-8") # U+f055
- ICON_FA_CIRCLE_QUESTION = b"\xef\x81\x99".decode("utf-8") # U+f059
- ICON_FA_CIRCLE_RADIATION = b"\xef\x9e\xba".decode("utf-8") # U+f7ba
- ICON_FA_CIRCLE_RIGHT = b"\xef\x8d\x9a".decode("utf-8") # U+f35a
- ICON_FA_CIRCLE_STOP = b"\xef\x8a\x8d".decode("utf-8") # U+f28d
- ICON_FA_CIRCLE_UP = b"\xef\x8d\x9b".decode("utf-8") # U+f35b
- ICON_FA_CIRCLE_USER = b"\xef\x8a\xbd".decode("utf-8") # U+f2bd
- ICON_FA_CIRCLE_XMARK = b"\xef\x81\x97".decode("utf-8") # U+f057
- ICON_FA_CITY = b"\xef\x99\x8f".decode("utf-8") # U+f64f
- ICON_FA_CLAPPERBOARD = b"\xee\x84\xb1".decode("utf-8") # U+e131
- ICON_FA_CLIPBOARD = b"\xef\x8c\xa8".decode("utf-8") # U+f328
- ICON_FA_CLIPBOARD_CHECK = b"\xef\x91\xac".decode("utf-8") # U+f46c
- ICON_FA_CLIPBOARD_LIST = b"\xef\x91\xad".decode("utf-8") # U+f46d
- ICON_FA_CLIPBOARD_QUESTION = b"\xee\x93\xa3".decode("utf-8") # U+e4e3
- ICON_FA_CLIPBOARD_USER = b"\xef\x9f\xb3".decode("utf-8") # U+f7f3
- ICON_FA_CLOCK = b"\xef\x80\x97".decode("utf-8") # U+f017
- ICON_FA_CLOCK_ROTATE_LEFT = b"\xef\x87\x9a".decode("utf-8") # U+f1da
- ICON_FA_CLONE = b"\xef\x89\x8d".decode("utf-8") # U+f24d
- ICON_FA_CLOSED_CAPTIONING = b"\xef\x88\x8a".decode("utf-8") # U+f20a
- ICON_FA_CLOUD = b"\xef\x83\x82".decode("utf-8") # U+f0c2
- ICON_FA_CLOUD_ARROW_DOWN = b"\xef\x83\xad".decode("utf-8") # U+f0ed
- ICON_FA_CLOUD_ARROW_UP = b"\xef\x83\xae".decode("utf-8") # U+f0ee
- ICON_FA_CLOUD_BOLT = b"\xef\x9d\xac".decode("utf-8") # U+f76c
- ICON_FA_CLOUD_MEATBALL = b"\xef\x9c\xbb".decode("utf-8") # U+f73b
- ICON_FA_CLOUD_MOON = b"\xef\x9b\x83".decode("utf-8") # U+f6c3
- ICON_FA_CLOUD_MOON_RAIN = b"\xef\x9c\xbc".decode("utf-8") # U+f73c
- ICON_FA_CLOUD_RAIN = b"\xef\x9c\xbd".decode("utf-8") # U+f73d
- ICON_FA_CLOUD_SHOWERS_HEAVY = b"\xef\x9d\x80".decode("utf-8") # U+f740
- ICON_FA_CLOUD_SHOWERS_WATER = b"\xee\x93\xa4".decode("utf-8") # U+e4e4
- ICON_FA_CLOUD_SUN = b"\xef\x9b\x84".decode("utf-8") # U+f6c4
- ICON_FA_CLOUD_SUN_RAIN = b"\xef\x9d\x83".decode("utf-8") # U+f743
- ICON_FA_CLOVER = b"\xee\x84\xb9".decode("utf-8") # U+e139
- ICON_FA_CODE = b"\xef\x84\xa1".decode("utf-8") # U+f121
- ICON_FA_CODE_BRANCH = b"\xef\x84\xa6".decode("utf-8") # U+f126
- ICON_FA_CODE_COMMIT = b"\xef\x8e\x86".decode("utf-8") # U+f386
- ICON_FA_CODE_COMPARE = b"\xee\x84\xba".decode("utf-8") # U+e13a
- ICON_FA_CODE_FORK = b"\xee\x84\xbb".decode("utf-8") # U+e13b
- ICON_FA_CODE_MERGE = b"\xef\x8e\x87".decode("utf-8") # U+f387
- ICON_FA_CODE_PULL_REQUEST = b"\xee\x84\xbc".decode("utf-8") # U+e13c
- ICON_FA_COINS = b"\xef\x94\x9e".decode("utf-8") # U+f51e
- ICON_FA_COLON_SIGN = b"\xee\x85\x80".decode("utf-8") # U+e140
- ICON_FA_COMMENT = b"\xef\x81\xb5".decode("utf-8") # U+f075
- ICON_FA_COMMENT_DOLLAR = b"\xef\x99\x91".decode("utf-8") # U+f651
- ICON_FA_COMMENT_DOTS = b"\xef\x92\xad".decode("utf-8") # U+f4ad
- ICON_FA_COMMENT_MEDICAL = b"\xef\x9f\xb5".decode("utf-8") # U+f7f5
- ICON_FA_COMMENT_SLASH = b"\xef\x92\xb3".decode("utf-8") # U+f4b3
- ICON_FA_COMMENT_SMS = b"\xef\x9f\x8d".decode("utf-8") # U+f7cd
- ICON_FA_COMMENTS = b"\xef\x82\x86".decode("utf-8") # U+f086
- ICON_FA_COMMENTS_DOLLAR = b"\xef\x99\x93".decode("utf-8") # U+f653
- ICON_FA_COMPACT_DISC = b"\xef\x94\x9f".decode("utf-8") # U+f51f
- ICON_FA_COMPASS = b"\xef\x85\x8e".decode("utf-8") # U+f14e
- ICON_FA_COMPASS_DRAFTING = b"\xef\x95\xa8".decode("utf-8") # U+f568
- ICON_FA_COMPRESS = b"\xef\x81\xa6".decode("utf-8") # U+f066
- ICON_FA_COMPUTER = b"\xee\x93\xa5".decode("utf-8") # U+e4e5
- ICON_FA_COMPUTER_MOUSE = b"\xef\xa3\x8c".decode("utf-8") # U+f8cc
- ICON_FA_COOKIE = b"\xef\x95\xa3".decode("utf-8") # U+f563
- ICON_FA_COOKIE_BITE = b"\xef\x95\xa4".decode("utf-8") # U+f564
- ICON_FA_COPY = b"\xef\x83\x85".decode("utf-8") # U+f0c5
- ICON_FA_COPYRIGHT = b"\xef\x87\xb9".decode("utf-8") # U+f1f9
- ICON_FA_COUCH = b"\xef\x92\xb8".decode("utf-8") # U+f4b8
- ICON_FA_COW = b"\xef\x9b\x88".decode("utf-8") # U+f6c8
- ICON_FA_CREDIT_CARD = b"\xef\x82\x9d".decode("utf-8") # U+f09d
- ICON_FA_CROP = b"\xef\x84\xa5".decode("utf-8") # U+f125
- ICON_FA_CROP_SIMPLE = b"\xef\x95\xa5".decode("utf-8") # U+f565
- ICON_FA_CROSS = b"\xef\x99\x94".decode("utf-8") # U+f654
- ICON_FA_CROSSHAIRS = b"\xef\x81\x9b".decode("utf-8") # U+f05b
- ICON_FA_CROW = b"\xef\x94\xa0".decode("utf-8") # U+f520
- ICON_FA_CROWN = b"\xef\x94\xa1".decode("utf-8") # U+f521
- ICON_FA_CRUTCH = b"\xef\x9f\xb7".decode("utf-8") # U+f7f7
- ICON_FA_CRUZEIRO_SIGN = b"\xee\x85\x92".decode("utf-8") # U+e152
- ICON_FA_CUBE = b"\xef\x86\xb2".decode("utf-8") # U+f1b2
- ICON_FA_CUBES = b"\xef\x86\xb3".decode("utf-8") # U+f1b3
- ICON_FA_CUBES_STACKED = b"\xee\x93\xa6".decode("utf-8") # U+e4e6
- ICON_FA_D = b"D".decode("utf-8") # U+0044
- ICON_FA_DATABASE = b"\xef\x87\x80".decode("utf-8") # U+f1c0
- ICON_FA_DELETE_LEFT = b"\xef\x95\x9a".decode("utf-8") # U+f55a
- ICON_FA_DEMOCRAT = b"\xef\x9d\x87".decode("utf-8") # U+f747
- ICON_FA_DESKTOP = b"\xef\x8e\x90".decode("utf-8") # U+f390
- ICON_FA_DHARMACHAKRA = b"\xef\x99\x95".decode("utf-8") # U+f655
- ICON_FA_DIAGRAM_NEXT = b"\xee\x91\xb6".decode("utf-8") # U+e476
- ICON_FA_DIAGRAM_PREDECESSOR = b"\xee\x91\xb7".decode("utf-8") # U+e477
- ICON_FA_DIAGRAM_PROJECT = b"\xef\x95\x82".decode("utf-8") # U+f542
- ICON_FA_DIAGRAM_SUCCESSOR = b"\xee\x91\xba".decode("utf-8") # U+e47a
- ICON_FA_DIAMOND = b"\xef\x88\x99".decode("utf-8") # U+f219
- ICON_FA_DIAMOND_TURN_RIGHT = b"\xef\x97\xab".decode("utf-8") # U+f5eb
- ICON_FA_DICE = b"\xef\x94\xa2".decode("utf-8") # U+f522
- ICON_FA_DICE_D20 = b"\xef\x9b\x8f".decode("utf-8") # U+f6cf
- ICON_FA_DICE_D6 = b"\xef\x9b\x91".decode("utf-8") # U+f6d1
- ICON_FA_DICE_FIVE = b"\xef\x94\xa3".decode("utf-8") # U+f523
- ICON_FA_DICE_FOUR = b"\xef\x94\xa4".decode("utf-8") # U+f524
- ICON_FA_DICE_ONE = b"\xef\x94\xa5".decode("utf-8") # U+f525
- ICON_FA_DICE_SIX = b"\xef\x94\xa6".decode("utf-8") # U+f526
- ICON_FA_DICE_THREE = b"\xef\x94\xa7".decode("utf-8") # U+f527
- ICON_FA_DICE_TWO = b"\xef\x94\xa8".decode("utf-8") # U+f528
- ICON_FA_DISEASE = b"\xef\x9f\xba".decode("utf-8") # U+f7fa
- ICON_FA_DISPLAY = b"\xee\x85\xa3".decode("utf-8") # U+e163
- ICON_FA_DIVIDE = b"\xef\x94\xa9".decode("utf-8") # U+f529
- ICON_FA_DNA = b"\xef\x91\xb1".decode("utf-8") # U+f471
- ICON_FA_DOG = b"\xef\x9b\x93".decode("utf-8") # U+f6d3
- ICON_FA_DOLLAR_SIGN = b"$".decode("utf-8") # U+0024
- ICON_FA_DOLLY = b"\xef\x91\xb2".decode("utf-8") # U+f472
- ICON_FA_DONG_SIGN = b"\xee\x85\xa9".decode("utf-8") # U+e169
- ICON_FA_DOOR_CLOSED = b"\xef\x94\xaa".decode("utf-8") # U+f52a
- ICON_FA_DOOR_OPEN = b"\xef\x94\xab".decode("utf-8") # U+f52b
- ICON_FA_DOVE = b"\xef\x92\xba".decode("utf-8") # U+f4ba
- ICON_FA_DOWN_LEFT_AND_UP_RIGHT_TO_CENTER = b"\xef\x90\xa2".decode("utf-8") # U+f422
- ICON_FA_DOWN_LONG = b"\xef\x8c\x89".decode("utf-8") # U+f309
- ICON_FA_DOWNLOAD = b"\xef\x80\x99".decode("utf-8") # U+f019
- ICON_FA_DRAGON = b"\xef\x9b\x95".decode("utf-8") # U+f6d5
- ICON_FA_DRAW_POLYGON = b"\xef\x97\xae".decode("utf-8") # U+f5ee
- ICON_FA_DROPLET = b"\xef\x81\x83".decode("utf-8") # U+f043
- ICON_FA_DROPLET_SLASH = b"\xef\x97\x87".decode("utf-8") # U+f5c7
- ICON_FA_DRUM = b"\xef\x95\xa9".decode("utf-8") # U+f569
- ICON_FA_DRUM_STEELPAN = b"\xef\x95\xaa".decode("utf-8") # U+f56a
- ICON_FA_DRUMSTICK_BITE = b"\xef\x9b\x97".decode("utf-8") # U+f6d7
- ICON_FA_DUMBBELL = b"\xef\x91\x8b".decode("utf-8") # U+f44b
- ICON_FA_DUMPSTER = b"\xef\x9e\x93".decode("utf-8") # U+f793
- ICON_FA_DUMPSTER_FIRE = b"\xef\x9e\x94".decode("utf-8") # U+f794
- ICON_FA_DUNGEON = b"\xef\x9b\x99".decode("utf-8") # U+f6d9
- ICON_FA_E = b"E".decode("utf-8") # U+0045
- ICON_FA_EAR_DEAF = b"\xef\x8a\xa4".decode("utf-8") # U+f2a4
- ICON_FA_EAR_LISTEN = b"\xef\x8a\xa2".decode("utf-8") # U+f2a2
- ICON_FA_EARTH_AFRICA = b"\xef\x95\xbc".decode("utf-8") # U+f57c
- ICON_FA_EARTH_AMERICAS = b"\xef\x95\xbd".decode("utf-8") # U+f57d
- ICON_FA_EARTH_ASIA = b"\xef\x95\xbe".decode("utf-8") # U+f57e
- ICON_FA_EARTH_EUROPE = b"\xef\x9e\xa2".decode("utf-8") # U+f7a2
- ICON_FA_EARTH_OCEANIA = b"\xee\x91\xbb".decode("utf-8") # U+e47b
- ICON_FA_EGG = b"\xef\x9f\xbb".decode("utf-8") # U+f7fb
- ICON_FA_EJECT = b"\xef\x81\x92".decode("utf-8") # U+f052
- ICON_FA_ELEVATOR = b"\xee\x85\xad".decode("utf-8") # U+e16d
- ICON_FA_ELLIPSIS = b"\xef\x85\x81".decode("utf-8") # U+f141
- ICON_FA_ELLIPSIS_VERTICAL = b"\xef\x85\x82".decode("utf-8") # U+f142
- ICON_FA_ENVELOPE = b"\xef\x83\xa0".decode("utf-8") # U+f0e0
- ICON_FA_ENVELOPE_CIRCLE_CHECK = b"\xee\x93\xa8".decode("utf-8") # U+e4e8
- ICON_FA_ENVELOPE_OPEN = b"\xef\x8a\xb6".decode("utf-8") # U+f2b6
- ICON_FA_ENVELOPE_OPEN_TEXT = b"\xef\x99\x98".decode("utf-8") # U+f658
- ICON_FA_ENVELOPES_BULK = b"\xef\x99\xb4".decode("utf-8") # U+f674
- ICON_FA_EQUALS = b"=".decode("utf-8") # U+003d
- ICON_FA_ERASER = b"\xef\x84\xad".decode("utf-8") # U+f12d
- ICON_FA_ETHERNET = b"\xef\x9e\x96".decode("utf-8") # U+f796
- ICON_FA_EURO_SIGN = b"\xef\x85\x93".decode("utf-8") # U+f153
- ICON_FA_EXCLAMATION = b"!".decode("utf-8") # U+0021
- ICON_FA_EXPAND = b"\xef\x81\xa5".decode("utf-8") # U+f065
- ICON_FA_EXPLOSION = b"\xee\x93\xa9".decode("utf-8") # U+e4e9
- ICON_FA_EYE = b"\xef\x81\xae".decode("utf-8") # U+f06e
- ICON_FA_EYE_DROPPER = b"\xef\x87\xbb".decode("utf-8") # U+f1fb
- ICON_FA_EYE_LOW_VISION = b"\xef\x8a\xa8".decode("utf-8") # U+f2a8
- ICON_FA_EYE_SLASH = b"\xef\x81\xb0".decode("utf-8") # U+f070
- ICON_FA_F = b"F".decode("utf-8") # U+0046
- ICON_FA_FACE_ANGRY = b"\xef\x95\x96".decode("utf-8") # U+f556
- ICON_FA_FACE_DIZZY = b"\xef\x95\xa7".decode("utf-8") # U+f567
- ICON_FA_FACE_FLUSHED = b"\xef\x95\xb9".decode("utf-8") # U+f579
- ICON_FA_FACE_FROWN = b"\xef\x84\x99".decode("utf-8") # U+f119
- ICON_FA_FACE_FROWN_OPEN = b"\xef\x95\xba".decode("utf-8") # U+f57a
- ICON_FA_FACE_GRIMACE = b"\xef\x95\xbf".decode("utf-8") # U+f57f
- ICON_FA_FACE_GRIN = b"\xef\x96\x80".decode("utf-8") # U+f580
- ICON_FA_FACE_GRIN_BEAM = b"\xef\x96\x82".decode("utf-8") # U+f582
- ICON_FA_FACE_GRIN_BEAM_SWEAT = b"\xef\x96\x83".decode("utf-8") # U+f583
- ICON_FA_FACE_GRIN_HEARTS = b"\xef\x96\x84".decode("utf-8") # U+f584
- ICON_FA_FACE_GRIN_SQUINT = b"\xef\x96\x85".decode("utf-8") # U+f585
- ICON_FA_FACE_GRIN_SQUINT_TEARS = b"\xef\x96\x86".decode("utf-8") # U+f586
- ICON_FA_FACE_GRIN_STARS = b"\xef\x96\x87".decode("utf-8") # U+f587
- ICON_FA_FACE_GRIN_TEARS = b"\xef\x96\x88".decode("utf-8") # U+f588
- ICON_FA_FACE_GRIN_TONGUE = b"\xef\x96\x89".decode("utf-8") # U+f589
- ICON_FA_FACE_GRIN_TONGUE_SQUINT = b"\xef\x96\x8a".decode("utf-8") # U+f58a
- ICON_FA_FACE_GRIN_TONGUE_WINK = b"\xef\x96\x8b".decode("utf-8") # U+f58b
- ICON_FA_FACE_GRIN_WIDE = b"\xef\x96\x81".decode("utf-8") # U+f581
- ICON_FA_FACE_GRIN_WINK = b"\xef\x96\x8c".decode("utf-8") # U+f58c
- ICON_FA_FACE_KISS = b"\xef\x96\x96".decode("utf-8") # U+f596
- ICON_FA_FACE_KISS_BEAM = b"\xef\x96\x97".decode("utf-8") # U+f597
- ICON_FA_FACE_KISS_WINK_HEART = b"\xef\x96\x98".decode("utf-8") # U+f598
- ICON_FA_FACE_LAUGH = b"\xef\x96\x99".decode("utf-8") # U+f599
- ICON_FA_FACE_LAUGH_BEAM = b"\xef\x96\x9a".decode("utf-8") # U+f59a
- ICON_FA_FACE_LAUGH_SQUINT = b"\xef\x96\x9b".decode("utf-8") # U+f59b
- ICON_FA_FACE_LAUGH_WINK = b"\xef\x96\x9c".decode("utf-8") # U+f59c
- ICON_FA_FACE_MEH = b"\xef\x84\x9a".decode("utf-8") # U+f11a
- ICON_FA_FACE_MEH_BLANK = b"\xef\x96\xa4".decode("utf-8") # U+f5a4
- ICON_FA_FACE_ROLLING_EYES = b"\xef\x96\xa5".decode("utf-8") # U+f5a5
- ICON_FA_FACE_SAD_CRY = b"\xef\x96\xb3".decode("utf-8") # U+f5b3
- ICON_FA_FACE_SAD_TEAR = b"\xef\x96\xb4".decode("utf-8") # U+f5b4
- ICON_FA_FACE_SMILE = b"\xef\x84\x98".decode("utf-8") # U+f118
- ICON_FA_FACE_SMILE_BEAM = b"\xef\x96\xb8".decode("utf-8") # U+f5b8
- ICON_FA_FACE_SMILE_WINK = b"\xef\x93\x9a".decode("utf-8") # U+f4da
- ICON_FA_FACE_SURPRISE = b"\xef\x97\x82".decode("utf-8") # U+f5c2
- ICON_FA_FACE_TIRED = b"\xef\x97\x88".decode("utf-8") # U+f5c8
- ICON_FA_FAN = b"\xef\xa1\xa3".decode("utf-8") # U+f863
- ICON_FA_FAUCET = b"\xee\x80\x85".decode("utf-8") # U+e005
- ICON_FA_FAUCET_DRIP = b"\xee\x80\x86".decode("utf-8") # U+e006
- ICON_FA_FAX = b"\xef\x86\xac".decode("utf-8") # U+f1ac
- ICON_FA_FEATHER = b"\xef\x94\xad".decode("utf-8") # U+f52d
- ICON_FA_FEATHER_POINTED = b"\xef\x95\xab".decode("utf-8") # U+f56b
- ICON_FA_FERRY = b"\xee\x93\xaa".decode("utf-8") # U+e4ea
- ICON_FA_FILE = b"\xef\x85\x9b".decode("utf-8") # U+f15b
- ICON_FA_FILE_ARROW_DOWN = b"\xef\x95\xad".decode("utf-8") # U+f56d
- ICON_FA_FILE_ARROW_UP = b"\xef\x95\xb4".decode("utf-8") # U+f574
- ICON_FA_FILE_AUDIO = b"\xef\x87\x87".decode("utf-8") # U+f1c7
- ICON_FA_FILE_CIRCLE_CHECK = b"\xee\x96\xa0".decode("utf-8") # U+e5a0
- ICON_FA_FILE_CIRCLE_EXCLAMATION = b"\xee\x93\xab".decode("utf-8") # U+e4eb
- ICON_FA_FILE_CIRCLE_MINUS = b"\xee\x93\xad".decode("utf-8") # U+e4ed
- ICON_FA_FILE_CIRCLE_PLUS = b"\xee\x92\x94".decode("utf-8") # U+e494
- ICON_FA_FILE_CIRCLE_QUESTION = b"\xee\x93\xaf".decode("utf-8") # U+e4ef
- ICON_FA_FILE_CIRCLE_XMARK = b"\xee\x96\xa1".decode("utf-8") # U+e5a1
- ICON_FA_FILE_CODE = b"\xef\x87\x89".decode("utf-8") # U+f1c9
- ICON_FA_FILE_CONTRACT = b"\xef\x95\xac".decode("utf-8") # U+f56c
- ICON_FA_FILE_CSV = b"\xef\x9b\x9d".decode("utf-8") # U+f6dd
- ICON_FA_FILE_EXCEL = b"\xef\x87\x83".decode("utf-8") # U+f1c3
- ICON_FA_FILE_EXPORT = b"\xef\x95\xae".decode("utf-8") # U+f56e
- ICON_FA_FILE_IMAGE = b"\xef\x87\x85".decode("utf-8") # U+f1c5
- ICON_FA_FILE_IMPORT = b"\xef\x95\xaf".decode("utf-8") # U+f56f
- ICON_FA_FILE_INVOICE = b"\xef\x95\xb0".decode("utf-8") # U+f570
- ICON_FA_FILE_INVOICE_DOLLAR = b"\xef\x95\xb1".decode("utf-8") # U+f571
- ICON_FA_FILE_LINES = b"\xef\x85\x9c".decode("utf-8") # U+f15c
- ICON_FA_FILE_MEDICAL = b"\xef\x91\xb7".decode("utf-8") # U+f477
- ICON_FA_FILE_PDF = b"\xef\x87\x81".decode("utf-8") # U+f1c1
- ICON_FA_FILE_PEN = b"\xef\x8c\x9c".decode("utf-8") # U+f31c
- ICON_FA_FILE_POWERPOINT = b"\xef\x87\x84".decode("utf-8") # U+f1c4
- ICON_FA_FILE_PRESCRIPTION = b"\xef\x95\xb2".decode("utf-8") # U+f572
- ICON_FA_FILE_SHIELD = b"\xee\x93\xb0".decode("utf-8") # U+e4f0
- ICON_FA_FILE_SIGNATURE = b"\xef\x95\xb3".decode("utf-8") # U+f573
- ICON_FA_FILE_VIDEO = b"\xef\x87\x88".decode("utf-8") # U+f1c8
- ICON_FA_FILE_WAVEFORM = b"\xef\x91\xb8".decode("utf-8") # U+f478
- ICON_FA_FILE_WORD = b"\xef\x87\x82".decode("utf-8") # U+f1c2
- ICON_FA_FILE_ZIPPER = b"\xef\x87\x86".decode("utf-8") # U+f1c6
- ICON_FA_FILL = b"\xef\x95\xb5".decode("utf-8") # U+f575
- ICON_FA_FILL_DRIP = b"\xef\x95\xb6".decode("utf-8") # U+f576
- ICON_FA_FILM = b"\xef\x80\x88".decode("utf-8") # U+f008
- ICON_FA_FILTER = b"\xef\x82\xb0".decode("utf-8") # U+f0b0
- ICON_FA_FILTER_CIRCLE_DOLLAR = b"\xef\x99\xa2".decode("utf-8") # U+f662
- ICON_FA_FILTER_CIRCLE_XMARK = b"\xee\x85\xbb".decode("utf-8") # U+e17b
- ICON_FA_FINGERPRINT = b"\xef\x95\xb7".decode("utf-8") # U+f577
- ICON_FA_FIRE = b"\xef\x81\xad".decode("utf-8") # U+f06d
- ICON_FA_FIRE_BURNER = b"\xee\x93\xb1".decode("utf-8") # U+e4f1
- ICON_FA_FIRE_EXTINGUISHER = b"\xef\x84\xb4".decode("utf-8") # U+f134
- ICON_FA_FIRE_FLAME_CURVED = b"\xef\x9f\xa4".decode("utf-8") # U+f7e4
- ICON_FA_FIRE_FLAME_SIMPLE = b"\xef\x91\xaa".decode("utf-8") # U+f46a
- ICON_FA_FISH = b"\xef\x95\xb8".decode("utf-8") # U+f578
- ICON_FA_FISH_FINS = b"\xee\x93\xb2".decode("utf-8") # U+e4f2
- ICON_FA_FLAG = b"\xef\x80\xa4".decode("utf-8") # U+f024
- ICON_FA_FLAG_CHECKERED = b"\xef\x84\x9e".decode("utf-8") # U+f11e
- ICON_FA_FLAG_USA = b"\xef\x9d\x8d".decode("utf-8") # U+f74d
- ICON_FA_FLASK = b"\xef\x83\x83".decode("utf-8") # U+f0c3
- ICON_FA_FLASK_VIAL = b"\xee\x93\xb3".decode("utf-8") # U+e4f3
- ICON_FA_FLOPPY_DISK = b"\xef\x83\x87".decode("utf-8") # U+f0c7
- ICON_FA_FLORIN_SIGN = b"\xee\x86\x84".decode("utf-8") # U+e184
- ICON_FA_FOLDER = b"\xef\x81\xbb".decode("utf-8") # U+f07b
- ICON_FA_FOLDER_CLOSED = b"\xee\x86\x85".decode("utf-8") # U+e185
- ICON_FA_FOLDER_MINUS = b"\xef\x99\x9d".decode("utf-8") # U+f65d
- ICON_FA_FOLDER_OPEN = b"\xef\x81\xbc".decode("utf-8") # U+f07c
- ICON_FA_FOLDER_PLUS = b"\xef\x99\x9e".decode("utf-8") # U+f65e
- ICON_FA_FOLDER_TREE = b"\xef\xa0\x82".decode("utf-8") # U+f802
- ICON_FA_FONT = b"\xef\x80\xb1".decode("utf-8") # U+f031
- ICON_FA_FONT_AWESOME = b"\xef\x8a\xb4".decode("utf-8") # U+f2b4
- ICON_FA_FOOTBALL = b"\xef\x91\x8e".decode("utf-8") # U+f44e
- ICON_FA_FORWARD = b"\xef\x81\x8e".decode("utf-8") # U+f04e
- ICON_FA_FORWARD_FAST = b"\xef\x81\x90".decode("utf-8") # U+f050
- ICON_FA_FORWARD_STEP = b"\xef\x81\x91".decode("utf-8") # U+f051
- ICON_FA_FRANC_SIGN = b"\xee\x86\x8f".decode("utf-8") # U+e18f
- ICON_FA_FROG = b"\xef\x94\xae".decode("utf-8") # U+f52e
- ICON_FA_FUTBOL = b"\xef\x87\xa3".decode("utf-8") # U+f1e3
- ICON_FA_G = b"G".decode("utf-8") # U+0047
- ICON_FA_GAMEPAD = b"\xef\x84\x9b".decode("utf-8") # U+f11b
- ICON_FA_GAS_PUMP = b"\xef\x94\xaf".decode("utf-8") # U+f52f
- ICON_FA_GAUGE = b"\xef\x98\xa4".decode("utf-8") # U+f624
- ICON_FA_GAUGE_HIGH = b"\xef\x98\xa5".decode("utf-8") # U+f625
- ICON_FA_GAUGE_SIMPLE = b"\xef\x98\xa9".decode("utf-8") # U+f629
- ICON_FA_GAUGE_SIMPLE_HIGH = b"\xef\x98\xaa".decode("utf-8") # U+f62a
- ICON_FA_GAVEL = b"\xef\x83\xa3".decode("utf-8") # U+f0e3
- ICON_FA_GEAR = b"\xef\x80\x93".decode("utf-8") # U+f013
- ICON_FA_GEARS = b"\xef\x82\x85".decode("utf-8") # U+f085
- ICON_FA_GEM = b"\xef\x8e\xa5".decode("utf-8") # U+f3a5
- ICON_FA_GENDERLESS = b"\xef\x88\xad".decode("utf-8") # U+f22d
- ICON_FA_GHOST = b"\xef\x9b\xa2".decode("utf-8") # U+f6e2
- ICON_FA_GIFT = b"\xef\x81\xab".decode("utf-8") # U+f06b
- ICON_FA_GIFTS = b"\xef\x9e\x9c".decode("utf-8") # U+f79c
- ICON_FA_GLASS_WATER = b"\xee\x93\xb4".decode("utf-8") # U+e4f4
- ICON_FA_GLASS_WATER_DROPLET = b"\xee\x93\xb5".decode("utf-8") # U+e4f5
- ICON_FA_GLASSES = b"\xef\x94\xb0".decode("utf-8") # U+f530
- ICON_FA_GLOBE = b"\xef\x82\xac".decode("utf-8") # U+f0ac
- ICON_FA_GOLF_BALL_TEE = b"\xef\x91\x90".decode("utf-8") # U+f450
- ICON_FA_GOPURAM = b"\xef\x99\xa4".decode("utf-8") # U+f664
- ICON_FA_GRADUATION_CAP = b"\xef\x86\x9d".decode("utf-8") # U+f19d
- ICON_FA_GREATER_THAN = b">".decode("utf-8") # U+003e
- ICON_FA_GREATER_THAN_EQUAL = b"\xef\x94\xb2".decode("utf-8") # U+f532
- ICON_FA_GRIP = b"\xef\x96\x8d".decode("utf-8") # U+f58d
- ICON_FA_GRIP_LINES = b"\xef\x9e\xa4".decode("utf-8") # U+f7a4
- ICON_FA_GRIP_LINES_VERTICAL = b"\xef\x9e\xa5".decode("utf-8") # U+f7a5
- ICON_FA_GRIP_VERTICAL = b"\xef\x96\x8e".decode("utf-8") # U+f58e
- ICON_FA_GROUP_ARROWS_ROTATE = b"\xee\x93\xb6".decode("utf-8") # U+e4f6
- ICON_FA_GUARANI_SIGN = b"\xee\x86\x9a".decode("utf-8") # U+e19a
- ICON_FA_GUITAR = b"\xef\x9e\xa6".decode("utf-8") # U+f7a6
- ICON_FA_GUN = b"\xee\x86\x9b".decode("utf-8") # U+e19b
- ICON_FA_H = b"H".decode("utf-8") # U+0048
- ICON_FA_HAMMER = b"\xef\x9b\xa3".decode("utf-8") # U+f6e3
- ICON_FA_HAMSA = b"\xef\x99\xa5".decode("utf-8") # U+f665
- ICON_FA_HAND = b"\xef\x89\x96".decode("utf-8") # U+f256
- ICON_FA_HAND_BACK_FIST = b"\xef\x89\x95".decode("utf-8") # U+f255
- ICON_FA_HAND_DOTS = b"\xef\x91\xa1".decode("utf-8") # U+f461
- ICON_FA_HAND_FIST = b"\xef\x9b\x9e".decode("utf-8") # U+f6de
- ICON_FA_HAND_HOLDING = b"\xef\x92\xbd".decode("utf-8") # U+f4bd
- ICON_FA_HAND_HOLDING_DOLLAR = b"\xef\x93\x80".decode("utf-8") # U+f4c0
- ICON_FA_HAND_HOLDING_DROPLET = b"\xef\x93\x81".decode("utf-8") # U+f4c1
- ICON_FA_HAND_HOLDING_HAND = b"\xee\x93\xb7".decode("utf-8") # U+e4f7
- ICON_FA_HAND_HOLDING_HEART = b"\xef\x92\xbe".decode("utf-8") # U+f4be
- ICON_FA_HAND_HOLDING_MEDICAL = b"\xee\x81\x9c".decode("utf-8") # U+e05c
- ICON_FA_HAND_LIZARD = b"\xef\x89\x98".decode("utf-8") # U+f258
- ICON_FA_HAND_MIDDLE_FINGER = b"\xef\xa0\x86".decode("utf-8") # U+f806
- ICON_FA_HAND_PEACE = b"\xef\x89\x9b".decode("utf-8") # U+f25b
- ICON_FA_HAND_POINT_DOWN = b"\xef\x82\xa7".decode("utf-8") # U+f0a7
- ICON_FA_HAND_POINT_LEFT = b"\xef\x82\xa5".decode("utf-8") # U+f0a5
- ICON_FA_HAND_POINT_RIGHT = b"\xef\x82\xa4".decode("utf-8") # U+f0a4
- ICON_FA_HAND_POINT_UP = b"\xef\x82\xa6".decode("utf-8") # U+f0a6
- ICON_FA_HAND_POINTER = b"\xef\x89\x9a".decode("utf-8") # U+f25a
- ICON_FA_HAND_SCISSORS = b"\xef\x89\x97".decode("utf-8") # U+f257
- ICON_FA_HAND_SPARKLES = b"\xee\x81\x9d".decode("utf-8") # U+e05d
- ICON_FA_HAND_SPOCK = b"\xef\x89\x99".decode("utf-8") # U+f259
- ICON_FA_HANDCUFFS = b"\xee\x93\xb8".decode("utf-8") # U+e4f8
- ICON_FA_HANDS = b"\xef\x8a\xa7".decode("utf-8") # U+f2a7
- ICON_FA_HANDS_ASL_INTERPRETING = b"\xef\x8a\xa3".decode("utf-8") # U+f2a3
- ICON_FA_HANDS_BOUND = b"\xee\x93\xb9".decode("utf-8") # U+e4f9
- ICON_FA_HANDS_BUBBLES = b"\xee\x81\x9e".decode("utf-8") # U+e05e
- ICON_FA_HANDS_CLAPPING = b"\xee\x86\xa8".decode("utf-8") # U+e1a8
- ICON_FA_HANDS_HOLDING = b"\xef\x93\x82".decode("utf-8") # U+f4c2
- ICON_FA_HANDS_HOLDING_CHILD = b"\xee\x93\xba".decode("utf-8") # U+e4fa
- ICON_FA_HANDS_HOLDING_CIRCLE = b"\xee\x93\xbb".decode("utf-8") # U+e4fb
- ICON_FA_HANDS_PRAYING = b"\xef\x9a\x84".decode("utf-8") # U+f684
- ICON_FA_HANDSHAKE = b"\xef\x8a\xb5".decode("utf-8") # U+f2b5
- ICON_FA_HANDSHAKE_ANGLE = b"\xef\x93\x84".decode("utf-8") # U+f4c4
- ICON_FA_HANDSHAKE_SIMPLE = b"\xef\x93\x86".decode("utf-8") # U+f4c6
- ICON_FA_HANDSHAKE_SIMPLE_SLASH = b"\xee\x81\x9f".decode("utf-8") # U+e05f
- ICON_FA_HANDSHAKE_SLASH = b"\xee\x81\xa0".decode("utf-8") # U+e060
- ICON_FA_HANUKIAH = b"\xef\x9b\xa6".decode("utf-8") # U+f6e6
- ICON_FA_HARD_DRIVE = b"\xef\x82\xa0".decode("utf-8") # U+f0a0
- ICON_FA_HASHTAG = b"#".decode("utf-8") # U+0023
- ICON_FA_HAT_COWBOY = b"\xef\xa3\x80".decode("utf-8") # U+f8c0
- ICON_FA_HAT_COWBOY_SIDE = b"\xef\xa3\x81".decode("utf-8") # U+f8c1
- ICON_FA_HAT_WIZARD = b"\xef\x9b\xa8".decode("utf-8") # U+f6e8
- ICON_FA_HEAD_SIDE_COUGH = b"\xee\x81\xa1".decode("utf-8") # U+e061
- ICON_FA_HEAD_SIDE_COUGH_SLASH = b"\xee\x81\xa2".decode("utf-8") # U+e062
- ICON_FA_HEAD_SIDE_MASK = b"\xee\x81\xa3".decode("utf-8") # U+e063
- ICON_FA_HEAD_SIDE_VIRUS = b"\xee\x81\xa4".decode("utf-8") # U+e064
- ICON_FA_HEADING = b"\xef\x87\x9c".decode("utf-8") # U+f1dc
- ICON_FA_HEADPHONES = b"\xef\x80\xa5".decode("utf-8") # U+f025
- ICON_FA_HEADPHONES_SIMPLE = b"\xef\x96\x8f".decode("utf-8") # U+f58f
- ICON_FA_HEADSET = b"\xef\x96\x90".decode("utf-8") # U+f590
- ICON_FA_HEART = b"\xef\x80\x84".decode("utf-8") # U+f004
- ICON_FA_HEART_CIRCLE_BOLT = b"\xee\x93\xbc".decode("utf-8") # U+e4fc
- ICON_FA_HEART_CIRCLE_CHECK = b"\xee\x93\xbd".decode("utf-8") # U+e4fd
- ICON_FA_HEART_CIRCLE_EXCLAMATION = b"\xee\x93\xbe".decode("utf-8") # U+e4fe
- ICON_FA_HEART_CIRCLE_MINUS = b"\xee\x93\xbf".decode("utf-8") # U+e4ff
- ICON_FA_HEART_CIRCLE_PLUS = b"\xee\x94\x80".decode("utf-8") # U+e500
- ICON_FA_HEART_CIRCLE_XMARK = b"\xee\x94\x81".decode("utf-8") # U+e501
- ICON_FA_HEART_CRACK = b"\xef\x9e\xa9".decode("utf-8") # U+f7a9
- ICON_FA_HEART_PULSE = b"\xef\x88\x9e".decode("utf-8") # U+f21e
- ICON_FA_HELICOPTER = b"\xef\x94\xb3".decode("utf-8") # U+f533
- ICON_FA_HELICOPTER_SYMBOL = b"\xee\x94\x82".decode("utf-8") # U+e502
- ICON_FA_HELMET_SAFETY = b"\xef\xa0\x87".decode("utf-8") # U+f807
- ICON_FA_HELMET_UN = b"\xee\x94\x83".decode("utf-8") # U+e503
- ICON_FA_HIGHLIGHTER = b"\xef\x96\x91".decode("utf-8") # U+f591
- ICON_FA_HILL_AVALANCHE = b"\xee\x94\x87".decode("utf-8") # U+e507
- ICON_FA_HILL_ROCKSLIDE = b"\xee\x94\x88".decode("utf-8") # U+e508
- ICON_FA_HIPPO = b"\xef\x9b\xad".decode("utf-8") # U+f6ed
- ICON_FA_HOCKEY_PUCK = b"\xef\x91\x93".decode("utf-8") # U+f453
- ICON_FA_HOLLY_BERRY = b"\xef\x9e\xaa".decode("utf-8") # U+f7aa
- ICON_FA_HORSE = b"\xef\x9b\xb0".decode("utf-8") # U+f6f0
- ICON_FA_HORSE_HEAD = b"\xef\x9e\xab".decode("utf-8") # U+f7ab
- ICON_FA_HOSPITAL = b"\xef\x83\xb8".decode("utf-8") # U+f0f8
- ICON_FA_HOSPITAL_USER = b"\xef\xa0\x8d".decode("utf-8") # U+f80d
- ICON_FA_HOT_TUB_PERSON = b"\xef\x96\x93".decode("utf-8") # U+f593
- ICON_FA_HOTDOG = b"\xef\xa0\x8f".decode("utf-8") # U+f80f
- ICON_FA_HOTEL = b"\xef\x96\x94".decode("utf-8") # U+f594
- ICON_FA_HOURGLASS = b"\xef\x89\x94".decode("utf-8") # U+f254
- ICON_FA_HOURGLASS_END = b"\xef\x89\x93".decode("utf-8") # U+f253
- ICON_FA_HOURGLASS_HALF = b"\xef\x89\x92".decode("utf-8") # U+f252
- ICON_FA_HOURGLASS_START = b"\xef\x89\x91".decode("utf-8") # U+f251
- ICON_FA_HOUSE = b"\xef\x80\x95".decode("utf-8") # U+f015
- ICON_FA_HOUSE_CHIMNEY = b"\xee\x8e\xaf".decode("utf-8") # U+e3af
- ICON_FA_HOUSE_CHIMNEY_CRACK = b"\xef\x9b\xb1".decode("utf-8") # U+f6f1
- ICON_FA_HOUSE_CHIMNEY_MEDICAL = b"\xef\x9f\xb2".decode("utf-8") # U+f7f2
- ICON_FA_HOUSE_CHIMNEY_USER = b"\xee\x81\xa5".decode("utf-8") # U+e065
- ICON_FA_HOUSE_CHIMNEY_WINDOW = b"\xee\x80\x8d".decode("utf-8") # U+e00d
- ICON_FA_HOUSE_CIRCLE_CHECK = b"\xee\x94\x89".decode("utf-8") # U+e509
- ICON_FA_HOUSE_CIRCLE_EXCLAMATION = b"\xee\x94\x8a".decode("utf-8") # U+e50a
- ICON_FA_HOUSE_CIRCLE_XMARK = b"\xee\x94\x8b".decode("utf-8") # U+e50b
- ICON_FA_HOUSE_CRACK = b"\xee\x8e\xb1".decode("utf-8") # U+e3b1
- ICON_FA_HOUSE_FIRE = b"\xee\x94\x8c".decode("utf-8") # U+e50c
- ICON_FA_HOUSE_FLAG = b"\xee\x94\x8d".decode("utf-8") # U+e50d
- ICON_FA_HOUSE_FLOOD_WATER = b"\xee\x94\x8e".decode("utf-8") # U+e50e
- ICON_FA_HOUSE_FLOOD_WATER_CIRCLE_ARROW_RIGHT = b"\xee\x94\x8f".decode("utf-8") # U+e50f
- ICON_FA_HOUSE_LAPTOP = b"\xee\x81\xa6".decode("utf-8") # U+e066
- ICON_FA_HOUSE_LOCK = b"\xee\x94\x90".decode("utf-8") # U+e510
- ICON_FA_HOUSE_MEDICAL = b"\xee\x8e\xb2".decode("utf-8") # U+e3b2
- ICON_FA_HOUSE_MEDICAL_CIRCLE_CHECK = b"\xee\x94\x91".decode("utf-8") # U+e511
- ICON_FA_HOUSE_MEDICAL_CIRCLE_EXCLAMATION = b"\xee\x94\x92".decode("utf-8") # U+e512
- ICON_FA_HOUSE_MEDICAL_CIRCLE_XMARK = b"\xee\x94\x93".decode("utf-8") # U+e513
- ICON_FA_HOUSE_MEDICAL_FLAG = b"\xee\x94\x94".decode("utf-8") # U+e514
- ICON_FA_HOUSE_SIGNAL = b"\xee\x80\x92".decode("utf-8") # U+e012
- ICON_FA_HOUSE_TSUNAMI = b"\xee\x94\x95".decode("utf-8") # U+e515
- ICON_FA_HOUSE_USER = b"\xee\x86\xb0".decode("utf-8") # U+e1b0
- ICON_FA_HRYVNIA_SIGN = b"\xef\x9b\xb2".decode("utf-8") # U+f6f2
- ICON_FA_HURRICANE = b"\xef\x9d\x91".decode("utf-8") # U+f751
- ICON_FA_I = b"I".decode("utf-8") # U+0049
- ICON_FA_I_CURSOR = b"\xef\x89\x86".decode("utf-8") # U+f246
- ICON_FA_ICE_CREAM = b"\xef\xa0\x90".decode("utf-8") # U+f810
- ICON_FA_ICICLES = b"\xef\x9e\xad".decode("utf-8") # U+f7ad
- ICON_FA_ICONS = b"\xef\xa1\xad".decode("utf-8") # U+f86d
- ICON_FA_ID_BADGE = b"\xef\x8b\x81".decode("utf-8") # U+f2c1
- ICON_FA_ID_CARD = b"\xef\x8b\x82".decode("utf-8") # U+f2c2
- ICON_FA_ID_CARD_CLIP = b"\xef\x91\xbf".decode("utf-8") # U+f47f
- ICON_FA_IGLOO = b"\xef\x9e\xae".decode("utf-8") # U+f7ae
- ICON_FA_IMAGE = b"\xef\x80\xbe".decode("utf-8") # U+f03e
- ICON_FA_IMAGE_PORTRAIT = b"\xef\x8f\xa0".decode("utf-8") # U+f3e0
- ICON_FA_IMAGES = b"\xef\x8c\x82".decode("utf-8") # U+f302
- ICON_FA_INBOX = b"\xef\x80\x9c".decode("utf-8") # U+f01c
- ICON_FA_INDENT = b"\xef\x80\xbc".decode("utf-8") # U+f03c
- ICON_FA_INDIAN_RUPEE_SIGN = b"\xee\x86\xbc".decode("utf-8") # U+e1bc
- ICON_FA_INDUSTRY = b"\xef\x89\xb5".decode("utf-8") # U+f275
- ICON_FA_INFINITY = b"\xef\x94\xb4".decode("utf-8") # U+f534
- ICON_FA_INFO = b"\xef\x84\xa9".decode("utf-8") # U+f129
- ICON_FA_ITALIC = b"\xef\x80\xb3".decode("utf-8") # U+f033
- ICON_FA_J = b"J".decode("utf-8") # U+004a
- ICON_FA_JAR = b"\xee\x94\x96".decode("utf-8") # U+e516
- ICON_FA_JAR_WHEAT = b"\xee\x94\x97".decode("utf-8") # U+e517
- ICON_FA_JEDI = b"\xef\x99\xa9".decode("utf-8") # U+f669
- ICON_FA_JET_FIGHTER = b"\xef\x83\xbb".decode("utf-8") # U+f0fb
- ICON_FA_JET_FIGHTER_UP = b"\xee\x94\x98".decode("utf-8") # U+e518
- ICON_FA_JOINT = b"\xef\x96\x95".decode("utf-8") # U+f595
- ICON_FA_JUG_DETERGENT = b"\xee\x94\x99".decode("utf-8") # U+e519
- ICON_FA_K = b"K".decode("utf-8") # U+004b
- ICON_FA_KAABA = b"\xef\x99\xab".decode("utf-8") # U+f66b
- ICON_FA_KEY = b"\xef\x82\x84".decode("utf-8") # U+f084
- ICON_FA_KEYBOARD = b"\xef\x84\x9c".decode("utf-8") # U+f11c
- ICON_FA_KHANDA = b"\xef\x99\xad".decode("utf-8") # U+f66d
- ICON_FA_KIP_SIGN = b"\xee\x87\x84".decode("utf-8") # U+e1c4
- ICON_FA_KIT_MEDICAL = b"\xef\x91\xb9".decode("utf-8") # U+f479
- ICON_FA_KITCHEN_SET = b"\xee\x94\x9a".decode("utf-8") # U+e51a
- ICON_FA_KIWI_BIRD = b"\xef\x94\xb5".decode("utf-8") # U+f535
- ICON_FA_L = b"L".decode("utf-8") # U+004c
- ICON_FA_LAND_MINE_ON = b"\xee\x94\x9b".decode("utf-8") # U+e51b
- ICON_FA_LANDMARK = b"\xef\x99\xaf".decode("utf-8") # U+f66f
- ICON_FA_LANDMARK_DOME = b"\xef\x9d\x92".decode("utf-8") # U+f752
- ICON_FA_LANDMARK_FLAG = b"\xee\x94\x9c".decode("utf-8") # U+e51c
- ICON_FA_LANGUAGE = b"\xef\x86\xab".decode("utf-8") # U+f1ab
- ICON_FA_LAPTOP = b"\xef\x84\x89".decode("utf-8") # U+f109
- ICON_FA_LAPTOP_CODE = b"\xef\x97\xbc".decode("utf-8") # U+f5fc
- ICON_FA_LAPTOP_FILE = b"\xee\x94\x9d".decode("utf-8") # U+e51d
- ICON_FA_LAPTOP_MEDICAL = b"\xef\xa0\x92".decode("utf-8") # U+f812
- ICON_FA_LARI_SIGN = b"\xee\x87\x88".decode("utf-8") # U+e1c8
- ICON_FA_LAYER_GROUP = b"\xef\x97\xbd".decode("utf-8") # U+f5fd
- ICON_FA_LEAF = b"\xef\x81\xac".decode("utf-8") # U+f06c
- ICON_FA_LEFT_LONG = b"\xef\x8c\x8a".decode("utf-8") # U+f30a
- ICON_FA_LEFT_RIGHT = b"\xef\x8c\xb7".decode("utf-8") # U+f337
- ICON_FA_LEMON = b"\xef\x82\x94".decode("utf-8") # U+f094
- ICON_FA_LESS_THAN = b"<".decode("utf-8") # U+003c
- ICON_FA_LESS_THAN_EQUAL = b"\xef\x94\xb7".decode("utf-8") # U+f537
- ICON_FA_LIFE_RING = b"\xef\x87\x8d".decode("utf-8") # U+f1cd
- ICON_FA_LIGHTBULB = b"\xef\x83\xab".decode("utf-8") # U+f0eb
- ICON_FA_LINES_LEANING = b"\xee\x94\x9e".decode("utf-8") # U+e51e
- ICON_FA_LINK = b"\xef\x83\x81".decode("utf-8") # U+f0c1
- ICON_FA_LINK_SLASH = b"\xef\x84\xa7".decode("utf-8") # U+f127
- ICON_FA_LIRA_SIGN = b"\xef\x86\x95".decode("utf-8") # U+f195
- ICON_FA_LIST = b"\xef\x80\xba".decode("utf-8") # U+f03a
- ICON_FA_LIST_CHECK = b"\xef\x82\xae".decode("utf-8") # U+f0ae
- ICON_FA_LIST_OL = b"\xef\x83\x8b".decode("utf-8") # U+f0cb
- ICON_FA_LIST_UL = b"\xef\x83\x8a".decode("utf-8") # U+f0ca
- ICON_FA_LITECOIN_SIGN = b"\xee\x87\x93".decode("utf-8") # U+e1d3
- ICON_FA_LOCATION_ARROW = b"\xef\x84\xa4".decode("utf-8") # U+f124
- ICON_FA_LOCATION_CROSSHAIRS = b"\xef\x98\x81".decode("utf-8") # U+f601
- ICON_FA_LOCATION_DOT = b"\xef\x8f\x85".decode("utf-8") # U+f3c5
- ICON_FA_LOCATION_PIN = b"\xef\x81\x81".decode("utf-8") # U+f041
- ICON_FA_LOCATION_PIN_LOCK = b"\xee\x94\x9f".decode("utf-8") # U+e51f
- ICON_FA_LOCK = b"\xef\x80\xa3".decode("utf-8") # U+f023
- ICON_FA_LOCK_OPEN = b"\xef\x8f\x81".decode("utf-8") # U+f3c1
- ICON_FA_LOCUST = b"\xee\x94\xa0".decode("utf-8") # U+e520
- ICON_FA_LUNGS = b"\xef\x98\x84".decode("utf-8") # U+f604
- ICON_FA_LUNGS_VIRUS = b"\xee\x81\xa7".decode("utf-8") # U+e067
- ICON_FA_M = b"M".decode("utf-8") # U+004d
- ICON_FA_MAGNET = b"\xef\x81\xb6".decode("utf-8") # U+f076
- ICON_FA_MAGNIFYING_GLASS = b"\xef\x80\x82".decode("utf-8") # U+f002
- ICON_FA_MAGNIFYING_GLASS_ARROW_RIGHT = b"\xee\x94\xa1".decode("utf-8") # U+e521
- ICON_FA_MAGNIFYING_GLASS_CHART = b"\xee\x94\xa2".decode("utf-8") # U+e522
- ICON_FA_MAGNIFYING_GLASS_DOLLAR = b"\xef\x9a\x88".decode("utf-8") # U+f688
- ICON_FA_MAGNIFYING_GLASS_LOCATION = b"\xef\x9a\x89".decode("utf-8") # U+f689
- ICON_FA_MAGNIFYING_GLASS_MINUS = b"\xef\x80\x90".decode("utf-8") # U+f010
- ICON_FA_MAGNIFYING_GLASS_PLUS = b"\xef\x80\x8e".decode("utf-8") # U+f00e
- ICON_FA_MANAT_SIGN = b"\xee\x87\x95".decode("utf-8") # U+e1d5
- ICON_FA_MAP = b"\xef\x89\xb9".decode("utf-8") # U+f279
- ICON_FA_MAP_LOCATION = b"\xef\x96\x9f".decode("utf-8") # U+f59f
- ICON_FA_MAP_LOCATION_DOT = b"\xef\x96\xa0".decode("utf-8") # U+f5a0
- ICON_FA_MAP_PIN = b"\xef\x89\xb6".decode("utf-8") # U+f276
- ICON_FA_MARKER = b"\xef\x96\xa1".decode("utf-8") # U+f5a1
- ICON_FA_MARS = b"\xef\x88\xa2".decode("utf-8") # U+f222
- ICON_FA_MARS_AND_VENUS = b"\xef\x88\xa4".decode("utf-8") # U+f224
- ICON_FA_MARS_AND_VENUS_BURST = b"\xee\x94\xa3".decode("utf-8") # U+e523
- ICON_FA_MARS_DOUBLE = b"\xef\x88\xa7".decode("utf-8") # U+f227
- ICON_FA_MARS_STROKE = b"\xef\x88\xa9".decode("utf-8") # U+f229
- ICON_FA_MARS_STROKE_RIGHT = b"\xef\x88\xab".decode("utf-8") # U+f22b
- ICON_FA_MARS_STROKE_UP = b"\xef\x88\xaa".decode("utf-8") # U+f22a
- ICON_FA_MARTINI_GLASS = b"\xef\x95\xbb".decode("utf-8") # U+f57b
- ICON_FA_MARTINI_GLASS_CITRUS = b"\xef\x95\xa1".decode("utf-8") # U+f561
- ICON_FA_MARTINI_GLASS_EMPTY = b"\xef\x80\x80".decode("utf-8") # U+f000
- ICON_FA_MASK = b"\xef\x9b\xba".decode("utf-8") # U+f6fa
- ICON_FA_MASK_FACE = b"\xee\x87\x97".decode("utf-8") # U+e1d7
- ICON_FA_MASK_VENTILATOR = b"\xee\x94\xa4".decode("utf-8") # U+e524
- ICON_FA_MASKS_THEATER = b"\xef\x98\xb0".decode("utf-8") # U+f630
- ICON_FA_MATTRESS_PILLOW = b"\xee\x94\xa5".decode("utf-8") # U+e525
- ICON_FA_MAXIMIZE = b"\xef\x8c\x9e".decode("utf-8") # U+f31e
- ICON_FA_MEDAL = b"\xef\x96\xa2".decode("utf-8") # U+f5a2
- ICON_FA_MEMORY = b"\xef\x94\xb8".decode("utf-8") # U+f538
- ICON_FA_MENORAH = b"\xef\x99\xb6".decode("utf-8") # U+f676
- ICON_FA_MERCURY = b"\xef\x88\xa3".decode("utf-8") # U+f223
- ICON_FA_MESSAGE = b"\xef\x89\xba".decode("utf-8") # U+f27a
- ICON_FA_METEOR = b"\xef\x9d\x93".decode("utf-8") # U+f753
- ICON_FA_MICROCHIP = b"\xef\x8b\x9b".decode("utf-8") # U+f2db
- ICON_FA_MICROPHONE = b"\xef\x84\xb0".decode("utf-8") # U+f130
- ICON_FA_MICROPHONE_LINES = b"\xef\x8f\x89".decode("utf-8") # U+f3c9
- ICON_FA_MICROPHONE_LINES_SLASH = b"\xef\x94\xb9".decode("utf-8") # U+f539
- ICON_FA_MICROPHONE_SLASH = b"\xef\x84\xb1".decode("utf-8") # U+f131
- ICON_FA_MICROSCOPE = b"\xef\x98\x90".decode("utf-8") # U+f610
- ICON_FA_MILL_SIGN = b"\xee\x87\xad".decode("utf-8") # U+e1ed
- ICON_FA_MINIMIZE = b"\xef\x9e\x8c".decode("utf-8") # U+f78c
- ICON_FA_MINUS = b"\xef\x81\xa8".decode("utf-8") # U+f068
- ICON_FA_MITTEN = b"\xef\x9e\xb5".decode("utf-8") # U+f7b5
- ICON_FA_MOBILE = b"\xef\x8f\x8e".decode("utf-8") # U+f3ce
- ICON_FA_MOBILE_BUTTON = b"\xef\x84\x8b".decode("utf-8") # U+f10b
- ICON_FA_MOBILE_RETRO = b"\xee\x94\xa7".decode("utf-8") # U+e527
- ICON_FA_MOBILE_SCREEN = b"\xef\x8f\x8f".decode("utf-8") # U+f3cf
- ICON_FA_MOBILE_SCREEN_BUTTON = b"\xef\x8f\x8d".decode("utf-8") # U+f3cd
- ICON_FA_MONEY_BILL = b"\xef\x83\x96".decode("utf-8") # U+f0d6
- ICON_FA_MONEY_BILL_1 = b"\xef\x8f\x91".decode("utf-8") # U+f3d1
- ICON_FA_MONEY_BILL_1_WAVE = b"\xef\x94\xbb".decode("utf-8") # U+f53b
- ICON_FA_MONEY_BILL_TRANSFER = b"\xee\x94\xa8".decode("utf-8") # U+e528
- ICON_FA_MONEY_BILL_TREND_UP = b"\xee\x94\xa9".decode("utf-8") # U+e529
- ICON_FA_MONEY_BILL_WAVE = b"\xef\x94\xba".decode("utf-8") # U+f53a
- ICON_FA_MONEY_BILL_WHEAT = b"\xee\x94\xaa".decode("utf-8") # U+e52a
- ICON_FA_MONEY_BILLS = b"\xee\x87\xb3".decode("utf-8") # U+e1f3
- ICON_FA_MONEY_CHECK = b"\xef\x94\xbc".decode("utf-8") # U+f53c
- ICON_FA_MONEY_CHECK_DOLLAR = b"\xef\x94\xbd".decode("utf-8") # U+f53d
- ICON_FA_MONUMENT = b"\xef\x96\xa6".decode("utf-8") # U+f5a6
- ICON_FA_MOON = b"\xef\x86\x86".decode("utf-8") # U+f186
- ICON_FA_MORTAR_PESTLE = b"\xef\x96\xa7".decode("utf-8") # U+f5a7
- ICON_FA_MOSQUE = b"\xef\x99\xb8".decode("utf-8") # U+f678
- ICON_FA_MOSQUITO = b"\xee\x94\xab".decode("utf-8") # U+e52b
- ICON_FA_MOSQUITO_NET = b"\xee\x94\xac".decode("utf-8") # U+e52c
- ICON_FA_MOTORCYCLE = b"\xef\x88\x9c".decode("utf-8") # U+f21c
- ICON_FA_MOUND = b"\xee\x94\xad".decode("utf-8") # U+e52d
- ICON_FA_MOUNTAIN = b"\xef\x9b\xbc".decode("utf-8") # U+f6fc
- ICON_FA_MOUNTAIN_CITY = b"\xee\x94\xae".decode("utf-8") # U+e52e
- ICON_FA_MOUNTAIN_SUN = b"\xee\x94\xaf".decode("utf-8") # U+e52f
- ICON_FA_MUG_HOT = b"\xef\x9e\xb6".decode("utf-8") # U+f7b6
- ICON_FA_MUG_SAUCER = b"\xef\x83\xb4".decode("utf-8") # U+f0f4
- ICON_FA_MUSIC = b"\xef\x80\x81".decode("utf-8") # U+f001
- ICON_FA_N = b"N".decode("utf-8") # U+004e
- ICON_FA_NAIRA_SIGN = b"\xee\x87\xb6".decode("utf-8") # U+e1f6
- ICON_FA_NETWORK_WIRED = b"\xef\x9b\xbf".decode("utf-8") # U+f6ff
- ICON_FA_NEUTER = b"\xef\x88\xac".decode("utf-8") # U+f22c
- ICON_FA_NEWSPAPER = b"\xef\x87\xaa".decode("utf-8") # U+f1ea
- ICON_FA_NOT_EQUAL = b"\xef\x94\xbe".decode("utf-8") # U+f53e
- ICON_FA_NOTDEF = b"\xee\x87\xbe".decode("utf-8") # U+e1fe
- ICON_FA_NOTE_STICKY = b"\xef\x89\x89".decode("utf-8") # U+f249
- ICON_FA_NOTES_MEDICAL = b"\xef\x92\x81".decode("utf-8") # U+f481
- ICON_FA_O = b"O".decode("utf-8") # U+004f
- ICON_FA_OBJECT_GROUP = b"\xef\x89\x87".decode("utf-8") # U+f247
- ICON_FA_OBJECT_UNGROUP = b"\xef\x89\x88".decode("utf-8") # U+f248
- ICON_FA_OIL_CAN = b"\xef\x98\x93".decode("utf-8") # U+f613
- ICON_FA_OIL_WELL = b"\xee\x94\xb2".decode("utf-8") # U+e532
- ICON_FA_OM = b"\xef\x99\xb9".decode("utf-8") # U+f679
- ICON_FA_OTTER = b"\xef\x9c\x80".decode("utf-8") # U+f700
- ICON_FA_OUTDENT = b"\xef\x80\xbb".decode("utf-8") # U+f03b
- ICON_FA_P = b"P".decode("utf-8") # U+0050
- ICON_FA_PAGER = b"\xef\xa0\x95".decode("utf-8") # U+f815
- ICON_FA_PAINT_ROLLER = b"\xef\x96\xaa".decode("utf-8") # U+f5aa
- ICON_FA_PAINTBRUSH = b"\xef\x87\xbc".decode("utf-8") # U+f1fc
- ICON_FA_PALETTE = b"\xef\x94\xbf".decode("utf-8") # U+f53f
- ICON_FA_PALLET = b"\xef\x92\x82".decode("utf-8") # U+f482
- ICON_FA_PANORAMA = b"\xee\x88\x89".decode("utf-8") # U+e209
- ICON_FA_PAPER_PLANE = b"\xef\x87\x98".decode("utf-8") # U+f1d8
- ICON_FA_PAPERCLIP = b"\xef\x83\x86".decode("utf-8") # U+f0c6
- ICON_FA_PARACHUTE_BOX = b"\xef\x93\x8d".decode("utf-8") # U+f4cd
- ICON_FA_PARAGRAPH = b"\xef\x87\x9d".decode("utf-8") # U+f1dd
- ICON_FA_PASSPORT = b"\xef\x96\xab".decode("utf-8") # U+f5ab
- ICON_FA_PASTE = b"\xef\x83\xaa".decode("utf-8") # U+f0ea
- ICON_FA_PAUSE = b"\xef\x81\x8c".decode("utf-8") # U+f04c
- ICON_FA_PAW = b"\xef\x86\xb0".decode("utf-8") # U+f1b0
- ICON_FA_PEACE = b"\xef\x99\xbc".decode("utf-8") # U+f67c
- ICON_FA_PEN = b"\xef\x8c\x84".decode("utf-8") # U+f304
- ICON_FA_PEN_CLIP = b"\xef\x8c\x85".decode("utf-8") # U+f305
- ICON_FA_PEN_FANCY = b"\xef\x96\xac".decode("utf-8") # U+f5ac
- ICON_FA_PEN_NIB = b"\xef\x96\xad".decode("utf-8") # U+f5ad
- ICON_FA_PEN_RULER = b"\xef\x96\xae".decode("utf-8") # U+f5ae
- ICON_FA_PEN_TO_SQUARE = b"\xef\x81\x84".decode("utf-8") # U+f044
- ICON_FA_PENCIL = b"\xef\x8c\x83".decode("utf-8") # U+f303
- ICON_FA_PEOPLE_ARROWS = b"\xee\x81\xa8".decode("utf-8") # U+e068
- ICON_FA_PEOPLE_CARRY_BOX = b"\xef\x93\x8e".decode("utf-8") # U+f4ce
- ICON_FA_PEOPLE_GROUP = b"\xee\x94\xb3".decode("utf-8") # U+e533
- ICON_FA_PEOPLE_LINE = b"\xee\x94\xb4".decode("utf-8") # U+e534
- ICON_FA_PEOPLE_PULLING = b"\xee\x94\xb5".decode("utf-8") # U+e535
- ICON_FA_PEOPLE_ROBBERY = b"\xee\x94\xb6".decode("utf-8") # U+e536
- ICON_FA_PEOPLE_ROOF = b"\xee\x94\xb7".decode("utf-8") # U+e537
- ICON_FA_PEPPER_HOT = b"\xef\xa0\x96".decode("utf-8") # U+f816
- ICON_FA_PERCENT = b"%".decode("utf-8") # U+0025
- ICON_FA_PERSON = b"\xef\x86\x83".decode("utf-8") # U+f183
- ICON_FA_PERSON_ARROW_DOWN_TO_LINE = b"\xee\x94\xb8".decode("utf-8") # U+e538
- ICON_FA_PERSON_ARROW_UP_FROM_LINE = b"\xee\x94\xb9".decode("utf-8") # U+e539
- ICON_FA_PERSON_BIKING = b"\xef\xa1\x8a".decode("utf-8") # U+f84a
- ICON_FA_PERSON_BOOTH = b"\xef\x9d\x96".decode("utf-8") # U+f756
- ICON_FA_PERSON_BREASTFEEDING = b"\xee\x94\xba".decode("utf-8") # U+e53a
- ICON_FA_PERSON_BURST = b"\xee\x94\xbb".decode("utf-8") # U+e53b
- ICON_FA_PERSON_CANE = b"\xee\x94\xbc".decode("utf-8") # U+e53c
- ICON_FA_PERSON_CHALKBOARD = b"\xee\x94\xbd".decode("utf-8") # U+e53d
- ICON_FA_PERSON_CIRCLE_CHECK = b"\xee\x94\xbe".decode("utf-8") # U+e53e
- ICON_FA_PERSON_CIRCLE_EXCLAMATION = b"\xee\x94\xbf".decode("utf-8") # U+e53f
- ICON_FA_PERSON_CIRCLE_MINUS = b"\xee\x95\x80".decode("utf-8") # U+e540
- ICON_FA_PERSON_CIRCLE_PLUS = b"\xee\x95\x81".decode("utf-8") # U+e541
- ICON_FA_PERSON_CIRCLE_QUESTION = b"\xee\x95\x82".decode("utf-8") # U+e542
- ICON_FA_PERSON_CIRCLE_XMARK = b"\xee\x95\x83".decode("utf-8") # U+e543
- ICON_FA_PERSON_DIGGING = b"\xef\xa1\x9e".decode("utf-8") # U+f85e
- ICON_FA_PERSON_DOTS_FROM_LINE = b"\xef\x91\xb0".decode("utf-8") # U+f470
- ICON_FA_PERSON_DRESS = b"\xef\x86\x82".decode("utf-8") # U+f182
- ICON_FA_PERSON_DRESS_BURST = b"\xee\x95\x84".decode("utf-8") # U+e544
- ICON_FA_PERSON_DROWNING = b"\xee\x95\x85".decode("utf-8") # U+e545
- ICON_FA_PERSON_FALLING = b"\xee\x95\x86".decode("utf-8") # U+e546
- ICON_FA_PERSON_FALLING_BURST = b"\xee\x95\x87".decode("utf-8") # U+e547
- ICON_FA_PERSON_HALF_DRESS = b"\xee\x95\x88".decode("utf-8") # U+e548
- ICON_FA_PERSON_HARASSING = b"\xee\x95\x89".decode("utf-8") # U+e549
- ICON_FA_PERSON_HIKING = b"\xef\x9b\xac".decode("utf-8") # U+f6ec
- ICON_FA_PERSON_MILITARY_POINTING = b"\xee\x95\x8a".decode("utf-8") # U+e54a
- ICON_FA_PERSON_MILITARY_RIFLE = b"\xee\x95\x8b".decode("utf-8") # U+e54b
- ICON_FA_PERSON_MILITARY_TO_PERSON = b"\xee\x95\x8c".decode("utf-8") # U+e54c
- ICON_FA_PERSON_PRAYING = b"\xef\x9a\x83".decode("utf-8") # U+f683
- ICON_FA_PERSON_PREGNANT = b"\xee\x8c\x9e".decode("utf-8") # U+e31e
- ICON_FA_PERSON_RAYS = b"\xee\x95\x8d".decode("utf-8") # U+e54d
- ICON_FA_PERSON_RIFLE = b"\xee\x95\x8e".decode("utf-8") # U+e54e
- ICON_FA_PERSON_RUNNING = b"\xef\x9c\x8c".decode("utf-8") # U+f70c
- ICON_FA_PERSON_SHELTER = b"\xee\x95\x8f".decode("utf-8") # U+e54f
- ICON_FA_PERSON_SKATING = b"\xef\x9f\x85".decode("utf-8") # U+f7c5
- ICON_FA_PERSON_SKIING = b"\xef\x9f\x89".decode("utf-8") # U+f7c9
- ICON_FA_PERSON_SKIING_NORDIC = b"\xef\x9f\x8a".decode("utf-8") # U+f7ca
- ICON_FA_PERSON_SNOWBOARDING = b"\xef\x9f\x8e".decode("utf-8") # U+f7ce
- ICON_FA_PERSON_SWIMMING = b"\xef\x97\x84".decode("utf-8") # U+f5c4
- ICON_FA_PERSON_THROUGH_WINDOW = b"\xee\x96\xa9".decode("utf-8") # U+e5a9
- ICON_FA_PERSON_WALKING = b"\xef\x95\x94".decode("utf-8") # U+f554
- ICON_FA_PERSON_WALKING_ARROW_LOOP_LEFT = b"\xee\x95\x91".decode("utf-8") # U+e551
- ICON_FA_PERSON_WALKING_ARROW_RIGHT = b"\xee\x95\x92".decode("utf-8") # U+e552
- ICON_FA_PERSON_WALKING_DASHED_LINE_ARROW_RIGHT = b"\xee\x95\x93".decode("utf-8") # U+e553
- ICON_FA_PERSON_WALKING_LUGGAGE = b"\xee\x95\x94".decode("utf-8") # U+e554
- ICON_FA_PERSON_WALKING_WITH_CANE = b"\xef\x8a\x9d".decode("utf-8") # U+f29d
- ICON_FA_PESETA_SIGN = b"\xee\x88\xa1".decode("utf-8") # U+e221
- ICON_FA_PESO_SIGN = b"\xee\x88\xa2".decode("utf-8") # U+e222
- ICON_FA_PHONE = b"\xef\x82\x95".decode("utf-8") # U+f095
- ICON_FA_PHONE_FLIP = b"\xef\xa1\xb9".decode("utf-8") # U+f879
- ICON_FA_PHONE_SLASH = b"\xef\x8f\x9d".decode("utf-8") # U+f3dd
- ICON_FA_PHONE_VOLUME = b"\xef\x8a\xa0".decode("utf-8") # U+f2a0
- ICON_FA_PHOTO_FILM = b"\xef\xa1\xbc".decode("utf-8") # U+f87c
- ICON_FA_PIGGY_BANK = b"\xef\x93\x93".decode("utf-8") # U+f4d3
- ICON_FA_PILLS = b"\xef\x92\x84".decode("utf-8") # U+f484
- ICON_FA_PIZZA_SLICE = b"\xef\xa0\x98".decode("utf-8") # U+f818
- ICON_FA_PLACE_OF_WORSHIP = b"\xef\x99\xbf".decode("utf-8") # U+f67f
- ICON_FA_PLANE = b"\xef\x81\xb2".decode("utf-8") # U+f072
- ICON_FA_PLANE_ARRIVAL = b"\xef\x96\xaf".decode("utf-8") # U+f5af
- ICON_FA_PLANE_CIRCLE_CHECK = b"\xee\x95\x95".decode("utf-8") # U+e555
- ICON_FA_PLANE_CIRCLE_EXCLAMATION = b"\xee\x95\x96".decode("utf-8") # U+e556
- ICON_FA_PLANE_CIRCLE_XMARK = b"\xee\x95\x97".decode("utf-8") # U+e557
- ICON_FA_PLANE_DEPARTURE = b"\xef\x96\xb0".decode("utf-8") # U+f5b0
- ICON_FA_PLANE_LOCK = b"\xee\x95\x98".decode("utf-8") # U+e558
- ICON_FA_PLANE_SLASH = b"\xee\x81\xa9".decode("utf-8") # U+e069
- ICON_FA_PLANE_UP = b"\xee\x88\xad".decode("utf-8") # U+e22d
- ICON_FA_PLANT_WILT = b"\xee\x96\xaa".decode("utf-8") # U+e5aa
- ICON_FA_PLATE_WHEAT = b"\xee\x95\x9a".decode("utf-8") # U+e55a
- ICON_FA_PLAY = b"\xef\x81\x8b".decode("utf-8") # U+f04b
- ICON_FA_PLUG = b"\xef\x87\xa6".decode("utf-8") # U+f1e6
- ICON_FA_PLUG_CIRCLE_BOLT = b"\xee\x95\x9b".decode("utf-8") # U+e55b
- ICON_FA_PLUG_CIRCLE_CHECK = b"\xee\x95\x9c".decode("utf-8") # U+e55c
- ICON_FA_PLUG_CIRCLE_EXCLAMATION = b"\xee\x95\x9d".decode("utf-8") # U+e55d
- ICON_FA_PLUG_CIRCLE_MINUS = b"\xee\x95\x9e".decode("utf-8") # U+e55e
- ICON_FA_PLUG_CIRCLE_PLUS = b"\xee\x95\x9f".decode("utf-8") # U+e55f
- ICON_FA_PLUG_CIRCLE_XMARK = b"\xee\x95\xa0".decode("utf-8") # U+e560
- ICON_FA_PLUS = b"+".decode("utf-8") # U+002b
- ICON_FA_PLUS_MINUS = b"\xee\x90\xbc".decode("utf-8") # U+e43c
- ICON_FA_PODCAST = b"\xef\x8b\x8e".decode("utf-8") # U+f2ce
- ICON_FA_POO = b"\xef\x8b\xbe".decode("utf-8") # U+f2fe
- ICON_FA_POO_STORM = b"\xef\x9d\x9a".decode("utf-8") # U+f75a
- ICON_FA_POOP = b"\xef\x98\x99".decode("utf-8") # U+f619
- ICON_FA_POWER_OFF = b"\xef\x80\x91".decode("utf-8") # U+f011
- ICON_FA_PRESCRIPTION = b"\xef\x96\xb1".decode("utf-8") # U+f5b1
- ICON_FA_PRESCRIPTION_BOTTLE = b"\xef\x92\x85".decode("utf-8") # U+f485
- ICON_FA_PRESCRIPTION_BOTTLE_MEDICAL = b"\xef\x92\x86".decode("utf-8") # U+f486
- ICON_FA_PRINT = b"\xef\x80\xaf".decode("utf-8") # U+f02f
- ICON_FA_PUMP_MEDICAL = b"\xee\x81\xaa".decode("utf-8") # U+e06a
- ICON_FA_PUMP_SOAP = b"\xee\x81\xab".decode("utf-8") # U+e06b
- ICON_FA_PUZZLE_PIECE = b"\xef\x84\xae".decode("utf-8") # U+f12e
- ICON_FA_Q = b"Q".decode("utf-8") # U+0051
- ICON_FA_QRCODE = b"\xef\x80\xa9".decode("utf-8") # U+f029
- ICON_FA_QUESTION = b"?".decode("utf-8") # U+003f
- ICON_FA_QUOTE_LEFT = b"\xef\x84\x8d".decode("utf-8") # U+f10d
- ICON_FA_QUOTE_RIGHT = b"\xef\x84\x8e".decode("utf-8") # U+f10e
- ICON_FA_R = b"R".decode("utf-8") # U+0052
- ICON_FA_RADIATION = b"\xef\x9e\xb9".decode("utf-8") # U+f7b9
- ICON_FA_RADIO = b"\xef\xa3\x97".decode("utf-8") # U+f8d7
- ICON_FA_RAINBOW = b"\xef\x9d\x9b".decode("utf-8") # U+f75b
- ICON_FA_RANKING_STAR = b"\xee\x95\xa1".decode("utf-8") # U+e561
- ICON_FA_RECEIPT = b"\xef\x95\x83".decode("utf-8") # U+f543
- ICON_FA_RECORD_VINYL = b"\xef\xa3\x99".decode("utf-8") # U+f8d9
- ICON_FA_RECTANGLE_AD = b"\xef\x99\x81".decode("utf-8") # U+f641
- ICON_FA_RECTANGLE_LIST = b"\xef\x80\xa2".decode("utf-8") # U+f022
- ICON_FA_RECTANGLE_XMARK = b"\xef\x90\x90".decode("utf-8") # U+f410
- ICON_FA_RECYCLE = b"\xef\x86\xb8".decode("utf-8") # U+f1b8
- ICON_FA_REGISTERED = b"\xef\x89\x9d".decode("utf-8") # U+f25d
- ICON_FA_REPEAT = b"\xef\x8d\xa3".decode("utf-8") # U+f363
- ICON_FA_REPLY = b"\xef\x8f\xa5".decode("utf-8") # U+f3e5
- ICON_FA_REPLY_ALL = b"\xef\x84\xa2".decode("utf-8") # U+f122
- ICON_FA_REPUBLICAN = b"\xef\x9d\x9e".decode("utf-8") # U+f75e
- ICON_FA_RESTROOM = b"\xef\x9e\xbd".decode("utf-8") # U+f7bd
- ICON_FA_RETWEET = b"\xef\x81\xb9".decode("utf-8") # U+f079
- ICON_FA_RIBBON = b"\xef\x93\x96".decode("utf-8") # U+f4d6
- ICON_FA_RIGHT_FROM_BRACKET = b"\xef\x8b\xb5".decode("utf-8") # U+f2f5
- ICON_FA_RIGHT_LEFT = b"\xef\x8d\xa2".decode("utf-8") # U+f362
- ICON_FA_RIGHT_LONG = b"\xef\x8c\x8b".decode("utf-8") # U+f30b
- ICON_FA_RIGHT_TO_BRACKET = b"\xef\x8b\xb6".decode("utf-8") # U+f2f6
- ICON_FA_RING = b"\xef\x9c\x8b".decode("utf-8") # U+f70b
- ICON_FA_ROAD = b"\xef\x80\x98".decode("utf-8") # U+f018
- ICON_FA_ROAD_BARRIER = b"\xee\x95\xa2".decode("utf-8") # U+e562
- ICON_FA_ROAD_BRIDGE = b"\xee\x95\xa3".decode("utf-8") # U+e563
- ICON_FA_ROAD_CIRCLE_CHECK = b"\xee\x95\xa4".decode("utf-8") # U+e564
- ICON_FA_ROAD_CIRCLE_EXCLAMATION = b"\xee\x95\xa5".decode("utf-8") # U+e565
- ICON_FA_ROAD_CIRCLE_XMARK = b"\xee\x95\xa6".decode("utf-8") # U+e566
- ICON_FA_ROAD_LOCK = b"\xee\x95\xa7".decode("utf-8") # U+e567
- ICON_FA_ROAD_SPIKES = b"\xee\x95\xa8".decode("utf-8") # U+e568
- ICON_FA_ROBOT = b"\xef\x95\x84".decode("utf-8") # U+f544
- ICON_FA_ROCKET = b"\xef\x84\xb5".decode("utf-8") # U+f135
- ICON_FA_ROTATE = b"\xef\x8b\xb1".decode("utf-8") # U+f2f1
- ICON_FA_ROTATE_LEFT = b"\xef\x8b\xaa".decode("utf-8") # U+f2ea
- ICON_FA_ROTATE_RIGHT = b"\xef\x8b\xb9".decode("utf-8") # U+f2f9
- ICON_FA_ROUTE = b"\xef\x93\x97".decode("utf-8") # U+f4d7
- ICON_FA_RSS = b"\xef\x82\x9e".decode("utf-8") # U+f09e
- ICON_FA_RUBLE_SIGN = b"\xef\x85\x98".decode("utf-8") # U+f158
- ICON_FA_RUG = b"\xee\x95\xa9".decode("utf-8") # U+e569
- ICON_FA_RULER = b"\xef\x95\x85".decode("utf-8") # U+f545
- ICON_FA_RULER_COMBINED = b"\xef\x95\x86".decode("utf-8") # U+f546
- ICON_FA_RULER_HORIZONTAL = b"\xef\x95\x87".decode("utf-8") # U+f547
- ICON_FA_RULER_VERTICAL = b"\xef\x95\x88".decode("utf-8") # U+f548
- ICON_FA_RUPEE_SIGN = b"\xef\x85\x96".decode("utf-8") # U+f156
- ICON_FA_RUPIAH_SIGN = b"\xee\x88\xbd".decode("utf-8") # U+e23d
- ICON_FA_S = b"S".decode("utf-8") # U+0053
- ICON_FA_SACK_DOLLAR = b"\xef\xa0\x9d".decode("utf-8") # U+f81d
- ICON_FA_SACK_XMARK = b"\xee\x95\xaa".decode("utf-8") # U+e56a
- ICON_FA_SAILBOAT = b"\xee\x91\x85".decode("utf-8") # U+e445
- ICON_FA_SATELLITE = b"\xef\x9e\xbf".decode("utf-8") # U+f7bf
- ICON_FA_SATELLITE_DISH = b"\xef\x9f\x80".decode("utf-8") # U+f7c0
- ICON_FA_SCALE_BALANCED = b"\xef\x89\x8e".decode("utf-8") # U+f24e
- ICON_FA_SCALE_UNBALANCED = b"\xef\x94\x95".decode("utf-8") # U+f515
- ICON_FA_SCALE_UNBALANCED_FLIP = b"\xef\x94\x96".decode("utf-8") # U+f516
- ICON_FA_SCHOOL = b"\xef\x95\x89".decode("utf-8") # U+f549
- ICON_FA_SCHOOL_CIRCLE_CHECK = b"\xee\x95\xab".decode("utf-8") # U+e56b
- ICON_FA_SCHOOL_CIRCLE_EXCLAMATION = b"\xee\x95\xac".decode("utf-8") # U+e56c
- ICON_FA_SCHOOL_CIRCLE_XMARK = b"\xee\x95\xad".decode("utf-8") # U+e56d
- ICON_FA_SCHOOL_FLAG = b"\xee\x95\xae".decode("utf-8") # U+e56e
- ICON_FA_SCHOOL_LOCK = b"\xee\x95\xaf".decode("utf-8") # U+e56f
- ICON_FA_SCISSORS = b"\xef\x83\x84".decode("utf-8") # U+f0c4
- ICON_FA_SCREWDRIVER = b"\xef\x95\x8a".decode("utf-8") # U+f54a
- ICON_FA_SCREWDRIVER_WRENCH = b"\xef\x9f\x99".decode("utf-8") # U+f7d9
- ICON_FA_SCROLL = b"\xef\x9c\x8e".decode("utf-8") # U+f70e
- ICON_FA_SCROLL_TORAH = b"\xef\x9a\xa0".decode("utf-8") # U+f6a0
- ICON_FA_SD_CARD = b"\xef\x9f\x82".decode("utf-8") # U+f7c2
- ICON_FA_SECTION = b"\xee\x91\x87".decode("utf-8") # U+e447
- ICON_FA_SEEDLING = b"\xef\x93\x98".decode("utf-8") # U+f4d8
- ICON_FA_SERVER = b"\xef\x88\xb3".decode("utf-8") # U+f233
- ICON_FA_SHAPES = b"\xef\x98\x9f".decode("utf-8") # U+f61f
- ICON_FA_SHARE = b"\xef\x81\xa4".decode("utf-8") # U+f064
- ICON_FA_SHARE_FROM_SQUARE = b"\xef\x85\x8d".decode("utf-8") # U+f14d
- ICON_FA_SHARE_NODES = b"\xef\x87\xa0".decode("utf-8") # U+f1e0
- ICON_FA_SHEET_PLASTIC = b"\xee\x95\xb1".decode("utf-8") # U+e571
- ICON_FA_SHEKEL_SIGN = b"\xef\x88\x8b".decode("utf-8") # U+f20b
- ICON_FA_SHIELD = b"\xef\x84\xb2".decode("utf-8") # U+f132
- ICON_FA_SHIELD_CAT = b"\xee\x95\xb2".decode("utf-8") # U+e572
- ICON_FA_SHIELD_DOG = b"\xee\x95\xb3".decode("utf-8") # U+e573
- ICON_FA_SHIELD_HALVED = b"\xef\x8f\xad".decode("utf-8") # U+f3ed
- ICON_FA_SHIELD_HEART = b"\xee\x95\xb4".decode("utf-8") # U+e574
- ICON_FA_SHIELD_VIRUS = b"\xee\x81\xac".decode("utf-8") # U+e06c
- ICON_FA_SHIP = b"\xef\x88\x9a".decode("utf-8") # U+f21a
- ICON_FA_SHIRT = b"\xef\x95\x93".decode("utf-8") # U+f553
- ICON_FA_SHOE_PRINTS = b"\xef\x95\x8b".decode("utf-8") # U+f54b
- ICON_FA_SHOP = b"\xef\x95\x8f".decode("utf-8") # U+f54f
- ICON_FA_SHOP_LOCK = b"\xee\x92\xa5".decode("utf-8") # U+e4a5
- ICON_FA_SHOP_SLASH = b"\xee\x81\xb0".decode("utf-8") # U+e070
- ICON_FA_SHOWER = b"\xef\x8b\x8c".decode("utf-8") # U+f2cc
- ICON_FA_SHRIMP = b"\xee\x91\x88".decode("utf-8") # U+e448
- ICON_FA_SHUFFLE = b"\xef\x81\xb4".decode("utf-8") # U+f074
- ICON_FA_SHUTTLE_SPACE = b"\xef\x86\x97".decode("utf-8") # U+f197
- ICON_FA_SIGN_HANGING = b"\xef\x93\x99".decode("utf-8") # U+f4d9
- ICON_FA_SIGNAL = b"\xef\x80\x92".decode("utf-8") # U+f012
- ICON_FA_SIGNATURE = b"\xef\x96\xb7".decode("utf-8") # U+f5b7
- ICON_FA_SIGNS_POST = b"\xef\x89\xb7".decode("utf-8") # U+f277
- ICON_FA_SIM_CARD = b"\xef\x9f\x84".decode("utf-8") # U+f7c4
- ICON_FA_SINK = b"\xee\x81\xad".decode("utf-8") # U+e06d
- ICON_FA_SITEMAP = b"\xef\x83\xa8".decode("utf-8") # U+f0e8
- ICON_FA_SKULL = b"\xef\x95\x8c".decode("utf-8") # U+f54c
- ICON_FA_SKULL_CROSSBONES = b"\xef\x9c\x94".decode("utf-8") # U+f714
- ICON_FA_SLASH = b"\xef\x9c\x95".decode("utf-8") # U+f715
- ICON_FA_SLEIGH = b"\xef\x9f\x8c".decode("utf-8") # U+f7cc
- ICON_FA_SLIDERS = b"\xef\x87\x9e".decode("utf-8") # U+f1de
- ICON_FA_SMOG = b"\xef\x9d\x9f".decode("utf-8") # U+f75f
- ICON_FA_SMOKING = b"\xef\x92\x8d".decode("utf-8") # U+f48d
- ICON_FA_SNOWFLAKE = b"\xef\x8b\x9c".decode("utf-8") # U+f2dc
- ICON_FA_SNOWMAN = b"\xef\x9f\x90".decode("utf-8") # U+f7d0
- ICON_FA_SNOWPLOW = b"\xef\x9f\x92".decode("utf-8") # U+f7d2
- ICON_FA_SOAP = b"\xee\x81\xae".decode("utf-8") # U+e06e
- ICON_FA_SOCKS = b"\xef\x9a\x96".decode("utf-8") # U+f696
- ICON_FA_SOLAR_PANEL = b"\xef\x96\xba".decode("utf-8") # U+f5ba
- ICON_FA_SORT = b"\xef\x83\x9c".decode("utf-8") # U+f0dc
- ICON_FA_SORT_DOWN = b"\xef\x83\x9d".decode("utf-8") # U+f0dd
- ICON_FA_SORT_UP = b"\xef\x83\x9e".decode("utf-8") # U+f0de
- ICON_FA_SPA = b"\xef\x96\xbb".decode("utf-8") # U+f5bb
- ICON_FA_SPAGHETTI_MONSTER_FLYING = b"\xef\x99\xbb".decode("utf-8") # U+f67b
- ICON_FA_SPELL_CHECK = b"\xef\xa2\x91".decode("utf-8") # U+f891
- ICON_FA_SPIDER = b"\xef\x9c\x97".decode("utf-8") # U+f717
- ICON_FA_SPINNER = b"\xef\x84\x90".decode("utf-8") # U+f110
- ICON_FA_SPLOTCH = b"\xef\x96\xbc".decode("utf-8") # U+f5bc
- ICON_FA_SPOON = b"\xef\x8b\xa5".decode("utf-8") # U+f2e5
- ICON_FA_SPRAY_CAN = b"\xef\x96\xbd".decode("utf-8") # U+f5bd
- ICON_FA_SPRAY_CAN_SPARKLES = b"\xef\x97\x90".decode("utf-8") # U+f5d0
- ICON_FA_SQUARE = b"\xef\x83\x88".decode("utf-8") # U+f0c8
- ICON_FA_SQUARE_ARROW_UP_RIGHT = b"\xef\x85\x8c".decode("utf-8") # U+f14c
- ICON_FA_SQUARE_CARET_DOWN = b"\xef\x85\x90".decode("utf-8") # U+f150
- ICON_FA_SQUARE_CARET_LEFT = b"\xef\x86\x91".decode("utf-8") # U+f191
- ICON_FA_SQUARE_CARET_RIGHT = b"\xef\x85\x92".decode("utf-8") # U+f152
- ICON_FA_SQUARE_CARET_UP = b"\xef\x85\x91".decode("utf-8") # U+f151
- ICON_FA_SQUARE_CHECK = b"\xef\x85\x8a".decode("utf-8") # U+f14a
- ICON_FA_SQUARE_ENVELOPE = b"\xef\x86\x99".decode("utf-8") # U+f199
- ICON_FA_SQUARE_FULL = b"\xef\x91\x9c".decode("utf-8") # U+f45c
- ICON_FA_SQUARE_H = b"\xef\x83\xbd".decode("utf-8") # U+f0fd
- ICON_FA_SQUARE_MINUS = b"\xef\x85\x86".decode("utf-8") # U+f146
- ICON_FA_SQUARE_NFI = b"\xee\x95\xb6".decode("utf-8") # U+e576
- ICON_FA_SQUARE_PARKING = b"\xef\x95\x80".decode("utf-8") # U+f540
- ICON_FA_SQUARE_PEN = b"\xef\x85\x8b".decode("utf-8") # U+f14b
- ICON_FA_SQUARE_PERSON_CONFINED = b"\xee\x95\xb7".decode("utf-8") # U+e577
- ICON_FA_SQUARE_PHONE = b"\xef\x82\x98".decode("utf-8") # U+f098
- ICON_FA_SQUARE_PHONE_FLIP = b"\xef\xa1\xbb".decode("utf-8") # U+f87b
- ICON_FA_SQUARE_PLUS = b"\xef\x83\xbe".decode("utf-8") # U+f0fe
- ICON_FA_SQUARE_POLL_HORIZONTAL = b"\xef\x9a\x82".decode("utf-8") # U+f682
- ICON_FA_SQUARE_POLL_VERTICAL = b"\xef\x9a\x81".decode("utf-8") # U+f681
- ICON_FA_SQUARE_ROOT_VARIABLE = b"\xef\x9a\x98".decode("utf-8") # U+f698
- ICON_FA_SQUARE_RSS = b"\xef\x85\x83".decode("utf-8") # U+f143
- ICON_FA_SQUARE_SHARE_NODES = b"\xef\x87\xa1".decode("utf-8") # U+f1e1
- ICON_FA_SQUARE_UP_RIGHT = b"\xef\x8d\xa0".decode("utf-8") # U+f360
- ICON_FA_SQUARE_VIRUS = b"\xee\x95\xb8".decode("utf-8") # U+e578
- ICON_FA_SQUARE_XMARK = b"\xef\x8b\x93".decode("utf-8") # U+f2d3
- ICON_FA_STAFF_SNAKE = b"\xee\x95\xb9".decode("utf-8") # U+e579
- ICON_FA_STAIRS = b"\xee\x8a\x89".decode("utf-8") # U+e289
- ICON_FA_STAMP = b"\xef\x96\xbf".decode("utf-8") # U+f5bf
- ICON_FA_STAPLER = b"\xee\x96\xaf".decode("utf-8") # U+e5af
- ICON_FA_STAR = b"\xef\x80\x85".decode("utf-8") # U+f005
- ICON_FA_STAR_AND_CRESCENT = b"\xef\x9a\x99".decode("utf-8") # U+f699
- ICON_FA_STAR_HALF = b"\xef\x82\x89".decode("utf-8") # U+f089
- ICON_FA_STAR_HALF_STROKE = b"\xef\x97\x80".decode("utf-8") # U+f5c0
- ICON_FA_STAR_OF_DAVID = b"\xef\x9a\x9a".decode("utf-8") # U+f69a
- ICON_FA_STAR_OF_LIFE = b"\xef\x98\xa1".decode("utf-8") # U+f621
- ICON_FA_STERLING_SIGN = b"\xef\x85\x94".decode("utf-8") # U+f154
- ICON_FA_STETHOSCOPE = b"\xef\x83\xb1".decode("utf-8") # U+f0f1
- ICON_FA_STOP = b"\xef\x81\x8d".decode("utf-8") # U+f04d
- ICON_FA_STOPWATCH = b"\xef\x8b\xb2".decode("utf-8") # U+f2f2
- ICON_FA_STOPWATCH_20 = b"\xee\x81\xaf".decode("utf-8") # U+e06f
- ICON_FA_STORE = b"\xef\x95\x8e".decode("utf-8") # U+f54e
- ICON_FA_STORE_SLASH = b"\xee\x81\xb1".decode("utf-8") # U+e071
- ICON_FA_STREET_VIEW = b"\xef\x88\x9d".decode("utf-8") # U+f21d
- ICON_FA_STRIKETHROUGH = b"\xef\x83\x8c".decode("utf-8") # U+f0cc
- ICON_FA_STROOPWAFEL = b"\xef\x95\x91".decode("utf-8") # U+f551
- ICON_FA_SUBSCRIPT = b"\xef\x84\xac".decode("utf-8") # U+f12c
- ICON_FA_SUITCASE = b"\xef\x83\xb2".decode("utf-8") # U+f0f2
- ICON_FA_SUITCASE_MEDICAL = b"\xef\x83\xba".decode("utf-8") # U+f0fa
- ICON_FA_SUITCASE_ROLLING = b"\xef\x97\x81".decode("utf-8") # U+f5c1
- ICON_FA_SUN = b"\xef\x86\x85".decode("utf-8") # U+f185
- ICON_FA_SUN_PLANT_WILT = b"\xee\x95\xba".decode("utf-8") # U+e57a
- ICON_FA_SUPERSCRIPT = b"\xef\x84\xab".decode("utf-8") # U+f12b
- ICON_FA_SWATCHBOOK = b"\xef\x97\x83".decode("utf-8") # U+f5c3
- ICON_FA_SYNAGOGUE = b"\xef\x9a\x9b".decode("utf-8") # U+f69b
- ICON_FA_SYRINGE = b"\xef\x92\x8e".decode("utf-8") # U+f48e
- ICON_FA_T = b"T".decode("utf-8") # U+0054
- ICON_FA_TABLE = b"\xef\x83\x8e".decode("utf-8") # U+f0ce
- ICON_FA_TABLE_CELLS = b"\xef\x80\x8a".decode("utf-8") # U+f00a
- ICON_FA_TABLE_CELLS_LARGE = b"\xef\x80\x89".decode("utf-8") # U+f009
- ICON_FA_TABLE_COLUMNS = b"\xef\x83\x9b".decode("utf-8") # U+f0db
- ICON_FA_TABLE_LIST = b"\xef\x80\x8b".decode("utf-8") # U+f00b
- ICON_FA_TABLE_TENNIS_PADDLE_BALL = b"\xef\x91\x9d".decode("utf-8") # U+f45d
- ICON_FA_TABLET = b"\xef\x8f\xbb".decode("utf-8") # U+f3fb
- ICON_FA_TABLET_BUTTON = b"\xef\x84\x8a".decode("utf-8") # U+f10a
- ICON_FA_TABLET_SCREEN_BUTTON = b"\xef\x8f\xba".decode("utf-8") # U+f3fa
- ICON_FA_TABLETS = b"\xef\x92\x90".decode("utf-8") # U+f490
- ICON_FA_TACHOGRAPH_DIGITAL = b"\xef\x95\xa6".decode("utf-8") # U+f566
- ICON_FA_TAG = b"\xef\x80\xab".decode("utf-8") # U+f02b
- ICON_FA_TAGS = b"\xef\x80\xac".decode("utf-8") # U+f02c
- ICON_FA_TAPE = b"\xef\x93\x9b".decode("utf-8") # U+f4db
- ICON_FA_TARP = b"\xee\x95\xbb".decode("utf-8") # U+e57b
- ICON_FA_TARP_DROPLET = b"\xee\x95\xbc".decode("utf-8") # U+e57c
- ICON_FA_TAXI = b"\xef\x86\xba".decode("utf-8") # U+f1ba
- ICON_FA_TEETH = b"\xef\x98\xae".decode("utf-8") # U+f62e
- ICON_FA_TEETH_OPEN = b"\xef\x98\xaf".decode("utf-8") # U+f62f
- ICON_FA_TEMPERATURE_ARROW_DOWN = b"\xee\x80\xbf".decode("utf-8") # U+e03f
- ICON_FA_TEMPERATURE_ARROW_UP = b"\xee\x81\x80".decode("utf-8") # U+e040
- ICON_FA_TEMPERATURE_EMPTY = b"\xef\x8b\x8b".decode("utf-8") # U+f2cb
- ICON_FA_TEMPERATURE_FULL = b"\xef\x8b\x87".decode("utf-8") # U+f2c7
- ICON_FA_TEMPERATURE_HALF = b"\xef\x8b\x89".decode("utf-8") # U+f2c9
- ICON_FA_TEMPERATURE_HIGH = b"\xef\x9d\xa9".decode("utf-8") # U+f769
- ICON_FA_TEMPERATURE_LOW = b"\xef\x9d\xab".decode("utf-8") # U+f76b
- ICON_FA_TEMPERATURE_QUARTER = b"\xef\x8b\x8a".decode("utf-8") # U+f2ca
- ICON_FA_TEMPERATURE_THREE_QUARTERS = b"\xef\x8b\x88".decode("utf-8") # U+f2c8
- ICON_FA_TENGE_SIGN = b"\xef\x9f\x97".decode("utf-8") # U+f7d7
- ICON_FA_TENT = b"\xee\x95\xbd".decode("utf-8") # U+e57d
- ICON_FA_TENT_ARROW_DOWN_TO_LINE = b"\xee\x95\xbe".decode("utf-8") # U+e57e
- ICON_FA_TENT_ARROW_LEFT_RIGHT = b"\xee\x95\xbf".decode("utf-8") # U+e57f
- ICON_FA_TENT_ARROW_TURN_LEFT = b"\xee\x96\x80".decode("utf-8") # U+e580
- ICON_FA_TENT_ARROWS_DOWN = b"\xee\x96\x81".decode("utf-8") # U+e581
- ICON_FA_TENTS = b"\xee\x96\x82".decode("utf-8") # U+e582
- ICON_FA_TERMINAL = b"\xef\x84\xa0".decode("utf-8") # U+f120
- ICON_FA_TEXT_HEIGHT = b"\xef\x80\xb4".decode("utf-8") # U+f034
- ICON_FA_TEXT_SLASH = b"\xef\xa1\xbd".decode("utf-8") # U+f87d
- ICON_FA_TEXT_WIDTH = b"\xef\x80\xb5".decode("utf-8") # U+f035
- ICON_FA_THERMOMETER = b"\xef\x92\x91".decode("utf-8") # U+f491
- ICON_FA_THUMBS_DOWN = b"\xef\x85\xa5".decode("utf-8") # U+f165
- ICON_FA_THUMBS_UP = b"\xef\x85\xa4".decode("utf-8") # U+f164
- ICON_FA_THUMBTACK = b"\xef\x82\x8d".decode("utf-8") # U+f08d
- ICON_FA_TICKET = b"\xef\x85\x85".decode("utf-8") # U+f145
- ICON_FA_TICKET_SIMPLE = b"\xef\x8f\xbf".decode("utf-8") # U+f3ff
- ICON_FA_TIMELINE = b"\xee\x8a\x9c".decode("utf-8") # U+e29c
- ICON_FA_TOGGLE_OFF = b"\xef\x88\x84".decode("utf-8") # U+f204
- ICON_FA_TOGGLE_ON = b"\xef\x88\x85".decode("utf-8") # U+f205
- ICON_FA_TOILET = b"\xef\x9f\x98".decode("utf-8") # U+f7d8
- ICON_FA_TOILET_PAPER = b"\xef\x9c\x9e".decode("utf-8") # U+f71e
- ICON_FA_TOILET_PAPER_SLASH = b"\xee\x81\xb2".decode("utf-8") # U+e072
- ICON_FA_TOILET_PORTABLE = b"\xee\x96\x83".decode("utf-8") # U+e583
- ICON_FA_TOILETS_PORTABLE = b"\xee\x96\x84".decode("utf-8") # U+e584
- ICON_FA_TOOLBOX = b"\xef\x95\x92".decode("utf-8") # U+f552
- ICON_FA_TOOTH = b"\xef\x97\x89".decode("utf-8") # U+f5c9
- ICON_FA_TORII_GATE = b"\xef\x9a\xa1".decode("utf-8") # U+f6a1
- ICON_FA_TORNADO = b"\xef\x9d\xaf".decode("utf-8") # U+f76f
- ICON_FA_TOWER_BROADCAST = b"\xef\x94\x99".decode("utf-8") # U+f519
- ICON_FA_TOWER_CELL = b"\xee\x96\x85".decode("utf-8") # U+e585
- ICON_FA_TOWER_OBSERVATION = b"\xee\x96\x86".decode("utf-8") # U+e586
- ICON_FA_TRACTOR = b"\xef\x9c\xa2".decode("utf-8") # U+f722
- ICON_FA_TRADEMARK = b"\xef\x89\x9c".decode("utf-8") # U+f25c
- ICON_FA_TRAFFIC_LIGHT = b"\xef\x98\xb7".decode("utf-8") # U+f637
- ICON_FA_TRAILER = b"\xee\x81\x81".decode("utf-8") # U+e041
- ICON_FA_TRAIN = b"\xef\x88\xb8".decode("utf-8") # U+f238
- ICON_FA_TRAIN_SUBWAY = b"\xef\x88\xb9".decode("utf-8") # U+f239
- ICON_FA_TRAIN_TRAM = b"\xee\x96\xb4".decode("utf-8") # U+e5b4
- ICON_FA_TRANSGENDER = b"\xef\x88\xa5".decode("utf-8") # U+f225
- ICON_FA_TRASH = b"\xef\x87\xb8".decode("utf-8") # U+f1f8
- ICON_FA_TRASH_ARROW_UP = b"\xef\xa0\xa9".decode("utf-8") # U+f829
- ICON_FA_TRASH_CAN = b"\xef\x8b\xad".decode("utf-8") # U+f2ed
- ICON_FA_TRASH_CAN_ARROW_UP = b"\xef\xa0\xaa".decode("utf-8") # U+f82a
- ICON_FA_TREE = b"\xef\x86\xbb".decode("utf-8") # U+f1bb
- ICON_FA_TREE_CITY = b"\xee\x96\x87".decode("utf-8") # U+e587
- ICON_FA_TRIANGLE_EXCLAMATION = b"\xef\x81\xb1".decode("utf-8") # U+f071
- ICON_FA_TROPHY = b"\xef\x82\x91".decode("utf-8") # U+f091
- ICON_FA_TROWEL = b"\xee\x96\x89".decode("utf-8") # U+e589
- ICON_FA_TROWEL_BRICKS = b"\xee\x96\x8a".decode("utf-8") # U+e58a
- ICON_FA_TRUCK = b"\xef\x83\x91".decode("utf-8") # U+f0d1
- ICON_FA_TRUCK_ARROW_RIGHT = b"\xee\x96\x8b".decode("utf-8") # U+e58b
- ICON_FA_TRUCK_DROPLET = b"\xee\x96\x8c".decode("utf-8") # U+e58c
- ICON_FA_TRUCK_FAST = b"\xef\x92\x8b".decode("utf-8") # U+f48b
- ICON_FA_TRUCK_FIELD = b"\xee\x96\x8d".decode("utf-8") # U+e58d
- ICON_FA_TRUCK_FIELD_UN = b"\xee\x96\x8e".decode("utf-8") # U+e58e
- ICON_FA_TRUCK_FRONT = b"\xee\x8a\xb7".decode("utf-8") # U+e2b7
- ICON_FA_TRUCK_MEDICAL = b"\xef\x83\xb9".decode("utf-8") # U+f0f9
- ICON_FA_TRUCK_MONSTER = b"\xef\x98\xbb".decode("utf-8") # U+f63b
- ICON_FA_TRUCK_MOVING = b"\xef\x93\x9f".decode("utf-8") # U+f4df
- ICON_FA_TRUCK_PICKUP = b"\xef\x98\xbc".decode("utf-8") # U+f63c
- ICON_FA_TRUCK_PLANE = b"\xee\x96\x8f".decode("utf-8") # U+e58f
- ICON_FA_TRUCK_RAMP_BOX = b"\xef\x93\x9e".decode("utf-8") # U+f4de
- ICON_FA_TTY = b"\xef\x87\xa4".decode("utf-8") # U+f1e4
- ICON_FA_TURKISH_LIRA_SIGN = b"\xee\x8a\xbb".decode("utf-8") # U+e2bb
- ICON_FA_TURN_DOWN = b"\xef\x8e\xbe".decode("utf-8") # U+f3be
- ICON_FA_TURN_UP = b"\xef\x8e\xbf".decode("utf-8") # U+f3bf
- ICON_FA_TV = b"\xef\x89\xac".decode("utf-8") # U+f26c
- ICON_FA_U = b"U".decode("utf-8") # U+0055
- ICON_FA_UMBRELLA = b"\xef\x83\xa9".decode("utf-8") # U+f0e9
- ICON_FA_UMBRELLA_BEACH = b"\xef\x97\x8a".decode("utf-8") # U+f5ca
- ICON_FA_UNDERLINE = b"\xef\x83\x8d".decode("utf-8") # U+f0cd
- ICON_FA_UNIVERSAL_ACCESS = b"\xef\x8a\x9a".decode("utf-8") # U+f29a
- ICON_FA_UNLOCK = b"\xef\x82\x9c".decode("utf-8") # U+f09c
- ICON_FA_UNLOCK_KEYHOLE = b"\xef\x84\xbe".decode("utf-8") # U+f13e
- ICON_FA_UP_DOWN = b"\xef\x8c\xb8".decode("utf-8") # U+f338
- ICON_FA_UP_DOWN_LEFT_RIGHT = b"\xef\x82\xb2".decode("utf-8") # U+f0b2
- ICON_FA_UP_LONG = b"\xef\x8c\x8c".decode("utf-8") # U+f30c
- ICON_FA_UP_RIGHT_AND_DOWN_LEFT_FROM_CENTER = b"\xef\x90\xa4".decode("utf-8") # U+f424
- ICON_FA_UP_RIGHT_FROM_SQUARE = b"\xef\x8d\x9d".decode("utf-8") # U+f35d
- ICON_FA_UPLOAD = b"\xef\x82\x93".decode("utf-8") # U+f093
- ICON_FA_USER = b"\xef\x80\x87".decode("utf-8") # U+f007
- ICON_FA_USER_ASTRONAUT = b"\xef\x93\xbb".decode("utf-8") # U+f4fb
- ICON_FA_USER_CHECK = b"\xef\x93\xbc".decode("utf-8") # U+f4fc
- ICON_FA_USER_CLOCK = b"\xef\x93\xbd".decode("utf-8") # U+f4fd
- ICON_FA_USER_DOCTOR = b"\xef\x83\xb0".decode("utf-8") # U+f0f0
- ICON_FA_USER_GEAR = b"\xef\x93\xbe".decode("utf-8") # U+f4fe
- ICON_FA_USER_GRADUATE = b"\xef\x94\x81".decode("utf-8") # U+f501
- ICON_FA_USER_GROUP = b"\xef\x94\x80".decode("utf-8") # U+f500
- ICON_FA_USER_INJURED = b"\xef\x9c\xa8".decode("utf-8") # U+f728
- ICON_FA_USER_LARGE = b"\xef\x90\x86".decode("utf-8") # U+f406
- ICON_FA_USER_LARGE_SLASH = b"\xef\x93\xba".decode("utf-8") # U+f4fa
- ICON_FA_USER_LOCK = b"\xef\x94\x82".decode("utf-8") # U+f502
- ICON_FA_USER_MINUS = b"\xef\x94\x83".decode("utf-8") # U+f503
- ICON_FA_USER_NINJA = b"\xef\x94\x84".decode("utf-8") # U+f504
- ICON_FA_USER_NURSE = b"\xef\xa0\xaf".decode("utf-8") # U+f82f
- ICON_FA_USER_PEN = b"\xef\x93\xbf".decode("utf-8") # U+f4ff
- ICON_FA_USER_PLUS = b"\xef\x88\xb4".decode("utf-8") # U+f234
- ICON_FA_USER_SECRET = b"\xef\x88\x9b".decode("utf-8") # U+f21b
- ICON_FA_USER_SHIELD = b"\xef\x94\x85".decode("utf-8") # U+f505
- ICON_FA_USER_SLASH = b"\xef\x94\x86".decode("utf-8") # U+f506
- ICON_FA_USER_TAG = b"\xef\x94\x87".decode("utf-8") # U+f507
- ICON_FA_USER_TIE = b"\xef\x94\x88".decode("utf-8") # U+f508
- ICON_FA_USER_XMARK = b"\xef\x88\xb5".decode("utf-8") # U+f235
- ICON_FA_USERS = b"\xef\x83\x80".decode("utf-8") # U+f0c0
- ICON_FA_USERS_BETWEEN_LINES = b"\xee\x96\x91".decode("utf-8") # U+e591
- ICON_FA_USERS_GEAR = b"\xef\x94\x89".decode("utf-8") # U+f509
- ICON_FA_USERS_LINE = b"\xee\x96\x92".decode("utf-8") # U+e592
- ICON_FA_USERS_RAYS = b"\xee\x96\x93".decode("utf-8") # U+e593
- ICON_FA_USERS_RECTANGLE = b"\xee\x96\x94".decode("utf-8") # U+e594
- ICON_FA_USERS_SLASH = b"\xee\x81\xb3".decode("utf-8") # U+e073
- ICON_FA_USERS_VIEWFINDER = b"\xee\x96\x95".decode("utf-8") # U+e595
- ICON_FA_UTENSILS = b"\xef\x8b\xa7".decode("utf-8") # U+f2e7
- ICON_FA_V = b"V".decode("utf-8") # U+0056
- ICON_FA_VAN_SHUTTLE = b"\xef\x96\xb6".decode("utf-8") # U+f5b6
- ICON_FA_VAULT = b"\xee\x8b\x85".decode("utf-8") # U+e2c5
- ICON_FA_VECTOR_SQUARE = b"\xef\x97\x8b".decode("utf-8") # U+f5cb
- ICON_FA_VENUS = b"\xef\x88\xa1".decode("utf-8") # U+f221
- ICON_FA_VENUS_DOUBLE = b"\xef\x88\xa6".decode("utf-8") # U+f226
- ICON_FA_VENUS_MARS = b"\xef\x88\xa8".decode("utf-8") # U+f228
- ICON_FA_VEST = b"\xee\x82\x85".decode("utf-8") # U+e085
- ICON_FA_VEST_PATCHES = b"\xee\x82\x86".decode("utf-8") # U+e086
- ICON_FA_VIAL = b"\xef\x92\x92".decode("utf-8") # U+f492
- ICON_FA_VIAL_CIRCLE_CHECK = b"\xee\x96\x96".decode("utf-8") # U+e596
- ICON_FA_VIAL_VIRUS = b"\xee\x96\x97".decode("utf-8") # U+e597
- ICON_FA_VIALS = b"\xef\x92\x93".decode("utf-8") # U+f493
- ICON_FA_VIDEO = b"\xef\x80\xbd".decode("utf-8") # U+f03d
- ICON_FA_VIDEO_SLASH = b"\xef\x93\xa2".decode("utf-8") # U+f4e2
- ICON_FA_VIHARA = b"\xef\x9a\xa7".decode("utf-8") # U+f6a7
- ICON_FA_VIRUS = b"\xee\x81\xb4".decode("utf-8") # U+e074
- ICON_FA_VIRUS_COVID = b"\xee\x92\xa8".decode("utf-8") # U+e4a8
- ICON_FA_VIRUS_COVID_SLASH = b"\xee\x92\xa9".decode("utf-8") # U+e4a9
- ICON_FA_VIRUS_SLASH = b"\xee\x81\xb5".decode("utf-8") # U+e075
- ICON_FA_VIRUSES = b"\xee\x81\xb6".decode("utf-8") # U+e076
- ICON_FA_VOICEMAIL = b"\xef\xa2\x97".decode("utf-8") # U+f897
- ICON_FA_VOLCANO = b"\xef\x9d\xb0".decode("utf-8") # U+f770
- ICON_FA_VOLLEYBALL = b"\xef\x91\x9f".decode("utf-8") # U+f45f
- ICON_FA_VOLUME_HIGH = b"\xef\x80\xa8".decode("utf-8") # U+f028
- ICON_FA_VOLUME_LOW = b"\xef\x80\xa7".decode("utf-8") # U+f027
- ICON_FA_VOLUME_OFF = b"\xef\x80\xa6".decode("utf-8") # U+f026
- ICON_FA_VOLUME_XMARK = b"\xef\x9a\xa9".decode("utf-8") # U+f6a9
- ICON_FA_VR_CARDBOARD = b"\xef\x9c\xa9".decode("utf-8") # U+f729
- ICON_FA_W = b"W".decode("utf-8") # U+0057
- ICON_FA_WALKIE_TALKIE = b"\xef\xa3\xaf".decode("utf-8") # U+f8ef
- ICON_FA_WALLET = b"\xef\x95\x95".decode("utf-8") # U+f555
- ICON_FA_WAND_MAGIC = b"\xef\x83\x90".decode("utf-8") # U+f0d0
- ICON_FA_WAND_MAGIC_SPARKLES = b"\xee\x8b\x8a".decode("utf-8") # U+e2ca
- ICON_FA_WAND_SPARKLES = b"\xef\x9c\xab".decode("utf-8") # U+f72b
- ICON_FA_WAREHOUSE = b"\xef\x92\x94".decode("utf-8") # U+f494
- ICON_FA_WATER = b"\xef\x9d\xb3".decode("utf-8") # U+f773
- ICON_FA_WATER_LADDER = b"\xef\x97\x85".decode("utf-8") # U+f5c5
- ICON_FA_WAVE_SQUARE = b"\xef\xa0\xbe".decode("utf-8") # U+f83e
- ICON_FA_WEIGHT_HANGING = b"\xef\x97\x8d".decode("utf-8") # U+f5cd
- ICON_FA_WEIGHT_SCALE = b"\xef\x92\x96".decode("utf-8") # U+f496
- ICON_FA_WHEAT_AWN = b"\xee\x8b\x8d".decode("utf-8") # U+e2cd
- ICON_FA_WHEAT_AWN_CIRCLE_EXCLAMATION = b"\xee\x96\x98".decode("utf-8") # U+e598
- ICON_FA_WHEELCHAIR = b"\xef\x86\x93".decode("utf-8") # U+f193
- ICON_FA_WHEELCHAIR_MOVE = b"\xee\x8b\x8e".decode("utf-8") # U+e2ce
- ICON_FA_WHISKEY_GLASS = b"\xef\x9e\xa0".decode("utf-8") # U+f7a0
- ICON_FA_WIFI = b"\xef\x87\xab".decode("utf-8") # U+f1eb
- ICON_FA_WIND = b"\xef\x9c\xae".decode("utf-8") # U+f72e
- ICON_FA_WINDOW_MAXIMIZE = b"\xef\x8b\x90".decode("utf-8") # U+f2d0
- ICON_FA_WINDOW_MINIMIZE = b"\xef\x8b\x91".decode("utf-8") # U+f2d1
- ICON_FA_WINDOW_RESTORE = b"\xef\x8b\x92".decode("utf-8") # U+f2d2
- ICON_FA_WINE_BOTTLE = b"\xef\x9c\xaf".decode("utf-8") # U+f72f
- ICON_FA_WINE_GLASS = b"\xef\x93\xa3".decode("utf-8") # U+f4e3
- ICON_FA_WINE_GLASS_EMPTY = b"\xef\x97\x8e".decode("utf-8") # U+f5ce
- ICON_FA_WON_SIGN = b"\xef\x85\x99".decode("utf-8") # U+f159
- ICON_FA_WORM = b"\xee\x96\x99".decode("utf-8") # U+e599
- ICON_FA_WRENCH = b"\xef\x82\xad".decode("utf-8") # U+f0ad
- ICON_FA_X = b"X".decode("utf-8") # U+0058
- ICON_FA_X_RAY = b"\xef\x92\x97".decode("utf-8") # U+f497
- ICON_FA_XMARK = b"\xef\x80\x8d".decode("utf-8") # U+f00d
- ICON_FA_XMARKS_LINES = b"\xee\x96\x9a".decode("utf-8") # U+e59a
- ICON_FA_Y = b"Y".decode("utf-8") # U+0059
- ICON_FA_YEN_SIGN = b"\xef\x85\x97".decode("utf-8") # U+f157
- ICON_FA_YIN_YANG = b"\xef\x9a\xad".decode("utf-8") # U+f6ad
- ICON_FA_Z = b"Z".decode("utf-8") # U+005a
|