icons.json 286 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179
  1. [
  2. {
  3. "text": "Font Awesome",
  4. "children": [
  5. {
  6. "id": "fontawesome::glass",
  7. "text": "Glass"
  8. },
  9. {
  10. "id": "fontawesome::music",
  11. "text": "Music"
  12. },
  13. {
  14. "id": "fontawesome::search",
  15. "text": "Search"
  16. },
  17. {
  18. "id": "fontawesome::envelope-o",
  19. "text": "Envelope O"
  20. },
  21. {
  22. "id": "fontawesome::heart",
  23. "text": "Heart"
  24. },
  25. {
  26. "id": "fontawesome::star",
  27. "text": "Star"
  28. },
  29. {
  30. "id": "fontawesome::star-o",
  31. "text": "Star O"
  32. },
  33. {
  34. "id": "fontawesome::user",
  35. "text": "User"
  36. },
  37. {
  38. "id": "fontawesome::film",
  39. "text": "Film"
  40. },
  41. {
  42. "id": "fontawesome::th-large",
  43. "text": "Th Large"
  44. },
  45. {
  46. "id": "fontawesome::th",
  47. "text": "Th"
  48. },
  49. {
  50. "id": "fontawesome::th-list",
  51. "text": "Th List"
  52. },
  53. {
  54. "id": "fontawesome::check",
  55. "text": "Check"
  56. },
  57. {
  58. "id": "fontawesome::times",
  59. "text": "Times"
  60. },
  61. {
  62. "id": "fontawesome::search-plus",
  63. "text": "Search Plus"
  64. },
  65. {
  66. "id": "fontawesome::search-minus",
  67. "text": "Search Minus"
  68. },
  69. {
  70. "id": "fontawesome::power-off",
  71. "text": "Power Off"
  72. },
  73. {
  74. "id": "fontawesome::signal",
  75. "text": "Signal"
  76. },
  77. {
  78. "id": "fontawesome::cog",
  79. "text": "Cog"
  80. },
  81. {
  82. "id": "fontawesome::trash-o",
  83. "text": "Trash O"
  84. },
  85. {
  86. "id": "fontawesome::home",
  87. "text": "Home"
  88. },
  89. {
  90. "id": "fontawesome::file-o",
  91. "text": "File O"
  92. },
  93. {
  94. "id": "fontawesome::clock-o",
  95. "text": "Clock O"
  96. },
  97. {
  98. "id": "fontawesome::road",
  99. "text": "Road"
  100. },
  101. {
  102. "id": "fontawesome::download",
  103. "text": "Download"
  104. },
  105. {
  106. "id": "fontawesome::arrow-circle-o-down",
  107. "text": "Arrow Circle O Down"
  108. },
  109. {
  110. "id": "fontawesome::arrow-circle-o-up",
  111. "text": "Arrow Circle O Up"
  112. },
  113. {
  114. "id": "fontawesome::inbox",
  115. "text": "Inbox"
  116. },
  117. {
  118. "id": "fontawesome::play-circle-o",
  119. "text": "Play Circle O"
  120. },
  121. {
  122. "id": "fontawesome::repeat",
  123. "text": "Repeat"
  124. },
  125. {
  126. "id": "fontawesome::refresh",
  127. "text": "Refresh"
  128. },
  129. {
  130. "id": "fontawesome::list-alt",
  131. "text": "List Alt"
  132. },
  133. {
  134. "id": "fontawesome::lock",
  135. "text": "Lock"
  136. },
  137. {
  138. "id": "fontawesome::flag",
  139. "text": "Flag"
  140. },
  141. {
  142. "id": "fontawesome::headphones",
  143. "text": "Headphones"
  144. },
  145. {
  146. "id": "fontawesome::volume-off",
  147. "text": "Volume Off"
  148. },
  149. {
  150. "id": "fontawesome::volume-down",
  151. "text": "Volume Down"
  152. },
  153. {
  154. "id": "fontawesome::volume-up",
  155. "text": "Volume Up"
  156. },
  157. {
  158. "id": "fontawesome::qrcode",
  159. "text": "Qrcode"
  160. },
  161. {
  162. "id": "fontawesome::barcode",
  163. "text": "Barcode"
  164. },
  165. {
  166. "id": "fontawesome::tag",
  167. "text": "Tag"
  168. },
  169. {
  170. "id": "fontawesome::tags",
  171. "text": "Tags"
  172. },
  173. {
  174. "id": "fontawesome::book",
  175. "text": "Book"
  176. },
  177. {
  178. "id": "fontawesome::bookmark",
  179. "text": "Bookmark"
  180. },
  181. {
  182. "id": "fontawesome::print",
  183. "text": "Print"
  184. },
  185. {
  186. "id": "fontawesome::camera",
  187. "text": "Camera"
  188. },
  189. {
  190. "id": "fontawesome::font",
  191. "text": "Font"
  192. },
  193. {
  194. "id": "fontawesome::bold",
  195. "text": "Bold"
  196. },
  197. {
  198. "id": "fontawesome::italic",
  199. "text": "Italic"
  200. },
  201. {
  202. "id": "fontawesome::text-height",
  203. "text": "Text Height"
  204. },
  205. {
  206. "id": "fontawesome::text-width",
  207. "text": "Text Width"
  208. },
  209. {
  210. "id": "fontawesome::align-left",
  211. "text": "Align Left"
  212. },
  213. {
  214. "id": "fontawesome::align-center",
  215. "text": "Align Center"
  216. },
  217. {
  218. "id": "fontawesome::align-right",
  219. "text": "Align Right"
  220. },
  221. {
  222. "id": "fontawesome::align-justify",
  223. "text": "Align Justify"
  224. },
  225. {
  226. "id": "fontawesome::list",
  227. "text": "List"
  228. },
  229. {
  230. "id": "fontawesome::outdent",
  231. "text": "Outdent"
  232. },
  233. {
  234. "id": "fontawesome::indent",
  235. "text": "Indent"
  236. },
  237. {
  238. "id": "fontawesome::video-camera",
  239. "text": "Video Camera"
  240. },
  241. {
  242. "id": "fontawesome::picture-o",
  243. "text": "Picture O"
  244. },
  245. {
  246. "id": "fontawesome::pencil",
  247. "text": "Pencil"
  248. },
  249. {
  250. "id": "fontawesome::map-marker",
  251. "text": "Map Marker"
  252. },
  253. {
  254. "id": "fontawesome::adjust",
  255. "text": "Adjust"
  256. },
  257. {
  258. "id": "fontawesome::tint",
  259. "text": "Tint"
  260. },
  261. {
  262. "id": "fontawesome::pencil-square-o",
  263. "text": "Pencil Square O"
  264. },
  265. {
  266. "id": "fontawesome::share-square-o",
  267. "text": "Share Square O"
  268. },
  269. {
  270. "id": "fontawesome::check-square-o",
  271. "text": "Check Square O"
  272. },
  273. {
  274. "id": "fontawesome::arrows",
  275. "text": "Arrows"
  276. },
  277. {
  278. "id": "fontawesome::step-backward",
  279. "text": "Step Backward"
  280. },
  281. {
  282. "id": "fontawesome::fast-backward",
  283. "text": "Fast Backward"
  284. },
  285. {
  286. "id": "fontawesome::backward",
  287. "text": "Backward"
  288. },
  289. {
  290. "id": "fontawesome::play",
  291. "text": "Play"
  292. },
  293. {
  294. "id": "fontawesome::pause",
  295. "text": "Pause"
  296. },
  297. {
  298. "id": "fontawesome::stop",
  299. "text": "Stop"
  300. },
  301. {
  302. "id": "fontawesome::forward",
  303. "text": "Forward"
  304. },
  305. {
  306. "id": "fontawesome::fast-forward",
  307. "text": "Fast Forward"
  308. },
  309. {
  310. "id": "fontawesome::step-forward",
  311. "text": "Step Forward"
  312. },
  313. {
  314. "id": "fontawesome::eject",
  315. "text": "Eject"
  316. },
  317. {
  318. "id": "fontawesome::chevron-left",
  319. "text": "Chevron Left"
  320. },
  321. {
  322. "id": "fontawesome::chevron-right",
  323. "text": "Chevron Right"
  324. },
  325. {
  326. "id": "fontawesome::plus-circle",
  327. "text": "Plus Circle"
  328. },
  329. {
  330. "id": "fontawesome::minus-circle",
  331. "text": "Minus Circle"
  332. },
  333. {
  334. "id": "fontawesome::times-circle",
  335. "text": "Times Circle"
  336. },
  337. {
  338. "id": "fontawesome::check-circle",
  339. "text": "Check Circle"
  340. },
  341. {
  342. "id": "fontawesome::question-circle",
  343. "text": "Question Circle"
  344. },
  345. {
  346. "id": "fontawesome::info-circle",
  347. "text": "Info Circle"
  348. },
  349. {
  350. "id": "fontawesome::crosshairs",
  351. "text": "Crosshairs"
  352. },
  353. {
  354. "id": "fontawesome::times-circle-o",
  355. "text": "Times Circle O"
  356. },
  357. {
  358. "id": "fontawesome::check-circle-o",
  359. "text": "Check Circle O"
  360. },
  361. {
  362. "id": "fontawesome::ban",
  363. "text": "Ban"
  364. },
  365. {
  366. "id": "fontawesome::arrow-left",
  367. "text": "Arrow Left"
  368. },
  369. {
  370. "id": "fontawesome::arrow-right",
  371. "text": "Arrow Right"
  372. },
  373. {
  374. "id": "fontawesome::arrow-up",
  375. "text": "Arrow Up"
  376. },
  377. {
  378. "id": "fontawesome::arrow-down",
  379. "text": "Arrow Down"
  380. },
  381. {
  382. "id": "fontawesome::share",
  383. "text": "Share"
  384. },
  385. {
  386. "id": "fontawesome::expand",
  387. "text": "Expand"
  388. },
  389. {
  390. "id": "fontawesome::compress",
  391. "text": "Compress"
  392. },
  393. {
  394. "id": "fontawesome::plus",
  395. "text": "Plus"
  396. },
  397. {
  398. "id": "fontawesome::minus",
  399. "text": "Minus"
  400. },
  401. {
  402. "id": "fontawesome::asterisk",
  403. "text": "Asterisk"
  404. },
  405. {
  406. "id": "fontawesome::exclamation-circle",
  407. "text": "Exclamation Circle"
  408. },
  409. {
  410. "id": "fontawesome::gift",
  411. "text": "Gift"
  412. },
  413. {
  414. "id": "fontawesome::leaf",
  415. "text": "Leaf"
  416. },
  417. {
  418. "id": "fontawesome::fire",
  419. "text": "Fire"
  420. },
  421. {
  422. "id": "fontawesome::eye",
  423. "text": "Eye"
  424. },
  425. {
  426. "id": "fontawesome::eye-slash",
  427. "text": "Eye Slash"
  428. },
  429. {
  430. "id": "fontawesome::exclamation-triangle",
  431. "text": "Exclamation Triangle"
  432. },
  433. {
  434. "id": "fontawesome::plane",
  435. "text": "Plane"
  436. },
  437. {
  438. "id": "fontawesome::calendar",
  439. "text": "Calendar"
  440. },
  441. {
  442. "id": "fontawesome::random",
  443. "text": "Random"
  444. },
  445. {
  446. "id": "fontawesome::comment",
  447. "text": "Comment"
  448. },
  449. {
  450. "id": "fontawesome::magnet",
  451. "text": "Magnet"
  452. },
  453. {
  454. "id": "fontawesome::chevron-up",
  455. "text": "Chevron Up"
  456. },
  457. {
  458. "id": "fontawesome::chevron-down",
  459. "text": "Chevron Down"
  460. },
  461. {
  462. "id": "fontawesome::retweet",
  463. "text": "Retweet"
  464. },
  465. {
  466. "id": "fontawesome::shopping-cart",
  467. "text": "Shopping Cart"
  468. },
  469. {
  470. "id": "fontawesome::folder",
  471. "text": "Folder"
  472. },
  473. {
  474. "id": "fontawesome::folder-open",
  475. "text": "Folder Open"
  476. },
  477. {
  478. "id": "fontawesome::arrows-v",
  479. "text": "Arrows V"
  480. },
  481. {
  482. "id": "fontawesome::arrows-h",
  483. "text": "Arrows H"
  484. },
  485. {
  486. "id": "fontawesome::bar-chart",
  487. "text": "Bar Chart"
  488. },
  489. {
  490. "id": "fontawesome::twitter-square",
  491. "text": "Twitter Square"
  492. },
  493. {
  494. "id": "fontawesome::facebook-square",
  495. "text": "Facebook Square"
  496. },
  497. {
  498. "id": "fontawesome::camera-retro",
  499. "text": "Camera Retro"
  500. },
  501. {
  502. "id": "fontawesome::key",
  503. "text": "Key"
  504. },
  505. {
  506. "id": "fontawesome::cogs",
  507. "text": "Cogs"
  508. },
  509. {
  510. "id": "fontawesome::comments",
  511. "text": "Comments"
  512. },
  513. {
  514. "id": "fontawesome::thumbs-o-up",
  515. "text": "Thumbs O Up"
  516. },
  517. {
  518. "id": "fontawesome::thumbs-o-down",
  519. "text": "Thumbs O Down"
  520. },
  521. {
  522. "id": "fontawesome::star-half",
  523. "text": "Star Half"
  524. },
  525. {
  526. "id": "fontawesome::heart-o",
  527. "text": "Heart O"
  528. },
  529. {
  530. "id": "fontawesome::sign-out",
  531. "text": "Sign Out"
  532. },
  533. {
  534. "id": "fontawesome::linkedin-square",
  535. "text": "Linkedin Square"
  536. },
  537. {
  538. "id": "fontawesome::thumb-tack",
  539. "text": "Thumb Tack"
  540. },
  541. {
  542. "id": "fontawesome::external-link",
  543. "text": "External Link"
  544. },
  545. {
  546. "id": "fontawesome::sign-in",
  547. "text": "Sign In"
  548. },
  549. {
  550. "id": "fontawesome::trophy",
  551. "text": "Trophy"
  552. },
  553. {
  554. "id": "fontawesome::github-square",
  555. "text": "Github Square"
  556. },
  557. {
  558. "id": "fontawesome::upload",
  559. "text": "Upload"
  560. },
  561. {
  562. "id": "fontawesome::lemon-o",
  563. "text": "Lemon O"
  564. },
  565. {
  566. "id": "fontawesome::phone",
  567. "text": "Phone"
  568. },
  569. {
  570. "id": "fontawesome::square-o",
  571. "text": "Square O"
  572. },
  573. {
  574. "id": "fontawesome::bookmark-o",
  575. "text": "Bookmark O"
  576. },
  577. {
  578. "id": "fontawesome::phone-square",
  579. "text": "Phone Square"
  580. },
  581. {
  582. "id": "fontawesome::twitter",
  583. "text": "Twitter"
  584. },
  585. {
  586. "id": "fontawesome::facebook",
  587. "text": "Facebook"
  588. },
  589. {
  590. "id": "fontawesome::github",
  591. "text": "Github"
  592. },
  593. {
  594. "id": "fontawesome::unlock",
  595. "text": "Unlock"
  596. },
  597. {
  598. "id": "fontawesome::credit-card",
  599. "text": "Credit Card"
  600. },
  601. {
  602. "id": "fontawesome::rss",
  603. "text": "Rss"
  604. },
  605. {
  606. "id": "fontawesome::hdd-o",
  607. "text": "Hdd O"
  608. },
  609. {
  610. "id": "fontawesome::bullhorn",
  611. "text": "Bullhorn"
  612. },
  613. {
  614. "id": "fontawesome::bell",
  615. "text": "Bell"
  616. },
  617. {
  618. "id": "fontawesome::certificate",
  619. "text": "Certificate"
  620. },
  621. {
  622. "id": "fontawesome::hand-o-right",
  623. "text": "Hand O Right"
  624. },
  625. {
  626. "id": "fontawesome::hand-o-left",
  627. "text": "Hand O Left"
  628. },
  629. {
  630. "id": "fontawesome::hand-o-up",
  631. "text": "Hand O Up"
  632. },
  633. {
  634. "id": "fontawesome::hand-o-down",
  635. "text": "Hand O Down"
  636. },
  637. {
  638. "id": "fontawesome::arrow-circle-left",
  639. "text": "Arrow Circle Left"
  640. },
  641. {
  642. "id": "fontawesome::arrow-circle-right",
  643. "text": "Arrow Circle Right"
  644. },
  645. {
  646. "id": "fontawesome::arrow-circle-up",
  647. "text": "Arrow Circle Up"
  648. },
  649. {
  650. "id": "fontawesome::arrow-circle-down",
  651. "text": "Arrow Circle Down"
  652. },
  653. {
  654. "id": "fontawesome::globe",
  655. "text": "Globe"
  656. },
  657. {
  658. "id": "fontawesome::wrench",
  659. "text": "Wrench"
  660. },
  661. {
  662. "id": "fontawesome::tasks",
  663. "text": "Tasks"
  664. },
  665. {
  666. "id": "fontawesome::filter",
  667. "text": "Filter"
  668. },
  669. {
  670. "id": "fontawesome::briefcase",
  671. "text": "Briefcase"
  672. },
  673. {
  674. "id": "fontawesome::arrows-alt",
  675. "text": "Arrows Alt"
  676. },
  677. {
  678. "id": "fontawesome::users",
  679. "text": "Users"
  680. },
  681. {
  682. "id": "fontawesome::link",
  683. "text": "Link"
  684. },
  685. {
  686. "id": "fontawesome::cloud",
  687. "text": "Cloud"
  688. },
  689. {
  690. "id": "fontawesome::flask",
  691. "text": "Flask"
  692. },
  693. {
  694. "id": "fontawesome::scissors",
  695. "text": "Scissors"
  696. },
  697. {
  698. "id": "fontawesome::files-o",
  699. "text": "Files O"
  700. },
  701. {
  702. "id": "fontawesome::paperclip",
  703. "text": "Paperclip"
  704. },
  705. {
  706. "id": "fontawesome::floppy-o",
  707. "text": "Floppy O"
  708. },
  709. {
  710. "id": "fontawesome::square",
  711. "text": "Square"
  712. },
  713. {
  714. "id": "fontawesome::bars",
  715. "text": "Bars"
  716. },
  717. {
  718. "id": "fontawesome::list-ul",
  719. "text": "List Ul"
  720. },
  721. {
  722. "id": "fontawesome::list-ol",
  723. "text": "List Ol"
  724. },
  725. {
  726. "id": "fontawesome::strikethrough",
  727. "text": "Strikethrough"
  728. },
  729. {
  730. "id": "fontawesome::underline",
  731. "text": "Underline"
  732. },
  733. {
  734. "id": "fontawesome::table",
  735. "text": "Table"
  736. },
  737. {
  738. "id": "fontawesome::magic",
  739. "text": "Magic"
  740. },
  741. {
  742. "id": "fontawesome::truck",
  743. "text": "Truck"
  744. },
  745. {
  746. "id": "fontawesome::pinterest",
  747. "text": "Pinterest"
  748. },
  749. {
  750. "id": "fontawesome::pinterest-square",
  751. "text": "Pinterest Square"
  752. },
  753. {
  754. "id": "fontawesome::google-plus-square",
  755. "text": "Google Plus Square"
  756. },
  757. {
  758. "id": "fontawesome::google-plus",
  759. "text": "Google Plus"
  760. },
  761. {
  762. "id": "fontawesome::money",
  763. "text": "Money"
  764. },
  765. {
  766. "id": "fontawesome::caret-down",
  767. "text": "Caret Down"
  768. },
  769. {
  770. "id": "fontawesome::caret-up",
  771. "text": "Caret Up"
  772. },
  773. {
  774. "id": "fontawesome::caret-left",
  775. "text": "Caret Left"
  776. },
  777. {
  778. "id": "fontawesome::caret-right",
  779. "text": "Caret Right"
  780. },
  781. {
  782. "id": "fontawesome::columns",
  783. "text": "Columns"
  784. },
  785. {
  786. "id": "fontawesome::sort",
  787. "text": "Sort"
  788. },
  789. {
  790. "id": "fontawesome::sort-desc",
  791. "text": "Sort Desc"
  792. },
  793. {
  794. "id": "fontawesome::sort-asc",
  795. "text": "Sort Asc"
  796. },
  797. {
  798. "id": "fontawesome::envelope",
  799. "text": "Envelope"
  800. },
  801. {
  802. "id": "fontawesome::linkedin",
  803. "text": "Linkedin"
  804. },
  805. {
  806. "id": "fontawesome::undo",
  807. "text": "Undo"
  808. },
  809. {
  810. "id": "fontawesome::gavel",
  811. "text": "Gavel"
  812. },
  813. {
  814. "id": "fontawesome::tachometer",
  815. "text": "Tachometer"
  816. },
  817. {
  818. "id": "fontawesome::comment-o",
  819. "text": "Comment O"
  820. },
  821. {
  822. "id": "fontawesome::comments-o",
  823. "text": "Comments O"
  824. },
  825. {
  826. "id": "fontawesome::bolt",
  827. "text": "Bolt"
  828. },
  829. {
  830. "id": "fontawesome::sitemap",
  831. "text": "Sitemap"
  832. },
  833. {
  834. "id": "fontawesome::umbrella",
  835. "text": "Umbrella"
  836. },
  837. {
  838. "id": "fontawesome::clipboard",
  839. "text": "Clipboard"
  840. },
  841. {
  842. "id": "fontawesome::lightbulb-o",
  843. "text": "Lightbulb O"
  844. },
  845. {
  846. "id": "fontawesome::exchange",
  847. "text": "Exchange"
  848. },
  849. {
  850. "id": "fontawesome::cloud-download",
  851. "text": "Cloud Download"
  852. },
  853. {
  854. "id": "fontawesome::cloud-upload",
  855. "text": "Cloud Upload"
  856. },
  857. {
  858. "id": "fontawesome::user-md",
  859. "text": "User Md"
  860. },
  861. {
  862. "id": "fontawesome::stethoscope",
  863. "text": "Stethoscope"
  864. },
  865. {
  866. "id": "fontawesome::suitcase",
  867. "text": "Suitcase"
  868. },
  869. {
  870. "id": "fontawesome::bell-o",
  871. "text": "Bell O"
  872. },
  873. {
  874. "id": "fontawesome::coffee",
  875. "text": "Coffee"
  876. },
  877. {
  878. "id": "fontawesome::cutlery",
  879. "text": "Cutlery"
  880. },
  881. {
  882. "id": "fontawesome::file-text-o",
  883. "text": "File Text O"
  884. },
  885. {
  886. "id": "fontawesome::building-o",
  887. "text": "Building O"
  888. },
  889. {
  890. "id": "fontawesome::hospital-o",
  891. "text": "Hospital O"
  892. },
  893. {
  894. "id": "fontawesome::ambulance",
  895. "text": "Ambulance"
  896. },
  897. {
  898. "id": "fontawesome::medkit",
  899. "text": "Medkit"
  900. },
  901. {
  902. "id": "fontawesome::fighter-jet",
  903. "text": "Fighter Jet"
  904. },
  905. {
  906. "id": "fontawesome::beer",
  907. "text": "Beer"
  908. },
  909. {
  910. "id": "fontawesome::h-square",
  911. "text": "H Square"
  912. },
  913. {
  914. "id": "fontawesome::plus-square",
  915. "text": "Plus Square"
  916. },
  917. {
  918. "id": "fontawesome::angle-double-left",
  919. "text": "Angle Double Left"
  920. },
  921. {
  922. "id": "fontawesome::angle-double-right",
  923. "text": "Angle Double Right"
  924. },
  925. {
  926. "id": "fontawesome::angle-double-up",
  927. "text": "Angle Double Up"
  928. },
  929. {
  930. "id": "fontawesome::angle-double-down",
  931. "text": "Angle Double Down"
  932. },
  933. {
  934. "id": "fontawesome::angle-left",
  935. "text": "Angle Left"
  936. },
  937. {
  938. "id": "fontawesome::angle-right",
  939. "text": "Angle Right"
  940. },
  941. {
  942. "id": "fontawesome::angle-up",
  943. "text": "Angle Up"
  944. },
  945. {
  946. "id": "fontawesome::angle-down",
  947. "text": "Angle Down"
  948. },
  949. {
  950. "id": "fontawesome::desktop",
  951. "text": "Desktop"
  952. },
  953. {
  954. "id": "fontawesome::laptop",
  955. "text": "Laptop"
  956. },
  957. {
  958. "id": "fontawesome::tablet",
  959. "text": "Tablet"
  960. },
  961. {
  962. "id": "fontawesome::mobile",
  963. "text": "Mobile"
  964. },
  965. {
  966. "id": "fontawesome::circle-o",
  967. "text": "Circle O"
  968. },
  969. {
  970. "id": "fontawesome::quote-left",
  971. "text": "Quote Left"
  972. },
  973. {
  974. "id": "fontawesome::quote-right",
  975. "text": "Quote Right"
  976. },
  977. {
  978. "id": "fontawesome::spinner",
  979. "text": "Spinner"
  980. },
  981. {
  982. "id": "fontawesome::circle",
  983. "text": "Circle"
  984. },
  985. {
  986. "id": "fontawesome::reply",
  987. "text": "Reply"
  988. },
  989. {
  990. "id": "fontawesome::github-alt",
  991. "text": "Github Alt"
  992. },
  993. {
  994. "id": "fontawesome::folder-o",
  995. "text": "Folder O"
  996. },
  997. {
  998. "id": "fontawesome::folder-open-o",
  999. "text": "Folder Open O"
  1000. },
  1001. {
  1002. "id": "fontawesome::smile-o",
  1003. "text": "Smile O"
  1004. },
  1005. {
  1006. "id": "fontawesome::frown-o",
  1007. "text": "Frown O"
  1008. },
  1009. {
  1010. "id": "fontawesome::meh-o",
  1011. "text": "Meh O"
  1012. },
  1013. {
  1014. "id": "fontawesome::gamepad",
  1015. "text": "Gamepad"
  1016. },
  1017. {
  1018. "id": "fontawesome::keyboard-o",
  1019. "text": "Keyboard O"
  1020. },
  1021. {
  1022. "id": "fontawesome::flag-o",
  1023. "text": "Flag O"
  1024. },
  1025. {
  1026. "id": "fontawesome::flag-checkered",
  1027. "text": "Flag Checkered"
  1028. },
  1029. {
  1030. "id": "fontawesome::terminal",
  1031. "text": "Terminal"
  1032. },
  1033. {
  1034. "id": "fontawesome::code",
  1035. "text": "Code"
  1036. },
  1037. {
  1038. "id": "fontawesome::reply-all",
  1039. "text": "Reply All"
  1040. },
  1041. {
  1042. "id": "fontawesome::star-half-o",
  1043. "text": "Star Half O"
  1044. },
  1045. {
  1046. "id": "fontawesome::location-arrow",
  1047. "text": "Location Arrow"
  1048. },
  1049. {
  1050. "id": "fontawesome::crop",
  1051. "text": "Crop"
  1052. },
  1053. {
  1054. "id": "fontawesome::code-fork",
  1055. "text": "Code Fork"
  1056. },
  1057. {
  1058. "id": "fontawesome::chain-broken",
  1059. "text": "Chain Broken"
  1060. },
  1061. {
  1062. "id": "fontawesome::question",
  1063. "text": "Question"
  1064. },
  1065. {
  1066. "id": "fontawesome::info",
  1067. "text": "Info"
  1068. },
  1069. {
  1070. "id": "fontawesome::exclamation",
  1071. "text": "Exclamation"
  1072. },
  1073. {
  1074. "id": "fontawesome::superscript",
  1075. "text": "Superscript"
  1076. },
  1077. {
  1078. "id": "fontawesome::subscript",
  1079. "text": "Subscript"
  1080. },
  1081. {
  1082. "id": "fontawesome::eraser",
  1083. "text": "Eraser"
  1084. },
  1085. {
  1086. "id": "fontawesome::puzzle-piece",
  1087. "text": "Puzzle Piece"
  1088. },
  1089. {
  1090. "id": "fontawesome::microphone",
  1091. "text": "Microphone"
  1092. },
  1093. {
  1094. "id": "fontawesome::microphone-slash",
  1095. "text": "Microphone Slash"
  1096. },
  1097. {
  1098. "id": "fontawesome::shield",
  1099. "text": "Shield"
  1100. },
  1101. {
  1102. "id": "fontawesome::calendar-o",
  1103. "text": "Calendar O"
  1104. },
  1105. {
  1106. "id": "fontawesome::fire-extinguisher",
  1107. "text": "Fire Extinguisher"
  1108. },
  1109. {
  1110. "id": "fontawesome::rocket",
  1111. "text": "Rocket"
  1112. },
  1113. {
  1114. "id": "fontawesome::maxcdn",
  1115. "text": "Maxcdn"
  1116. },
  1117. {
  1118. "id": "fontawesome::chevron-circle-left",
  1119. "text": "Chevron Circle Left"
  1120. },
  1121. {
  1122. "id": "fontawesome::chevron-circle-right",
  1123. "text": "Chevron Circle Right"
  1124. },
  1125. {
  1126. "id": "fontawesome::chevron-circle-up",
  1127. "text": "Chevron Circle Up"
  1128. },
  1129. {
  1130. "id": "fontawesome::chevron-circle-down",
  1131. "text": "Chevron Circle Down"
  1132. },
  1133. {
  1134. "id": "fontawesome::html5",
  1135. "text": "Html5"
  1136. },
  1137. {
  1138. "id": "fontawesome::css3",
  1139. "text": "Css3"
  1140. },
  1141. {
  1142. "id": "fontawesome::anchor",
  1143. "text": "Anchor"
  1144. },
  1145. {
  1146. "id": "fontawesome::unlock-alt",
  1147. "text": "Unlock Alt"
  1148. },
  1149. {
  1150. "id": "fontawesome::bullseye",
  1151. "text": "Bullseye"
  1152. },
  1153. {
  1154. "id": "fontawesome::ellipsis-h",
  1155. "text": "Ellipsis H"
  1156. },
  1157. {
  1158. "id": "fontawesome::ellipsis-v",
  1159. "text": "Ellipsis V"
  1160. },
  1161. {
  1162. "id": "fontawesome::rss-square",
  1163. "text": "Rss Square"
  1164. },
  1165. {
  1166. "id": "fontawesome::play-circle",
  1167. "text": "Play Circle"
  1168. },
  1169. {
  1170. "id": "fontawesome::ticket",
  1171. "text": "Ticket"
  1172. },
  1173. {
  1174. "id": "fontawesome::minus-square",
  1175. "text": "Minus Square"
  1176. },
  1177. {
  1178. "id": "fontawesome::minus-square-o",
  1179. "text": "Minus Square O"
  1180. },
  1181. {
  1182. "id": "fontawesome::level-up",
  1183. "text": "Level Up"
  1184. },
  1185. {
  1186. "id": "fontawesome::level-down",
  1187. "text": "Level Down"
  1188. },
  1189. {
  1190. "id": "fontawesome::check-square",
  1191. "text": "Check Square"
  1192. },
  1193. {
  1194. "id": "fontawesome::pencil-square",
  1195. "text": "Pencil Square"
  1196. },
  1197. {
  1198. "id": "fontawesome::external-link-square",
  1199. "text": "External Link Square"
  1200. },
  1201. {
  1202. "id": "fontawesome::share-square",
  1203. "text": "Share Square"
  1204. },
  1205. {
  1206. "id": "fontawesome::compass",
  1207. "text": "Compass"
  1208. },
  1209. {
  1210. "id": "fontawesome::caret-square-o-down",
  1211. "text": "Caret Square O Down"
  1212. },
  1213. {
  1214. "id": "fontawesome::caret-square-o-up",
  1215. "text": "Caret Square O Up"
  1216. },
  1217. {
  1218. "id": "fontawesome::caret-square-o-right",
  1219. "text": "Caret Square O Right"
  1220. },
  1221. {
  1222. "id": "fontawesome::eur",
  1223. "text": "Eur"
  1224. },
  1225. {
  1226. "id": "fontawesome::gbp",
  1227. "text": "Gbp"
  1228. },
  1229. {
  1230. "id": "fontawesome::usd",
  1231. "text": "Usd"
  1232. },
  1233. {
  1234. "id": "fontawesome::inr",
  1235. "text": "Inr"
  1236. },
  1237. {
  1238. "id": "fontawesome::jpy",
  1239. "text": "Jpy"
  1240. },
  1241. {
  1242. "id": "fontawesome::rub",
  1243. "text": "Rub"
  1244. },
  1245. {
  1246. "id": "fontawesome::krw",
  1247. "text": "Krw"
  1248. },
  1249. {
  1250. "id": "fontawesome::btc",
  1251. "text": "Btc"
  1252. },
  1253. {
  1254. "id": "fontawesome::file",
  1255. "text": "File"
  1256. },
  1257. {
  1258. "id": "fontawesome::file-text",
  1259. "text": "File Text"
  1260. },
  1261. {
  1262. "id": "fontawesome::sort-alpha-asc",
  1263. "text": "Sort Alpha Asc"
  1264. },
  1265. {
  1266. "id": "fontawesome::sort-alpha-desc",
  1267. "text": "Sort Alpha Desc"
  1268. },
  1269. {
  1270. "id": "fontawesome::sort-amount-asc",
  1271. "text": "Sort Amount Asc"
  1272. },
  1273. {
  1274. "id": "fontawesome::sort-amount-desc",
  1275. "text": "Sort Amount Desc"
  1276. },
  1277. {
  1278. "id": "fontawesome::sort-numeric-asc",
  1279. "text": "Sort Numeric Asc"
  1280. },
  1281. {
  1282. "id": "fontawesome::sort-numeric-desc",
  1283. "text": "Sort Numeric Desc"
  1284. },
  1285. {
  1286. "id": "fontawesome::thumbs-up",
  1287. "text": "Thumbs Up"
  1288. },
  1289. {
  1290. "id": "fontawesome::thumbs-down",
  1291. "text": "Thumbs Down"
  1292. },
  1293. {
  1294. "id": "fontawesome::youtube-square",
  1295. "text": "Youtube Square"
  1296. },
  1297. {
  1298. "id": "fontawesome::youtube",
  1299. "text": "Youtube"
  1300. },
  1301. {
  1302. "id": "fontawesome::xing",
  1303. "text": "Xing"
  1304. },
  1305. {
  1306. "id": "fontawesome::xing-square",
  1307. "text": "Xing Square"
  1308. },
  1309. {
  1310. "id": "fontawesome::youtube-play",
  1311. "text": "Youtube Play"
  1312. },
  1313. {
  1314. "id": "fontawesome::dropbox",
  1315. "text": "Dropbox"
  1316. },
  1317. {
  1318. "id": "fontawesome::stack-overflow",
  1319. "text": "Stack Overflow"
  1320. },
  1321. {
  1322. "id": "fontawesome::instagram",
  1323. "text": "Instagram"
  1324. },
  1325. {
  1326. "id": "fontawesome::flickr",
  1327. "text": "Flickr"
  1328. },
  1329. {
  1330. "id": "fontawesome::adn",
  1331. "text": "Adn"
  1332. },
  1333. {
  1334. "id": "fontawesome::bitbucket",
  1335. "text": "Bitbucket"
  1336. },
  1337. {
  1338. "id": "fontawesome::bitbucket-square",
  1339. "text": "Bitbucket Square"
  1340. },
  1341. {
  1342. "id": "fontawesome::tumblr",
  1343. "text": "Tumblr"
  1344. },
  1345. {
  1346. "id": "fontawesome::tumblr-square",
  1347. "text": "Tumblr Square"
  1348. },
  1349. {
  1350. "id": "fontawesome::long-arrow-down",
  1351. "text": "Long Arrow Down"
  1352. },
  1353. {
  1354. "id": "fontawesome::long-arrow-up",
  1355. "text": "Long Arrow Up"
  1356. },
  1357. {
  1358. "id": "fontawesome::long-arrow-left",
  1359. "text": "Long Arrow Left"
  1360. },
  1361. {
  1362. "id": "fontawesome::long-arrow-right",
  1363. "text": "Long Arrow Right"
  1364. },
  1365. {
  1366. "id": "fontawesome::apple",
  1367. "text": "Apple"
  1368. },
  1369. {
  1370. "id": "fontawesome::windows",
  1371. "text": "Windows"
  1372. },
  1373. {
  1374. "id": "fontawesome::android",
  1375. "text": "Android"
  1376. },
  1377. {
  1378. "id": "fontawesome::linux",
  1379. "text": "Linux"
  1380. },
  1381. {
  1382. "id": "fontawesome::dribbble",
  1383. "text": "Dribbble"
  1384. },
  1385. {
  1386. "id": "fontawesome::skype",
  1387. "text": "Skype"
  1388. },
  1389. {
  1390. "id": "fontawesome::foursquare",
  1391. "text": "Foursquare"
  1392. },
  1393. {
  1394. "id": "fontawesome::trello",
  1395. "text": "Trello"
  1396. },
  1397. {
  1398. "id": "fontawesome::female",
  1399. "text": "Female"
  1400. },
  1401. {
  1402. "id": "fontawesome::male",
  1403. "text": "Male"
  1404. },
  1405. {
  1406. "id": "fontawesome::gratipay",
  1407. "text": "Gratipay"
  1408. },
  1409. {
  1410. "id": "fontawesome::sun-o",
  1411. "text": "Sun O"
  1412. },
  1413. {
  1414. "id": "fontawesome::moon-o",
  1415. "text": "Moon O"
  1416. },
  1417. {
  1418. "id": "fontawesome::archive",
  1419. "text": "Archive"
  1420. },
  1421. {
  1422. "id": "fontawesome::bug",
  1423. "text": "Bug"
  1424. },
  1425. {
  1426. "id": "fontawesome::vk",
  1427. "text": "Vk"
  1428. },
  1429. {
  1430. "id": "fontawesome::weibo",
  1431. "text": "Weibo"
  1432. },
  1433. {
  1434. "id": "fontawesome::renren",
  1435. "text": "Renren"
  1436. },
  1437. {
  1438. "id": "fontawesome::pagelines",
  1439. "text": "Pagelines"
  1440. },
  1441. {
  1442. "id": "fontawesome::stack-exchange",
  1443. "text": "Stack Exchange"
  1444. },
  1445. {
  1446. "id": "fontawesome::arrow-circle-o-right",
  1447. "text": "Arrow Circle O Right"
  1448. },
  1449. {
  1450. "id": "fontawesome::arrow-circle-o-left",
  1451. "text": "Arrow Circle O Left"
  1452. },
  1453. {
  1454. "id": "fontawesome::caret-square-o-left",
  1455. "text": "Caret Square O Left"
  1456. },
  1457. {
  1458. "id": "fontawesome::dot-circle-o",
  1459. "text": "Dot Circle O"
  1460. },
  1461. {
  1462. "id": "fontawesome::wheelchair",
  1463. "text": "Wheelchair"
  1464. },
  1465. {
  1466. "id": "fontawesome::vimeo-square",
  1467. "text": "Vimeo Square"
  1468. },
  1469. {
  1470. "id": "fontawesome::try",
  1471. "text": "Try"
  1472. },
  1473. {
  1474. "id": "fontawesome::plus-square-o",
  1475. "text": "Plus Square O"
  1476. },
  1477. {
  1478. "id": "fontawesome::space-shuttle",
  1479. "text": "Space Shuttle"
  1480. },
  1481. {
  1482. "id": "fontawesome::slack",
  1483. "text": "Slack"
  1484. },
  1485. {
  1486. "id": "fontawesome::envelope-square",
  1487. "text": "Envelope Square"
  1488. },
  1489. {
  1490. "id": "fontawesome::wordpress",
  1491. "text": "Wordpress"
  1492. },
  1493. {
  1494. "id": "fontawesome::openid",
  1495. "text": "Openid"
  1496. },
  1497. {
  1498. "id": "fontawesome::university",
  1499. "text": "University"
  1500. },
  1501. {
  1502. "id": "fontawesome::graduation-cap",
  1503. "text": "Graduation Cap"
  1504. },
  1505. {
  1506. "id": "fontawesome::yahoo",
  1507. "text": "Yahoo"
  1508. },
  1509. {
  1510. "id": "fontawesome::google",
  1511. "text": "Google"
  1512. },
  1513. {
  1514. "id": "fontawesome::reddit",
  1515. "text": "Reddit"
  1516. },
  1517. {
  1518. "id": "fontawesome::reddit-square",
  1519. "text": "Reddit Square"
  1520. },
  1521. {
  1522. "id": "fontawesome::stumbleupon-circle",
  1523. "text": "Stumbleupon Circle"
  1524. },
  1525. {
  1526. "id": "fontawesome::stumbleupon",
  1527. "text": "Stumbleupon"
  1528. },
  1529. {
  1530. "id": "fontawesome::delicious",
  1531. "text": "Delicious"
  1532. },
  1533. {
  1534. "id": "fontawesome::digg",
  1535. "text": "Digg"
  1536. },
  1537. {
  1538. "id": "fontawesome::pied-piper-pp",
  1539. "text": "Pied Piper Pp"
  1540. },
  1541. {
  1542. "id": "fontawesome::pied-piper-alt",
  1543. "text": "Pied Piper Alt"
  1544. },
  1545. {
  1546. "id": "fontawesome::drupal",
  1547. "text": "Drupal"
  1548. },
  1549. {
  1550. "id": "fontawesome::joomla",
  1551. "text": "Joomla"
  1552. },
  1553. {
  1554. "id": "fontawesome::language",
  1555. "text": "Language"
  1556. },
  1557. {
  1558. "id": "fontawesome::fax",
  1559. "text": "Fax"
  1560. },
  1561. {
  1562. "id": "fontawesome::building",
  1563. "text": "Building"
  1564. },
  1565. {
  1566. "id": "fontawesome::child",
  1567. "text": "Child"
  1568. },
  1569. {
  1570. "id": "fontawesome::paw",
  1571. "text": "Paw"
  1572. },
  1573. {
  1574. "id": "fontawesome::spoon",
  1575. "text": "Spoon"
  1576. },
  1577. {
  1578. "id": "fontawesome::cube",
  1579. "text": "Cube"
  1580. },
  1581. {
  1582. "id": "fontawesome::cubes",
  1583. "text": "Cubes"
  1584. },
  1585. {
  1586. "id": "fontawesome::behance",
  1587. "text": "Behance"
  1588. },
  1589. {
  1590. "id": "fontawesome::behance-square",
  1591. "text": "Behance Square"
  1592. },
  1593. {
  1594. "id": "fontawesome::steam",
  1595. "text": "Steam"
  1596. },
  1597. {
  1598. "id": "fontawesome::steam-square",
  1599. "text": "Steam Square"
  1600. },
  1601. {
  1602. "id": "fontawesome::recycle",
  1603. "text": "Recycle"
  1604. },
  1605. {
  1606. "id": "fontawesome::car",
  1607. "text": "Car"
  1608. },
  1609. {
  1610. "id": "fontawesome::taxi",
  1611. "text": "Taxi"
  1612. },
  1613. {
  1614. "id": "fontawesome::tree",
  1615. "text": "Tree"
  1616. },
  1617. {
  1618. "id": "fontawesome::spotify",
  1619. "text": "Spotify"
  1620. },
  1621. {
  1622. "id": "fontawesome::deviantart",
  1623. "text": "Deviantart"
  1624. },
  1625. {
  1626. "id": "fontawesome::soundcloud",
  1627. "text": "Soundcloud"
  1628. },
  1629. {
  1630. "id": "fontawesome::database",
  1631. "text": "Database"
  1632. },
  1633. {
  1634. "id": "fontawesome::file-pdf-o",
  1635. "text": "File Pdf O"
  1636. },
  1637. {
  1638. "id": "fontawesome::file-word-o",
  1639. "text": "File Word O"
  1640. },
  1641. {
  1642. "id": "fontawesome::file-excel-o",
  1643. "text": "File Excel O"
  1644. },
  1645. {
  1646. "id": "fontawesome::file-powerpoint-o",
  1647. "text": "File Powerpoint O"
  1648. },
  1649. {
  1650. "id": "fontawesome::file-image-o",
  1651. "text": "File Image O"
  1652. },
  1653. {
  1654. "id": "fontawesome::file-archive-o",
  1655. "text": "File Archive O"
  1656. },
  1657. {
  1658. "id": "fontawesome::file-audio-o",
  1659. "text": "File Audio O"
  1660. },
  1661. {
  1662. "id": "fontawesome::file-video-o",
  1663. "text": "File Video O"
  1664. },
  1665. {
  1666. "id": "fontawesome::file-code-o",
  1667. "text": "File Code O"
  1668. },
  1669. {
  1670. "id": "fontawesome::vine",
  1671. "text": "Vine"
  1672. },
  1673. {
  1674. "id": "fontawesome::codepen",
  1675. "text": "Codepen"
  1676. },
  1677. {
  1678. "id": "fontawesome::jsfiddle",
  1679. "text": "Jsfiddle"
  1680. },
  1681. {
  1682. "id": "fontawesome::life-ring",
  1683. "text": "Life Ring"
  1684. },
  1685. {
  1686. "id": "fontawesome::circle-o-notch",
  1687. "text": "Circle O Notch"
  1688. },
  1689. {
  1690. "id": "fontawesome::rebel",
  1691. "text": "Rebel"
  1692. },
  1693. {
  1694. "id": "fontawesome::empire",
  1695. "text": "Empire"
  1696. },
  1697. {
  1698. "id": "fontawesome::git-square",
  1699. "text": "Git Square"
  1700. },
  1701. {
  1702. "id": "fontawesome::git",
  1703. "text": "Git"
  1704. },
  1705. {
  1706. "id": "fontawesome::hacker-news",
  1707. "text": "Hacker News"
  1708. },
  1709. {
  1710. "id": "fontawesome::tencent-weibo",
  1711. "text": "Tencent Weibo"
  1712. },
  1713. {
  1714. "id": "fontawesome::qq",
  1715. "text": "Qq"
  1716. },
  1717. {
  1718. "id": "fontawesome::weixin",
  1719. "text": "Weixin"
  1720. },
  1721. {
  1722. "id": "fontawesome::paper-plane",
  1723. "text": "Paper Plane"
  1724. },
  1725. {
  1726. "id": "fontawesome::paper-plane-o",
  1727. "text": "Paper Plane O"
  1728. },
  1729. {
  1730. "id": "fontawesome::history",
  1731. "text": "History"
  1732. },
  1733. {
  1734. "id": "fontawesome::circle-thin",
  1735. "text": "Circle Thin"
  1736. },
  1737. {
  1738. "id": "fontawesome::header",
  1739. "text": "Header"
  1740. },
  1741. {
  1742. "id": "fontawesome::paragraph",
  1743. "text": "Paragraph"
  1744. },
  1745. {
  1746. "id": "fontawesome::sliders",
  1747. "text": "Sliders"
  1748. },
  1749. {
  1750. "id": "fontawesome::share-alt",
  1751. "text": "Share Alt"
  1752. },
  1753. {
  1754. "id": "fontawesome::share-alt-square",
  1755. "text": "Share Alt Square"
  1756. },
  1757. {
  1758. "id": "fontawesome::bomb",
  1759. "text": "Bomb"
  1760. },
  1761. {
  1762. "id": "fontawesome::futbol-o",
  1763. "text": "Futbol O"
  1764. },
  1765. {
  1766. "id": "fontawesome::tty",
  1767. "text": "Tty"
  1768. },
  1769. {
  1770. "id": "fontawesome::binoculars",
  1771. "text": "Binoculars"
  1772. },
  1773. {
  1774. "id": "fontawesome::plug",
  1775. "text": "Plug"
  1776. },
  1777. {
  1778. "id": "fontawesome::slideshare",
  1779. "text": "Slideshare"
  1780. },
  1781. {
  1782. "id": "fontawesome::twitch",
  1783. "text": "Twitch"
  1784. },
  1785. {
  1786. "id": "fontawesome::yelp",
  1787. "text": "Yelp"
  1788. },
  1789. {
  1790. "id": "fontawesome::newspaper-o",
  1791. "text": "Newspaper O"
  1792. },
  1793. {
  1794. "id": "fontawesome::wifi",
  1795. "text": "Wifi"
  1796. },
  1797. {
  1798. "id": "fontawesome::calculator",
  1799. "text": "Calculator"
  1800. },
  1801. {
  1802. "id": "fontawesome::paypal",
  1803. "text": "Paypal"
  1804. },
  1805. {
  1806. "id": "fontawesome::google-wallet",
  1807. "text": "Google Wallet"
  1808. },
  1809. {
  1810. "id": "fontawesome::cc-visa",
  1811. "text": "Cc Visa"
  1812. },
  1813. {
  1814. "id": "fontawesome::cc-mastercard",
  1815. "text": "Cc Mastercard"
  1816. },
  1817. {
  1818. "id": "fontawesome::cc-discover",
  1819. "text": "Cc Discover"
  1820. },
  1821. {
  1822. "id": "fontawesome::cc-amex",
  1823. "text": "Cc Amex"
  1824. },
  1825. {
  1826. "id": "fontawesome::cc-paypal",
  1827. "text": "Cc Paypal"
  1828. },
  1829. {
  1830. "id": "fontawesome::cc-stripe",
  1831. "text": "Cc Stripe"
  1832. },
  1833. {
  1834. "id": "fontawesome::bell-slash",
  1835. "text": "Bell Slash"
  1836. },
  1837. {
  1838. "id": "fontawesome::bell-slash-o",
  1839. "text": "Bell Slash O"
  1840. },
  1841. {
  1842. "id": "fontawesome::trash",
  1843. "text": "Trash"
  1844. },
  1845. {
  1846. "id": "fontawesome::copyright",
  1847. "text": "Copyright"
  1848. },
  1849. {
  1850. "id": "fontawesome::at",
  1851. "text": "At"
  1852. },
  1853. {
  1854. "id": "fontawesome::eyedropper",
  1855. "text": "Eyedropper"
  1856. },
  1857. {
  1858. "id": "fontawesome::paint-brush",
  1859. "text": "Paint Brush"
  1860. },
  1861. {
  1862. "id": "fontawesome::birthday-cake",
  1863. "text": "Birthday Cake"
  1864. },
  1865. {
  1866. "id": "fontawesome::area-chart",
  1867. "text": "Area Chart"
  1868. },
  1869. {
  1870. "id": "fontawesome::pie-chart",
  1871. "text": "Pie Chart"
  1872. },
  1873. {
  1874. "id": "fontawesome::line-chart",
  1875. "text": "Line Chart"
  1876. },
  1877. {
  1878. "id": "fontawesome::lastfm",
  1879. "text": "Lastfm"
  1880. },
  1881. {
  1882. "id": "fontawesome::lastfm-square",
  1883. "text": "Lastfm Square"
  1884. },
  1885. {
  1886. "id": "fontawesome::toggle-off",
  1887. "text": "Toggle Off"
  1888. },
  1889. {
  1890. "id": "fontawesome::toggle-on",
  1891. "text": "Toggle On"
  1892. },
  1893. {
  1894. "id": "fontawesome::bicycle",
  1895. "text": "Bicycle"
  1896. },
  1897. {
  1898. "id": "fontawesome::bus",
  1899. "text": "Bus"
  1900. },
  1901. {
  1902. "id": "fontawesome::ioxhost",
  1903. "text": "Ioxhost"
  1904. },
  1905. {
  1906. "id": "fontawesome::angellist",
  1907. "text": "Angellist"
  1908. },
  1909. {
  1910. "id": "fontawesome::cc",
  1911. "text": "Cc"
  1912. },
  1913. {
  1914. "id": "fontawesome::ils",
  1915. "text": "Ils"
  1916. },
  1917. {
  1918. "id": "fontawesome::meanpath",
  1919. "text": "Meanpath"
  1920. },
  1921. {
  1922. "id": "fontawesome::buysellads",
  1923. "text": "Buysellads"
  1924. },
  1925. {
  1926. "id": "fontawesome::connectdevelop",
  1927. "text": "Connectdevelop"
  1928. },
  1929. {
  1930. "id": "fontawesome::dashcube",
  1931. "text": "Dashcube"
  1932. },
  1933. {
  1934. "id": "fontawesome::forumbee",
  1935. "text": "Forumbee"
  1936. },
  1937. {
  1938. "id": "fontawesome::leanpub",
  1939. "text": "Leanpub"
  1940. },
  1941. {
  1942. "id": "fontawesome::sellsy",
  1943. "text": "Sellsy"
  1944. },
  1945. {
  1946. "id": "fontawesome::shirtsinbulk",
  1947. "text": "Shirtsinbulk"
  1948. },
  1949. {
  1950. "id": "fontawesome::simplybuilt",
  1951. "text": "Simplybuilt"
  1952. },
  1953. {
  1954. "id": "fontawesome::skyatlas",
  1955. "text": "Skyatlas"
  1956. },
  1957. {
  1958. "id": "fontawesome::cart-plus",
  1959. "text": "Cart Plus"
  1960. },
  1961. {
  1962. "id": "fontawesome::cart-arrow-down",
  1963. "text": "Cart Arrow Down"
  1964. },
  1965. {
  1966. "id": "fontawesome::diamond",
  1967. "text": "Diamond"
  1968. },
  1969. {
  1970. "id": "fontawesome::ship",
  1971. "text": "Ship"
  1972. },
  1973. {
  1974. "id": "fontawesome::user-secret",
  1975. "text": "User Secret"
  1976. },
  1977. {
  1978. "id": "fontawesome::motorcycle",
  1979. "text": "Motorcycle"
  1980. },
  1981. {
  1982. "id": "fontawesome::street-view",
  1983. "text": "Street View"
  1984. },
  1985. {
  1986. "id": "fontawesome::heartbeat",
  1987. "text": "Heartbeat"
  1988. },
  1989. {
  1990. "id": "fontawesome::venus",
  1991. "text": "Venus"
  1992. },
  1993. {
  1994. "id": "fontawesome::mars",
  1995. "text": "Mars"
  1996. },
  1997. {
  1998. "id": "fontawesome::mercury",
  1999. "text": "Mercury"
  2000. },
  2001. {
  2002. "id": "fontawesome::transgender",
  2003. "text": "Transgender"
  2004. },
  2005. {
  2006. "id": "fontawesome::transgender-alt",
  2007. "text": "Transgender Alt"
  2008. },
  2009. {
  2010. "id": "fontawesome::venus-double",
  2011. "text": "Venus Double"
  2012. },
  2013. {
  2014. "id": "fontawesome::mars-double",
  2015. "text": "Mars Double"
  2016. },
  2017. {
  2018. "id": "fontawesome::venus-mars",
  2019. "text": "Venus Mars"
  2020. },
  2021. {
  2022. "id": "fontawesome::mars-stroke",
  2023. "text": "Mars Stroke"
  2024. },
  2025. {
  2026. "id": "fontawesome::mars-stroke-v",
  2027. "text": "Mars Stroke V"
  2028. },
  2029. {
  2030. "id": "fontawesome::mars-stroke-h",
  2031. "text": "Mars Stroke H"
  2032. },
  2033. {
  2034. "id": "fontawesome::neuter",
  2035. "text": "Neuter"
  2036. },
  2037. {
  2038. "id": "fontawesome::genderless",
  2039. "text": "Genderless"
  2040. },
  2041. {
  2042. "id": "fontawesome::facebook-official",
  2043. "text": "Facebook Official"
  2044. },
  2045. {
  2046. "id": "fontawesome::pinterest-p",
  2047. "text": "Pinterest P"
  2048. },
  2049. {
  2050. "id": "fontawesome::whatsapp",
  2051. "text": "Whatsapp"
  2052. },
  2053. {
  2054. "id": "fontawesome::server",
  2055. "text": "Server"
  2056. },
  2057. {
  2058. "id": "fontawesome::user-plus",
  2059. "text": "User Plus"
  2060. },
  2061. {
  2062. "id": "fontawesome::user-times",
  2063. "text": "User Times"
  2064. },
  2065. {
  2066. "id": "fontawesome::bed",
  2067. "text": "Bed"
  2068. },
  2069. {
  2070. "id": "fontawesome::viacoin",
  2071. "text": "Viacoin"
  2072. },
  2073. {
  2074. "id": "fontawesome::train",
  2075. "text": "Train"
  2076. },
  2077. {
  2078. "id": "fontawesome::subway",
  2079. "text": "Subway"
  2080. },
  2081. {
  2082. "id": "fontawesome::medium",
  2083. "text": "Medium"
  2084. },
  2085. {
  2086. "id": "fontawesome::y-combinator",
  2087. "text": "Y Combinator"
  2088. },
  2089. {
  2090. "id": "fontawesome::optin-monster",
  2091. "text": "Optin Monster"
  2092. },
  2093. {
  2094. "id": "fontawesome::opencart",
  2095. "text": "Opencart"
  2096. },
  2097. {
  2098. "id": "fontawesome::expeditedssl",
  2099. "text": "Expeditedssl"
  2100. },
  2101. {
  2102. "id": "fontawesome::battery-full",
  2103. "text": "Battery Full"
  2104. },
  2105. {
  2106. "id": "fontawesome::battery-three-quarters",
  2107. "text": "Battery Three Quarters"
  2108. },
  2109. {
  2110. "id": "fontawesome::battery-half",
  2111. "text": "Battery Half"
  2112. },
  2113. {
  2114. "id": "fontawesome::battery-quarter",
  2115. "text": "Battery Quarter"
  2116. },
  2117. {
  2118. "id": "fontawesome::battery-empty",
  2119. "text": "Battery Empty"
  2120. },
  2121. {
  2122. "id": "fontawesome::mouse-pointer",
  2123. "text": "Mouse Pointer"
  2124. },
  2125. {
  2126. "id": "fontawesome::i-cursor",
  2127. "text": "I Cursor"
  2128. },
  2129. {
  2130. "id": "fontawesome::object-group",
  2131. "text": "Object Group"
  2132. },
  2133. {
  2134. "id": "fontawesome::object-ungroup",
  2135. "text": "Object Ungroup"
  2136. },
  2137. {
  2138. "id": "fontawesome::sticky-note",
  2139. "text": "Sticky Note"
  2140. },
  2141. {
  2142. "id": "fontawesome::sticky-note-o",
  2143. "text": "Sticky Note O"
  2144. },
  2145. {
  2146. "id": "fontawesome::cc-jcb",
  2147. "text": "Cc Jcb"
  2148. },
  2149. {
  2150. "id": "fontawesome::cc-diners-club",
  2151. "text": "Cc Diners Club"
  2152. },
  2153. {
  2154. "id": "fontawesome::clone",
  2155. "text": "Clone"
  2156. },
  2157. {
  2158. "id": "fontawesome::balance-scale",
  2159. "text": "Balance Scale"
  2160. },
  2161. {
  2162. "id": "fontawesome::hourglass-o",
  2163. "text": "Hourglass O"
  2164. },
  2165. {
  2166. "id": "fontawesome::hourglass-start",
  2167. "text": "Hourglass Start"
  2168. },
  2169. {
  2170. "id": "fontawesome::hourglass-half",
  2171. "text": "Hourglass Half"
  2172. },
  2173. {
  2174. "id": "fontawesome::hourglass-end",
  2175. "text": "Hourglass End"
  2176. },
  2177. {
  2178. "id": "fontawesome::hourglass",
  2179. "text": "Hourglass"
  2180. },
  2181. {
  2182. "id": "fontawesome::hand-rock-o",
  2183. "text": "Hand Rock O"
  2184. },
  2185. {
  2186. "id": "fontawesome::hand-paper-o",
  2187. "text": "Hand Paper O"
  2188. },
  2189. {
  2190. "id": "fontawesome::hand-scissors-o",
  2191. "text": "Hand Scissors O"
  2192. },
  2193. {
  2194. "id": "fontawesome::hand-lizard-o",
  2195. "text": "Hand Lizard O"
  2196. },
  2197. {
  2198. "id": "fontawesome::hand-spock-o",
  2199. "text": "Hand Spock O"
  2200. },
  2201. {
  2202. "id": "fontawesome::hand-pointer-o",
  2203. "text": "Hand Pointer O"
  2204. },
  2205. {
  2206. "id": "fontawesome::hand-peace-o",
  2207. "text": "Hand Peace O"
  2208. },
  2209. {
  2210. "id": "fontawesome::trademark",
  2211. "text": "Trademark"
  2212. },
  2213. {
  2214. "id": "fontawesome::registered",
  2215. "text": "Registered"
  2216. },
  2217. {
  2218. "id": "fontawesome::creative-commons",
  2219. "text": "Creative Commons"
  2220. },
  2221. {
  2222. "id": "fontawesome::gg",
  2223. "text": "Gg"
  2224. },
  2225. {
  2226. "id": "fontawesome::gg-circle",
  2227. "text": "Gg Circle"
  2228. },
  2229. {
  2230. "id": "fontawesome::tripadvisor",
  2231. "text": "Tripadvisor"
  2232. },
  2233. {
  2234. "id": "fontawesome::odnoklassniki",
  2235. "text": "Odnoklassniki"
  2236. },
  2237. {
  2238. "id": "fontawesome::odnoklassniki-square",
  2239. "text": "Odnoklassniki Square"
  2240. },
  2241. {
  2242. "id": "fontawesome::get-pocket",
  2243. "text": "Get Pocket"
  2244. },
  2245. {
  2246. "id": "fontawesome::wikipedia-w",
  2247. "text": "Wikipedia W"
  2248. },
  2249. {
  2250. "id": "fontawesome::safari",
  2251. "text": "Safari"
  2252. },
  2253. {
  2254. "id": "fontawesome::chrome",
  2255. "text": "Chrome"
  2256. },
  2257. {
  2258. "id": "fontawesome::firefox",
  2259. "text": "Firefox"
  2260. },
  2261. {
  2262. "id": "fontawesome::opera",
  2263. "text": "Opera"
  2264. },
  2265. {
  2266. "id": "fontawesome::internet-explorer",
  2267. "text": "Internet Explorer"
  2268. },
  2269. {
  2270. "id": "fontawesome::television",
  2271. "text": "Television"
  2272. },
  2273. {
  2274. "id": "fontawesome::contao",
  2275. "text": "Contao"
  2276. },
  2277. {
  2278. "id": "fontawesome::500px",
  2279. "text": "500px"
  2280. },
  2281. {
  2282. "id": "fontawesome::amazon",
  2283. "text": "Amazon"
  2284. },
  2285. {
  2286. "id": "fontawesome::calendar-plus-o",
  2287. "text": "Calendar Plus O"
  2288. },
  2289. {
  2290. "id": "fontawesome::calendar-minus-o",
  2291. "text": "Calendar Minus O"
  2292. },
  2293. {
  2294. "id": "fontawesome::calendar-times-o",
  2295. "text": "Calendar Times O"
  2296. },
  2297. {
  2298. "id": "fontawesome::calendar-check-o",
  2299. "text": "Calendar Check O"
  2300. },
  2301. {
  2302. "id": "fontawesome::industry",
  2303. "text": "Industry"
  2304. },
  2305. {
  2306. "id": "fontawesome::map-pin",
  2307. "text": "Map Pin"
  2308. },
  2309. {
  2310. "id": "fontawesome::map-signs",
  2311. "text": "Map Signs"
  2312. },
  2313. {
  2314. "id": "fontawesome::map-o",
  2315. "text": "Map O"
  2316. },
  2317. {
  2318. "id": "fontawesome::map",
  2319. "text": "Map"
  2320. },
  2321. {
  2322. "id": "fontawesome::commenting",
  2323. "text": "Commenting"
  2324. },
  2325. {
  2326. "id": "fontawesome::commenting-o",
  2327. "text": "Commenting O"
  2328. },
  2329. {
  2330. "id": "fontawesome::houzz",
  2331. "text": "Houzz"
  2332. },
  2333. {
  2334. "id": "fontawesome::vimeo",
  2335. "text": "Vimeo"
  2336. },
  2337. {
  2338. "id": "fontawesome::black-tie",
  2339. "text": "Black Tie"
  2340. },
  2341. {
  2342. "id": "fontawesome::fonticons",
  2343. "text": "Fonticons"
  2344. },
  2345. {
  2346. "id": "fontawesome::reddit-alien",
  2347. "text": "Reddit Alien"
  2348. },
  2349. {
  2350. "id": "fontawesome::edge",
  2351. "text": "Edge"
  2352. },
  2353. {
  2354. "id": "fontawesome::credit-card-alt",
  2355. "text": "Credit Card Alt"
  2356. },
  2357. {
  2358. "id": "fontawesome::codiepie",
  2359. "text": "Codiepie"
  2360. },
  2361. {
  2362. "id": "fontawesome::modx",
  2363. "text": "Modx"
  2364. },
  2365. {
  2366. "id": "fontawesome::fort-awesome",
  2367. "text": "Fort Awesome"
  2368. },
  2369. {
  2370. "id": "fontawesome::usb",
  2371. "text": "Usb"
  2372. },
  2373. {
  2374. "id": "fontawesome::product-hunt",
  2375. "text": "Product Hunt"
  2376. },
  2377. {
  2378. "id": "fontawesome::mixcloud",
  2379. "text": "Mixcloud"
  2380. },
  2381. {
  2382. "id": "fontawesome::scribd",
  2383. "text": "Scribd"
  2384. },
  2385. {
  2386. "id": "fontawesome::pause-circle",
  2387. "text": "Pause Circle"
  2388. },
  2389. {
  2390. "id": "fontawesome::pause-circle-o",
  2391. "text": "Pause Circle O"
  2392. },
  2393. {
  2394. "id": "fontawesome::stop-circle",
  2395. "text": "Stop Circle"
  2396. },
  2397. {
  2398. "id": "fontawesome::stop-circle-o",
  2399. "text": "Stop Circle O"
  2400. },
  2401. {
  2402. "id": "fontawesome::shopping-bag",
  2403. "text": "Shopping Bag"
  2404. },
  2405. {
  2406. "id": "fontawesome::shopping-basket",
  2407. "text": "Shopping Basket"
  2408. },
  2409. {
  2410. "id": "fontawesome::hashtag",
  2411. "text": "Hashtag"
  2412. },
  2413. {
  2414. "id": "fontawesome::bluetooth",
  2415. "text": "Bluetooth"
  2416. },
  2417. {
  2418. "id": "fontawesome::bluetooth-b",
  2419. "text": "Bluetooth B"
  2420. },
  2421. {
  2422. "id": "fontawesome::percent",
  2423. "text": "Percent"
  2424. },
  2425. {
  2426. "id": "fontawesome::gitlab",
  2427. "text": "Gitlab"
  2428. },
  2429. {
  2430. "id": "fontawesome::wpbeginner",
  2431. "text": "Wpbeginner"
  2432. },
  2433. {
  2434. "id": "fontawesome::wpforms",
  2435. "text": "Wpforms"
  2436. },
  2437. {
  2438. "id": "fontawesome::envira",
  2439. "text": "Envira"
  2440. },
  2441. {
  2442. "id": "fontawesome::universal-access",
  2443. "text": "Universal Access"
  2444. },
  2445. {
  2446. "id": "fontawesome::wheelchair-alt",
  2447. "text": "Wheelchair Alt"
  2448. },
  2449. {
  2450. "id": "fontawesome::question-circle-o",
  2451. "text": "Question Circle O"
  2452. },
  2453. {
  2454. "id": "fontawesome::blind",
  2455. "text": "Blind"
  2456. },
  2457. {
  2458. "id": "fontawesome::audio-description",
  2459. "text": "Audio Description"
  2460. },
  2461. {
  2462. "id": "fontawesome::volume-control-phone",
  2463. "text": "Volume Control Phone"
  2464. },
  2465. {
  2466. "id": "fontawesome::braille",
  2467. "text": "Braille"
  2468. },
  2469. {
  2470. "id": "fontawesome::assistive-listening-systems",
  2471. "text": "Assistive Listening Systems"
  2472. },
  2473. {
  2474. "id": "fontawesome::american-sign-language-interpreting",
  2475. "text": "American Sign Language Interpreting"
  2476. },
  2477. {
  2478. "id": "fontawesome::deaf",
  2479. "text": "Deaf"
  2480. },
  2481. {
  2482. "id": "fontawesome::glide",
  2483. "text": "Glide"
  2484. },
  2485. {
  2486. "id": "fontawesome::glide-g",
  2487. "text": "Glide G"
  2488. },
  2489. {
  2490. "id": "fontawesome::sign-language",
  2491. "text": "Sign Language"
  2492. },
  2493. {
  2494. "id": "fontawesome::low-vision",
  2495. "text": "Low Vision"
  2496. },
  2497. {
  2498. "id": "fontawesome::viadeo",
  2499. "text": "Viadeo"
  2500. },
  2501. {
  2502. "id": "fontawesome::viadeo-square",
  2503. "text": "Viadeo Square"
  2504. },
  2505. {
  2506. "id": "fontawesome::snapchat",
  2507. "text": "Snapchat"
  2508. },
  2509. {
  2510. "id": "fontawesome::snapchat-ghost",
  2511. "text": "Snapchat Ghost"
  2512. },
  2513. {
  2514. "id": "fontawesome::snapchat-square",
  2515. "text": "Snapchat Square"
  2516. },
  2517. {
  2518. "id": "fontawesome::pied-piper",
  2519. "text": "Pied Piper"
  2520. },
  2521. {
  2522. "id": "fontawesome::first-order",
  2523. "text": "First Order"
  2524. },
  2525. {
  2526. "id": "fontawesome::yoast",
  2527. "text": "Yoast"
  2528. },
  2529. {
  2530. "id": "fontawesome::themeisle",
  2531. "text": "Themeisle"
  2532. },
  2533. {
  2534. "id": "fontawesome::google-plus-official",
  2535. "text": "Google Plus Official"
  2536. },
  2537. {
  2538. "id": "fontawesome::font-awesome",
  2539. "text": "Font Awesome"
  2540. },
  2541. {
  2542. "id": "fontawesome::handshake-o",
  2543. "text": "Handshake O"
  2544. },
  2545. {
  2546. "id": "fontawesome::envelope-open",
  2547. "text": "Envelope Open"
  2548. },
  2549. {
  2550. "id": "fontawesome::envelope-open-o",
  2551. "text": "Envelope Open O"
  2552. },
  2553. {
  2554. "id": "fontawesome::linode",
  2555. "text": "Linode"
  2556. },
  2557. {
  2558. "id": "fontawesome::address-book",
  2559. "text": "Address Book"
  2560. },
  2561. {
  2562. "id": "fontawesome::address-book-o",
  2563. "text": "Address Book O"
  2564. },
  2565. {
  2566. "id": "fontawesome::address-card",
  2567. "text": "Address Card"
  2568. },
  2569. {
  2570. "id": "fontawesome::address-card-o",
  2571. "text": "Address Card O"
  2572. },
  2573. {
  2574. "id": "fontawesome::user-circle",
  2575. "text": "User Circle"
  2576. },
  2577. {
  2578. "id": "fontawesome::user-circle-o",
  2579. "text": "User Circle O"
  2580. },
  2581. {
  2582. "id": "fontawesome::user-o",
  2583. "text": "User O"
  2584. },
  2585. {
  2586. "id": "fontawesome::id-badge",
  2587. "text": "Id Badge"
  2588. },
  2589. {
  2590. "id": "fontawesome::id-card",
  2591. "text": "Id Card"
  2592. },
  2593. {
  2594. "id": "fontawesome::id-card-o",
  2595. "text": "Id Card O"
  2596. },
  2597. {
  2598. "id": "fontawesome::quora",
  2599. "text": "Quora"
  2600. },
  2601. {
  2602. "id": "fontawesome::free-code-camp",
  2603. "text": "Free Code Camp"
  2604. },
  2605. {
  2606. "id": "fontawesome::telegram",
  2607. "text": "Telegram"
  2608. },
  2609. {
  2610. "id": "fontawesome::thermometer-full",
  2611. "text": "Thermometer Full"
  2612. },
  2613. {
  2614. "id": "fontawesome::thermometer-three-quarters",
  2615. "text": "Thermometer Three Quarters"
  2616. },
  2617. {
  2618. "id": "fontawesome::thermometer-half",
  2619. "text": "Thermometer Half"
  2620. },
  2621. {
  2622. "id": "fontawesome::thermometer-quarter",
  2623. "text": "Thermometer Quarter"
  2624. },
  2625. {
  2626. "id": "fontawesome::thermometer-empty",
  2627. "text": "Thermometer Empty"
  2628. },
  2629. {
  2630. "id": "fontawesome::shower",
  2631. "text": "Shower"
  2632. },
  2633. {
  2634. "id": "fontawesome::bath",
  2635. "text": "Bath"
  2636. },
  2637. {
  2638. "id": "fontawesome::podcast",
  2639. "text": "Podcast"
  2640. },
  2641. {
  2642. "id": "fontawesome::window-maximize",
  2643. "text": "Window Maximize"
  2644. },
  2645. {
  2646. "id": "fontawesome::window-minimize",
  2647. "text": "Window Minimize"
  2648. },
  2649. {
  2650. "id": "fontawesome::window-restore",
  2651. "text": "Window Restore"
  2652. },
  2653. {
  2654. "id": "fontawesome::window-close",
  2655. "text": "Window Close"
  2656. },
  2657. {
  2658. "id": "fontawesome::window-close-o",
  2659. "text": "Window Close O"
  2660. },
  2661. {
  2662. "id": "fontawesome::bandcamp",
  2663. "text": "Bandcamp"
  2664. },
  2665. {
  2666. "id": "fontawesome::grav",
  2667. "text": "Grav"
  2668. },
  2669. {
  2670. "id": "fontawesome::etsy",
  2671. "text": "Etsy"
  2672. },
  2673. {
  2674. "id": "fontawesome::imdb",
  2675. "text": "Imdb"
  2676. },
  2677. {
  2678. "id": "fontawesome::ravelry",
  2679. "text": "Ravelry"
  2680. },
  2681. {
  2682. "id": "fontawesome::eercast",
  2683. "text": "Eercast"
  2684. },
  2685. {
  2686. "id": "fontawesome::microchip",
  2687. "text": "Microchip"
  2688. },
  2689. {
  2690. "id": "fontawesome::snowflake-o",
  2691. "text": "Snowflake O"
  2692. },
  2693. {
  2694. "id": "fontawesome::superpowers",
  2695. "text": "Superpowers"
  2696. },
  2697. {
  2698. "id": "fontawesome::wpexplorer",
  2699. "text": "Wpexplorer"
  2700. },
  2701. {
  2702. "id": "fontawesome::meetup",
  2703. "text": "Meetup"
  2704. }
  2705. ]
  2706. },
  2707. {
  2708. "text": "Themify",
  2709. "children": [
  2710. {
  2711. "id": "themify::arrow-up",
  2712. "text": "Arrow Up"
  2713. },
  2714. {
  2715. "id": "themify::arrow-right",
  2716. "text": "Arrow Right"
  2717. },
  2718. {
  2719. "id": "themify::arrow-left",
  2720. "text": "Arrow Left"
  2721. },
  2722. {
  2723. "id": "themify::arrow-down",
  2724. "text": "Arrow Down"
  2725. },
  2726. {
  2727. "id": "themify::arrows-vertical",
  2728. "text": "Arrows Vertical"
  2729. },
  2730. {
  2731. "id": "themify::arrows-horizontal",
  2732. "text": "Arrows Horizontal"
  2733. },
  2734. {
  2735. "id": "themify::angle-up",
  2736. "text": "Angle Up"
  2737. },
  2738. {
  2739. "id": "themify::angle-right",
  2740. "text": "Angle Right"
  2741. },
  2742. {
  2743. "id": "themify::angle-left",
  2744. "text": "Angle Left"
  2745. },
  2746. {
  2747. "id": "themify::angle-down",
  2748. "text": "Angle Down"
  2749. },
  2750. {
  2751. "id": "themify::angle-double-up",
  2752. "text": "Angle Double Up"
  2753. },
  2754. {
  2755. "id": "themify::angle-double-right",
  2756. "text": "Angle Double Right"
  2757. },
  2758. {
  2759. "id": "themify::angle-double-left",
  2760. "text": "Angle Double Left"
  2761. },
  2762. {
  2763. "id": "themify::angle-double-down",
  2764. "text": "Angle Double Down"
  2765. },
  2766. {
  2767. "id": "themify::move",
  2768. "text": "Move"
  2769. },
  2770. {
  2771. "id": "themify::fullscreen",
  2772. "text": "Fullscreen"
  2773. },
  2774. {
  2775. "id": "themify::arrow-top-right",
  2776. "text": "Arrow Top Right"
  2777. },
  2778. {
  2779. "id": "themify::arrow-top-left",
  2780. "text": "Arrow Top Left"
  2781. },
  2782. {
  2783. "id": "themify::arrow-circle-up",
  2784. "text": "Arrow Circle Up"
  2785. },
  2786. {
  2787. "id": "themify::arrow-circle-right",
  2788. "text": "Arrow Circle Right"
  2789. },
  2790. {
  2791. "id": "themify::arrow-circle-left",
  2792. "text": "Arrow Circle Left"
  2793. },
  2794. {
  2795. "id": "themify::arrow-circle-down",
  2796. "text": "Arrow Circle Down"
  2797. },
  2798. {
  2799. "id": "themify::arrows-corner",
  2800. "text": "Arrows Corner"
  2801. },
  2802. {
  2803. "id": "themify::split-v",
  2804. "text": "Split V"
  2805. },
  2806. {
  2807. "id": "themify::split-v-alt",
  2808. "text": "Split V Alt"
  2809. },
  2810. {
  2811. "id": "themify::split-h",
  2812. "text": "Split H"
  2813. },
  2814. {
  2815. "id": "themify::hand-point-up",
  2816. "text": "Hand Point Up"
  2817. },
  2818. {
  2819. "id": "themify::hand-point-right",
  2820. "text": "Hand Point Right"
  2821. },
  2822. {
  2823. "id": "themify::hand-point-left",
  2824. "text": "Hand Point Left"
  2825. },
  2826. {
  2827. "id": "themify::hand-point-down",
  2828. "text": "Hand Point Down"
  2829. },
  2830. {
  2831. "id": "themify::back-right",
  2832. "text": "Back Right"
  2833. },
  2834. {
  2835. "id": "themify::back-left",
  2836. "text": "Back Left"
  2837. },
  2838. {
  2839. "id": "themify::exchange-vertical",
  2840. "text": "Exchange Vertical"
  2841. },
  2842. {
  2843. "id": "themify::wand",
  2844. "text": "Wand"
  2845. },
  2846. {
  2847. "id": "themify::save",
  2848. "text": "Save"
  2849. },
  2850. {
  2851. "id": "themify::save-alt",
  2852. "text": "Save Alt"
  2853. },
  2854. {
  2855. "id": "themify::direction",
  2856. "text": "Direction"
  2857. },
  2858. {
  2859. "id": "themify::direction-alt",
  2860. "text": "Direction Alt"
  2861. },
  2862. {
  2863. "id": "themify::user",
  2864. "text": "User"
  2865. },
  2866. {
  2867. "id": "themify::link",
  2868. "text": "Link"
  2869. },
  2870. {
  2871. "id": "themify::unlink",
  2872. "text": "Unlink"
  2873. },
  2874. {
  2875. "id": "themify::trash",
  2876. "text": "Trash"
  2877. },
  2878. {
  2879. "id": "themify::target",
  2880. "text": "Target"
  2881. },
  2882. {
  2883. "id": "themify::tag",
  2884. "text": "Tag"
  2885. },
  2886. {
  2887. "id": "themify::desktop",
  2888. "text": "Desktop"
  2889. },
  2890. {
  2891. "id": "themify::tablet",
  2892. "text": "Tablet"
  2893. },
  2894. {
  2895. "id": "themify::mobile",
  2896. "text": "Mobile"
  2897. },
  2898. {
  2899. "id": "themify::email",
  2900. "text": "Email"
  2901. },
  2902. {
  2903. "id": "themify::star",
  2904. "text": "Star"
  2905. },
  2906. {
  2907. "id": "themify::spray",
  2908. "text": "Spray"
  2909. },
  2910. {
  2911. "id": "themify::signal",
  2912. "text": "Signal"
  2913. },
  2914. {
  2915. "id": "themify::shopping-cart",
  2916. "text": "Shopping Cart"
  2917. },
  2918. {
  2919. "id": "themify::shopping-cart-full",
  2920. "text": "Shopping Cart Full"
  2921. },
  2922. {
  2923. "id": "themify::settings",
  2924. "text": "Settings"
  2925. },
  2926. {
  2927. "id": "themify::search",
  2928. "text": "Search"
  2929. },
  2930. {
  2931. "id": "themify::zoom-in",
  2932. "text": "Zoom In"
  2933. },
  2934. {
  2935. "id": "themify::zoom-out",
  2936. "text": "Zoom Out"
  2937. },
  2938. {
  2939. "id": "themify::cut",
  2940. "text": "Cut"
  2941. },
  2942. {
  2943. "id": "themify::ruler",
  2944. "text": "Ruler"
  2945. },
  2946. {
  2947. "id": "themify::ruler-alt-2",
  2948. "text": "Ruler Alt 2"
  2949. },
  2950. {
  2951. "id": "themify::ruler-pencil",
  2952. "text": "Ruler Pencil"
  2953. },
  2954. {
  2955. "id": "themify::ruler-alt",
  2956. "text": "Ruler Alt"
  2957. },
  2958. {
  2959. "id": "themify::bookmark",
  2960. "text": "Bookmark"
  2961. },
  2962. {
  2963. "id": "themify::bookmark-alt",
  2964. "text": "Bookmark Alt"
  2965. },
  2966. {
  2967. "id": "themify::reload",
  2968. "text": "Reload"
  2969. },
  2970. {
  2971. "id": "themify::plus",
  2972. "text": "Plus"
  2973. },
  2974. {
  2975. "id": "themify::minus",
  2976. "text": "Minus"
  2977. },
  2978. {
  2979. "id": "themify::close",
  2980. "text": "Close"
  2981. },
  2982. {
  2983. "id": "themify::pin",
  2984. "text": "Pin"
  2985. },
  2986. {
  2987. "id": "themify::pencil",
  2988. "text": "Pencil"
  2989. },
  2990. {
  2991. "id": "themify::pencil-alt",
  2992. "text": "Pencil Alt"
  2993. },
  2994. {
  2995. "id": "themify::paint-roller",
  2996. "text": "Paint Roller"
  2997. },
  2998. {
  2999. "id": "themify::paint-bucket",
  3000. "text": "Paint Bucket"
  3001. },
  3002. {
  3003. "id": "themify::na",
  3004. "text": "Na"
  3005. },
  3006. {
  3007. "id": "themify::medall",
  3008. "text": "Medall"
  3009. },
  3010. {
  3011. "id": "themify::medall-alt",
  3012. "text": "Medall Alt"
  3013. },
  3014. {
  3015. "id": "themify::marker",
  3016. "text": "Marker"
  3017. },
  3018. {
  3019. "id": "themify::marker-alt",
  3020. "text": "Marker Alt"
  3021. },
  3022. {
  3023. "id": "themify::lock",
  3024. "text": "Lock"
  3025. },
  3026. {
  3027. "id": "themify::unlock",
  3028. "text": "Unlock"
  3029. },
  3030. {
  3031. "id": "themify::location-arrow",
  3032. "text": "Location Arrow"
  3033. },
  3034. {
  3035. "id": "themify::layout",
  3036. "text": "Layout"
  3037. },
  3038. {
  3039. "id": "themify::layers",
  3040. "text": "Layers"
  3041. },
  3042. {
  3043. "id": "themify::layers-alt",
  3044. "text": "Layers Alt"
  3045. },
  3046. {
  3047. "id": "themify::key",
  3048. "text": "Key"
  3049. },
  3050. {
  3051. "id": "themify::image",
  3052. "text": "Image"
  3053. },
  3054. {
  3055. "id": "themify::heart",
  3056. "text": "Heart"
  3057. },
  3058. {
  3059. "id": "themify::heart-broken",
  3060. "text": "Heart Broken"
  3061. },
  3062. {
  3063. "id": "themify::hand-stop",
  3064. "text": "Hand Stop"
  3065. },
  3066. {
  3067. "id": "themify::hand-open",
  3068. "text": "Hand Open"
  3069. },
  3070. {
  3071. "id": "themify::hand-drag",
  3072. "text": "Hand Drag"
  3073. },
  3074. {
  3075. "id": "themify::flag",
  3076. "text": "Flag"
  3077. },
  3078. {
  3079. "id": "themify::flag-alt",
  3080. "text": "Flag Alt"
  3081. },
  3082. {
  3083. "id": "themify::flag-alt-2",
  3084. "text": "Flag Alt 2"
  3085. },
  3086. {
  3087. "id": "themify::eye",
  3088. "text": "Eye"
  3089. },
  3090. {
  3091. "id": "themify::import",
  3092. "text": "Import"
  3093. },
  3094. {
  3095. "id": "themify::export",
  3096. "text": "Export"
  3097. },
  3098. {
  3099. "id": "themify::cup",
  3100. "text": "Cup"
  3101. },
  3102. {
  3103. "id": "themify::crown",
  3104. "text": "Crown"
  3105. },
  3106. {
  3107. "id": "themify::comments",
  3108. "text": "Comments"
  3109. },
  3110. {
  3111. "id": "themify::comment",
  3112. "text": "Comment"
  3113. },
  3114. {
  3115. "id": "themify::comment-alt",
  3116. "text": "Comment Alt"
  3117. },
  3118. {
  3119. "id": "themify::thought",
  3120. "text": "Thought"
  3121. },
  3122. {
  3123. "id": "themify::clip",
  3124. "text": "Clip"
  3125. },
  3126. {
  3127. "id": "themify::check",
  3128. "text": "Check"
  3129. },
  3130. {
  3131. "id": "themify::check-box",
  3132. "text": "Check Box"
  3133. },
  3134. {
  3135. "id": "themify::camera",
  3136. "text": "Camera"
  3137. },
  3138. {
  3139. "id": "themify::announcement",
  3140. "text": "Announcement"
  3141. },
  3142. {
  3143. "id": "themify::brush",
  3144. "text": "Brush"
  3145. },
  3146. {
  3147. "id": "themify::brush-alt",
  3148. "text": "Brush Alt"
  3149. },
  3150. {
  3151. "id": "themify::palette",
  3152. "text": "Palette"
  3153. },
  3154. {
  3155. "id": "themify::briefcase",
  3156. "text": "Briefcase"
  3157. },
  3158. {
  3159. "id": "themify::bolt",
  3160. "text": "Bolt"
  3161. },
  3162. {
  3163. "id": "themify::bolt-alt",
  3164. "text": "Bolt Alt"
  3165. },
  3166. {
  3167. "id": "themify::blackboard",
  3168. "text": "Blackboard"
  3169. },
  3170. {
  3171. "id": "themify::bag",
  3172. "text": "Bag"
  3173. },
  3174. {
  3175. "id": "themify::world",
  3176. "text": "World"
  3177. },
  3178. {
  3179. "id": "themify::wheelchair",
  3180. "text": "Wheelchair"
  3181. },
  3182. {
  3183. "id": "themify::car",
  3184. "text": "Car"
  3185. },
  3186. {
  3187. "id": "themify::truck",
  3188. "text": "Truck"
  3189. },
  3190. {
  3191. "id": "themify::timer",
  3192. "text": "Timer"
  3193. },
  3194. {
  3195. "id": "themify::ticket",
  3196. "text": "Ticket"
  3197. },
  3198. {
  3199. "id": "themify::thumb-up",
  3200. "text": "Thumb Up"
  3201. },
  3202. {
  3203. "id": "themify::thumb-down",
  3204. "text": "Thumb Down"
  3205. },
  3206. {
  3207. "id": "themify::stats-up",
  3208. "text": "Stats Up"
  3209. },
  3210. {
  3211. "id": "themify::stats-down",
  3212. "text": "Stats Down"
  3213. },
  3214. {
  3215. "id": "themify::shine",
  3216. "text": "Shine"
  3217. },
  3218. {
  3219. "id": "themify::shift-right",
  3220. "text": "Shift Right"
  3221. },
  3222. {
  3223. "id": "themify::shift-left",
  3224. "text": "Shift Left"
  3225. },
  3226. {
  3227. "id": "themify::shift-right-alt",
  3228. "text": "Shift Right Alt"
  3229. },
  3230. {
  3231. "id": "themify::shift-left-alt",
  3232. "text": "Shift Left Alt"
  3233. },
  3234. {
  3235. "id": "themify::shield",
  3236. "text": "Shield"
  3237. },
  3238. {
  3239. "id": "themify::notepad",
  3240. "text": "Notepad"
  3241. },
  3242. {
  3243. "id": "themify::server",
  3244. "text": "Server"
  3245. },
  3246. {
  3247. "id": "themify::pulse",
  3248. "text": "Pulse"
  3249. },
  3250. {
  3251. "id": "themify::printer",
  3252. "text": "Printer"
  3253. },
  3254. {
  3255. "id": "themify::power-off",
  3256. "text": "Power Off"
  3257. },
  3258. {
  3259. "id": "themify::plug",
  3260. "text": "Plug"
  3261. },
  3262. {
  3263. "id": "themify::pie-chart",
  3264. "text": "Pie Chart"
  3265. },
  3266. {
  3267. "id": "themify::panel",
  3268. "text": "Panel"
  3269. },
  3270. {
  3271. "id": "themify::package",
  3272. "text": "Package"
  3273. },
  3274. {
  3275. "id": "themify::music",
  3276. "text": "Music"
  3277. },
  3278. {
  3279. "id": "themify::music-alt",
  3280. "text": "Music Alt"
  3281. },
  3282. {
  3283. "id": "themify::mouse",
  3284. "text": "Mouse"
  3285. },
  3286. {
  3287. "id": "themify::mouse-alt",
  3288. "text": "Mouse Alt"
  3289. },
  3290. {
  3291. "id": "themify::money",
  3292. "text": "Money"
  3293. },
  3294. {
  3295. "id": "themify::microphone",
  3296. "text": "Microphone"
  3297. },
  3298. {
  3299. "id": "themify::menu",
  3300. "text": "Menu"
  3301. },
  3302. {
  3303. "id": "themify::menu-alt",
  3304. "text": "Menu Alt"
  3305. },
  3306. {
  3307. "id": "themify::map",
  3308. "text": "Map"
  3309. },
  3310. {
  3311. "id": "themify::map-alt",
  3312. "text": "Map Alt"
  3313. },
  3314. {
  3315. "id": "themify::location-pin",
  3316. "text": "Location Pin"
  3317. },
  3318. {
  3319. "id": "themify::light-bulb",
  3320. "text": "Light Bulb"
  3321. },
  3322. {
  3323. "id": "themify::info",
  3324. "text": "Info"
  3325. },
  3326. {
  3327. "id": "themify::infinite",
  3328. "text": "Infinite"
  3329. },
  3330. {
  3331. "id": "themify::id-badge",
  3332. "text": "Id Badge"
  3333. },
  3334. {
  3335. "id": "themify::hummer",
  3336. "text": "Hummer"
  3337. },
  3338. {
  3339. "id": "themify::home",
  3340. "text": "Home"
  3341. },
  3342. {
  3343. "id": "themify::help",
  3344. "text": "Help"
  3345. },
  3346. {
  3347. "id": "themify::headphone",
  3348. "text": "Headphone"
  3349. },
  3350. {
  3351. "id": "themify::harddrives",
  3352. "text": "Harddrives"
  3353. },
  3354. {
  3355. "id": "themify::harddrive",
  3356. "text": "Harddrive"
  3357. },
  3358. {
  3359. "id": "themify::gift",
  3360. "text": "Gift"
  3361. },
  3362. {
  3363. "id": "themify::game",
  3364. "text": "Game"
  3365. },
  3366. {
  3367. "id": "themify::filter",
  3368. "text": "Filter"
  3369. },
  3370. {
  3371. "id": "themify::files",
  3372. "text": "Files"
  3373. },
  3374. {
  3375. "id": "themify::file",
  3376. "text": "File"
  3377. },
  3378. {
  3379. "id": "themify::zip",
  3380. "text": "Zip"
  3381. },
  3382. {
  3383. "id": "themify::folder",
  3384. "text": "Folder"
  3385. },
  3386. {
  3387. "id": "themify::envelope",
  3388. "text": "Envelope"
  3389. },
  3390. {
  3391. "id": "themify::dashboard",
  3392. "text": "Dashboard"
  3393. },
  3394. {
  3395. "id": "themify::cloud",
  3396. "text": "Cloud"
  3397. },
  3398. {
  3399. "id": "themify::cloud-up",
  3400. "text": "Cloud Up"
  3401. },
  3402. {
  3403. "id": "themify::cloud-down",
  3404. "text": "Cloud Down"
  3405. },
  3406. {
  3407. "id": "themify::clipboard",
  3408. "text": "Clipboard"
  3409. },
  3410. {
  3411. "id": "themify::calendar",
  3412. "text": "Calendar"
  3413. },
  3414. {
  3415. "id": "themify::book",
  3416. "text": "Book"
  3417. },
  3418. {
  3419. "id": "themify::bell",
  3420. "text": "Bell"
  3421. },
  3422. {
  3423. "id": "themify::basketball",
  3424. "text": "Basketball"
  3425. },
  3426. {
  3427. "id": "themify::bar-chart",
  3428. "text": "Bar Chart"
  3429. },
  3430. {
  3431. "id": "themify::bar-chart-alt",
  3432. "text": "Bar Chart Alt"
  3433. },
  3434. {
  3435. "id": "themify::archive",
  3436. "text": "Archive"
  3437. },
  3438. {
  3439. "id": "themify::anchor",
  3440. "text": "Anchor"
  3441. },
  3442. {
  3443. "id": "themify::alert",
  3444. "text": "Alert"
  3445. },
  3446. {
  3447. "id": "themify::alarm-clock",
  3448. "text": "Alarm Clock"
  3449. },
  3450. {
  3451. "id": "themify::agenda",
  3452. "text": "Agenda"
  3453. },
  3454. {
  3455. "id": "themify::write",
  3456. "text": "Write"
  3457. },
  3458. {
  3459. "id": "themify::wallet",
  3460. "text": "Wallet"
  3461. },
  3462. {
  3463. "id": "themify::video-clapper",
  3464. "text": "Video Clapper"
  3465. },
  3466. {
  3467. "id": "themify::video-camera",
  3468. "text": "Video Camera"
  3469. },
  3470. {
  3471. "id": "themify::vector",
  3472. "text": "Vector"
  3473. },
  3474. {
  3475. "id": "themify::support",
  3476. "text": "Support"
  3477. },
  3478. {
  3479. "id": "themify::stamp",
  3480. "text": "Stamp"
  3481. },
  3482. {
  3483. "id": "themify::slice",
  3484. "text": "Slice"
  3485. },
  3486. {
  3487. "id": "themify::shortcode",
  3488. "text": "Shortcode"
  3489. },
  3490. {
  3491. "id": "themify::receipt",
  3492. "text": "Receipt"
  3493. },
  3494. {
  3495. "id": "themify::pin2",
  3496. "text": "Pin2"
  3497. },
  3498. {
  3499. "id": "themify::pin-alt",
  3500. "text": "Pin Alt"
  3501. },
  3502. {
  3503. "id": "themify::pencil-alt2",
  3504. "text": "Pencil Alt2"
  3505. },
  3506. {
  3507. "id": "themify::eraser",
  3508. "text": "Eraser"
  3509. },
  3510. {
  3511. "id": "themify::more",
  3512. "text": "More"
  3513. },
  3514. {
  3515. "id": "themify::more-alt",
  3516. "text": "More Alt"
  3517. },
  3518. {
  3519. "id": "themify::microphone-alt",
  3520. "text": "Microphone Alt"
  3521. },
  3522. {
  3523. "id": "themify::magnet",
  3524. "text": "Magnet"
  3525. },
  3526. {
  3527. "id": "themify::line-double",
  3528. "text": "Line Double"
  3529. },
  3530. {
  3531. "id": "themify::line-dotted",
  3532. "text": "Line Dotted"
  3533. },
  3534. {
  3535. "id": "themify::line-dashed",
  3536. "text": "Line Dashed"
  3537. },
  3538. {
  3539. "id": "themify::ink-pen",
  3540. "text": "Ink Pen"
  3541. },
  3542. {
  3543. "id": "themify::info-alt",
  3544. "text": "Info Alt"
  3545. },
  3546. {
  3547. "id": "themify::help-alt",
  3548. "text": "Help Alt"
  3549. },
  3550. {
  3551. "id": "themify::headphone-alt",
  3552. "text": "Headphone Alt"
  3553. },
  3554. {
  3555. "id": "themify::gallery",
  3556. "text": "Gallery"
  3557. },
  3558. {
  3559. "id": "themify::face-smile",
  3560. "text": "Face Smile"
  3561. },
  3562. {
  3563. "id": "themify::face-sad",
  3564. "text": "Face Sad"
  3565. },
  3566. {
  3567. "id": "themify::credit-card",
  3568. "text": "Credit Card"
  3569. },
  3570. {
  3571. "id": "themify::comments-smiley",
  3572. "text": "Comments Smiley"
  3573. },
  3574. {
  3575. "id": "themify::time",
  3576. "text": "Time"
  3577. },
  3578. {
  3579. "id": "themify::share",
  3580. "text": "Share"
  3581. },
  3582. {
  3583. "id": "themify::share-alt",
  3584. "text": "Share Alt"
  3585. },
  3586. {
  3587. "id": "themify::rocket",
  3588. "text": "Rocket"
  3589. },
  3590. {
  3591. "id": "themify::new-window",
  3592. "text": "New Window"
  3593. },
  3594. {
  3595. "id": "themify::rss",
  3596. "text": "Rss"
  3597. },
  3598. {
  3599. "id": "themify::rss-alt",
  3600. "text": "Rss Alt"
  3601. },
  3602. {
  3603. "id": "themify::control-stop",
  3604. "text": "Control Stop"
  3605. },
  3606. {
  3607. "id": "themify::control-shuffle",
  3608. "text": "Control Shuffle"
  3609. },
  3610. {
  3611. "id": "themify::control-play",
  3612. "text": "Control Play"
  3613. },
  3614. {
  3615. "id": "themify::control-pause",
  3616. "text": "Control Pause"
  3617. },
  3618. {
  3619. "id": "themify::control-forward",
  3620. "text": "Control Forward"
  3621. },
  3622. {
  3623. "id": "themify::control-backward",
  3624. "text": "Control Backward"
  3625. },
  3626. {
  3627. "id": "themify::volume",
  3628. "text": "Volume"
  3629. },
  3630. {
  3631. "id": "themify::control-skip-forward",
  3632. "text": "Control Skip Forward"
  3633. },
  3634. {
  3635. "id": "themify::control-skip-backward",
  3636. "text": "Control Skip Backward"
  3637. },
  3638. {
  3639. "id": "themify::control-record",
  3640. "text": "Control Record"
  3641. },
  3642. {
  3643. "id": "themify::control-eject",
  3644. "text": "Control Eject"
  3645. },
  3646. {
  3647. "id": "themify::paragraph",
  3648. "text": "Paragraph"
  3649. },
  3650. {
  3651. "id": "themify::uppercase",
  3652. "text": "Uppercase"
  3653. },
  3654. {
  3655. "id": "themify::underline",
  3656. "text": "Underline"
  3657. },
  3658. {
  3659. "id": "themify::text",
  3660. "text": "Text"
  3661. },
  3662. {
  3663. "id": "themify::Italic",
  3664. "text": "Italic"
  3665. },
  3666. {
  3667. "id": "themify::smallcap",
  3668. "text": "Smallcap"
  3669. },
  3670. {
  3671. "id": "themify::list",
  3672. "text": "List"
  3673. },
  3674. {
  3675. "id": "themify::list-ol",
  3676. "text": "List Ol"
  3677. },
  3678. {
  3679. "id": "themify::align-right",
  3680. "text": "Align Right"
  3681. },
  3682. {
  3683. "id": "themify::align-left",
  3684. "text": "Align Left"
  3685. },
  3686. {
  3687. "id": "themify::align-justify",
  3688. "text": "Align Justify"
  3689. },
  3690. {
  3691. "id": "themify::align-center",
  3692. "text": "Align Center"
  3693. },
  3694. {
  3695. "id": "themify::quote-right",
  3696. "text": "Quote Right"
  3697. },
  3698. {
  3699. "id": "themify::quote-left",
  3700. "text": "Quote Left"
  3701. },
  3702. {
  3703. "id": "themify::layout-width-full",
  3704. "text": "Layout Width Full"
  3705. },
  3706. {
  3707. "id": "themify::layout-width-default",
  3708. "text": "Layout Width Default"
  3709. },
  3710. {
  3711. "id": "themify::layout-width-default-alt",
  3712. "text": "Layout Width Default Alt"
  3713. },
  3714. {
  3715. "id": "themify::layout-tab",
  3716. "text": "Layout Tab"
  3717. },
  3718. {
  3719. "id": "themify::layout-tab-window",
  3720. "text": "Layout Tab Window"
  3721. },
  3722. {
  3723. "id": "themify::layout-tab-v",
  3724. "text": "Layout Tab V"
  3725. },
  3726. {
  3727. "id": "themify::layout-tab-min",
  3728. "text": "Layout Tab Min"
  3729. },
  3730. {
  3731. "id": "themify::layout-slider",
  3732. "text": "Layout Slider"
  3733. },
  3734. {
  3735. "id": "themify::layout-slider-alt",
  3736. "text": "Layout Slider Alt"
  3737. },
  3738. {
  3739. "id": "themify::layout-sidebar-right",
  3740. "text": "Layout Sidebar Right"
  3741. },
  3742. {
  3743. "id": "themify::layout-sidebar-none",
  3744. "text": "Layout Sidebar None"
  3745. },
  3746. {
  3747. "id": "themify::layout-sidebar-left",
  3748. "text": "Layout Sidebar Left"
  3749. },
  3750. {
  3751. "id": "themify::layout-placeholder",
  3752. "text": "Layout Placeholder"
  3753. },
  3754. {
  3755. "id": "themify::layout-menu",
  3756. "text": "Layout Menu"
  3757. },
  3758. {
  3759. "id": "themify::layout-menu-v",
  3760. "text": "Layout Menu V"
  3761. },
  3762. {
  3763. "id": "themify::layout-menu-separated",
  3764. "text": "Layout Menu Separated"
  3765. },
  3766. {
  3767. "id": "themify::layout-menu-full",
  3768. "text": "Layout Menu Full"
  3769. },
  3770. {
  3771. "id": "themify::layout-media-right",
  3772. "text": "Layout Media Right"
  3773. },
  3774. {
  3775. "id": "themify::layout-media-right-alt",
  3776. "text": "Layout Media Right Alt"
  3777. },
  3778. {
  3779. "id": "themify::layout-media-overlay",
  3780. "text": "Layout Media Overlay"
  3781. },
  3782. {
  3783. "id": "themify::layout-media-overlay-alt",
  3784. "text": "Layout Media Overlay Alt"
  3785. },
  3786. {
  3787. "id": "themify::layout-media-overlay-alt-2",
  3788. "text": "Layout Media Overlay Alt 2"
  3789. },
  3790. {
  3791. "id": "themify::layout-media-left",
  3792. "text": "Layout Media Left"
  3793. },
  3794. {
  3795. "id": "themify::layout-media-left-alt",
  3796. "text": "Layout Media Left Alt"
  3797. },
  3798. {
  3799. "id": "themify::layout-media-center",
  3800. "text": "Layout Media Center"
  3801. },
  3802. {
  3803. "id": "themify::layout-media-center-alt",
  3804. "text": "Layout Media Center Alt"
  3805. },
  3806. {
  3807. "id": "themify::layout-list-thumb",
  3808. "text": "Layout List Thumb"
  3809. },
  3810. {
  3811. "id": "themify::layout-list-thumb-alt",
  3812. "text": "Layout List Thumb Alt"
  3813. },
  3814. {
  3815. "id": "themify::layout-list-post",
  3816. "text": "Layout List Post"
  3817. },
  3818. {
  3819. "id": "themify::layout-list-large-image",
  3820. "text": "Layout List Large Image"
  3821. },
  3822. {
  3823. "id": "themify::layout-line-solid",
  3824. "text": "Layout Line Solid"
  3825. },
  3826. {
  3827. "id": "themify::layout-grid4",
  3828. "text": "Layout Grid4"
  3829. },
  3830. {
  3831. "id": "themify::layout-grid3",
  3832. "text": "Layout Grid3"
  3833. },
  3834. {
  3835. "id": "themify::layout-grid2",
  3836. "text": "Layout Grid2"
  3837. },
  3838. {
  3839. "id": "themify::layout-grid2-thumb",
  3840. "text": "Layout Grid2 Thumb"
  3841. },
  3842. {
  3843. "id": "themify::layout-cta-right",
  3844. "text": "Layout Cta Right"
  3845. },
  3846. {
  3847. "id": "themify::layout-cta-left",
  3848. "text": "Layout Cta Left"
  3849. },
  3850. {
  3851. "id": "themify::layout-cta-center",
  3852. "text": "Layout Cta Center"
  3853. },
  3854. {
  3855. "id": "themify::layout-cta-btn-right",
  3856. "text": "Layout Cta Btn Right"
  3857. },
  3858. {
  3859. "id": "themify::layout-cta-btn-left",
  3860. "text": "Layout Cta Btn Left"
  3861. },
  3862. {
  3863. "id": "themify::layout-column4",
  3864. "text": "Layout Column4"
  3865. },
  3866. {
  3867. "id": "themify::layout-column3",
  3868. "text": "Layout Column3"
  3869. },
  3870. {
  3871. "id": "themify::layout-column2",
  3872. "text": "Layout Column2"
  3873. },
  3874. {
  3875. "id": "themify::layout-accordion-separated",
  3876. "text": "Layout Accordion Separated"
  3877. },
  3878. {
  3879. "id": "themify::layout-accordion-merged",
  3880. "text": "Layout Accordion Merged"
  3881. },
  3882. {
  3883. "id": "themify::layout-accordion-list",
  3884. "text": "Layout Accordion List"
  3885. },
  3886. {
  3887. "id": "themify::widgetized",
  3888. "text": "Widgetized"
  3889. },
  3890. {
  3891. "id": "themify::widget",
  3892. "text": "Widget"
  3893. },
  3894. {
  3895. "id": "themify::widget-alt",
  3896. "text": "Widget Alt"
  3897. },
  3898. {
  3899. "id": "themify::view-list",
  3900. "text": "View List"
  3901. },
  3902. {
  3903. "id": "themify::view-list-alt",
  3904. "text": "View List Alt"
  3905. },
  3906. {
  3907. "id": "themify::view-grid",
  3908. "text": "View Grid"
  3909. },
  3910. {
  3911. "id": "themify::upload",
  3912. "text": "Upload"
  3913. },
  3914. {
  3915. "id": "themify::download",
  3916. "text": "Download"
  3917. },
  3918. {
  3919. "id": "themify::loop",
  3920. "text": "Loop"
  3921. },
  3922. {
  3923. "id": "themify::layout-sidebar-2",
  3924. "text": "Layout Sidebar 2"
  3925. },
  3926. {
  3927. "id": "themify::layout-grid4-alt",
  3928. "text": "Layout Grid4 Alt"
  3929. },
  3930. {
  3931. "id": "themify::layout-grid3-alt",
  3932. "text": "Layout Grid3 Alt"
  3933. },
  3934. {
  3935. "id": "themify::layout-grid2-alt",
  3936. "text": "Layout Grid2 Alt"
  3937. },
  3938. {
  3939. "id": "themify::layout-column4-alt",
  3940. "text": "Layout Column4 Alt"
  3941. },
  3942. {
  3943. "id": "themify::layout-column3-alt",
  3944. "text": "Layout Column3 Alt"
  3945. },
  3946. {
  3947. "id": "themify::layout-column2-alt",
  3948. "text": "Layout Column2 Alt"
  3949. },
  3950. {
  3951. "id": "themify::flickr",
  3952. "text": "Flickr"
  3953. },
  3954. {
  3955. "id": "themify::flickr-alt",
  3956. "text": "Flickr Alt"
  3957. },
  3958. {
  3959. "id": "themify::instagram",
  3960. "text": "Instagram"
  3961. },
  3962. {
  3963. "id": "themify::google",
  3964. "text": "Google"
  3965. },
  3966. {
  3967. "id": "themify::github",
  3968. "text": "Github"
  3969. },
  3970. {
  3971. "id": "themify::facebook",
  3972. "text": "Facebook"
  3973. },
  3974. {
  3975. "id": "themify::dropbox",
  3976. "text": "Dropbox"
  3977. },
  3978. {
  3979. "id": "themify::dropbox-alt",
  3980. "text": "Dropbox Alt"
  3981. },
  3982. {
  3983. "id": "themify::dribbble",
  3984. "text": "Dribbble"
  3985. },
  3986. {
  3987. "id": "themify::apple",
  3988. "text": "Apple"
  3989. },
  3990. {
  3991. "id": "themify::android",
  3992. "text": "Android"
  3993. },
  3994. {
  3995. "id": "themify::yahoo",
  3996. "text": "Yahoo"
  3997. },
  3998. {
  3999. "id": "themify::trello",
  4000. "text": "Trello"
  4001. },
  4002. {
  4003. "id": "themify::stack-overflow",
  4004. "text": "Stack Overflow"
  4005. },
  4006. {
  4007. "id": "themify::soundcloud",
  4008. "text": "Soundcloud"
  4009. },
  4010. {
  4011. "id": "themify::sharethis",
  4012. "text": "Sharethis"
  4013. },
  4014. {
  4015. "id": "themify::sharethis-alt",
  4016. "text": "Sharethis Alt"
  4017. },
  4018. {
  4019. "id": "themify::reddit",
  4020. "text": "Reddit"
  4021. },
  4022. {
  4023. "id": "themify::microsoft",
  4024. "text": "Microsoft"
  4025. },
  4026. {
  4027. "id": "themify::microsoft-alt",
  4028. "text": "Microsoft Alt"
  4029. },
  4030. {
  4031. "id": "themify::linux",
  4032. "text": "Linux"
  4033. },
  4034. {
  4035. "id": "themify::jsfiddle",
  4036. "text": "Jsfiddle"
  4037. },
  4038. {
  4039. "id": "themify::joomla",
  4040. "text": "Joomla"
  4041. },
  4042. {
  4043. "id": "themify::html5",
  4044. "text": "Html5"
  4045. },
  4046. {
  4047. "id": "themify::css3",
  4048. "text": "Css3"
  4049. },
  4050. {
  4051. "id": "themify::drupal",
  4052. "text": "Drupal"
  4053. },
  4054. {
  4055. "id": "themify::wordpress",
  4056. "text": "Wordpress"
  4057. },
  4058. {
  4059. "id": "themify::tumblr",
  4060. "text": "Tumblr"
  4061. },
  4062. {
  4063. "id": "themify::tumblr-alt",
  4064. "text": "Tumblr Alt"
  4065. },
  4066. {
  4067. "id": "themify::skype",
  4068. "text": "Skype"
  4069. },
  4070. {
  4071. "id": "themify::youtube",
  4072. "text": "Youtube"
  4073. },
  4074. {
  4075. "id": "themify::vimeo",
  4076. "text": "Vimeo"
  4077. },
  4078. {
  4079. "id": "themify::vimeo-alt",
  4080. "text": "Vimeo Alt"
  4081. },
  4082. {
  4083. "id": "themify::twitter",
  4084. "text": "Twitter"
  4085. },
  4086. {
  4087. "id": "themify::twitter-alt",
  4088. "text": "Twitter Alt"
  4089. },
  4090. {
  4091. "id": "themify::linkedin",
  4092. "text": "Linkedin"
  4093. },
  4094. {
  4095. "id": "themify::pinterest",
  4096. "text": "Pinterest"
  4097. },
  4098. {
  4099. "id": "themify::pinterest-alt",
  4100. "text": "Pinterest Alt"
  4101. },
  4102. {
  4103. "id": "themify::themify-logo",
  4104. "text": "Themify Logo"
  4105. },
  4106. {
  4107. "id": "themify::themify-favicon",
  4108. "text": "Themify Favicon"
  4109. },
  4110. {
  4111. "id": "themify::themify-favicon-alt",
  4112. "text": "Themify Favicon Alt"
  4113. }
  4114. ]
  4115. },
  4116. {
  4117. "text": "Materialize",
  4118. "children": [
  4119. {
  4120. "id": "materialize::access-point",
  4121. "text": "Access Point"
  4122. },
  4123. {
  4124. "id": "materialize::access-point-network",
  4125. "text": "Access Point Network"
  4126. },
  4127. {
  4128. "id": "materialize::account",
  4129. "text": "Account"
  4130. },
  4131. {
  4132. "id": "materialize::account-alert",
  4133. "text": "Account Alert"
  4134. },
  4135. {
  4136. "id": "materialize::account-box",
  4137. "text": "Account Box"
  4138. },
  4139. {
  4140. "id": "materialize::account-box-outline",
  4141. "text": "Account Box Outline"
  4142. },
  4143. {
  4144. "id": "materialize::account-card-details",
  4145. "text": "Account Card Details"
  4146. },
  4147. {
  4148. "id": "materialize::account-check",
  4149. "text": "Account Check"
  4150. },
  4151. {
  4152. "id": "materialize::account-circle",
  4153. "text": "Account Circle"
  4154. },
  4155. {
  4156. "id": "materialize::account-convert",
  4157. "text": "Account Convert"
  4158. },
  4159. {
  4160. "id": "materialize::account-edit",
  4161. "text": "Account Edit"
  4162. },
  4163. {
  4164. "id": "materialize::account-key",
  4165. "text": "Account Key"
  4166. },
  4167. {
  4168. "id": "materialize::account-location",
  4169. "text": "Account Location"
  4170. },
  4171. {
  4172. "id": "materialize::account-minus",
  4173. "text": "Account Minus"
  4174. },
  4175. {
  4176. "id": "materialize::account-multiple",
  4177. "text": "Account Multiple"
  4178. },
  4179. {
  4180. "id": "materialize::account-multiple-minus",
  4181. "text": "Account Multiple Minus"
  4182. },
  4183. {
  4184. "id": "materialize::account-multiple-outline",
  4185. "text": "Account Multiple Outline"
  4186. },
  4187. {
  4188. "id": "materialize::account-multiple-plus",
  4189. "text": "Account Multiple Plus"
  4190. },
  4191. {
  4192. "id": "materialize::account-network",
  4193. "text": "Account Network"
  4194. },
  4195. {
  4196. "id": "materialize::account-off",
  4197. "text": "Account Off"
  4198. },
  4199. {
  4200. "id": "materialize::account-outline",
  4201. "text": "Account Outline"
  4202. },
  4203. {
  4204. "id": "materialize::account-plus",
  4205. "text": "Account Plus"
  4206. },
  4207. {
  4208. "id": "materialize::account-remove",
  4209. "text": "Account Remove"
  4210. },
  4211. {
  4212. "id": "materialize::account-search",
  4213. "text": "Account Search"
  4214. },
  4215. {
  4216. "id": "materialize::account-settings",
  4217. "text": "Account Settings"
  4218. },
  4219. {
  4220. "id": "materialize::account-settings-variant",
  4221. "text": "Account Settings Variant"
  4222. },
  4223. {
  4224. "id": "materialize::account-star",
  4225. "text": "Account Star"
  4226. },
  4227. {
  4228. "id": "materialize::account-star-variant",
  4229. "text": "Account Star Variant"
  4230. },
  4231. {
  4232. "id": "materialize::account-switch",
  4233. "text": "Account Switch"
  4234. },
  4235. {
  4236. "id": "materialize::adjust",
  4237. "text": "Adjust"
  4238. },
  4239. {
  4240. "id": "materialize::air-conditioner",
  4241. "text": "Air Conditioner"
  4242. },
  4243. {
  4244. "id": "materialize::airballoon",
  4245. "text": "Airballoon"
  4246. },
  4247. {
  4248. "id": "materialize::airplane",
  4249. "text": "Airplane"
  4250. },
  4251. {
  4252. "id": "materialize::airplane-landing",
  4253. "text": "Airplane Landing"
  4254. },
  4255. {
  4256. "id": "materialize::airplane-off",
  4257. "text": "Airplane Off"
  4258. },
  4259. {
  4260. "id": "materialize::airplane-takeoff",
  4261. "text": "Airplane Takeoff"
  4262. },
  4263. {
  4264. "id": "materialize::airplay",
  4265. "text": "Airplay"
  4266. },
  4267. {
  4268. "id": "materialize::alarm",
  4269. "text": "Alarm"
  4270. },
  4271. {
  4272. "id": "materialize::alarm-check",
  4273. "text": "Alarm Check"
  4274. },
  4275. {
  4276. "id": "materialize::alarm-multiple",
  4277. "text": "Alarm Multiple"
  4278. },
  4279. {
  4280. "id": "materialize::alarm-off",
  4281. "text": "Alarm Off"
  4282. },
  4283. {
  4284. "id": "materialize::alarm-plus",
  4285. "text": "Alarm Plus"
  4286. },
  4287. {
  4288. "id": "materialize::alarm-snooze",
  4289. "text": "Alarm Snooze"
  4290. },
  4291. {
  4292. "id": "materialize::album",
  4293. "text": "Album"
  4294. },
  4295. {
  4296. "id": "materialize::alert",
  4297. "text": "Alert"
  4298. },
  4299. {
  4300. "id": "materialize::alert-box",
  4301. "text": "Alert Box"
  4302. },
  4303. {
  4304. "id": "materialize::alert-circle",
  4305. "text": "Alert Circle"
  4306. },
  4307. {
  4308. "id": "materialize::alert-circle-outline",
  4309. "text": "Alert Circle Outline"
  4310. },
  4311. {
  4312. "id": "materialize::alert-octagon",
  4313. "text": "Alert Octagon"
  4314. },
  4315. {
  4316. "id": "materialize::alert-octagram",
  4317. "text": "Alert Octagram"
  4318. },
  4319. {
  4320. "id": "materialize::alert-outline",
  4321. "text": "Alert Outline"
  4322. },
  4323. {
  4324. "id": "materialize::all-inclusive",
  4325. "text": "All Inclusive"
  4326. },
  4327. {
  4328. "id": "materialize::alpha",
  4329. "text": "Alpha"
  4330. },
  4331. {
  4332. "id": "materialize::alphabetical",
  4333. "text": "Alphabetical"
  4334. },
  4335. {
  4336. "id": "materialize::altimeter",
  4337. "text": "Altimeter"
  4338. },
  4339. {
  4340. "id": "materialize::amazon",
  4341. "text": "Amazon"
  4342. },
  4343. {
  4344. "id": "materialize::amazon-clouddrive",
  4345. "text": "Amazon Clouddrive"
  4346. },
  4347. {
  4348. "id": "materialize::ambulance",
  4349. "text": "Ambulance"
  4350. },
  4351. {
  4352. "id": "materialize::amplifier",
  4353. "text": "Amplifier"
  4354. },
  4355. {
  4356. "id": "materialize::anchor",
  4357. "text": "Anchor"
  4358. },
  4359. {
  4360. "id": "materialize::android",
  4361. "text": "Android"
  4362. },
  4363. {
  4364. "id": "materialize::android-debug-bridge",
  4365. "text": "Android Debug Bridge"
  4366. },
  4367. {
  4368. "id": "materialize::android-studio",
  4369. "text": "Android Studio"
  4370. },
  4371. {
  4372. "id": "materialize::angular",
  4373. "text": "Angular"
  4374. },
  4375. {
  4376. "id": "materialize::angularjs",
  4377. "text": "Angularjs"
  4378. },
  4379. {
  4380. "id": "materialize::animation",
  4381. "text": "Animation"
  4382. },
  4383. {
  4384. "id": "materialize::apple",
  4385. "text": "Apple"
  4386. },
  4387. {
  4388. "id": "materialize::apple-finder",
  4389. "text": "Apple Finder"
  4390. },
  4391. {
  4392. "id": "materialize::apple-ios",
  4393. "text": "Apple Ios"
  4394. },
  4395. {
  4396. "id": "materialize::apple-keyboard-caps",
  4397. "text": "Apple Keyboard Caps"
  4398. },
  4399. {
  4400. "id": "materialize::apple-keyboard-command",
  4401. "text": "Apple Keyboard Command"
  4402. },
  4403. {
  4404. "id": "materialize::apple-keyboard-control",
  4405. "text": "Apple Keyboard Control"
  4406. },
  4407. {
  4408. "id": "materialize::apple-keyboard-option",
  4409. "text": "Apple Keyboard Option"
  4410. },
  4411. {
  4412. "id": "materialize::apple-keyboard-shift",
  4413. "text": "Apple Keyboard Shift"
  4414. },
  4415. {
  4416. "id": "materialize::apple-mobileme",
  4417. "text": "Apple Mobileme"
  4418. },
  4419. {
  4420. "id": "materialize::apple-safari",
  4421. "text": "Apple Safari"
  4422. },
  4423. {
  4424. "id": "materialize::application",
  4425. "text": "Application"
  4426. },
  4427. {
  4428. "id": "materialize::apps",
  4429. "text": "Apps"
  4430. },
  4431. {
  4432. "id": "materialize::archive",
  4433. "text": "Archive"
  4434. },
  4435. {
  4436. "id": "materialize::arrange-bring-forward",
  4437. "text": "Arrange Bring Forward"
  4438. },
  4439. {
  4440. "id": "materialize::arrange-bring-to-front",
  4441. "text": "Arrange Bring To Front"
  4442. },
  4443. {
  4444. "id": "materialize::arrange-send-backward",
  4445. "text": "Arrange Send Backward"
  4446. },
  4447. {
  4448. "id": "materialize::arrange-send-to-back",
  4449. "text": "Arrange Send To Back"
  4450. },
  4451. {
  4452. "id": "materialize::arrow-all",
  4453. "text": "Arrow All"
  4454. },
  4455. {
  4456. "id": "materialize::arrow-bottom-left",
  4457. "text": "Arrow Bottom Left"
  4458. },
  4459. {
  4460. "id": "materialize::arrow-bottom-right",
  4461. "text": "Arrow Bottom Right"
  4462. },
  4463. {
  4464. "id": "materialize::arrow-compress",
  4465. "text": "Arrow Compress"
  4466. },
  4467. {
  4468. "id": "materialize::arrow-compress-all",
  4469. "text": "Arrow Compress All"
  4470. },
  4471. {
  4472. "id": "materialize::arrow-down",
  4473. "text": "Arrow Down"
  4474. },
  4475. {
  4476. "id": "materialize::arrow-down-bold",
  4477. "text": "Arrow Down Bold"
  4478. },
  4479. {
  4480. "id": "materialize::arrow-down-bold-circle",
  4481. "text": "Arrow Down Bold Circle"
  4482. },
  4483. {
  4484. "id": "materialize::arrow-down-bold-circle-outline",
  4485. "text": "Arrow Down Bold Circle Outline"
  4486. },
  4487. {
  4488. "id": "materialize::arrow-down-bold-hexagon-outline",
  4489. "text": "Arrow Down Bold Hexagon Outline"
  4490. },
  4491. {
  4492. "id": "materialize::arrow-down-box",
  4493. "text": "Arrow Down Box"
  4494. },
  4495. {
  4496. "id": "materialize::arrow-down-drop-circle",
  4497. "text": "Arrow Down Drop Circle"
  4498. },
  4499. {
  4500. "id": "materialize::arrow-down-drop-circle-outline",
  4501. "text": "Arrow Down Drop Circle Outline"
  4502. },
  4503. {
  4504. "id": "materialize::arrow-expand",
  4505. "text": "Arrow Expand"
  4506. },
  4507. {
  4508. "id": "materialize::arrow-expand-all",
  4509. "text": "Arrow Expand All"
  4510. },
  4511. {
  4512. "id": "materialize::arrow-left",
  4513. "text": "Arrow Left"
  4514. },
  4515. {
  4516. "id": "materialize::arrow-left-bold",
  4517. "text": "Arrow Left Bold"
  4518. },
  4519. {
  4520. "id": "materialize::arrow-left-bold-circle",
  4521. "text": "Arrow Left Bold Circle"
  4522. },
  4523. {
  4524. "id": "materialize::arrow-left-bold-circle-outline",
  4525. "text": "Arrow Left Bold Circle Outline"
  4526. },
  4527. {
  4528. "id": "materialize::arrow-left-bold-hexagon-outline",
  4529. "text": "Arrow Left Bold Hexagon Outline"
  4530. },
  4531. {
  4532. "id": "materialize::arrow-left-box",
  4533. "text": "Arrow Left Box"
  4534. },
  4535. {
  4536. "id": "materialize::arrow-left-drop-circle",
  4537. "text": "Arrow Left Drop Circle"
  4538. },
  4539. {
  4540. "id": "materialize::arrow-left-drop-circle-outline",
  4541. "text": "Arrow Left Drop Circle Outline"
  4542. },
  4543. {
  4544. "id": "materialize::arrow-right",
  4545. "text": "Arrow Right"
  4546. },
  4547. {
  4548. "id": "materialize::arrow-right-bold",
  4549. "text": "Arrow Right Bold"
  4550. },
  4551. {
  4552. "id": "materialize::arrow-right-bold-circle",
  4553. "text": "Arrow Right Bold Circle"
  4554. },
  4555. {
  4556. "id": "materialize::arrow-right-bold-circle-outline",
  4557. "text": "Arrow Right Bold Circle Outline"
  4558. },
  4559. {
  4560. "id": "materialize::arrow-right-bold-hexagon-outline",
  4561. "text": "Arrow Right Bold Hexagon Outline"
  4562. },
  4563. {
  4564. "id": "materialize::arrow-right-box",
  4565. "text": "Arrow Right Box"
  4566. },
  4567. {
  4568. "id": "materialize::arrow-right-drop-circle",
  4569. "text": "Arrow Right Drop Circle"
  4570. },
  4571. {
  4572. "id": "materialize::arrow-right-drop-circle-outline",
  4573. "text": "Arrow Right Drop Circle Outline"
  4574. },
  4575. {
  4576. "id": "materialize::arrow-top-left",
  4577. "text": "Arrow Top Left"
  4578. },
  4579. {
  4580. "id": "materialize::arrow-top-right",
  4581. "text": "Arrow Top Right"
  4582. },
  4583. {
  4584. "id": "materialize::arrow-up",
  4585. "text": "Arrow Up"
  4586. },
  4587. {
  4588. "id": "materialize::arrow-up-bold",
  4589. "text": "Arrow Up Bold"
  4590. },
  4591. {
  4592. "id": "materialize::arrow-up-bold-circle",
  4593. "text": "Arrow Up Bold Circle"
  4594. },
  4595. {
  4596. "id": "materialize::arrow-up-bold-circle-outline",
  4597. "text": "Arrow Up Bold Circle Outline"
  4598. },
  4599. {
  4600. "id": "materialize::arrow-up-bold-hexagon-outline",
  4601. "text": "Arrow Up Bold Hexagon Outline"
  4602. },
  4603. {
  4604. "id": "materialize::arrow-up-box",
  4605. "text": "Arrow Up Box"
  4606. },
  4607. {
  4608. "id": "materialize::arrow-up-drop-circle",
  4609. "text": "Arrow Up Drop Circle"
  4610. },
  4611. {
  4612. "id": "materialize::arrow-up-drop-circle-outline",
  4613. "text": "Arrow Up Drop Circle Outline"
  4614. },
  4615. {
  4616. "id": "materialize::assistant",
  4617. "text": "Assistant"
  4618. },
  4619. {
  4620. "id": "materialize::asterisk",
  4621. "text": "Asterisk"
  4622. },
  4623. {
  4624. "id": "materialize::at",
  4625. "text": "At"
  4626. },
  4627. {
  4628. "id": "materialize::attachment",
  4629. "text": "Attachment"
  4630. },
  4631. {
  4632. "id": "materialize::audiobook",
  4633. "text": "Audiobook"
  4634. },
  4635. {
  4636. "id": "materialize::auto-fix",
  4637. "text": "Auto Fix"
  4638. },
  4639. {
  4640. "id": "materialize::auto-upload",
  4641. "text": "Auto Upload"
  4642. },
  4643. {
  4644. "id": "materialize::autorenew",
  4645. "text": "Autorenew"
  4646. },
  4647. {
  4648. "id": "materialize::av-timer",
  4649. "text": "Av Timer"
  4650. },
  4651. {
  4652. "id": "materialize::baby",
  4653. "text": "Baby"
  4654. },
  4655. {
  4656. "id": "materialize::baby-buggy",
  4657. "text": "Baby Buggy"
  4658. },
  4659. {
  4660. "id": "materialize::backburger",
  4661. "text": "Backburger"
  4662. },
  4663. {
  4664. "id": "materialize::backspace",
  4665. "text": "Backspace"
  4666. },
  4667. {
  4668. "id": "materialize::backup-restore",
  4669. "text": "Backup Restore"
  4670. },
  4671. {
  4672. "id": "materialize::bandcamp",
  4673. "text": "Bandcamp"
  4674. },
  4675. {
  4676. "id": "materialize::bank",
  4677. "text": "Bank"
  4678. },
  4679. {
  4680. "id": "materialize::barcode",
  4681. "text": "Barcode"
  4682. },
  4683. {
  4684. "id": "materialize::barcode-scan",
  4685. "text": "Barcode Scan"
  4686. },
  4687. {
  4688. "id": "materialize::barley",
  4689. "text": "Barley"
  4690. },
  4691. {
  4692. "id": "materialize::barrel",
  4693. "text": "Barrel"
  4694. },
  4695. {
  4696. "id": "materialize::basecamp",
  4697. "text": "Basecamp"
  4698. },
  4699. {
  4700. "id": "materialize::basket",
  4701. "text": "Basket"
  4702. },
  4703. {
  4704. "id": "materialize::basket-fill",
  4705. "text": "Basket Fill"
  4706. },
  4707. {
  4708. "id": "materialize::basket-unfill",
  4709. "text": "Basket Unfill"
  4710. },
  4711. {
  4712. "id": "materialize::battery",
  4713. "text": "Battery"
  4714. },
  4715. {
  4716. "id": "materialize::battery-10",
  4717. "text": "Battery 10"
  4718. },
  4719. {
  4720. "id": "materialize::battery-20",
  4721. "text": "Battery 20"
  4722. },
  4723. {
  4724. "id": "materialize::battery-30",
  4725. "text": "Battery 30"
  4726. },
  4727. {
  4728. "id": "materialize::battery-40",
  4729. "text": "Battery 40"
  4730. },
  4731. {
  4732. "id": "materialize::battery-50",
  4733. "text": "Battery 50"
  4734. },
  4735. {
  4736. "id": "materialize::battery-60",
  4737. "text": "Battery 60"
  4738. },
  4739. {
  4740. "id": "materialize::battery-70",
  4741. "text": "Battery 70"
  4742. },
  4743. {
  4744. "id": "materialize::battery-80",
  4745. "text": "Battery 80"
  4746. },
  4747. {
  4748. "id": "materialize::battery-90",
  4749. "text": "Battery 90"
  4750. },
  4751. {
  4752. "id": "materialize::battery-alert",
  4753. "text": "Battery Alert"
  4754. },
  4755. {
  4756. "id": "materialize::battery-charging",
  4757. "text": "Battery Charging"
  4758. },
  4759. {
  4760. "id": "materialize::battery-charging-100",
  4761. "text": "Battery Charging 100"
  4762. },
  4763. {
  4764. "id": "materialize::battery-charging-20",
  4765. "text": "Battery Charging 20"
  4766. },
  4767. {
  4768. "id": "materialize::battery-charging-30",
  4769. "text": "Battery Charging 30"
  4770. },
  4771. {
  4772. "id": "materialize::battery-charging-40",
  4773. "text": "Battery Charging 40"
  4774. },
  4775. {
  4776. "id": "materialize::battery-charging-60",
  4777. "text": "Battery Charging 60"
  4778. },
  4779. {
  4780. "id": "materialize::battery-charging-80",
  4781. "text": "Battery Charging 80"
  4782. },
  4783. {
  4784. "id": "materialize::battery-charging-90",
  4785. "text": "Battery Charging 90"
  4786. },
  4787. {
  4788. "id": "materialize::battery-minus",
  4789. "text": "Battery Minus"
  4790. },
  4791. {
  4792. "id": "materialize::battery-negative",
  4793. "text": "Battery Negative"
  4794. },
  4795. {
  4796. "id": "materialize::battery-outline",
  4797. "text": "Battery Outline"
  4798. },
  4799. {
  4800. "id": "materialize::battery-plus",
  4801. "text": "Battery Plus"
  4802. },
  4803. {
  4804. "id": "materialize::battery-positive",
  4805. "text": "Battery Positive"
  4806. },
  4807. {
  4808. "id": "materialize::battery-unknown",
  4809. "text": "Battery Unknown"
  4810. },
  4811. {
  4812. "id": "materialize::beach",
  4813. "text": "Beach"
  4814. },
  4815. {
  4816. "id": "materialize::beaker",
  4817. "text": "Beaker"
  4818. },
  4819. {
  4820. "id": "materialize::beats",
  4821. "text": "Beats"
  4822. },
  4823. {
  4824. "id": "materialize::beer",
  4825. "text": "Beer"
  4826. },
  4827. {
  4828. "id": "materialize::behance",
  4829. "text": "Behance"
  4830. },
  4831. {
  4832. "id": "materialize::bell",
  4833. "text": "Bell"
  4834. },
  4835. {
  4836. "id": "materialize::bell-off",
  4837. "text": "Bell Off"
  4838. },
  4839. {
  4840. "id": "materialize::bell-outline",
  4841. "text": "Bell Outline"
  4842. },
  4843. {
  4844. "id": "materialize::bell-plus",
  4845. "text": "Bell Plus"
  4846. },
  4847. {
  4848. "id": "materialize::bell-ring",
  4849. "text": "Bell Ring"
  4850. },
  4851. {
  4852. "id": "materialize::bell-ring-outline",
  4853. "text": "Bell Ring Outline"
  4854. },
  4855. {
  4856. "id": "materialize::bell-sleep",
  4857. "text": "Bell Sleep"
  4858. },
  4859. {
  4860. "id": "materialize::beta",
  4861. "text": "Beta"
  4862. },
  4863. {
  4864. "id": "materialize::bible",
  4865. "text": "Bible"
  4866. },
  4867. {
  4868. "id": "materialize::bike",
  4869. "text": "Bike"
  4870. },
  4871. {
  4872. "id": "materialize::bing",
  4873. "text": "Bing"
  4874. },
  4875. {
  4876. "id": "materialize::binoculars",
  4877. "text": "Binoculars"
  4878. },
  4879. {
  4880. "id": "materialize::bio",
  4881. "text": "Bio"
  4882. },
  4883. {
  4884. "id": "materialize::biohazard",
  4885. "text": "Biohazard"
  4886. },
  4887. {
  4888. "id": "materialize::bitbucket",
  4889. "text": "Bitbucket"
  4890. },
  4891. {
  4892. "id": "materialize::black-mesa",
  4893. "text": "Black Mesa"
  4894. },
  4895. {
  4896. "id": "materialize::blackberry",
  4897. "text": "Blackberry"
  4898. },
  4899. {
  4900. "id": "materialize::blender",
  4901. "text": "Blender"
  4902. },
  4903. {
  4904. "id": "materialize::blinds",
  4905. "text": "Blinds"
  4906. },
  4907. {
  4908. "id": "materialize::block-helper",
  4909. "text": "Block Helper"
  4910. },
  4911. {
  4912. "id": "materialize::blogger",
  4913. "text": "Blogger"
  4914. },
  4915. {
  4916. "id": "materialize::bluetooth",
  4917. "text": "Bluetooth"
  4918. },
  4919. {
  4920. "id": "materialize::bluetooth-audio",
  4921. "text": "Bluetooth Audio"
  4922. },
  4923. {
  4924. "id": "materialize::bluetooth-connect",
  4925. "text": "Bluetooth Connect"
  4926. },
  4927. {
  4928. "id": "materialize::bluetooth-off",
  4929. "text": "Bluetooth Off"
  4930. },
  4931. {
  4932. "id": "materialize::bluetooth-settings",
  4933. "text": "Bluetooth Settings"
  4934. },
  4935. {
  4936. "id": "materialize::bluetooth-transfer",
  4937. "text": "Bluetooth Transfer"
  4938. },
  4939. {
  4940. "id": "materialize::blur",
  4941. "text": "Blur"
  4942. },
  4943. {
  4944. "id": "materialize::blur-linear",
  4945. "text": "Blur Linear"
  4946. },
  4947. {
  4948. "id": "materialize::blur-off",
  4949. "text": "Blur Off"
  4950. },
  4951. {
  4952. "id": "materialize::blur-radial",
  4953. "text": "Blur Radial"
  4954. },
  4955. {
  4956. "id": "materialize::bomb",
  4957. "text": "Bomb"
  4958. },
  4959. {
  4960. "id": "materialize::bomb-off",
  4961. "text": "Bomb Off"
  4962. },
  4963. {
  4964. "id": "materialize::bone",
  4965. "text": "Bone"
  4966. },
  4967. {
  4968. "id": "materialize::book",
  4969. "text": "Book"
  4970. },
  4971. {
  4972. "id": "materialize::book-minus",
  4973. "text": "Book Minus"
  4974. },
  4975. {
  4976. "id": "materialize::book-multiple",
  4977. "text": "Book Multiple"
  4978. },
  4979. {
  4980. "id": "materialize::book-multiple-variant",
  4981. "text": "Book Multiple Variant"
  4982. },
  4983. {
  4984. "id": "materialize::book-open",
  4985. "text": "Book Open"
  4986. },
  4987. {
  4988. "id": "materialize::book-open-page-variant",
  4989. "text": "Book Open Page Variant"
  4990. },
  4991. {
  4992. "id": "materialize::book-open-variant",
  4993. "text": "Book Open Variant"
  4994. },
  4995. {
  4996. "id": "materialize::book-plus",
  4997. "text": "Book Plus"
  4998. },
  4999. {
  5000. "id": "materialize::book-variant",
  5001. "text": "Book Variant"
  5002. },
  5003. {
  5004. "id": "materialize::bookmark",
  5005. "text": "Bookmark"
  5006. },
  5007. {
  5008. "id": "materialize::bookmark-check",
  5009. "text": "Bookmark Check"
  5010. },
  5011. {
  5012. "id": "materialize::bookmark-music",
  5013. "text": "Bookmark Music"
  5014. },
  5015. {
  5016. "id": "materialize::bookmark-outline",
  5017. "text": "Bookmark Outline"
  5018. },
  5019. {
  5020. "id": "materialize::bookmark-plus",
  5021. "text": "Bookmark Plus"
  5022. },
  5023. {
  5024. "id": "materialize::bookmark-plus-outline",
  5025. "text": "Bookmark Plus Outline"
  5026. },
  5027. {
  5028. "id": "materialize::bookmark-remove",
  5029. "text": "Bookmark Remove"
  5030. },
  5031. {
  5032. "id": "materialize::boombox",
  5033. "text": "Boombox"
  5034. },
  5035. {
  5036. "id": "materialize::bootstrap",
  5037. "text": "Bootstrap"
  5038. },
  5039. {
  5040. "id": "materialize::border-all",
  5041. "text": "Border All"
  5042. },
  5043. {
  5044. "id": "materialize::border-bottom",
  5045. "text": "Border Bottom"
  5046. },
  5047. {
  5048. "id": "materialize::border-color",
  5049. "text": "Border Color"
  5050. },
  5051. {
  5052. "id": "materialize::border-horizontal",
  5053. "text": "Border Horizontal"
  5054. },
  5055. {
  5056. "id": "materialize::border-inside",
  5057. "text": "Border Inside"
  5058. },
  5059. {
  5060. "id": "materialize::border-left",
  5061. "text": "Border Left"
  5062. },
  5063. {
  5064. "id": "materialize::border-none",
  5065. "text": "Border None"
  5066. },
  5067. {
  5068. "id": "materialize::border-outside",
  5069. "text": "Border Outside"
  5070. },
  5071. {
  5072. "id": "materialize::border-right",
  5073. "text": "Border Right"
  5074. },
  5075. {
  5076. "id": "materialize::border-style",
  5077. "text": "Border Style"
  5078. },
  5079. {
  5080. "id": "materialize::border-top",
  5081. "text": "Border Top"
  5082. },
  5083. {
  5084. "id": "materialize::border-vertical",
  5085. "text": "Border Vertical"
  5086. },
  5087. {
  5088. "id": "materialize::bow-tie",
  5089. "text": "Bow Tie"
  5090. },
  5091. {
  5092. "id": "materialize::bowl",
  5093. "text": "Bowl"
  5094. },
  5095. {
  5096. "id": "materialize::bowling",
  5097. "text": "Bowling"
  5098. },
  5099. {
  5100. "id": "materialize::box",
  5101. "text": "Box"
  5102. },
  5103. {
  5104. "id": "materialize::box-cutter",
  5105. "text": "Box Cutter"
  5106. },
  5107. {
  5108. "id": "materialize::box-shadow",
  5109. "text": "Box Shadow"
  5110. },
  5111. {
  5112. "id": "materialize::bridge",
  5113. "text": "Bridge"
  5114. },
  5115. {
  5116. "id": "materialize::briefcase",
  5117. "text": "Briefcase"
  5118. },
  5119. {
  5120. "id": "materialize::briefcase-check",
  5121. "text": "Briefcase Check"
  5122. },
  5123. {
  5124. "id": "materialize::briefcase-download",
  5125. "text": "Briefcase Download"
  5126. },
  5127. {
  5128. "id": "materialize::briefcase-upload",
  5129. "text": "Briefcase Upload"
  5130. },
  5131. {
  5132. "id": "materialize::brightness-1",
  5133. "text": "Brightness 1"
  5134. },
  5135. {
  5136. "id": "materialize::brightness-2",
  5137. "text": "Brightness 2"
  5138. },
  5139. {
  5140. "id": "materialize::brightness-3",
  5141. "text": "Brightness 3"
  5142. },
  5143. {
  5144. "id": "materialize::brightness-4",
  5145. "text": "Brightness 4"
  5146. },
  5147. {
  5148. "id": "materialize::brightness-5",
  5149. "text": "Brightness 5"
  5150. },
  5151. {
  5152. "id": "materialize::brightness-6",
  5153. "text": "Brightness 6"
  5154. },
  5155. {
  5156. "id": "materialize::brightness-7",
  5157. "text": "Brightness 7"
  5158. },
  5159. {
  5160. "id": "materialize::brightness-auto",
  5161. "text": "Brightness Auto"
  5162. },
  5163. {
  5164. "id": "materialize::broom",
  5165. "text": "Broom"
  5166. },
  5167. {
  5168. "id": "materialize::brush",
  5169. "text": "Brush"
  5170. },
  5171. {
  5172. "id": "materialize::buffer",
  5173. "text": "Buffer"
  5174. },
  5175. {
  5176. "id": "materialize::bug",
  5177. "text": "Bug"
  5178. },
  5179. {
  5180. "id": "materialize::bulletin-board",
  5181. "text": "Bulletin Board"
  5182. },
  5183. {
  5184. "id": "materialize::bullhorn",
  5185. "text": "Bullhorn"
  5186. },
  5187. {
  5188. "id": "materialize::bullseye",
  5189. "text": "Bullseye"
  5190. },
  5191. {
  5192. "id": "materialize::burst-mode",
  5193. "text": "Burst Mode"
  5194. },
  5195. {
  5196. "id": "materialize::bus",
  5197. "text": "Bus"
  5198. },
  5199. {
  5200. "id": "materialize::cached",
  5201. "text": "Cached"
  5202. },
  5203. {
  5204. "id": "materialize::cake",
  5205. "text": "Cake"
  5206. },
  5207. {
  5208. "id": "materialize::cake-layered",
  5209. "text": "Cake Layered"
  5210. },
  5211. {
  5212. "id": "materialize::cake-variant",
  5213. "text": "Cake Variant"
  5214. },
  5215. {
  5216. "id": "materialize::calculator",
  5217. "text": "Calculator"
  5218. },
  5219. {
  5220. "id": "materialize::calendar",
  5221. "text": "Calendar"
  5222. },
  5223. {
  5224. "id": "materialize::calendar-blank",
  5225. "text": "Calendar Blank"
  5226. },
  5227. {
  5228. "id": "materialize::calendar-check",
  5229. "text": "Calendar Check"
  5230. },
  5231. {
  5232. "id": "materialize::calendar-clock",
  5233. "text": "Calendar Clock"
  5234. },
  5235. {
  5236. "id": "materialize::calendar-multiple",
  5237. "text": "Calendar Multiple"
  5238. },
  5239. {
  5240. "id": "materialize::calendar-multiple-check",
  5241. "text": "Calendar Multiple Check"
  5242. },
  5243. {
  5244. "id": "materialize::calendar-plus",
  5245. "text": "Calendar Plus"
  5246. },
  5247. {
  5248. "id": "materialize::calendar-question",
  5249. "text": "Calendar Question"
  5250. },
  5251. {
  5252. "id": "materialize::calendar-range",
  5253. "text": "Calendar Range"
  5254. },
  5255. {
  5256. "id": "materialize::calendar-remove",
  5257. "text": "Calendar Remove"
  5258. },
  5259. {
  5260. "id": "materialize::calendar-text",
  5261. "text": "Calendar Text"
  5262. },
  5263. {
  5264. "id": "materialize::calendar-today",
  5265. "text": "Calendar Today"
  5266. },
  5267. {
  5268. "id": "materialize::call-made",
  5269. "text": "Call Made"
  5270. },
  5271. {
  5272. "id": "materialize::call-merge",
  5273. "text": "Call Merge"
  5274. },
  5275. {
  5276. "id": "materialize::call-missed",
  5277. "text": "Call Missed"
  5278. },
  5279. {
  5280. "id": "materialize::call-received",
  5281. "text": "Call Received"
  5282. },
  5283. {
  5284. "id": "materialize::call-split",
  5285. "text": "Call Split"
  5286. },
  5287. {
  5288. "id": "materialize::camcorder",
  5289. "text": "Camcorder"
  5290. },
  5291. {
  5292. "id": "materialize::camcorder-box",
  5293. "text": "Camcorder Box"
  5294. },
  5295. {
  5296. "id": "materialize::camcorder-box-off",
  5297. "text": "Camcorder Box Off"
  5298. },
  5299. {
  5300. "id": "materialize::camcorder-off",
  5301. "text": "Camcorder Off"
  5302. },
  5303. {
  5304. "id": "materialize::camera",
  5305. "text": "Camera"
  5306. },
  5307. {
  5308. "id": "materialize::camera-burst",
  5309. "text": "Camera Burst"
  5310. },
  5311. {
  5312. "id": "materialize::camera-enhance",
  5313. "text": "Camera Enhance"
  5314. },
  5315. {
  5316. "id": "materialize::camera-front",
  5317. "text": "Camera Front"
  5318. },
  5319. {
  5320. "id": "materialize::camera-front-variant",
  5321. "text": "Camera Front Variant"
  5322. },
  5323. {
  5324. "id": "materialize::camera-iris",
  5325. "text": "Camera Iris"
  5326. },
  5327. {
  5328. "id": "materialize::camera-off",
  5329. "text": "Camera Off"
  5330. },
  5331. {
  5332. "id": "materialize::camera-party-mode",
  5333. "text": "Camera Party Mode"
  5334. },
  5335. {
  5336. "id": "materialize::camera-rear",
  5337. "text": "Camera Rear"
  5338. },
  5339. {
  5340. "id": "materialize::camera-rear-variant",
  5341. "text": "Camera Rear Variant"
  5342. },
  5343. {
  5344. "id": "materialize::camera-switch",
  5345. "text": "Camera Switch"
  5346. },
  5347. {
  5348. "id": "materialize::camera-timer",
  5349. "text": "Camera Timer"
  5350. },
  5351. {
  5352. "id": "materialize::candle",
  5353. "text": "Candle"
  5354. },
  5355. {
  5356. "id": "materialize::candycane",
  5357. "text": "Candycane"
  5358. },
  5359. {
  5360. "id": "materialize::car",
  5361. "text": "Car"
  5362. },
  5363. {
  5364. "id": "materialize::car-battery",
  5365. "text": "Car Battery"
  5366. },
  5367. {
  5368. "id": "materialize::car-connected",
  5369. "text": "Car Connected"
  5370. },
  5371. {
  5372. "id": "materialize::car-wash",
  5373. "text": "Car Wash"
  5374. },
  5375. {
  5376. "id": "materialize::cards",
  5377. "text": "Cards"
  5378. },
  5379. {
  5380. "id": "materialize::cards-outline",
  5381. "text": "Cards Outline"
  5382. },
  5383. {
  5384. "id": "materialize::cards-playing-outline",
  5385. "text": "Cards Playing Outline"
  5386. },
  5387. {
  5388. "id": "materialize::cards-variant",
  5389. "text": "Cards Variant"
  5390. },
  5391. {
  5392. "id": "materialize::carrot",
  5393. "text": "Carrot"
  5394. },
  5395. {
  5396. "id": "materialize::cart",
  5397. "text": "Cart"
  5398. },
  5399. {
  5400. "id": "materialize::cart-off",
  5401. "text": "Cart Off"
  5402. },
  5403. {
  5404. "id": "materialize::cart-outline",
  5405. "text": "Cart Outline"
  5406. },
  5407. {
  5408. "id": "materialize::cart-plus",
  5409. "text": "Cart Plus"
  5410. },
  5411. {
  5412. "id": "materialize::case-sensitive-alt",
  5413. "text": "Case Sensitive Alt"
  5414. },
  5415. {
  5416. "id": "materialize::cash",
  5417. "text": "Cash"
  5418. },
  5419. {
  5420. "id": "materialize::cash-100",
  5421. "text": "Cash 100"
  5422. },
  5423. {
  5424. "id": "materialize::cash-multiple",
  5425. "text": "Cash Multiple"
  5426. },
  5427. {
  5428. "id": "materialize::cash-usd",
  5429. "text": "Cash Usd"
  5430. },
  5431. {
  5432. "id": "materialize::cast",
  5433. "text": "Cast"
  5434. },
  5435. {
  5436. "id": "materialize::cast-connected",
  5437. "text": "Cast Connected"
  5438. },
  5439. {
  5440. "id": "materialize::castle",
  5441. "text": "Castle"
  5442. },
  5443. {
  5444. "id": "materialize::cat",
  5445. "text": "Cat"
  5446. },
  5447. {
  5448. "id": "materialize::cellphone",
  5449. "text": "Cellphone"
  5450. },
  5451. {
  5452. "id": "materialize::cellphone-android",
  5453. "text": "Cellphone Android"
  5454. },
  5455. {
  5456. "id": "materialize::cellphone-basic",
  5457. "text": "Cellphone Basic"
  5458. },
  5459. {
  5460. "id": "materialize::cellphone-dock",
  5461. "text": "Cellphone Dock"
  5462. },
  5463. {
  5464. "id": "materialize::cellphone-iphone",
  5465. "text": "Cellphone Iphone"
  5466. },
  5467. {
  5468. "id": "materialize::cellphone-link",
  5469. "text": "Cellphone Link"
  5470. },
  5471. {
  5472. "id": "materialize::cellphone-link-off",
  5473. "text": "Cellphone Link Off"
  5474. },
  5475. {
  5476. "id": "materialize::cellphone-settings",
  5477. "text": "Cellphone Settings"
  5478. },
  5479. {
  5480. "id": "materialize::certificate",
  5481. "text": "Certificate"
  5482. },
  5483. {
  5484. "id": "materialize::chair-school",
  5485. "text": "Chair School"
  5486. },
  5487. {
  5488. "id": "materialize::chart-arc",
  5489. "text": "Chart Arc"
  5490. },
  5491. {
  5492. "id": "materialize::chart-areaspline",
  5493. "text": "Chart Areaspline"
  5494. },
  5495. {
  5496. "id": "materialize::chart-bar",
  5497. "text": "Chart Bar"
  5498. },
  5499. {
  5500. "id": "materialize::chart-bubble",
  5501. "text": "Chart Bubble"
  5502. },
  5503. {
  5504. "id": "materialize::chart-gantt",
  5505. "text": "Chart Gantt"
  5506. },
  5507. {
  5508. "id": "materialize::chart-histogram",
  5509. "text": "Chart Histogram"
  5510. },
  5511. {
  5512. "id": "materialize::chart-line",
  5513. "text": "Chart Line"
  5514. },
  5515. {
  5516. "id": "materialize::chart-pie",
  5517. "text": "Chart Pie"
  5518. },
  5519. {
  5520. "id": "materialize::chart-scatterplot-hexbin",
  5521. "text": "Chart Scatterplot Hexbin"
  5522. },
  5523. {
  5524. "id": "materialize::chart-timeline",
  5525. "text": "Chart Timeline"
  5526. },
  5527. {
  5528. "id": "materialize::check",
  5529. "text": "Check"
  5530. },
  5531. {
  5532. "id": "materialize::check-all",
  5533. "text": "Check All"
  5534. },
  5535. {
  5536. "id": "materialize::check-circle",
  5537. "text": "Check Circle"
  5538. },
  5539. {
  5540. "id": "materialize::check-circle-outline",
  5541. "text": "Check Circle Outline"
  5542. },
  5543. {
  5544. "id": "materialize::checkbox-blank",
  5545. "text": "Checkbox Blank"
  5546. },
  5547. {
  5548. "id": "materialize::checkbox-blank-circle",
  5549. "text": "Checkbox Blank Circle"
  5550. },
  5551. {
  5552. "id": "materialize::checkbox-blank-circle-outline",
  5553. "text": "Checkbox Blank Circle Outline"
  5554. },
  5555. {
  5556. "id": "materialize::checkbox-blank-outline",
  5557. "text": "Checkbox Blank Outline"
  5558. },
  5559. {
  5560. "id": "materialize::checkbox-marked",
  5561. "text": "Checkbox Marked"
  5562. },
  5563. {
  5564. "id": "materialize::checkbox-marked-circle",
  5565. "text": "Checkbox Marked Circle"
  5566. },
  5567. {
  5568. "id": "materialize::checkbox-marked-circle-outline",
  5569. "text": "Checkbox Marked Circle Outline"
  5570. },
  5571. {
  5572. "id": "materialize::checkbox-marked-outline",
  5573. "text": "Checkbox Marked Outline"
  5574. },
  5575. {
  5576. "id": "materialize::checkbox-multiple-blank",
  5577. "text": "Checkbox Multiple Blank"
  5578. },
  5579. {
  5580. "id": "materialize::checkbox-multiple-blank-circle",
  5581. "text": "Checkbox Multiple Blank Circle"
  5582. },
  5583. {
  5584. "id": "materialize::checkbox-multiple-blank-circle-outline",
  5585. "text": "Checkbox Multiple Blank Circle Outline"
  5586. },
  5587. {
  5588. "id": "materialize::checkbox-multiple-blank-outline",
  5589. "text": "Checkbox Multiple Blank Outline"
  5590. },
  5591. {
  5592. "id": "materialize::checkbox-multiple-marked",
  5593. "text": "Checkbox Multiple Marked"
  5594. },
  5595. {
  5596. "id": "materialize::checkbox-multiple-marked-circle",
  5597. "text": "Checkbox Multiple Marked Circle"
  5598. },
  5599. {
  5600. "id": "materialize::checkbox-multiple-marked-circle-outline",
  5601. "text": "Checkbox Multiple Marked Circle Outline"
  5602. },
  5603. {
  5604. "id": "materialize::checkbox-multiple-marked-outline",
  5605. "text": "Checkbox Multiple Marked Outline"
  5606. },
  5607. {
  5608. "id": "materialize::checkerboard",
  5609. "text": "Checkerboard"
  5610. },
  5611. {
  5612. "id": "materialize::chemical-weapon",
  5613. "text": "Chemical Weapon"
  5614. },
  5615. {
  5616. "id": "materialize::chevron-double-down",
  5617. "text": "Chevron Double Down"
  5618. },
  5619. {
  5620. "id": "materialize::chevron-double-left",
  5621. "text": "Chevron Double Left"
  5622. },
  5623. {
  5624. "id": "materialize::chevron-double-right",
  5625. "text": "Chevron Double Right"
  5626. },
  5627. {
  5628. "id": "materialize::chevron-double-up",
  5629. "text": "Chevron Double Up"
  5630. },
  5631. {
  5632. "id": "materialize::chevron-down",
  5633. "text": "Chevron Down"
  5634. },
  5635. {
  5636. "id": "materialize::chevron-left",
  5637. "text": "Chevron Left"
  5638. },
  5639. {
  5640. "id": "materialize::chevron-right",
  5641. "text": "Chevron Right"
  5642. },
  5643. {
  5644. "id": "materialize::chevron-up",
  5645. "text": "Chevron Up"
  5646. },
  5647. {
  5648. "id": "materialize::chip",
  5649. "text": "Chip"
  5650. },
  5651. {
  5652. "id": "materialize::church",
  5653. "text": "Church"
  5654. },
  5655. {
  5656. "id": "materialize::cisco-webex",
  5657. "text": "Cisco Webex"
  5658. },
  5659. {
  5660. "id": "materialize::city",
  5661. "text": "City"
  5662. },
  5663. {
  5664. "id": "materialize::clipboard",
  5665. "text": "Clipboard"
  5666. },
  5667. {
  5668. "id": "materialize::clipboard-account",
  5669. "text": "Clipboard Account"
  5670. },
  5671. {
  5672. "id": "materialize::clipboard-alert",
  5673. "text": "Clipboard Alert"
  5674. },
  5675. {
  5676. "id": "materialize::clipboard-arrow-down",
  5677. "text": "Clipboard Arrow Down"
  5678. },
  5679. {
  5680. "id": "materialize::clipboard-arrow-left",
  5681. "text": "Clipboard Arrow Left"
  5682. },
  5683. {
  5684. "id": "materialize::clipboard-check",
  5685. "text": "Clipboard Check"
  5686. },
  5687. {
  5688. "id": "materialize::clipboard-flow",
  5689. "text": "Clipboard Flow"
  5690. },
  5691. {
  5692. "id": "materialize::clipboard-outline",
  5693. "text": "Clipboard Outline"
  5694. },
  5695. {
  5696. "id": "materialize::clipboard-text",
  5697. "text": "Clipboard Text"
  5698. },
  5699. {
  5700. "id": "materialize::clippy",
  5701. "text": "Clippy"
  5702. },
  5703. {
  5704. "id": "materialize::clock",
  5705. "text": "Clock"
  5706. },
  5707. {
  5708. "id": "materialize::clock-alert",
  5709. "text": "Clock Alert"
  5710. },
  5711. {
  5712. "id": "materialize::clock-end",
  5713. "text": "Clock End"
  5714. },
  5715. {
  5716. "id": "materialize::clock-fast",
  5717. "text": "Clock Fast"
  5718. },
  5719. {
  5720. "id": "materialize::clock-in",
  5721. "text": "Clock In"
  5722. },
  5723. {
  5724. "id": "materialize::clock-out",
  5725. "text": "Clock Out"
  5726. },
  5727. {
  5728. "id": "materialize::clock-start",
  5729. "text": "Clock Start"
  5730. },
  5731. {
  5732. "id": "materialize::close",
  5733. "text": "Close"
  5734. },
  5735. {
  5736. "id": "materialize::close-box",
  5737. "text": "Close Box"
  5738. },
  5739. {
  5740. "id": "materialize::close-box-outline",
  5741. "text": "Close Box Outline"
  5742. },
  5743. {
  5744. "id": "materialize::close-circle",
  5745. "text": "Close Circle"
  5746. },
  5747. {
  5748. "id": "materialize::close-circle-outline",
  5749. "text": "Close Circle Outline"
  5750. },
  5751. {
  5752. "id": "materialize::close-network",
  5753. "text": "Close Network"
  5754. },
  5755. {
  5756. "id": "materialize::close-octagon",
  5757. "text": "Close Octagon"
  5758. },
  5759. {
  5760. "id": "materialize::close-octagon-outline",
  5761. "text": "Close Octagon Outline"
  5762. },
  5763. {
  5764. "id": "materialize::close-outline",
  5765. "text": "Close Outline"
  5766. },
  5767. {
  5768. "id": "materialize::closed-caption",
  5769. "text": "Closed Caption"
  5770. },
  5771. {
  5772. "id": "materialize::cloud",
  5773. "text": "Cloud"
  5774. },
  5775. {
  5776. "id": "materialize::cloud-check",
  5777. "text": "Cloud Check"
  5778. },
  5779. {
  5780. "id": "materialize::cloud-circle",
  5781. "text": "Cloud Circle"
  5782. },
  5783. {
  5784. "id": "materialize::cloud-download",
  5785. "text": "Cloud Download"
  5786. },
  5787. {
  5788. "id": "materialize::cloud-outline",
  5789. "text": "Cloud Outline"
  5790. },
  5791. {
  5792. "id": "materialize::cloud-outline-off",
  5793. "text": "Cloud Outline Off"
  5794. },
  5795. {
  5796. "id": "materialize::cloud-print",
  5797. "text": "Cloud Print"
  5798. },
  5799. {
  5800. "id": "materialize::cloud-print-outline",
  5801. "text": "Cloud Print Outline"
  5802. },
  5803. {
  5804. "id": "materialize::cloud-sync",
  5805. "text": "Cloud Sync"
  5806. },
  5807. {
  5808. "id": "materialize::cloud-upload",
  5809. "text": "Cloud Upload"
  5810. },
  5811. {
  5812. "id": "materialize::code-array",
  5813. "text": "Code Array"
  5814. },
  5815. {
  5816. "id": "materialize::code-braces",
  5817. "text": "Code Braces"
  5818. },
  5819. {
  5820. "id": "materialize::code-brackets",
  5821. "text": "Code Brackets"
  5822. },
  5823. {
  5824. "id": "materialize::code-equal",
  5825. "text": "Code Equal"
  5826. },
  5827. {
  5828. "id": "materialize::code-greater-than",
  5829. "text": "Code Greater Than"
  5830. },
  5831. {
  5832. "id": "materialize::code-greater-than-or-equal",
  5833. "text": "Code Greater Than Or Equal"
  5834. },
  5835. {
  5836. "id": "materialize::code-less-than",
  5837. "text": "Code Less Than"
  5838. },
  5839. {
  5840. "id": "materialize::code-less-than-or-equal",
  5841. "text": "Code Less Than Or Equal"
  5842. },
  5843. {
  5844. "id": "materialize::code-not-equal",
  5845. "text": "Code Not Equal"
  5846. },
  5847. {
  5848. "id": "materialize::code-not-equal-variant",
  5849. "text": "Code Not Equal Variant"
  5850. },
  5851. {
  5852. "id": "materialize::code-parentheses",
  5853. "text": "Code Parentheses"
  5854. },
  5855. {
  5856. "id": "materialize::code-string",
  5857. "text": "Code String"
  5858. },
  5859. {
  5860. "id": "materialize::code-tags",
  5861. "text": "Code Tags"
  5862. },
  5863. {
  5864. "id": "materialize::code-tags-check",
  5865. "text": "Code Tags Check"
  5866. },
  5867. {
  5868. "id": "materialize::codepen",
  5869. "text": "Codepen"
  5870. },
  5871. {
  5872. "id": "materialize::coffee",
  5873. "text": "Coffee"
  5874. },
  5875. {
  5876. "id": "materialize::coffee-outline",
  5877. "text": "Coffee Outline"
  5878. },
  5879. {
  5880. "id": "materialize::coffee-to-go",
  5881. "text": "Coffee To Go"
  5882. },
  5883. {
  5884. "id": "materialize::coin",
  5885. "text": "Coin"
  5886. },
  5887. {
  5888. "id": "materialize::coins",
  5889. "text": "Coins"
  5890. },
  5891. {
  5892. "id": "materialize::collage",
  5893. "text": "Collage"
  5894. },
  5895. {
  5896. "id": "materialize::color-helper",
  5897. "text": "Color Helper"
  5898. },
  5899. {
  5900. "id": "materialize::comment",
  5901. "text": "Comment"
  5902. },
  5903. {
  5904. "id": "materialize::comment-account",
  5905. "text": "Comment Account"
  5906. },
  5907. {
  5908. "id": "materialize::comment-account-outline",
  5909. "text": "Comment Account Outline"
  5910. },
  5911. {
  5912. "id": "materialize::comment-alert",
  5913. "text": "Comment Alert"
  5914. },
  5915. {
  5916. "id": "materialize::comment-alert-outline",
  5917. "text": "Comment Alert Outline"
  5918. },
  5919. {
  5920. "id": "materialize::comment-check",
  5921. "text": "Comment Check"
  5922. },
  5923. {
  5924. "id": "materialize::comment-check-outline",
  5925. "text": "Comment Check Outline"
  5926. },
  5927. {
  5928. "id": "materialize::comment-multiple-outline",
  5929. "text": "Comment Multiple Outline"
  5930. },
  5931. {
  5932. "id": "materialize::comment-outline",
  5933. "text": "Comment Outline"
  5934. },
  5935. {
  5936. "id": "materialize::comment-plus-outline",
  5937. "text": "Comment Plus Outline"
  5938. },
  5939. {
  5940. "id": "materialize::comment-processing",
  5941. "text": "Comment Processing"
  5942. },
  5943. {
  5944. "id": "materialize::comment-processing-outline",
  5945. "text": "Comment Processing Outline"
  5946. },
  5947. {
  5948. "id": "materialize::comment-question-outline",
  5949. "text": "Comment Question Outline"
  5950. },
  5951. {
  5952. "id": "materialize::comment-remove-outline",
  5953. "text": "Comment Remove Outline"
  5954. },
  5955. {
  5956. "id": "materialize::comment-text",
  5957. "text": "Comment Text"
  5958. },
  5959. {
  5960. "id": "materialize::comment-text-outline",
  5961. "text": "Comment Text Outline"
  5962. },
  5963. {
  5964. "id": "materialize::compare",
  5965. "text": "Compare"
  5966. },
  5967. {
  5968. "id": "materialize::compass",
  5969. "text": "Compass"
  5970. },
  5971. {
  5972. "id": "materialize::compass-outline",
  5973. "text": "Compass Outline"
  5974. },
  5975. {
  5976. "id": "materialize::console",
  5977. "text": "Console"
  5978. },
  5979. {
  5980. "id": "materialize::contact-mail",
  5981. "text": "Contact Mail"
  5982. },
  5983. {
  5984. "id": "materialize::contacts",
  5985. "text": "Contacts"
  5986. },
  5987. {
  5988. "id": "materialize::content-copy",
  5989. "text": "Content Copy"
  5990. },
  5991. {
  5992. "id": "materialize::content-cut",
  5993. "text": "Content Cut"
  5994. },
  5995. {
  5996. "id": "materialize::content-duplicate",
  5997. "text": "Content Duplicate"
  5998. },
  5999. {
  6000. "id": "materialize::content-paste",
  6001. "text": "Content Paste"
  6002. },
  6003. {
  6004. "id": "materialize::content-save",
  6005. "text": "Content Save"
  6006. },
  6007. {
  6008. "id": "materialize::content-save-all",
  6009. "text": "Content Save All"
  6010. },
  6011. {
  6012. "id": "materialize::content-save-settings",
  6013. "text": "Content Save Settings"
  6014. },
  6015. {
  6016. "id": "materialize::contrast",
  6017. "text": "Contrast"
  6018. },
  6019. {
  6020. "id": "materialize::contrast-box",
  6021. "text": "Contrast Box"
  6022. },
  6023. {
  6024. "id": "materialize::contrast-circle",
  6025. "text": "Contrast Circle"
  6026. },
  6027. {
  6028. "id": "materialize::cookie",
  6029. "text": "Cookie"
  6030. },
  6031. {
  6032. "id": "materialize::copyright",
  6033. "text": "Copyright"
  6034. },
  6035. {
  6036. "id": "materialize::counter",
  6037. "text": "Counter"
  6038. },
  6039. {
  6040. "id": "materialize::cow",
  6041. "text": "Cow"
  6042. },
  6043. {
  6044. "id": "materialize::creation",
  6045. "text": "Creation"
  6046. },
  6047. {
  6048. "id": "materialize::credit-card",
  6049. "text": "Credit Card"
  6050. },
  6051. {
  6052. "id": "materialize::credit-card-multiple",
  6053. "text": "Credit Card Multiple"
  6054. },
  6055. {
  6056. "id": "materialize::credit-card-off",
  6057. "text": "Credit Card Off"
  6058. },
  6059. {
  6060. "id": "materialize::credit-card-plus",
  6061. "text": "Credit Card Plus"
  6062. },
  6063. {
  6064. "id": "materialize::credit-card-scan",
  6065. "text": "Credit Card Scan"
  6066. },
  6067. {
  6068. "id": "materialize::crop",
  6069. "text": "Crop"
  6070. },
  6071. {
  6072. "id": "materialize::crop-free",
  6073. "text": "Crop Free"
  6074. },
  6075. {
  6076. "id": "materialize::crop-landscape",
  6077. "text": "Crop Landscape"
  6078. },
  6079. {
  6080. "id": "materialize::crop-portrait",
  6081. "text": "Crop Portrait"
  6082. },
  6083. {
  6084. "id": "materialize::crop-rotate",
  6085. "text": "Crop Rotate"
  6086. },
  6087. {
  6088. "id": "materialize::crop-square",
  6089. "text": "Crop Square"
  6090. },
  6091. {
  6092. "id": "materialize::crosshairs",
  6093. "text": "Crosshairs"
  6094. },
  6095. {
  6096. "id": "materialize::crosshairs-gps",
  6097. "text": "Crosshairs Gps"
  6098. },
  6099. {
  6100. "id": "materialize::crown",
  6101. "text": "Crown"
  6102. },
  6103. {
  6104. "id": "materialize::cube",
  6105. "text": "Cube"
  6106. },
  6107. {
  6108. "id": "materialize::cube-outline",
  6109. "text": "Cube Outline"
  6110. },
  6111. {
  6112. "id": "materialize::cube-send",
  6113. "text": "Cube Send"
  6114. },
  6115. {
  6116. "id": "materialize::cube-unfolded",
  6117. "text": "Cube Unfolded"
  6118. },
  6119. {
  6120. "id": "materialize::cup",
  6121. "text": "Cup"
  6122. },
  6123. {
  6124. "id": "materialize::cup-off",
  6125. "text": "Cup Off"
  6126. },
  6127. {
  6128. "id": "materialize::cup-water",
  6129. "text": "Cup Water"
  6130. },
  6131. {
  6132. "id": "materialize::currency-btc",
  6133. "text": "Currency Btc"
  6134. },
  6135. {
  6136. "id": "materialize::currency-eur",
  6137. "text": "Currency Eur"
  6138. },
  6139. {
  6140. "id": "materialize::currency-gbp",
  6141. "text": "Currency Gbp"
  6142. },
  6143. {
  6144. "id": "materialize::currency-inr",
  6145. "text": "Currency Inr"
  6146. },
  6147. {
  6148. "id": "materialize::currency-ngn",
  6149. "text": "Currency Ngn"
  6150. },
  6151. {
  6152. "id": "materialize::currency-rub",
  6153. "text": "Currency Rub"
  6154. },
  6155. {
  6156. "id": "materialize::currency-try",
  6157. "text": "Currency Try"
  6158. },
  6159. {
  6160. "id": "materialize::currency-usd",
  6161. "text": "Currency Usd"
  6162. },
  6163. {
  6164. "id": "materialize::currency-usd-off",
  6165. "text": "Currency Usd Off"
  6166. },
  6167. {
  6168. "id": "materialize::cursor-default",
  6169. "text": "Cursor Default"
  6170. },
  6171. {
  6172. "id": "materialize::cursor-default-outline",
  6173. "text": "Cursor Default Outline"
  6174. },
  6175. {
  6176. "id": "materialize::cursor-move",
  6177. "text": "Cursor Move"
  6178. },
  6179. {
  6180. "id": "materialize::cursor-pointer",
  6181. "text": "Cursor Pointer"
  6182. },
  6183. {
  6184. "id": "materialize::cursor-text",
  6185. "text": "Cursor Text"
  6186. },
  6187. {
  6188. "id": "materialize::database",
  6189. "text": "Database"
  6190. },
  6191. {
  6192. "id": "materialize::database-minus",
  6193. "text": "Database Minus"
  6194. },
  6195. {
  6196. "id": "materialize::database-plus",
  6197. "text": "Database Plus"
  6198. },
  6199. {
  6200. "id": "materialize::debug-step-into",
  6201. "text": "Debug Step Into"
  6202. },
  6203. {
  6204. "id": "materialize::debug-step-out",
  6205. "text": "Debug Step Out"
  6206. },
  6207. {
  6208. "id": "materialize::debug-step-over",
  6209. "text": "Debug Step Over"
  6210. },
  6211. {
  6212. "id": "materialize::decimal-decrease",
  6213. "text": "Decimal Decrease"
  6214. },
  6215. {
  6216. "id": "materialize::decimal-increase",
  6217. "text": "Decimal Increase"
  6218. },
  6219. {
  6220. "id": "materialize::delete",
  6221. "text": "Delete"
  6222. },
  6223. {
  6224. "id": "materialize::delete-circle",
  6225. "text": "Delete Circle"
  6226. },
  6227. {
  6228. "id": "materialize::delete-empty",
  6229. "text": "Delete Empty"
  6230. },
  6231. {
  6232. "id": "materialize::delete-forever",
  6233. "text": "Delete Forever"
  6234. },
  6235. {
  6236. "id": "materialize::delete-sweep",
  6237. "text": "Delete Sweep"
  6238. },
  6239. {
  6240. "id": "materialize::delete-variant",
  6241. "text": "Delete Variant"
  6242. },
  6243. {
  6244. "id": "materialize::delta",
  6245. "text": "Delta"
  6246. },
  6247. {
  6248. "id": "materialize::deskphone",
  6249. "text": "Deskphone"
  6250. },
  6251. {
  6252. "id": "materialize::desktop-mac",
  6253. "text": "Desktop Mac"
  6254. },
  6255. {
  6256. "id": "materialize::desktop-tower",
  6257. "text": "Desktop Tower"
  6258. },
  6259. {
  6260. "id": "materialize::details",
  6261. "text": "Details"
  6262. },
  6263. {
  6264. "id": "materialize::developer-board",
  6265. "text": "Developer Board"
  6266. },
  6267. {
  6268. "id": "materialize::deviantart",
  6269. "text": "Deviantart"
  6270. },
  6271. {
  6272. "id": "materialize::dialpad",
  6273. "text": "Dialpad"
  6274. },
  6275. {
  6276. "id": "materialize::diamond",
  6277. "text": "Diamond"
  6278. },
  6279. {
  6280. "id": "materialize::dice-1",
  6281. "text": "Dice 1"
  6282. },
  6283. {
  6284. "id": "materialize::dice-2",
  6285. "text": "Dice 2"
  6286. },
  6287. {
  6288. "id": "materialize::dice-3",
  6289. "text": "Dice 3"
  6290. },
  6291. {
  6292. "id": "materialize::dice-4",
  6293. "text": "Dice 4"
  6294. },
  6295. {
  6296. "id": "materialize::dice-5",
  6297. "text": "Dice 5"
  6298. },
  6299. {
  6300. "id": "materialize::dice-6",
  6301. "text": "Dice 6"
  6302. },
  6303. {
  6304. "id": "materialize::dice-d20",
  6305. "text": "Dice D20"
  6306. },
  6307. {
  6308. "id": "materialize::dice-d4",
  6309. "text": "Dice D4"
  6310. },
  6311. {
  6312. "id": "materialize::dice-d6",
  6313. "text": "Dice D6"
  6314. },
  6315. {
  6316. "id": "materialize::dice-d8",
  6317. "text": "Dice D8"
  6318. },
  6319. {
  6320. "id": "materialize::dictionary",
  6321. "text": "Dictionary"
  6322. },
  6323. {
  6324. "id": "materialize::directions",
  6325. "text": "Directions"
  6326. },
  6327. {
  6328. "id": "materialize::directions-fork",
  6329. "text": "Directions Fork"
  6330. },
  6331. {
  6332. "id": "materialize::discord",
  6333. "text": "Discord"
  6334. },
  6335. {
  6336. "id": "materialize::disk",
  6337. "text": "Disk"
  6338. },
  6339. {
  6340. "id": "materialize::disk-alert",
  6341. "text": "Disk Alert"
  6342. },
  6343. {
  6344. "id": "materialize::disqus",
  6345. "text": "Disqus"
  6346. },
  6347. {
  6348. "id": "materialize::disqus-outline",
  6349. "text": "Disqus Outline"
  6350. },
  6351. {
  6352. "id": "materialize::division",
  6353. "text": "Division"
  6354. },
  6355. {
  6356. "id": "materialize::division-box",
  6357. "text": "Division Box"
  6358. },
  6359. {
  6360. "id": "materialize::dna",
  6361. "text": "Dna"
  6362. },
  6363. {
  6364. "id": "materialize::dns",
  6365. "text": "Dns"
  6366. },
  6367. {
  6368. "id": "materialize::do-not-disturb",
  6369. "text": "Do Not Disturb"
  6370. },
  6371. {
  6372. "id": "materialize::do-not-disturb-off",
  6373. "text": "Do Not Disturb Off"
  6374. },
  6375. {
  6376. "id": "materialize::dolby",
  6377. "text": "Dolby"
  6378. },
  6379. {
  6380. "id": "materialize::domain",
  6381. "text": "Domain"
  6382. },
  6383. {
  6384. "id": "materialize::dots-horizontal",
  6385. "text": "Dots Horizontal"
  6386. },
  6387. {
  6388. "id": "materialize::dots-vertical",
  6389. "text": "Dots Vertical"
  6390. },
  6391. {
  6392. "id": "materialize::douban",
  6393. "text": "Douban"
  6394. },
  6395. {
  6396. "id": "materialize::download",
  6397. "text": "Download"
  6398. },
  6399. {
  6400. "id": "materialize::drag",
  6401. "text": "Drag"
  6402. },
  6403. {
  6404. "id": "materialize::drag-horizontal",
  6405. "text": "Drag Horizontal"
  6406. },
  6407. {
  6408. "id": "materialize::drag-vertical",
  6409. "text": "Drag Vertical"
  6410. },
  6411. {
  6412. "id": "materialize::drawing",
  6413. "text": "Drawing"
  6414. },
  6415. {
  6416. "id": "materialize::drawing-box",
  6417. "text": "Drawing Box"
  6418. },
  6419. {
  6420. "id": "materialize::dribbble",
  6421. "text": "Dribbble"
  6422. },
  6423. {
  6424. "id": "materialize::dribbble-box",
  6425. "text": "Dribbble Box"
  6426. },
  6427. {
  6428. "id": "materialize::drone",
  6429. "text": "Drone"
  6430. },
  6431. {
  6432. "id": "materialize::dropbox",
  6433. "text": "Dropbox"
  6434. },
  6435. {
  6436. "id": "materialize::drupal",
  6437. "text": "Drupal"
  6438. },
  6439. {
  6440. "id": "materialize::duck",
  6441. "text": "Duck"
  6442. },
  6443. {
  6444. "id": "materialize::dumbbell",
  6445. "text": "Dumbbell"
  6446. },
  6447. {
  6448. "id": "materialize::earth",
  6449. "text": "Earth"
  6450. },
  6451. {
  6452. "id": "materialize::earth-box",
  6453. "text": "Earth Box"
  6454. },
  6455. {
  6456. "id": "materialize::earth-box-off",
  6457. "text": "Earth Box Off"
  6458. },
  6459. {
  6460. "id": "materialize::earth-off",
  6461. "text": "Earth Off"
  6462. },
  6463. {
  6464. "id": "materialize::edge",
  6465. "text": "Edge"
  6466. },
  6467. {
  6468. "id": "materialize::eject",
  6469. "text": "Eject"
  6470. },
  6471. {
  6472. "id": "materialize::elevation-decline",
  6473. "text": "Elevation Decline"
  6474. },
  6475. {
  6476. "id": "materialize::elevation-rise",
  6477. "text": "Elevation Rise"
  6478. },
  6479. {
  6480. "id": "materialize::elevator",
  6481. "text": "Elevator"
  6482. },
  6483. {
  6484. "id": "materialize::email",
  6485. "text": "Email"
  6486. },
  6487. {
  6488. "id": "materialize::email-alert",
  6489. "text": "Email Alert"
  6490. },
  6491. {
  6492. "id": "materialize::email-open",
  6493. "text": "Email Open"
  6494. },
  6495. {
  6496. "id": "materialize::email-open-outline",
  6497. "text": "Email Open Outline"
  6498. },
  6499. {
  6500. "id": "materialize::email-outline",
  6501. "text": "Email Outline"
  6502. },
  6503. {
  6504. "id": "materialize::email-secure",
  6505. "text": "Email Secure"
  6506. },
  6507. {
  6508. "id": "materialize::email-variant",
  6509. "text": "Email Variant"
  6510. },
  6511. {
  6512. "id": "materialize::emby",
  6513. "text": "Emby"
  6514. },
  6515. {
  6516. "id": "materialize::emoticon",
  6517. "text": "Emoticon"
  6518. },
  6519. {
  6520. "id": "materialize::emoticon-cool",
  6521. "text": "Emoticon Cool"
  6522. },
  6523. {
  6524. "id": "materialize::emoticon-dead",
  6525. "text": "Emoticon Dead"
  6526. },
  6527. {
  6528. "id": "materialize::emoticon-devil",
  6529. "text": "Emoticon Devil"
  6530. },
  6531. {
  6532. "id": "materialize::emoticon-excited",
  6533. "text": "Emoticon Excited"
  6534. },
  6535. {
  6536. "id": "materialize::emoticon-happy",
  6537. "text": "Emoticon Happy"
  6538. },
  6539. {
  6540. "id": "materialize::emoticon-neutral",
  6541. "text": "Emoticon Neutral"
  6542. },
  6543. {
  6544. "id": "materialize::emoticon-poop",
  6545. "text": "Emoticon Poop"
  6546. },
  6547. {
  6548. "id": "materialize::emoticon-sad",
  6549. "text": "Emoticon Sad"
  6550. },
  6551. {
  6552. "id": "materialize::emoticon-tongue",
  6553. "text": "Emoticon Tongue"
  6554. },
  6555. {
  6556. "id": "materialize::engine",
  6557. "text": "Engine"
  6558. },
  6559. {
  6560. "id": "materialize::engine-outline",
  6561. "text": "Engine Outline"
  6562. },
  6563. {
  6564. "id": "materialize::equal",
  6565. "text": "Equal"
  6566. },
  6567. {
  6568. "id": "materialize::equal-box",
  6569. "text": "Equal Box"
  6570. },
  6571. {
  6572. "id": "materialize::eraser",
  6573. "text": "Eraser"
  6574. },
  6575. {
  6576. "id": "materialize::eraser-variant",
  6577. "text": "Eraser Variant"
  6578. },
  6579. {
  6580. "id": "materialize::escalator",
  6581. "text": "Escalator"
  6582. },
  6583. {
  6584. "id": "materialize::ethernet",
  6585. "text": "Ethernet"
  6586. },
  6587. {
  6588. "id": "materialize::ethernet-cable",
  6589. "text": "Ethernet Cable"
  6590. },
  6591. {
  6592. "id": "materialize::ethernet-cable-off",
  6593. "text": "Ethernet Cable Off"
  6594. },
  6595. {
  6596. "id": "materialize::etsy",
  6597. "text": "Etsy"
  6598. },
  6599. {
  6600. "id": "materialize::ev-station",
  6601. "text": "Ev Station"
  6602. },
  6603. {
  6604. "id": "materialize::evernote",
  6605. "text": "Evernote"
  6606. },
  6607. {
  6608. "id": "materialize::exclamation",
  6609. "text": "Exclamation"
  6610. },
  6611. {
  6612. "id": "materialize::exit-to-app",
  6613. "text": "Exit To App"
  6614. },
  6615. {
  6616. "id": "materialize::export",
  6617. "text": "Export"
  6618. },
  6619. {
  6620. "id": "materialize::eye",
  6621. "text": "Eye"
  6622. },
  6623. {
  6624. "id": "materialize::eye-off",
  6625. "text": "Eye Off"
  6626. },
  6627. {
  6628. "id": "materialize::eye-outline",
  6629. "text": "Eye Outline"
  6630. },
  6631. {
  6632. "id": "materialize::eye-outline-off",
  6633. "text": "Eye Outline Off"
  6634. },
  6635. {
  6636. "id": "materialize::eyedropper",
  6637. "text": "Eyedropper"
  6638. },
  6639. {
  6640. "id": "materialize::eyedropper-variant",
  6641. "text": "Eyedropper Variant"
  6642. },
  6643. {
  6644. "id": "materialize::face",
  6645. "text": "Face"
  6646. },
  6647. {
  6648. "id": "materialize::face-profile",
  6649. "text": "Face Profile"
  6650. },
  6651. {
  6652. "id": "materialize::facebook",
  6653. "text": "Facebook"
  6654. },
  6655. {
  6656. "id": "materialize::facebook-box",
  6657. "text": "Facebook Box"
  6658. },
  6659. {
  6660. "id": "materialize::facebook-messenger",
  6661. "text": "Facebook Messenger"
  6662. },
  6663. {
  6664. "id": "materialize::factory",
  6665. "text": "Factory"
  6666. },
  6667. {
  6668. "id": "materialize::fan",
  6669. "text": "Fan"
  6670. },
  6671. {
  6672. "id": "materialize::fast-forward",
  6673. "text": "Fast Forward"
  6674. },
  6675. {
  6676. "id": "materialize::fast-forward-outline",
  6677. "text": "Fast Forward Outline"
  6678. },
  6679. {
  6680. "id": "materialize::fax",
  6681. "text": "Fax"
  6682. },
  6683. {
  6684. "id": "materialize::feather",
  6685. "text": "Feather"
  6686. },
  6687. {
  6688. "id": "materialize::ferry",
  6689. "text": "Ferry"
  6690. },
  6691. {
  6692. "id": "materialize::file",
  6693. "text": "File"
  6694. },
  6695. {
  6696. "id": "materialize::file-chart",
  6697. "text": "File Chart"
  6698. },
  6699. {
  6700. "id": "materialize::file-check",
  6701. "text": "File Check"
  6702. },
  6703. {
  6704. "id": "materialize::file-cloud",
  6705. "text": "File Cloud"
  6706. },
  6707. {
  6708. "id": "materialize::file-delimited",
  6709. "text": "File Delimited"
  6710. },
  6711. {
  6712. "id": "materialize::file-document",
  6713. "text": "File Document"
  6714. },
  6715. {
  6716. "id": "materialize::file-document-box",
  6717. "text": "File Document Box"
  6718. },
  6719. {
  6720. "id": "materialize::file-excel",
  6721. "text": "File Excel"
  6722. },
  6723. {
  6724. "id": "materialize::file-excel-box",
  6725. "text": "File Excel Box"
  6726. },
  6727. {
  6728. "id": "materialize::file-export",
  6729. "text": "File Export"
  6730. },
  6731. {
  6732. "id": "materialize::file-find",
  6733. "text": "File Find"
  6734. },
  6735. {
  6736. "id": "materialize::file-hidden",
  6737. "text": "File Hidden"
  6738. },
  6739. {
  6740. "id": "materialize::file-image",
  6741. "text": "File Image"
  6742. },
  6743. {
  6744. "id": "materialize::file-import",
  6745. "text": "File Import"
  6746. },
  6747. {
  6748. "id": "materialize::file-lock",
  6749. "text": "File Lock"
  6750. },
  6751. {
  6752. "id": "materialize::file-multiple",
  6753. "text": "File Multiple"
  6754. },
  6755. {
  6756. "id": "materialize::file-music",
  6757. "text": "File Music"
  6758. },
  6759. {
  6760. "id": "materialize::file-outline",
  6761. "text": "File Outline"
  6762. },
  6763. {
  6764. "id": "materialize::file-pdf",
  6765. "text": "File Pdf"
  6766. },
  6767. {
  6768. "id": "materialize::file-pdf-box",
  6769. "text": "File Pdf Box"
  6770. },
  6771. {
  6772. "id": "materialize::file-powerpoint",
  6773. "text": "File Powerpoint"
  6774. },
  6775. {
  6776. "id": "materialize::file-powerpoint-box",
  6777. "text": "File Powerpoint Box"
  6778. },
  6779. {
  6780. "id": "materialize::file-presentation-box",
  6781. "text": "File Presentation Box"
  6782. },
  6783. {
  6784. "id": "materialize::file-restore",
  6785. "text": "File Restore"
  6786. },
  6787. {
  6788. "id": "materialize::file-send",
  6789. "text": "File Send"
  6790. },
  6791. {
  6792. "id": "materialize::file-tree",
  6793. "text": "File Tree"
  6794. },
  6795. {
  6796. "id": "materialize::file-video",
  6797. "text": "File Video"
  6798. },
  6799. {
  6800. "id": "materialize::file-word",
  6801. "text": "File Word"
  6802. },
  6803. {
  6804. "id": "materialize::file-word-box",
  6805. "text": "File Word Box"
  6806. },
  6807. {
  6808. "id": "materialize::file-xml",
  6809. "text": "File Xml"
  6810. },
  6811. {
  6812. "id": "materialize::film",
  6813. "text": "Film"
  6814. },
  6815. {
  6816. "id": "materialize::filmstrip",
  6817. "text": "Filmstrip"
  6818. },
  6819. {
  6820. "id": "materialize::filmstrip-off",
  6821. "text": "Filmstrip Off"
  6822. },
  6823. {
  6824. "id": "materialize::filter",
  6825. "text": "Filter"
  6826. },
  6827. {
  6828. "id": "materialize::filter-outline",
  6829. "text": "Filter Outline"
  6830. },
  6831. {
  6832. "id": "materialize::filter-remove",
  6833. "text": "Filter Remove"
  6834. },
  6835. {
  6836. "id": "materialize::filter-remove-outline",
  6837. "text": "Filter Remove Outline"
  6838. },
  6839. {
  6840. "id": "materialize::filter-variant",
  6841. "text": "Filter Variant"
  6842. },
  6843. {
  6844. "id": "materialize::find-replace",
  6845. "text": "Find Replace"
  6846. },
  6847. {
  6848. "id": "materialize::fingerprint",
  6849. "text": "Fingerprint"
  6850. },
  6851. {
  6852. "id": "materialize::fire",
  6853. "text": "Fire"
  6854. },
  6855. {
  6856. "id": "materialize::firefox",
  6857. "text": "Firefox"
  6858. },
  6859. {
  6860. "id": "materialize::fish",
  6861. "text": "Fish"
  6862. },
  6863. {
  6864. "id": "materialize::flag",
  6865. "text": "Flag"
  6866. },
  6867. {
  6868. "id": "materialize::flag-checkered",
  6869. "text": "Flag Checkered"
  6870. },
  6871. {
  6872. "id": "materialize::flag-outline",
  6873. "text": "Flag Outline"
  6874. },
  6875. {
  6876. "id": "materialize::flag-outline-variant",
  6877. "text": "Flag Outline Variant"
  6878. },
  6879. {
  6880. "id": "materialize::flag-triangle",
  6881. "text": "Flag Triangle"
  6882. },
  6883. {
  6884. "id": "materialize::flag-variant",
  6885. "text": "Flag Variant"
  6886. },
  6887. {
  6888. "id": "materialize::flash",
  6889. "text": "Flash"
  6890. },
  6891. {
  6892. "id": "materialize::flash-auto",
  6893. "text": "Flash Auto"
  6894. },
  6895. {
  6896. "id": "materialize::flash-off",
  6897. "text": "Flash Off"
  6898. },
  6899. {
  6900. "id": "materialize::flash-outline",
  6901. "text": "Flash Outline"
  6902. },
  6903. {
  6904. "id": "materialize::flash-red-eye",
  6905. "text": "Flash Red Eye"
  6906. },
  6907. {
  6908. "id": "materialize::flashlight",
  6909. "text": "Flashlight"
  6910. },
  6911. {
  6912. "id": "materialize::flashlight-off",
  6913. "text": "Flashlight Off"
  6914. },
  6915. {
  6916. "id": "materialize::flask",
  6917. "text": "Flask"
  6918. },
  6919. {
  6920. "id": "materialize::flask-empty",
  6921. "text": "Flask Empty"
  6922. },
  6923. {
  6924. "id": "materialize::flask-empty-outline",
  6925. "text": "Flask Empty Outline"
  6926. },
  6927. {
  6928. "id": "materialize::flask-outline",
  6929. "text": "Flask Outline"
  6930. },
  6931. {
  6932. "id": "materialize::flattr",
  6933. "text": "Flattr"
  6934. },
  6935. {
  6936. "id": "materialize::flip-to-back",
  6937. "text": "Flip To Back"
  6938. },
  6939. {
  6940. "id": "materialize::flip-to-front",
  6941. "text": "Flip To Front"
  6942. },
  6943. {
  6944. "id": "materialize::floppy",
  6945. "text": "Floppy"
  6946. },
  6947. {
  6948. "id": "materialize::flower",
  6949. "text": "Flower"
  6950. },
  6951. {
  6952. "id": "materialize::folder",
  6953. "text": "Folder"
  6954. },
  6955. {
  6956. "id": "materialize::folder-account",
  6957. "text": "Folder Account"
  6958. },
  6959. {
  6960. "id": "materialize::folder-download",
  6961. "text": "Folder Download"
  6962. },
  6963. {
  6964. "id": "materialize::folder-google-drive",
  6965. "text": "Folder Google Drive"
  6966. },
  6967. {
  6968. "id": "materialize::folder-image",
  6969. "text": "Folder Image"
  6970. },
  6971. {
  6972. "id": "materialize::folder-lock",
  6973. "text": "Folder Lock"
  6974. },
  6975. {
  6976. "id": "materialize::folder-lock-open",
  6977. "text": "Folder Lock Open"
  6978. },
  6979. {
  6980. "id": "materialize::folder-move",
  6981. "text": "Folder Move"
  6982. },
  6983. {
  6984. "id": "materialize::folder-multiple",
  6985. "text": "Folder Multiple"
  6986. },
  6987. {
  6988. "id": "materialize::folder-multiple-image",
  6989. "text": "Folder Multiple Image"
  6990. },
  6991. {
  6992. "id": "materialize::folder-multiple-outline",
  6993. "text": "Folder Multiple Outline"
  6994. },
  6995. {
  6996. "id": "materialize::folder-outline",
  6997. "text": "Folder Outline"
  6998. },
  6999. {
  7000. "id": "materialize::folder-plus",
  7001. "text": "Folder Plus"
  7002. },
  7003. {
  7004. "id": "materialize::folder-remove",
  7005. "text": "Folder Remove"
  7006. },
  7007. {
  7008. "id": "materialize::folder-star",
  7009. "text": "Folder Star"
  7010. },
  7011. {
  7012. "id": "materialize::folder-upload",
  7013. "text": "Folder Upload"
  7014. },
  7015. {
  7016. "id": "materialize::font-awesome",
  7017. "text": "Font Awesome"
  7018. },
  7019. {
  7020. "id": "materialize::food",
  7021. "text": "Food"
  7022. },
  7023. {
  7024. "id": "materialize::food-apple",
  7025. "text": "Food Apple"
  7026. },
  7027. {
  7028. "id": "materialize::food-fork-drink",
  7029. "text": "Food Fork Drink"
  7030. },
  7031. {
  7032. "id": "materialize::food-off",
  7033. "text": "Food Off"
  7034. },
  7035. {
  7036. "id": "materialize::food-variant",
  7037. "text": "Food Variant"
  7038. },
  7039. {
  7040. "id": "materialize::football",
  7041. "text": "Football"
  7042. },
  7043. {
  7044. "id": "materialize::football-australian",
  7045. "text": "Football Australian"
  7046. },
  7047. {
  7048. "id": "materialize::football-helmet",
  7049. "text": "Football Helmet"
  7050. },
  7051. {
  7052. "id": "materialize::format-align-center",
  7053. "text": "Format Align Center"
  7054. },
  7055. {
  7056. "id": "materialize::format-align-justify",
  7057. "text": "Format Align Justify"
  7058. },
  7059. {
  7060. "id": "materialize::format-align-left",
  7061. "text": "Format Align Left"
  7062. },
  7063. {
  7064. "id": "materialize::format-align-right",
  7065. "text": "Format Align Right"
  7066. },
  7067. {
  7068. "id": "materialize::format-annotation-plus",
  7069. "text": "Format Annotation Plus"
  7070. },
  7071. {
  7072. "id": "materialize::format-bold",
  7073. "text": "Format Bold"
  7074. },
  7075. {
  7076. "id": "materialize::format-clear",
  7077. "text": "Format Clear"
  7078. },
  7079. {
  7080. "id": "materialize::format-color-fill",
  7081. "text": "Format Color Fill"
  7082. },
  7083. {
  7084. "id": "materialize::format-color-text",
  7085. "text": "Format Color Text"
  7086. },
  7087. {
  7088. "id": "materialize::format-float-center",
  7089. "text": "Format Float Center"
  7090. },
  7091. {
  7092. "id": "materialize::format-float-left",
  7093. "text": "Format Float Left"
  7094. },
  7095. {
  7096. "id": "materialize::format-float-none",
  7097. "text": "Format Float None"
  7098. },
  7099. {
  7100. "id": "materialize::format-float-right",
  7101. "text": "Format Float Right"
  7102. },
  7103. {
  7104. "id": "materialize::format-font",
  7105. "text": "Format Font"
  7106. },
  7107. {
  7108. "id": "materialize::format-header-1",
  7109. "text": "Format Header 1"
  7110. },
  7111. {
  7112. "id": "materialize::format-header-2",
  7113. "text": "Format Header 2"
  7114. },
  7115. {
  7116. "id": "materialize::format-header-3",
  7117. "text": "Format Header 3"
  7118. },
  7119. {
  7120. "id": "materialize::format-header-4",
  7121. "text": "Format Header 4"
  7122. },
  7123. {
  7124. "id": "materialize::format-header-5",
  7125. "text": "Format Header 5"
  7126. },
  7127. {
  7128. "id": "materialize::format-header-6",
  7129. "text": "Format Header 6"
  7130. },
  7131. {
  7132. "id": "materialize::format-header-decrease",
  7133. "text": "Format Header Decrease"
  7134. },
  7135. {
  7136. "id": "materialize::format-header-equal",
  7137. "text": "Format Header Equal"
  7138. },
  7139. {
  7140. "id": "materialize::format-header-increase",
  7141. "text": "Format Header Increase"
  7142. },
  7143. {
  7144. "id": "materialize::format-header-pound",
  7145. "text": "Format Header Pound"
  7146. },
  7147. {
  7148. "id": "materialize::format-horizontal-align-center",
  7149. "text": "Format Horizontal Align Center"
  7150. },
  7151. {
  7152. "id": "materialize::format-horizontal-align-left",
  7153. "text": "Format Horizontal Align Left"
  7154. },
  7155. {
  7156. "id": "materialize::format-horizontal-align-right",
  7157. "text": "Format Horizontal Align Right"
  7158. },
  7159. {
  7160. "id": "materialize::format-indent-decrease",
  7161. "text": "Format Indent Decrease"
  7162. },
  7163. {
  7164. "id": "materialize::format-indent-increase",
  7165. "text": "Format Indent Increase"
  7166. },
  7167. {
  7168. "id": "materialize::format-italic",
  7169. "text": "Format Italic"
  7170. },
  7171. {
  7172. "id": "materialize::format-line-spacing",
  7173. "text": "Format Line Spacing"
  7174. },
  7175. {
  7176. "id": "materialize::format-line-style",
  7177. "text": "Format Line Style"
  7178. },
  7179. {
  7180. "id": "materialize::format-line-weight",
  7181. "text": "Format Line Weight"
  7182. },
  7183. {
  7184. "id": "materialize::format-list-bulleted",
  7185. "text": "Format List Bulleted"
  7186. },
  7187. {
  7188. "id": "materialize::format-list-bulleted-type",
  7189. "text": "Format List Bulleted Type"
  7190. },
  7191. {
  7192. "id": "materialize::format-list-numbers",
  7193. "text": "Format List Numbers"
  7194. },
  7195. {
  7196. "id": "materialize::format-page-break",
  7197. "text": "Format Page Break"
  7198. },
  7199. {
  7200. "id": "materialize::format-paint",
  7201. "text": "Format Paint"
  7202. },
  7203. {
  7204. "id": "materialize::format-paragraph",
  7205. "text": "Format Paragraph"
  7206. },
  7207. {
  7208. "id": "materialize::format-pilcrow",
  7209. "text": "Format Pilcrow"
  7210. },
  7211. {
  7212. "id": "materialize::format-quote",
  7213. "text": "Format Quote"
  7214. },
  7215. {
  7216. "id": "materialize::format-rotate-90",
  7217. "text": "Format Rotate 90"
  7218. },
  7219. {
  7220. "id": "materialize::format-section",
  7221. "text": "Format Section"
  7222. },
  7223. {
  7224. "id": "materialize::format-size",
  7225. "text": "Format Size"
  7226. },
  7227. {
  7228. "id": "materialize::format-strikethrough",
  7229. "text": "Format Strikethrough"
  7230. },
  7231. {
  7232. "id": "materialize::format-strikethrough-variant",
  7233. "text": "Format Strikethrough Variant"
  7234. },
  7235. {
  7236. "id": "materialize::format-subscript",
  7237. "text": "Format Subscript"
  7238. },
  7239. {
  7240. "id": "materialize::format-superscript",
  7241. "text": "Format Superscript"
  7242. },
  7243. {
  7244. "id": "materialize::format-text",
  7245. "text": "Format Text"
  7246. },
  7247. {
  7248. "id": "materialize::format-textdirection-l-to-r",
  7249. "text": "Format Textdirection L To R"
  7250. },
  7251. {
  7252. "id": "materialize::format-textdirection-r-to-l",
  7253. "text": "Format Textdirection R To L"
  7254. },
  7255. {
  7256. "id": "materialize::format-title",
  7257. "text": "Format Title"
  7258. },
  7259. {
  7260. "id": "materialize::format-underline",
  7261. "text": "Format Underline"
  7262. },
  7263. {
  7264. "id": "materialize::format-vertical-align-bottom",
  7265. "text": "Format Vertical Align Bottom"
  7266. },
  7267. {
  7268. "id": "materialize::format-vertical-align-center",
  7269. "text": "Format Vertical Align Center"
  7270. },
  7271. {
  7272. "id": "materialize::format-vertical-align-top",
  7273. "text": "Format Vertical Align Top"
  7274. },
  7275. {
  7276. "id": "materialize::format-wrap-inline",
  7277. "text": "Format Wrap Inline"
  7278. },
  7279. {
  7280. "id": "materialize::format-wrap-square",
  7281. "text": "Format Wrap Square"
  7282. },
  7283. {
  7284. "id": "materialize::format-wrap-tight",
  7285. "text": "Format Wrap Tight"
  7286. },
  7287. {
  7288. "id": "materialize::format-wrap-top-bottom",
  7289. "text": "Format Wrap Top Bottom"
  7290. },
  7291. {
  7292. "id": "materialize::forum",
  7293. "text": "Forum"
  7294. },
  7295. {
  7296. "id": "materialize::forward",
  7297. "text": "Forward"
  7298. },
  7299. {
  7300. "id": "materialize::foursquare",
  7301. "text": "Foursquare"
  7302. },
  7303. {
  7304. "id": "materialize::fridge",
  7305. "text": "Fridge"
  7306. },
  7307. {
  7308. "id": "materialize::fridge-filled",
  7309. "text": "Fridge Filled"
  7310. },
  7311. {
  7312. "id": "materialize::fridge-filled-bottom",
  7313. "text": "Fridge Filled Bottom"
  7314. },
  7315. {
  7316. "id": "materialize::fridge-filled-top",
  7317. "text": "Fridge Filled Top"
  7318. },
  7319. {
  7320. "id": "materialize::fullscreen",
  7321. "text": "Fullscreen"
  7322. },
  7323. {
  7324. "id": "materialize::fullscreen-exit",
  7325. "text": "Fullscreen Exit"
  7326. },
  7327. {
  7328. "id": "materialize::function",
  7329. "text": "Function"
  7330. },
  7331. {
  7332. "id": "materialize::gamepad",
  7333. "text": "Gamepad"
  7334. },
  7335. {
  7336. "id": "materialize::gamepad-variant",
  7337. "text": "Gamepad Variant"
  7338. },
  7339. {
  7340. "id": "materialize::garage",
  7341. "text": "Garage"
  7342. },
  7343. {
  7344. "id": "materialize::garage-open",
  7345. "text": "Garage Open"
  7346. },
  7347. {
  7348. "id": "materialize::gas-cylinder",
  7349. "text": "Gas Cylinder"
  7350. },
  7351. {
  7352. "id": "materialize::gas-station",
  7353. "text": "Gas Station"
  7354. },
  7355. {
  7356. "id": "materialize::gate",
  7357. "text": "Gate"
  7358. },
  7359. {
  7360. "id": "materialize::gauge",
  7361. "text": "Gauge"
  7362. },
  7363. {
  7364. "id": "materialize::gavel",
  7365. "text": "Gavel"
  7366. },
  7367. {
  7368. "id": "materialize::gender-female",
  7369. "text": "Gender Female"
  7370. },
  7371. {
  7372. "id": "materialize::gender-male",
  7373. "text": "Gender Male"
  7374. },
  7375. {
  7376. "id": "materialize::gender-male-female",
  7377. "text": "Gender Male Female"
  7378. },
  7379. {
  7380. "id": "materialize::gender-transgender",
  7381. "text": "Gender Transgender"
  7382. },
  7383. {
  7384. "id": "materialize::ghost",
  7385. "text": "Ghost"
  7386. },
  7387. {
  7388. "id": "materialize::gift",
  7389. "text": "Gift"
  7390. },
  7391. {
  7392. "id": "materialize::git",
  7393. "text": "Git"
  7394. },
  7395. {
  7396. "id": "materialize::github-box",
  7397. "text": "Github Box"
  7398. },
  7399. {
  7400. "id": "materialize::github-circle",
  7401. "text": "Github Circle"
  7402. },
  7403. {
  7404. "id": "materialize::github-face",
  7405. "text": "Github Face"
  7406. },
  7407. {
  7408. "id": "materialize::glass-flute",
  7409. "text": "Glass Flute"
  7410. },
  7411. {
  7412. "id": "materialize::glass-mug",
  7413. "text": "Glass Mug"
  7414. },
  7415. {
  7416. "id": "materialize::glass-stange",
  7417. "text": "Glass Stange"
  7418. },
  7419. {
  7420. "id": "materialize::glass-tulip",
  7421. "text": "Glass Tulip"
  7422. },
  7423. {
  7424. "id": "materialize::glassdoor",
  7425. "text": "Glassdoor"
  7426. },
  7427. {
  7428. "id": "materialize::glasses",
  7429. "text": "Glasses"
  7430. },
  7431. {
  7432. "id": "materialize::gmail",
  7433. "text": "Gmail"
  7434. },
  7435. {
  7436. "id": "materialize::gnome",
  7437. "text": "Gnome"
  7438. },
  7439. {
  7440. "id": "materialize::gondola",
  7441. "text": "Gondola"
  7442. },
  7443. {
  7444. "id": "materialize::google",
  7445. "text": "Google"
  7446. },
  7447. {
  7448. "id": "materialize::google-cardboard",
  7449. "text": "Google Cardboard"
  7450. },
  7451. {
  7452. "id": "materialize::google-chrome",
  7453. "text": "Google Chrome"
  7454. },
  7455. {
  7456. "id": "materialize::google-circles",
  7457. "text": "Google Circles"
  7458. },
  7459. {
  7460. "id": "materialize::google-circles-communities",
  7461. "text": "Google Circles Communities"
  7462. },
  7463. {
  7464. "id": "materialize::google-circles-extended",
  7465. "text": "Google Circles Extended"
  7466. },
  7467. {
  7468. "id": "materialize::google-circles-group",
  7469. "text": "Google Circles Group"
  7470. },
  7471. {
  7472. "id": "materialize::google-controller",
  7473. "text": "Google Controller"
  7474. },
  7475. {
  7476. "id": "materialize::google-controller-off",
  7477. "text": "Google Controller Off"
  7478. },
  7479. {
  7480. "id": "materialize::google-drive",
  7481. "text": "Google Drive"
  7482. },
  7483. {
  7484. "id": "materialize::google-earth",
  7485. "text": "Google Earth"
  7486. },
  7487. {
  7488. "id": "materialize::google-glass",
  7489. "text": "Google Glass"
  7490. },
  7491. {
  7492. "id": "materialize::google-keep",
  7493. "text": "Google Keep"
  7494. },
  7495. {
  7496. "id": "materialize::google-maps",
  7497. "text": "Google Maps"
  7498. },
  7499. {
  7500. "id": "materialize::google-nearby",
  7501. "text": "Google Nearby"
  7502. },
  7503. {
  7504. "id": "materialize::google-pages",
  7505. "text": "Google Pages"
  7506. },
  7507. {
  7508. "id": "materialize::google-photos",
  7509. "text": "Google Photos"
  7510. },
  7511. {
  7512. "id": "materialize::google-physical-web",
  7513. "text": "Google Physical Web"
  7514. },
  7515. {
  7516. "id": "materialize::google-play",
  7517. "text": "Google Play"
  7518. },
  7519. {
  7520. "id": "materialize::google-plus",
  7521. "text": "Google Plus"
  7522. },
  7523. {
  7524. "id": "materialize::google-plus-box",
  7525. "text": "Google Plus Box"
  7526. },
  7527. {
  7528. "id": "materialize::google-translate",
  7529. "text": "Google Translate"
  7530. },
  7531. {
  7532. "id": "materialize::google-wallet",
  7533. "text": "Google Wallet"
  7534. },
  7535. {
  7536. "id": "materialize::gradient",
  7537. "text": "Gradient"
  7538. },
  7539. {
  7540. "id": "materialize::grease-pencil",
  7541. "text": "Grease Pencil"
  7542. },
  7543. {
  7544. "id": "materialize::grid",
  7545. "text": "Grid"
  7546. },
  7547. {
  7548. "id": "materialize::grid-off",
  7549. "text": "Grid Off"
  7550. },
  7551. {
  7552. "id": "materialize::group",
  7553. "text": "Group"
  7554. },
  7555. {
  7556. "id": "materialize::guitar-electric",
  7557. "text": "Guitar Electric"
  7558. },
  7559. {
  7560. "id": "materialize::guitar-pick",
  7561. "text": "Guitar Pick"
  7562. },
  7563. {
  7564. "id": "materialize::guitar-pick-outline",
  7565. "text": "Guitar Pick Outline"
  7566. },
  7567. {
  7568. "id": "materialize::hackernews",
  7569. "text": "Hackernews"
  7570. },
  7571. {
  7572. "id": "materialize::hamburger",
  7573. "text": "Hamburger"
  7574. },
  7575. {
  7576. "id": "materialize::hand-pointing-right",
  7577. "text": "Hand Pointing Right"
  7578. },
  7579. {
  7580. "id": "materialize::hanger",
  7581. "text": "Hanger"
  7582. },
  7583. {
  7584. "id": "materialize::hangouts",
  7585. "text": "Hangouts"
  7586. },
  7587. {
  7588. "id": "materialize::harddisk",
  7589. "text": "Harddisk"
  7590. },
  7591. {
  7592. "id": "materialize::headphones",
  7593. "text": "Headphones"
  7594. },
  7595. {
  7596. "id": "materialize::headphones-box",
  7597. "text": "Headphones Box"
  7598. },
  7599. {
  7600. "id": "materialize::headphones-settings",
  7601. "text": "Headphones Settings"
  7602. },
  7603. {
  7604. "id": "materialize::headset",
  7605. "text": "Headset"
  7606. },
  7607. {
  7608. "id": "materialize::headset-dock",
  7609. "text": "Headset Dock"
  7610. },
  7611. {
  7612. "id": "materialize::headset-off",
  7613. "text": "Headset Off"
  7614. },
  7615. {
  7616. "id": "materialize::heart",
  7617. "text": "Heart"
  7618. },
  7619. {
  7620. "id": "materialize::heart-box",
  7621. "text": "Heart Box"
  7622. },
  7623. {
  7624. "id": "materialize::heart-box-outline",
  7625. "text": "Heart Box Outline"
  7626. },
  7627. {
  7628. "id": "materialize::heart-broken",
  7629. "text": "Heart Broken"
  7630. },
  7631. {
  7632. "id": "materialize::heart-half-outline",
  7633. "text": "Heart Half Outline"
  7634. },
  7635. {
  7636. "id": "materialize::heart-half-part",
  7637. "text": "Heart Half Part"
  7638. },
  7639. {
  7640. "id": "materialize::heart-half-part-outline",
  7641. "text": "Heart Half Part Outline"
  7642. },
  7643. {
  7644. "id": "materialize::heart-outline",
  7645. "text": "Heart Outline"
  7646. },
  7647. {
  7648. "id": "materialize::heart-pulse",
  7649. "text": "Heart Pulse"
  7650. },
  7651. {
  7652. "id": "materialize::help",
  7653. "text": "Help"
  7654. },
  7655. {
  7656. "id": "materialize::help-circle",
  7657. "text": "Help Circle"
  7658. },
  7659. {
  7660. "id": "materialize::help-circle-outline",
  7661. "text": "Help Circle Outline"
  7662. },
  7663. {
  7664. "id": "materialize::hexagon",
  7665. "text": "Hexagon"
  7666. },
  7667. {
  7668. "id": "materialize::hexagon-multiple",
  7669. "text": "Hexagon Multiple"
  7670. },
  7671. {
  7672. "id": "materialize::hexagon-outline",
  7673. "text": "Hexagon Outline"
  7674. },
  7675. {
  7676. "id": "materialize::highway",
  7677. "text": "Highway"
  7678. },
  7679. {
  7680. "id": "materialize::history",
  7681. "text": "History"
  7682. },
  7683. {
  7684. "id": "materialize::hololens",
  7685. "text": "Hololens"
  7686. },
  7687. {
  7688. "id": "materialize::home",
  7689. "text": "Home"
  7690. },
  7691. {
  7692. "id": "materialize::home-map-marker",
  7693. "text": "Home Map Marker"
  7694. },
  7695. {
  7696. "id": "materialize::home-modern",
  7697. "text": "Home Modern"
  7698. },
  7699. {
  7700. "id": "materialize::home-outline",
  7701. "text": "Home Outline"
  7702. },
  7703. {
  7704. "id": "materialize::home-variant",
  7705. "text": "Home Variant"
  7706. },
  7707. {
  7708. "id": "materialize::hook",
  7709. "text": "Hook"
  7710. },
  7711. {
  7712. "id": "materialize::hook-off",
  7713. "text": "Hook Off"
  7714. },
  7715. {
  7716. "id": "materialize::hops",
  7717. "text": "Hops"
  7718. },
  7719. {
  7720. "id": "materialize::hospital",
  7721. "text": "Hospital"
  7722. },
  7723. {
  7724. "id": "materialize::hospital-building",
  7725. "text": "Hospital Building"
  7726. },
  7727. {
  7728. "id": "materialize::hospital-marker",
  7729. "text": "Hospital Marker"
  7730. },
  7731. {
  7732. "id": "materialize::hotel",
  7733. "text": "Hotel"
  7734. },
  7735. {
  7736. "id": "materialize::houzz",
  7737. "text": "Houzz"
  7738. },
  7739. {
  7740. "id": "materialize::houzz-box",
  7741. "text": "Houzz Box"
  7742. },
  7743. {
  7744. "id": "materialize::human",
  7745. "text": "Human"
  7746. },
  7747. {
  7748. "id": "materialize::human-child",
  7749. "text": "Human Child"
  7750. },
  7751. {
  7752. "id": "materialize::human-female",
  7753. "text": "Human Female"
  7754. },
  7755. {
  7756. "id": "materialize::human-greeting",
  7757. "text": "Human Greeting"
  7758. },
  7759. {
  7760. "id": "materialize::human-handsdown",
  7761. "text": "Human Handsdown"
  7762. },
  7763. {
  7764. "id": "materialize::human-handsup",
  7765. "text": "Human Handsup"
  7766. },
  7767. {
  7768. "id": "materialize::human-male",
  7769. "text": "Human Male"
  7770. },
  7771. {
  7772. "id": "materialize::human-male-female",
  7773. "text": "Human Male Female"
  7774. },
  7775. {
  7776. "id": "materialize::human-pregnant",
  7777. "text": "Human Pregnant"
  7778. },
  7779. {
  7780. "id": "materialize::image",
  7781. "text": "Image"
  7782. },
  7783. {
  7784. "id": "materialize::image-album",
  7785. "text": "Image Album"
  7786. },
  7787. {
  7788. "id": "materialize::image-area",
  7789. "text": "Image Area"
  7790. },
  7791. {
  7792. "id": "materialize::image-area-close",
  7793. "text": "Image Area Close"
  7794. },
  7795. {
  7796. "id": "materialize::image-broken",
  7797. "text": "Image Broken"
  7798. },
  7799. {
  7800. "id": "materialize::image-broken-variant",
  7801. "text": "Image Broken Variant"
  7802. },
  7803. {
  7804. "id": "materialize::image-filter",
  7805. "text": "Image Filter"
  7806. },
  7807. {
  7808. "id": "materialize::image-filter-black-white",
  7809. "text": "Image Filter Black White"
  7810. },
  7811. {
  7812. "id": "materialize::image-filter-center-focus",
  7813. "text": "Image Filter Center Focus"
  7814. },
  7815. {
  7816. "id": "materialize::image-filter-center-focus-weak",
  7817. "text": "Image Filter Center Focus Weak"
  7818. },
  7819. {
  7820. "id": "materialize::image-filter-drama",
  7821. "text": "Image Filter Drama"
  7822. },
  7823. {
  7824. "id": "materialize::image-filter-frames",
  7825. "text": "Image Filter Frames"
  7826. },
  7827. {
  7828. "id": "materialize::image-filter-hdr",
  7829. "text": "Image Filter Hdr"
  7830. },
  7831. {
  7832. "id": "materialize::image-filter-none",
  7833. "text": "Image Filter None"
  7834. },
  7835. {
  7836. "id": "materialize::image-filter-tilt-shift",
  7837. "text": "Image Filter Tilt Shift"
  7838. },
  7839. {
  7840. "id": "materialize::image-filter-vintage",
  7841. "text": "Image Filter Vintage"
  7842. },
  7843. {
  7844. "id": "materialize::image-multiple",
  7845. "text": "Image Multiple"
  7846. },
  7847. {
  7848. "id": "materialize::import",
  7849. "text": "Import"
  7850. },
  7851. {
  7852. "id": "materialize::inbox",
  7853. "text": "Inbox"
  7854. },
  7855. {
  7856. "id": "materialize::inbox-arrow-down",
  7857. "text": "Inbox Arrow Down"
  7858. },
  7859. {
  7860. "id": "materialize::inbox-arrow-up",
  7861. "text": "Inbox Arrow Up"
  7862. },
  7863. {
  7864. "id": "materialize::incognito",
  7865. "text": "Incognito"
  7866. },
  7867. {
  7868. "id": "materialize::infinity",
  7869. "text": "Infinity"
  7870. },
  7871. {
  7872. "id": "materialize::information",
  7873. "text": "Information"
  7874. },
  7875. {
  7876. "id": "materialize::information-outline",
  7877. "text": "Information Outline"
  7878. },
  7879. {
  7880. "id": "materialize::information-variant",
  7881. "text": "Information Variant"
  7882. },
  7883. {
  7884. "id": "materialize::instagram",
  7885. "text": "Instagram"
  7886. },
  7887. {
  7888. "id": "materialize::instapaper",
  7889. "text": "Instapaper"
  7890. },
  7891. {
  7892. "id": "materialize::internet-explorer",
  7893. "text": "Internet Explorer"
  7894. },
  7895. {
  7896. "id": "materialize::invert-colors",
  7897. "text": "Invert Colors"
  7898. },
  7899. {
  7900. "id": "materialize::itunes",
  7901. "text": "Itunes"
  7902. },
  7903. {
  7904. "id": "materialize::jeepney",
  7905. "text": "Jeepney"
  7906. },
  7907. {
  7908. "id": "materialize::jira",
  7909. "text": "Jira"
  7910. },
  7911. {
  7912. "id": "materialize::jsfiddle",
  7913. "text": "Jsfiddle"
  7914. },
  7915. {
  7916. "id": "materialize::json",
  7917. "text": "Json"
  7918. },
  7919. {
  7920. "id": "materialize::keg",
  7921. "text": "Keg"
  7922. },
  7923. {
  7924. "id": "materialize::kettle",
  7925. "text": "Kettle"
  7926. },
  7927. {
  7928. "id": "materialize::key",
  7929. "text": "Key"
  7930. },
  7931. {
  7932. "id": "materialize::key-change",
  7933. "text": "Key Change"
  7934. },
  7935. {
  7936. "id": "materialize::key-minus",
  7937. "text": "Key Minus"
  7938. },
  7939. {
  7940. "id": "materialize::key-plus",
  7941. "text": "Key Plus"
  7942. },
  7943. {
  7944. "id": "materialize::key-remove",
  7945. "text": "Key Remove"
  7946. },
  7947. {
  7948. "id": "materialize::key-variant",
  7949. "text": "Key Variant"
  7950. },
  7951. {
  7952. "id": "materialize::keyboard",
  7953. "text": "Keyboard"
  7954. },
  7955. {
  7956. "id": "materialize::keyboard-backspace",
  7957. "text": "Keyboard Backspace"
  7958. },
  7959. {
  7960. "id": "materialize::keyboard-caps",
  7961. "text": "Keyboard Caps"
  7962. },
  7963. {
  7964. "id": "materialize::keyboard-close",
  7965. "text": "Keyboard Close"
  7966. },
  7967. {
  7968. "id": "materialize::keyboard-off",
  7969. "text": "Keyboard Off"
  7970. },
  7971. {
  7972. "id": "materialize::keyboard-return",
  7973. "text": "Keyboard Return"
  7974. },
  7975. {
  7976. "id": "materialize::keyboard-tab",
  7977. "text": "Keyboard Tab"
  7978. },
  7979. {
  7980. "id": "materialize::keyboard-variant",
  7981. "text": "Keyboard Variant"
  7982. },
  7983. {
  7984. "id": "materialize::kodi",
  7985. "text": "Kodi"
  7986. },
  7987. {
  7988. "id": "materialize::label",
  7989. "text": "Label"
  7990. },
  7991. {
  7992. "id": "materialize::label-outline",
  7993. "text": "Label Outline"
  7994. },
  7995. {
  7996. "id": "materialize::lambda",
  7997. "text": "Lambda"
  7998. },
  7999. {
  8000. "id": "materialize::lamp",
  8001. "text": "Lamp"
  8002. },
  8003. {
  8004. "id": "materialize::lan",
  8005. "text": "Lan"
  8006. },
  8007. {
  8008. "id": "materialize::lan-connect",
  8009. "text": "Lan Connect"
  8010. },
  8011. {
  8012. "id": "materialize::lan-disconnect",
  8013. "text": "Lan Disconnect"
  8014. },
  8015. {
  8016. "id": "materialize::lan-pending",
  8017. "text": "Lan Pending"
  8018. },
  8019. {
  8020. "id": "materialize::language-c",
  8021. "text": "Language C"
  8022. },
  8023. {
  8024. "id": "materialize::language-cpp",
  8025. "text": "Language Cpp"
  8026. },
  8027. {
  8028. "id": "materialize::language-csharp",
  8029. "text": "Language Csharp"
  8030. },
  8031. {
  8032. "id": "materialize::language-css3",
  8033. "text": "Language Css3"
  8034. },
  8035. {
  8036. "id": "materialize::language-html5",
  8037. "text": "Language Html5"
  8038. },
  8039. {
  8040. "id": "materialize::language-javascript",
  8041. "text": "Language Javascript"
  8042. },
  8043. {
  8044. "id": "materialize::language-php",
  8045. "text": "Language Php"
  8046. },
  8047. {
  8048. "id": "materialize::language-python",
  8049. "text": "Language Python"
  8050. },
  8051. {
  8052. "id": "materialize::language-python-text",
  8053. "text": "Language Python Text"
  8054. },
  8055. {
  8056. "id": "materialize::language-swift",
  8057. "text": "Language Swift"
  8058. },
  8059. {
  8060. "id": "materialize::language-typescript",
  8061. "text": "Language Typescript"
  8062. },
  8063. {
  8064. "id": "materialize::laptop",
  8065. "text": "Laptop"
  8066. },
  8067. {
  8068. "id": "materialize::laptop-chromebook",
  8069. "text": "Laptop Chromebook"
  8070. },
  8071. {
  8072. "id": "materialize::laptop-mac",
  8073. "text": "Laptop Mac"
  8074. },
  8075. {
  8076. "id": "materialize::laptop-off",
  8077. "text": "Laptop Off"
  8078. },
  8079. {
  8080. "id": "materialize::laptop-windows",
  8081. "text": "Laptop Windows"
  8082. },
  8083. {
  8084. "id": "materialize::lastfm",
  8085. "text": "Lastfm"
  8086. },
  8087. {
  8088. "id": "materialize::launch",
  8089. "text": "Launch"
  8090. },
  8091. {
  8092. "id": "materialize::layers",
  8093. "text": "Layers"
  8094. },
  8095. {
  8096. "id": "materialize::layers-off",
  8097. "text": "Layers Off"
  8098. },
  8099. {
  8100. "id": "materialize::lead-pencil",
  8101. "text": "Lead Pencil"
  8102. },
  8103. {
  8104. "id": "materialize::leaf",
  8105. "text": "Leaf"
  8106. },
  8107. {
  8108. "id": "materialize::led-off",
  8109. "text": "Led Off"
  8110. },
  8111. {
  8112. "id": "materialize::led-on",
  8113. "text": "Led On"
  8114. },
  8115. {
  8116. "id": "materialize::led-outline",
  8117. "text": "Led Outline"
  8118. },
  8119. {
  8120. "id": "materialize::led-variant-off",
  8121. "text": "Led Variant Off"
  8122. },
  8123. {
  8124. "id": "materialize::led-variant-on",
  8125. "text": "Led Variant On"
  8126. },
  8127. {
  8128. "id": "materialize::led-variant-outline",
  8129. "text": "Led Variant Outline"
  8130. },
  8131. {
  8132. "id": "materialize::library",
  8133. "text": "Library"
  8134. },
  8135. {
  8136. "id": "materialize::library-books",
  8137. "text": "Library Books"
  8138. },
  8139. {
  8140. "id": "materialize::library-music",
  8141. "text": "Library Music"
  8142. },
  8143. {
  8144. "id": "materialize::library-plus",
  8145. "text": "Library Plus"
  8146. },
  8147. {
  8148. "id": "materialize::lightbulb",
  8149. "text": "Lightbulb"
  8150. },
  8151. {
  8152. "id": "materialize::lightbulb-on",
  8153. "text": "Lightbulb On"
  8154. },
  8155. {
  8156. "id": "materialize::lightbulb-on-outline",
  8157. "text": "Lightbulb On Outline"
  8158. },
  8159. {
  8160. "id": "materialize::lightbulb-outline",
  8161. "text": "Lightbulb Outline"
  8162. },
  8163. {
  8164. "id": "materialize::link",
  8165. "text": "Link"
  8166. },
  8167. {
  8168. "id": "materialize::link-off",
  8169. "text": "Link Off"
  8170. },
  8171. {
  8172. "id": "materialize::link-variant",
  8173. "text": "Link Variant"
  8174. },
  8175. {
  8176. "id": "materialize::link-variant-off",
  8177. "text": "Link Variant Off"
  8178. },
  8179. {
  8180. "id": "materialize::linkedin",
  8181. "text": "Linkedin"
  8182. },
  8183. {
  8184. "id": "materialize::linkedin-box",
  8185. "text": "Linkedin Box"
  8186. },
  8187. {
  8188. "id": "materialize::linux",
  8189. "text": "Linux"
  8190. },
  8191. {
  8192. "id": "materialize::lock",
  8193. "text": "Lock"
  8194. },
  8195. {
  8196. "id": "materialize::lock-open",
  8197. "text": "Lock Open"
  8198. },
  8199. {
  8200. "id": "materialize::lock-open-outline",
  8201. "text": "Lock Open Outline"
  8202. },
  8203. {
  8204. "id": "materialize::lock-outline",
  8205. "text": "Lock Outline"
  8206. },
  8207. {
  8208. "id": "materialize::lock-pattern",
  8209. "text": "Lock Pattern"
  8210. },
  8211. {
  8212. "id": "materialize::lock-plus",
  8213. "text": "Lock Plus"
  8214. },
  8215. {
  8216. "id": "materialize::login",
  8217. "text": "Login"
  8218. },
  8219. {
  8220. "id": "materialize::login-variant",
  8221. "text": "Login Variant"
  8222. },
  8223. {
  8224. "id": "materialize::logout",
  8225. "text": "Logout"
  8226. },
  8227. {
  8228. "id": "materialize::logout-variant",
  8229. "text": "Logout Variant"
  8230. },
  8231. {
  8232. "id": "materialize::looks",
  8233. "text": "Looks"
  8234. },
  8235. {
  8236. "id": "materialize::loop",
  8237. "text": "Loop"
  8238. },
  8239. {
  8240. "id": "materialize::loupe",
  8241. "text": "Loupe"
  8242. },
  8243. {
  8244. "id": "materialize::lumx",
  8245. "text": "Lumx"
  8246. },
  8247. {
  8248. "id": "materialize::magnet",
  8249. "text": "Magnet"
  8250. },
  8251. {
  8252. "id": "materialize::magnet-on",
  8253. "text": "Magnet On"
  8254. },
  8255. {
  8256. "id": "materialize::magnify",
  8257. "text": "Magnify"
  8258. },
  8259. {
  8260. "id": "materialize::magnify-minus",
  8261. "text": "Magnify Minus"
  8262. },
  8263. {
  8264. "id": "materialize::magnify-minus-outline",
  8265. "text": "Magnify Minus Outline"
  8266. },
  8267. {
  8268. "id": "materialize::magnify-plus",
  8269. "text": "Magnify Plus"
  8270. },
  8271. {
  8272. "id": "materialize::magnify-plus-outline",
  8273. "text": "Magnify Plus Outline"
  8274. },
  8275. {
  8276. "id": "materialize::mail-ru",
  8277. "text": "Mail Ru"
  8278. },
  8279. {
  8280. "id": "materialize::mailbox",
  8281. "text": "Mailbox"
  8282. },
  8283. {
  8284. "id": "materialize::map",
  8285. "text": "Map"
  8286. },
  8287. {
  8288. "id": "materialize::map-marker",
  8289. "text": "Map Marker"
  8290. },
  8291. {
  8292. "id": "materialize::map-marker-circle",
  8293. "text": "Map Marker Circle"
  8294. },
  8295. {
  8296. "id": "materialize::map-marker-minus",
  8297. "text": "Map Marker Minus"
  8298. },
  8299. {
  8300. "id": "materialize::map-marker-multiple",
  8301. "text": "Map Marker Multiple"
  8302. },
  8303. {
  8304. "id": "materialize::map-marker-off",
  8305. "text": "Map Marker Off"
  8306. },
  8307. {
  8308. "id": "materialize::map-marker-plus",
  8309. "text": "Map Marker Plus"
  8310. },
  8311. {
  8312. "id": "materialize::map-marker-radius",
  8313. "text": "Map Marker Radius"
  8314. },
  8315. {
  8316. "id": "materialize::margin",
  8317. "text": "Margin"
  8318. },
  8319. {
  8320. "id": "materialize::markdown",
  8321. "text": "Markdown"
  8322. },
  8323. {
  8324. "id": "materialize::marker",
  8325. "text": "Marker"
  8326. },
  8327. {
  8328. "id": "materialize::marker-check",
  8329. "text": "Marker Check"
  8330. },
  8331. {
  8332. "id": "materialize::martini",
  8333. "text": "Martini"
  8334. },
  8335. {
  8336. "id": "materialize::material-ui",
  8337. "text": "Material Ui"
  8338. },
  8339. {
  8340. "id": "materialize::math-compass",
  8341. "text": "Math Compass"
  8342. },
  8343. {
  8344. "id": "materialize::matrix",
  8345. "text": "Matrix"
  8346. },
  8347. {
  8348. "id": "materialize::maxcdn",
  8349. "text": "Maxcdn"
  8350. },
  8351. {
  8352. "id": "materialize::medical-bag",
  8353. "text": "Medical Bag"
  8354. },
  8355. {
  8356. "id": "materialize::medium",
  8357. "text": "Medium"
  8358. },
  8359. {
  8360. "id": "materialize::memory",
  8361. "text": "Memory"
  8362. },
  8363. {
  8364. "id": "materialize::menu",
  8365. "text": "Menu"
  8366. },
  8367. {
  8368. "id": "materialize::menu-down",
  8369. "text": "Menu Down"
  8370. },
  8371. {
  8372. "id": "materialize::menu-down-outline",
  8373. "text": "Menu Down Outline"
  8374. },
  8375. {
  8376. "id": "materialize::menu-left",
  8377. "text": "Menu Left"
  8378. },
  8379. {
  8380. "id": "materialize::menu-right",
  8381. "text": "Menu Right"
  8382. },
  8383. {
  8384. "id": "materialize::menu-up",
  8385. "text": "Menu Up"
  8386. },
  8387. {
  8388. "id": "materialize::menu-up-outline",
  8389. "text": "Menu Up Outline"
  8390. },
  8391. {
  8392. "id": "materialize::message",
  8393. "text": "Message"
  8394. },
  8395. {
  8396. "id": "materialize::message-alert",
  8397. "text": "Message Alert"
  8398. },
  8399. {
  8400. "id": "materialize::message-bulleted",
  8401. "text": "Message Bulleted"
  8402. },
  8403. {
  8404. "id": "materialize::message-bulleted-off",
  8405. "text": "Message Bulleted Off"
  8406. },
  8407. {
  8408. "id": "materialize::message-draw",
  8409. "text": "Message Draw"
  8410. },
  8411. {
  8412. "id": "materialize::message-image",
  8413. "text": "Message Image"
  8414. },
  8415. {
  8416. "id": "materialize::message-outline",
  8417. "text": "Message Outline"
  8418. },
  8419. {
  8420. "id": "materialize::message-plus",
  8421. "text": "Message Plus"
  8422. },
  8423. {
  8424. "id": "materialize::message-processing",
  8425. "text": "Message Processing"
  8426. },
  8427. {
  8428. "id": "materialize::message-reply",
  8429. "text": "Message Reply"
  8430. },
  8431. {
  8432. "id": "materialize::message-reply-text",
  8433. "text": "Message Reply Text"
  8434. },
  8435. {
  8436. "id": "materialize::message-settings",
  8437. "text": "Message Settings"
  8438. },
  8439. {
  8440. "id": "materialize::message-settings-variant",
  8441. "text": "Message Settings Variant"
  8442. },
  8443. {
  8444. "id": "materialize::message-text",
  8445. "text": "Message Text"
  8446. },
  8447. {
  8448. "id": "materialize::message-text-outline",
  8449. "text": "Message Text Outline"
  8450. },
  8451. {
  8452. "id": "materialize::message-video",
  8453. "text": "Message Video"
  8454. },
  8455. {
  8456. "id": "materialize::meteor",
  8457. "text": "Meteor"
  8458. },
  8459. {
  8460. "id": "materialize::microphone",
  8461. "text": "Microphone"
  8462. },
  8463. {
  8464. "id": "materialize::microphone-off",
  8465. "text": "Microphone Off"
  8466. },
  8467. {
  8468. "id": "materialize::microphone-outline",
  8469. "text": "Microphone Outline"
  8470. },
  8471. {
  8472. "id": "materialize::microphone-settings",
  8473. "text": "Microphone Settings"
  8474. },
  8475. {
  8476. "id": "materialize::microphone-variant",
  8477. "text": "Microphone Variant"
  8478. },
  8479. {
  8480. "id": "materialize::microphone-variant-off",
  8481. "text": "Microphone Variant Off"
  8482. },
  8483. {
  8484. "id": "materialize::microscope",
  8485. "text": "Microscope"
  8486. },
  8487. {
  8488. "id": "materialize::microsoft",
  8489. "text": "Microsoft"
  8490. },
  8491. {
  8492. "id": "materialize::minecraft",
  8493. "text": "Minecraft"
  8494. },
  8495. {
  8496. "id": "materialize::minus",
  8497. "text": "Minus"
  8498. },
  8499. {
  8500. "id": "materialize::minus-box",
  8501. "text": "Minus Box"
  8502. },
  8503. {
  8504. "id": "materialize::minus-box-outline",
  8505. "text": "Minus Box Outline"
  8506. },
  8507. {
  8508. "id": "materialize::minus-circle",
  8509. "text": "Minus Circle"
  8510. },
  8511. {
  8512. "id": "materialize::minus-circle-outline",
  8513. "text": "Minus Circle Outline"
  8514. },
  8515. {
  8516. "id": "materialize::minus-network",
  8517. "text": "Minus Network"
  8518. },
  8519. {
  8520. "id": "materialize::mixcloud",
  8521. "text": "Mixcloud"
  8522. },
  8523. {
  8524. "id": "materialize::monitor",
  8525. "text": "Monitor"
  8526. },
  8527. {
  8528. "id": "materialize::monitor-multiple",
  8529. "text": "Monitor Multiple"
  8530. },
  8531. {
  8532. "id": "materialize::more",
  8533. "text": "More"
  8534. },
  8535. {
  8536. "id": "materialize::motorbike",
  8537. "text": "Motorbike"
  8538. },
  8539. {
  8540. "id": "materialize::mouse",
  8541. "text": "Mouse"
  8542. },
  8543. {
  8544. "id": "materialize::mouse-off",
  8545. "text": "Mouse Off"
  8546. },
  8547. {
  8548. "id": "materialize::mouse-variant",
  8549. "text": "Mouse Variant"
  8550. },
  8551. {
  8552. "id": "materialize::mouse-variant-off",
  8553. "text": "Mouse Variant Off"
  8554. },
  8555. {
  8556. "id": "materialize::move-resize",
  8557. "text": "Move Resize"
  8558. },
  8559. {
  8560. "id": "materialize::move-resize-variant",
  8561. "text": "Move Resize Variant"
  8562. },
  8563. {
  8564. "id": "materialize::movie",
  8565. "text": "Movie"
  8566. },
  8567. {
  8568. "id": "materialize::multiplication",
  8569. "text": "Multiplication"
  8570. },
  8571. {
  8572. "id": "materialize::multiplication-box",
  8573. "text": "Multiplication Box"
  8574. },
  8575. {
  8576. "id": "materialize::music-box",
  8577. "text": "Music Box"
  8578. },
  8579. {
  8580. "id": "materialize::music-box-outline",
  8581. "text": "Music Box Outline"
  8582. },
  8583. {
  8584. "id": "materialize::music-circle",
  8585. "text": "Music Circle"
  8586. },
  8587. {
  8588. "id": "materialize::music-note",
  8589. "text": "Music Note"
  8590. },
  8591. {
  8592. "id": "materialize::music-note-bluetooth",
  8593. "text": "Music Note Bluetooth"
  8594. },
  8595. {
  8596. "id": "materialize::music-note-bluetooth-off",
  8597. "text": "Music Note Bluetooth Off"
  8598. },
  8599. {
  8600. "id": "materialize::music-note-eighth",
  8601. "text": "Music Note Eighth"
  8602. },
  8603. {
  8604. "id": "materialize::music-note-half",
  8605. "text": "Music Note Half"
  8606. },
  8607. {
  8608. "id": "materialize::music-note-off",
  8609. "text": "Music Note Off"
  8610. },
  8611. {
  8612. "id": "materialize::music-note-quarter",
  8613. "text": "Music Note Quarter"
  8614. },
  8615. {
  8616. "id": "materialize::music-note-sixteenth",
  8617. "text": "Music Note Sixteenth"
  8618. },
  8619. {
  8620. "id": "materialize::music-note-whole",
  8621. "text": "Music Note Whole"
  8622. },
  8623. {
  8624. "id": "materialize::nature",
  8625. "text": "Nature"
  8626. },
  8627. {
  8628. "id": "materialize::nature-people",
  8629. "text": "Nature People"
  8630. },
  8631. {
  8632. "id": "materialize::navigation",
  8633. "text": "Navigation"
  8634. },
  8635. {
  8636. "id": "materialize::near-me",
  8637. "text": "Near Me"
  8638. },
  8639. {
  8640. "id": "materialize::needle",
  8641. "text": "Needle"
  8642. },
  8643. {
  8644. "id": "materialize::nest-protect",
  8645. "text": "Nest Protect"
  8646. },
  8647. {
  8648. "id": "materialize::nest-thermostat",
  8649. "text": "Nest Thermostat"
  8650. },
  8651. {
  8652. "id": "materialize::network",
  8653. "text": "Network"
  8654. },
  8655. {
  8656. "id": "materialize::network-download",
  8657. "text": "Network Download"
  8658. },
  8659. {
  8660. "id": "materialize::network-question",
  8661. "text": "Network Question"
  8662. },
  8663. {
  8664. "id": "materialize::network-upload",
  8665. "text": "Network Upload"
  8666. },
  8667. {
  8668. "id": "materialize::new-box",
  8669. "text": "New Box"
  8670. },
  8671. {
  8672. "id": "materialize::newspaper",
  8673. "text": "Newspaper"
  8674. },
  8675. {
  8676. "id": "materialize::nfc",
  8677. "text": "Nfc"
  8678. },
  8679. {
  8680. "id": "materialize::nfc-tap",
  8681. "text": "Nfc Tap"
  8682. },
  8683. {
  8684. "id": "materialize::nfc-variant",
  8685. "text": "Nfc Variant"
  8686. },
  8687. {
  8688. "id": "materialize::nodejs",
  8689. "text": "Nodejs"
  8690. },
  8691. {
  8692. "id": "materialize::note",
  8693. "text": "Note"
  8694. },
  8695. {
  8696. "id": "materialize::note-multiple",
  8697. "text": "Note Multiple"
  8698. },
  8699. {
  8700. "id": "materialize::note-multiple-outline",
  8701. "text": "Note Multiple Outline"
  8702. },
  8703. {
  8704. "id": "materialize::note-outline",
  8705. "text": "Note Outline"
  8706. },
  8707. {
  8708. "id": "materialize::note-plus",
  8709. "text": "Note Plus"
  8710. },
  8711. {
  8712. "id": "materialize::note-plus-outline",
  8713. "text": "Note Plus Outline"
  8714. },
  8715. {
  8716. "id": "materialize::note-text",
  8717. "text": "Note Text"
  8718. },
  8719. {
  8720. "id": "materialize::notification-clear-all",
  8721. "text": "Notification Clear All"
  8722. },
  8723. {
  8724. "id": "materialize::npm",
  8725. "text": "Npm"
  8726. },
  8727. {
  8728. "id": "materialize::nuke",
  8729. "text": "Nuke"
  8730. },
  8731. {
  8732. "id": "materialize::numeric",
  8733. "text": "Numeric"
  8734. },
  8735. {
  8736. "id": "materialize::numeric-0-box",
  8737. "text": "Numeric 0 Box"
  8738. },
  8739. {
  8740. "id": "materialize::numeric-0-box-multiple-outline",
  8741. "text": "Numeric 0 Box Multiple Outline"
  8742. },
  8743. {
  8744. "id": "materialize::numeric-0-box-outline",
  8745. "text": "Numeric 0 Box Outline"
  8746. },
  8747. {
  8748. "id": "materialize::numeric-1-box",
  8749. "text": "Numeric 1 Box"
  8750. },
  8751. {
  8752. "id": "materialize::numeric-1-box-multiple-outline",
  8753. "text": "Numeric 1 Box Multiple Outline"
  8754. },
  8755. {
  8756. "id": "materialize::numeric-1-box-outline",
  8757. "text": "Numeric 1 Box Outline"
  8758. },
  8759. {
  8760. "id": "materialize::numeric-2-box",
  8761. "text": "Numeric 2 Box"
  8762. },
  8763. {
  8764. "id": "materialize::numeric-2-box-multiple-outline",
  8765. "text": "Numeric 2 Box Multiple Outline"
  8766. },
  8767. {
  8768. "id": "materialize::numeric-2-box-outline",
  8769. "text": "Numeric 2 Box Outline"
  8770. },
  8771. {
  8772. "id": "materialize::numeric-3-box",
  8773. "text": "Numeric 3 Box"
  8774. },
  8775. {
  8776. "id": "materialize::numeric-3-box-multiple-outline",
  8777. "text": "Numeric 3 Box Multiple Outline"
  8778. },
  8779. {
  8780. "id": "materialize::numeric-3-box-outline",
  8781. "text": "Numeric 3 Box Outline"
  8782. },
  8783. {
  8784. "id": "materialize::numeric-4-box",
  8785. "text": "Numeric 4 Box"
  8786. },
  8787. {
  8788. "id": "materialize::numeric-4-box-multiple-outline",
  8789. "text": "Numeric 4 Box Multiple Outline"
  8790. },
  8791. {
  8792. "id": "materialize::numeric-4-box-outline",
  8793. "text": "Numeric 4 Box Outline"
  8794. },
  8795. {
  8796. "id": "materialize::numeric-5-box",
  8797. "text": "Numeric 5 Box"
  8798. },
  8799. {
  8800. "id": "materialize::numeric-5-box-multiple-outline",
  8801. "text": "Numeric 5 Box Multiple Outline"
  8802. },
  8803. {
  8804. "id": "materialize::numeric-5-box-outline",
  8805. "text": "Numeric 5 Box Outline"
  8806. },
  8807. {
  8808. "id": "materialize::numeric-6-box",
  8809. "text": "Numeric 6 Box"
  8810. },
  8811. {
  8812. "id": "materialize::numeric-6-box-multiple-outline",
  8813. "text": "Numeric 6 Box Multiple Outline"
  8814. },
  8815. {
  8816. "id": "materialize::numeric-6-box-outline",
  8817. "text": "Numeric 6 Box Outline"
  8818. },
  8819. {
  8820. "id": "materialize::numeric-7-box",
  8821. "text": "Numeric 7 Box"
  8822. },
  8823. {
  8824. "id": "materialize::numeric-7-box-multiple-outline",
  8825. "text": "Numeric 7 Box Multiple Outline"
  8826. },
  8827. {
  8828. "id": "materialize::numeric-7-box-outline",
  8829. "text": "Numeric 7 Box Outline"
  8830. },
  8831. {
  8832. "id": "materialize::numeric-8-box",
  8833. "text": "Numeric 8 Box"
  8834. },
  8835. {
  8836. "id": "materialize::numeric-8-box-multiple-outline",
  8837. "text": "Numeric 8 Box Multiple Outline"
  8838. },
  8839. {
  8840. "id": "materialize::numeric-8-box-outline",
  8841. "text": "Numeric 8 Box Outline"
  8842. },
  8843. {
  8844. "id": "materialize::numeric-9-box",
  8845. "text": "Numeric 9 Box"
  8846. },
  8847. {
  8848. "id": "materialize::numeric-9-box-multiple-outline",
  8849. "text": "Numeric 9 Box Multiple Outline"
  8850. },
  8851. {
  8852. "id": "materialize::numeric-9-box-outline",
  8853. "text": "Numeric 9 Box Outline"
  8854. },
  8855. {
  8856. "id": "materialize::numeric-9-plus-box",
  8857. "text": "Numeric 9 Plus Box"
  8858. },
  8859. {
  8860. "id": "materialize::numeric-9-plus-box-multiple-outline",
  8861. "text": "Numeric 9 Plus Box Multiple Outline"
  8862. },
  8863. {
  8864. "id": "materialize::numeric-9-plus-box-outline",
  8865. "text": "Numeric 9 Plus Box Outline"
  8866. },
  8867. {
  8868. "id": "materialize::nut",
  8869. "text": "Nut"
  8870. },
  8871. {
  8872. "id": "materialize::nutrition",
  8873. "text": "Nutrition"
  8874. },
  8875. {
  8876. "id": "materialize::oar",
  8877. "text": "Oar"
  8878. },
  8879. {
  8880. "id": "materialize::octagon",
  8881. "text": "Octagon"
  8882. },
  8883. {
  8884. "id": "materialize::octagon-outline",
  8885. "text": "Octagon Outline"
  8886. },
  8887. {
  8888. "id": "materialize::octagram",
  8889. "text": "Octagram"
  8890. },
  8891. {
  8892. "id": "materialize::odnoklassniki",
  8893. "text": "Odnoklassniki"
  8894. },
  8895. {
  8896. "id": "materialize::office",
  8897. "text": "Office"
  8898. },
  8899. {
  8900. "id": "materialize::oil",
  8901. "text": "Oil"
  8902. },
  8903. {
  8904. "id": "materialize::oil-temperature",
  8905. "text": "Oil Temperature"
  8906. },
  8907. {
  8908. "id": "materialize::omega",
  8909. "text": "Omega"
  8910. },
  8911. {
  8912. "id": "materialize::onedrive",
  8913. "text": "Onedrive"
  8914. },
  8915. {
  8916. "id": "materialize::opacity",
  8917. "text": "Opacity"
  8918. },
  8919. {
  8920. "id": "materialize::open-in-app",
  8921. "text": "Open In App"
  8922. },
  8923. {
  8924. "id": "materialize::open-in-new",
  8925. "text": "Open In New"
  8926. },
  8927. {
  8928. "id": "materialize::openid",
  8929. "text": "Openid"
  8930. },
  8931. {
  8932. "id": "materialize::opera",
  8933. "text": "Opera"
  8934. },
  8935. {
  8936. "id": "materialize::ornament",
  8937. "text": "Ornament"
  8938. },
  8939. {
  8940. "id": "materialize::ornament-variant",
  8941. "text": "Ornament Variant"
  8942. },
  8943. {
  8944. "id": "materialize::owl",
  8945. "text": "Owl"
  8946. },
  8947. {
  8948. "id": "materialize::package",
  8949. "text": "Package"
  8950. },
  8951. {
  8952. "id": "materialize::package-down",
  8953. "text": "Package Down"
  8954. },
  8955. {
  8956. "id": "materialize::package-up",
  8957. "text": "Package Up"
  8958. },
  8959. {
  8960. "id": "materialize::package-variant",
  8961. "text": "Package Variant"
  8962. },
  8963. {
  8964. "id": "materialize::package-variant-closed",
  8965. "text": "Package Variant Closed"
  8966. },
  8967. {
  8968. "id": "materialize::page-first",
  8969. "text": "Page First"
  8970. },
  8971. {
  8972. "id": "materialize::page-last",
  8973. "text": "Page Last"
  8974. },
  8975. {
  8976. "id": "materialize::page-layout-body",
  8977. "text": "Page Layout Body"
  8978. },
  8979. {
  8980. "id": "materialize::page-layout-footer",
  8981. "text": "Page Layout Footer"
  8982. },
  8983. {
  8984. "id": "materialize::page-layout-header",
  8985. "text": "Page Layout Header"
  8986. },
  8987. {
  8988. "id": "materialize::page-layout-sidebar-left",
  8989. "text": "Page Layout Sidebar Left"
  8990. },
  8991. {
  8992. "id": "materialize::page-layout-sidebar-right",
  8993. "text": "Page Layout Sidebar Right"
  8994. },
  8995. {
  8996. "id": "materialize::palette",
  8997. "text": "Palette"
  8998. },
  8999. {
  9000. "id": "materialize::palette-advanced",
  9001. "text": "Palette Advanced"
  9002. },
  9003. {
  9004. "id": "materialize::panda",
  9005. "text": "Panda"
  9006. },
  9007. {
  9008. "id": "materialize::pandora",
  9009. "text": "Pandora"
  9010. },
  9011. {
  9012. "id": "materialize::panorama",
  9013. "text": "Panorama"
  9014. },
  9015. {
  9016. "id": "materialize::panorama-fisheye",
  9017. "text": "Panorama Fisheye"
  9018. },
  9019. {
  9020. "id": "materialize::panorama-horizontal",
  9021. "text": "Panorama Horizontal"
  9022. },
  9023. {
  9024. "id": "materialize::panorama-vertical",
  9025. "text": "Panorama Vertical"
  9026. },
  9027. {
  9028. "id": "materialize::panorama-wide-angle",
  9029. "text": "Panorama Wide Angle"
  9030. },
  9031. {
  9032. "id": "materialize::paper-cut-vertical",
  9033. "text": "Paper Cut Vertical"
  9034. },
  9035. {
  9036. "id": "materialize::paperclip",
  9037. "text": "Paperclip"
  9038. },
  9039. {
  9040. "id": "materialize::parking",
  9041. "text": "Parking"
  9042. },
  9043. {
  9044. "id": "materialize::pause",
  9045. "text": "Pause"
  9046. },
  9047. {
  9048. "id": "materialize::pause-circle",
  9049. "text": "Pause Circle"
  9050. },
  9051. {
  9052. "id": "materialize::pause-circle-outline",
  9053. "text": "Pause Circle Outline"
  9054. },
  9055. {
  9056. "id": "materialize::pause-octagon",
  9057. "text": "Pause Octagon"
  9058. },
  9059. {
  9060. "id": "materialize::pause-octagon-outline",
  9061. "text": "Pause Octagon Outline"
  9062. },
  9063. {
  9064. "id": "materialize::paw",
  9065. "text": "Paw"
  9066. },
  9067. {
  9068. "id": "materialize::paw-off",
  9069. "text": "Paw Off"
  9070. },
  9071. {
  9072. "id": "materialize::pen",
  9073. "text": "Pen"
  9074. },
  9075. {
  9076. "id": "materialize::pencil",
  9077. "text": "Pencil"
  9078. },
  9079. {
  9080. "id": "materialize::pencil-box",
  9081. "text": "Pencil Box"
  9082. },
  9083. {
  9084. "id": "materialize::pencil-box-outline",
  9085. "text": "Pencil Box Outline"
  9086. },
  9087. {
  9088. "id": "materialize::pencil-circle",
  9089. "text": "Pencil Circle"
  9090. },
  9091. {
  9092. "id": "materialize::pencil-lock",
  9093. "text": "Pencil Lock"
  9094. },
  9095. {
  9096. "id": "materialize::pencil-off",
  9097. "text": "Pencil Off"
  9098. },
  9099. {
  9100. "id": "materialize::pentagon",
  9101. "text": "Pentagon"
  9102. },
  9103. {
  9104. "id": "materialize::pentagon-outline",
  9105. "text": "Pentagon Outline"
  9106. },
  9107. {
  9108. "id": "materialize::percent",
  9109. "text": "Percent"
  9110. },
  9111. {
  9112. "id": "materialize::pharmacy",
  9113. "text": "Pharmacy"
  9114. },
  9115. {
  9116. "id": "materialize::phone",
  9117. "text": "Phone"
  9118. },
  9119. {
  9120. "id": "materialize::phone-bluetooth",
  9121. "text": "Phone Bluetooth"
  9122. },
  9123. {
  9124. "id": "materialize::phone-classic",
  9125. "text": "Phone Classic"
  9126. },
  9127. {
  9128. "id": "materialize::phone-forward",
  9129. "text": "Phone Forward"
  9130. },
  9131. {
  9132. "id": "materialize::phone-hangup",
  9133. "text": "Phone Hangup"
  9134. },
  9135. {
  9136. "id": "materialize::phone-in-talk",
  9137. "text": "Phone In Talk"
  9138. },
  9139. {
  9140. "id": "materialize::phone-incoming",
  9141. "text": "Phone Incoming"
  9142. },
  9143. {
  9144. "id": "materialize::phone-locked",
  9145. "text": "Phone Locked"
  9146. },
  9147. {
  9148. "id": "materialize::phone-log",
  9149. "text": "Phone Log"
  9150. },
  9151. {
  9152. "id": "materialize::phone-minus",
  9153. "text": "Phone Minus"
  9154. },
  9155. {
  9156. "id": "materialize::phone-missed",
  9157. "text": "Phone Missed"
  9158. },
  9159. {
  9160. "id": "materialize::phone-outgoing",
  9161. "text": "Phone Outgoing"
  9162. },
  9163. {
  9164. "id": "materialize::phone-paused",
  9165. "text": "Phone Paused"
  9166. },
  9167. {
  9168. "id": "materialize::phone-plus",
  9169. "text": "Phone Plus"
  9170. },
  9171. {
  9172. "id": "materialize::phone-settings",
  9173. "text": "Phone Settings"
  9174. },
  9175. {
  9176. "id": "materialize::phone-voip",
  9177. "text": "Phone Voip"
  9178. },
  9179. {
  9180. "id": "materialize::pi",
  9181. "text": "Pi"
  9182. },
  9183. {
  9184. "id": "materialize::pi-box",
  9185. "text": "Pi Box"
  9186. },
  9187. {
  9188. "id": "materialize::piano",
  9189. "text": "Piano"
  9190. },
  9191. {
  9192. "id": "materialize::pig",
  9193. "text": "Pig"
  9194. },
  9195. {
  9196. "id": "materialize::pill",
  9197. "text": "Pill"
  9198. },
  9199. {
  9200. "id": "materialize::pillar",
  9201. "text": "Pillar"
  9202. },
  9203. {
  9204. "id": "materialize::pin",
  9205. "text": "Pin"
  9206. },
  9207. {
  9208. "id": "materialize::pin-off",
  9209. "text": "Pin Off"
  9210. },
  9211. {
  9212. "id": "materialize::pine-tree",
  9213. "text": "Pine Tree"
  9214. },
  9215. {
  9216. "id": "materialize::pine-tree-box",
  9217. "text": "Pine Tree Box"
  9218. },
  9219. {
  9220. "id": "materialize::pinterest",
  9221. "text": "Pinterest"
  9222. },
  9223. {
  9224. "id": "materialize::pinterest-box",
  9225. "text": "Pinterest Box"
  9226. },
  9227. {
  9228. "id": "materialize::pistol",
  9229. "text": "Pistol"
  9230. },
  9231. {
  9232. "id": "materialize::pizza",
  9233. "text": "Pizza"
  9234. },
  9235. {
  9236. "id": "materialize::plane-shield",
  9237. "text": "Plane Shield"
  9238. },
  9239. {
  9240. "id": "materialize::play",
  9241. "text": "Play"
  9242. },
  9243. {
  9244. "id": "materialize::play-box-outline",
  9245. "text": "Play Box Outline"
  9246. },
  9247. {
  9248. "id": "materialize::play-circle",
  9249. "text": "Play Circle"
  9250. },
  9251. {
  9252. "id": "materialize::play-circle-outline",
  9253. "text": "Play Circle Outline"
  9254. },
  9255. {
  9256. "id": "materialize::play-pause",
  9257. "text": "Play Pause"
  9258. },
  9259. {
  9260. "id": "materialize::play-protected-content",
  9261. "text": "Play Protected Content"
  9262. },
  9263. {
  9264. "id": "materialize::playlist-check",
  9265. "text": "Playlist Check"
  9266. },
  9267. {
  9268. "id": "materialize::playlist-minus",
  9269. "text": "Playlist Minus"
  9270. },
  9271. {
  9272. "id": "materialize::playlist-play",
  9273. "text": "Playlist Play"
  9274. },
  9275. {
  9276. "id": "materialize::playlist-plus",
  9277. "text": "Playlist Plus"
  9278. },
  9279. {
  9280. "id": "materialize::playlist-remove",
  9281. "text": "Playlist Remove"
  9282. },
  9283. {
  9284. "id": "materialize::playstation",
  9285. "text": "Playstation"
  9286. },
  9287. {
  9288. "id": "materialize::plex",
  9289. "text": "Plex"
  9290. },
  9291. {
  9292. "id": "materialize::plus",
  9293. "text": "Plus"
  9294. },
  9295. {
  9296. "id": "materialize::plus-box",
  9297. "text": "Plus Box"
  9298. },
  9299. {
  9300. "id": "materialize::plus-box-outline",
  9301. "text": "Plus Box Outline"
  9302. },
  9303. {
  9304. "id": "materialize::plus-circle",
  9305. "text": "Plus Circle"
  9306. },
  9307. {
  9308. "id": "materialize::plus-circle-multiple-outline",
  9309. "text": "Plus Circle Multiple Outline"
  9310. },
  9311. {
  9312. "id": "materialize::plus-circle-outline",
  9313. "text": "Plus Circle Outline"
  9314. },
  9315. {
  9316. "id": "materialize::plus-network",
  9317. "text": "Plus Network"
  9318. },
  9319. {
  9320. "id": "materialize::plus-one",
  9321. "text": "Plus One"
  9322. },
  9323. {
  9324. "id": "materialize::plus-outline",
  9325. "text": "Plus Outline"
  9326. },
  9327. {
  9328. "id": "materialize::pocket",
  9329. "text": "Pocket"
  9330. },
  9331. {
  9332. "id": "materialize::pokeball",
  9333. "text": "Pokeball"
  9334. },
  9335. {
  9336. "id": "materialize::polaroid",
  9337. "text": "Polaroid"
  9338. },
  9339. {
  9340. "id": "materialize::poll",
  9341. "text": "Poll"
  9342. },
  9343. {
  9344. "id": "materialize::poll-box",
  9345. "text": "Poll Box"
  9346. },
  9347. {
  9348. "id": "materialize::polymer",
  9349. "text": "Polymer"
  9350. },
  9351. {
  9352. "id": "materialize::pool",
  9353. "text": "Pool"
  9354. },
  9355. {
  9356. "id": "materialize::popcorn",
  9357. "text": "Popcorn"
  9358. },
  9359. {
  9360. "id": "materialize::pot",
  9361. "text": "Pot"
  9362. },
  9363. {
  9364. "id": "materialize::pot-mix",
  9365. "text": "Pot Mix"
  9366. },
  9367. {
  9368. "id": "materialize::pound",
  9369. "text": "Pound"
  9370. },
  9371. {
  9372. "id": "materialize::pound-box",
  9373. "text": "Pound Box"
  9374. },
  9375. {
  9376. "id": "materialize::power",
  9377. "text": "Power"
  9378. },
  9379. {
  9380. "id": "materialize::power-plug",
  9381. "text": "Power Plug"
  9382. },
  9383. {
  9384. "id": "materialize::power-plug-off",
  9385. "text": "Power Plug Off"
  9386. },
  9387. {
  9388. "id": "materialize::power-settings",
  9389. "text": "Power Settings"
  9390. },
  9391. {
  9392. "id": "materialize::power-socket",
  9393. "text": "Power Socket"
  9394. },
  9395. {
  9396. "id": "materialize::prescription",
  9397. "text": "Prescription"
  9398. },
  9399. {
  9400. "id": "materialize::presentation",
  9401. "text": "Presentation"
  9402. },
  9403. {
  9404. "id": "materialize::presentation-play",
  9405. "text": "Presentation Play"
  9406. },
  9407. {
  9408. "id": "materialize::printer",
  9409. "text": "Printer"
  9410. },
  9411. {
  9412. "id": "materialize::printer-3d",
  9413. "text": "Printer 3d"
  9414. },
  9415. {
  9416. "id": "materialize::printer-alert",
  9417. "text": "Printer Alert"
  9418. },
  9419. {
  9420. "id": "materialize::printer-settings",
  9421. "text": "Printer Settings"
  9422. },
  9423. {
  9424. "id": "materialize::priority-high",
  9425. "text": "Priority High"
  9426. },
  9427. {
  9428. "id": "materialize::priority-low",
  9429. "text": "Priority Low"
  9430. },
  9431. {
  9432. "id": "materialize::professional-hexagon",
  9433. "text": "Professional Hexagon"
  9434. },
  9435. {
  9436. "id": "materialize::projector",
  9437. "text": "Projector"
  9438. },
  9439. {
  9440. "id": "materialize::projector-screen",
  9441. "text": "Projector Screen"
  9442. },
  9443. {
  9444. "id": "materialize::publish",
  9445. "text": "Publish"
  9446. },
  9447. {
  9448. "id": "materialize::pulse",
  9449. "text": "Pulse"
  9450. },
  9451. {
  9452. "id": "materialize::puzzle",
  9453. "text": "Puzzle"
  9454. },
  9455. {
  9456. "id": "materialize::qqchat",
  9457. "text": "Qqchat"
  9458. },
  9459. {
  9460. "id": "materialize::qrcode",
  9461. "text": "Qrcode"
  9462. },
  9463. {
  9464. "id": "materialize::qrcode-scan",
  9465. "text": "Qrcode Scan"
  9466. },
  9467. {
  9468. "id": "materialize::quadcopter",
  9469. "text": "Quadcopter"
  9470. },
  9471. {
  9472. "id": "materialize::quality-high",
  9473. "text": "Quality High"
  9474. },
  9475. {
  9476. "id": "materialize::quicktime",
  9477. "text": "Quicktime"
  9478. },
  9479. {
  9480. "id": "materialize::radar",
  9481. "text": "Radar"
  9482. },
  9483. {
  9484. "id": "materialize::radiator",
  9485. "text": "Radiator"
  9486. },
  9487. {
  9488. "id": "materialize::radio",
  9489. "text": "Radio"
  9490. },
  9491. {
  9492. "id": "materialize::radio-handheld",
  9493. "text": "Radio Handheld"
  9494. },
  9495. {
  9496. "id": "materialize::radio-tower",
  9497. "text": "Radio Tower"
  9498. },
  9499. {
  9500. "id": "materialize::radioactive",
  9501. "text": "Radioactive"
  9502. },
  9503. {
  9504. "id": "materialize::radiobox-blank",
  9505. "text": "Radiobox Blank"
  9506. },
  9507. {
  9508. "id": "materialize::radiobox-marked",
  9509. "text": "Radiobox Marked"
  9510. },
  9511. {
  9512. "id": "materialize::raspberrypi",
  9513. "text": "Raspberrypi"
  9514. },
  9515. {
  9516. "id": "materialize::ray-end",
  9517. "text": "Ray End"
  9518. },
  9519. {
  9520. "id": "materialize::ray-end-arrow",
  9521. "text": "Ray End Arrow"
  9522. },
  9523. {
  9524. "id": "materialize::ray-start",
  9525. "text": "Ray Start"
  9526. },
  9527. {
  9528. "id": "materialize::ray-start-arrow",
  9529. "text": "Ray Start Arrow"
  9530. },
  9531. {
  9532. "id": "materialize::ray-start-end",
  9533. "text": "Ray Start End"
  9534. },
  9535. {
  9536. "id": "materialize::ray-vertex",
  9537. "text": "Ray Vertex"
  9538. },
  9539. {
  9540. "id": "materialize::rdio",
  9541. "text": "Rdio"
  9542. },
  9543. {
  9544. "id": "materialize::react",
  9545. "text": "React"
  9546. },
  9547. {
  9548. "id": "materialize::read",
  9549. "text": "Read"
  9550. },
  9551. {
  9552. "id": "materialize::readability",
  9553. "text": "Readability"
  9554. },
  9555. {
  9556. "id": "materialize::receipt",
  9557. "text": "Receipt"
  9558. },
  9559. {
  9560. "id": "materialize::record",
  9561. "text": "Record"
  9562. },
  9563. {
  9564. "id": "materialize::record-rec",
  9565. "text": "Record Rec"
  9566. },
  9567. {
  9568. "id": "materialize::recycle",
  9569. "text": "Recycle"
  9570. },
  9571. {
  9572. "id": "materialize::reddit",
  9573. "text": "Reddit"
  9574. },
  9575. {
  9576. "id": "materialize::redo",
  9577. "text": "Redo"
  9578. },
  9579. {
  9580. "id": "materialize::redo-variant",
  9581. "text": "Redo Variant"
  9582. },
  9583. {
  9584. "id": "materialize::refresh",
  9585. "text": "Refresh"
  9586. },
  9587. {
  9588. "id": "materialize::regex",
  9589. "text": "Regex"
  9590. },
  9591. {
  9592. "id": "materialize::relative-scale",
  9593. "text": "Relative Scale"
  9594. },
  9595. {
  9596. "id": "materialize::reload",
  9597. "text": "Reload"
  9598. },
  9599. {
  9600. "id": "materialize::remote",
  9601. "text": "Remote"
  9602. },
  9603. {
  9604. "id": "materialize::rename-box",
  9605. "text": "Rename Box"
  9606. },
  9607. {
  9608. "id": "materialize::reorder-horizontal",
  9609. "text": "Reorder Horizontal"
  9610. },
  9611. {
  9612. "id": "materialize::reorder-vertical",
  9613. "text": "Reorder Vertical"
  9614. },
  9615. {
  9616. "id": "materialize::repeat",
  9617. "text": "Repeat"
  9618. },
  9619. {
  9620. "id": "materialize::repeat-off",
  9621. "text": "Repeat Off"
  9622. },
  9623. {
  9624. "id": "materialize::repeat-once",
  9625. "text": "Repeat Once"
  9626. },
  9627. {
  9628. "id": "materialize::replay",
  9629. "text": "Replay"
  9630. },
  9631. {
  9632. "id": "materialize::reply",
  9633. "text": "Reply"
  9634. },
  9635. {
  9636. "id": "materialize::reply-all",
  9637. "text": "Reply All"
  9638. },
  9639. {
  9640. "id": "materialize::reproduction",
  9641. "text": "Reproduction"
  9642. },
  9643. {
  9644. "id": "materialize::resize-bottom-right",
  9645. "text": "Resize Bottom Right"
  9646. },
  9647. {
  9648. "id": "materialize::responsive",
  9649. "text": "Responsive"
  9650. },
  9651. {
  9652. "id": "materialize::restart",
  9653. "text": "Restart"
  9654. },
  9655. {
  9656. "id": "materialize::restore",
  9657. "text": "Restore"
  9658. },
  9659. {
  9660. "id": "materialize::rewind",
  9661. "text": "Rewind"
  9662. },
  9663. {
  9664. "id": "materialize::rewind-outline",
  9665. "text": "Rewind Outline"
  9666. },
  9667. {
  9668. "id": "materialize::rhombus",
  9669. "text": "Rhombus"
  9670. },
  9671. {
  9672. "id": "materialize::rhombus-outline",
  9673. "text": "Rhombus Outline"
  9674. },
  9675. {
  9676. "id": "materialize::ribbon",
  9677. "text": "Ribbon"
  9678. },
  9679. {
  9680. "id": "materialize::road",
  9681. "text": "Road"
  9682. },
  9683. {
  9684. "id": "materialize::road-variant",
  9685. "text": "Road Variant"
  9686. },
  9687. {
  9688. "id": "materialize::robot",
  9689. "text": "Robot"
  9690. },
  9691. {
  9692. "id": "materialize::rocket",
  9693. "text": "Rocket"
  9694. },
  9695. {
  9696. "id": "materialize::roomba",
  9697. "text": "Roomba"
  9698. },
  9699. {
  9700. "id": "materialize::rotate-3d",
  9701. "text": "Rotate 3d"
  9702. },
  9703. {
  9704. "id": "materialize::rotate-left",
  9705. "text": "Rotate Left"
  9706. },
  9707. {
  9708. "id": "materialize::rotate-left-variant",
  9709. "text": "Rotate Left Variant"
  9710. },
  9711. {
  9712. "id": "materialize::rotate-right",
  9713. "text": "Rotate Right"
  9714. },
  9715. {
  9716. "id": "materialize::rotate-right-variant",
  9717. "text": "Rotate Right Variant"
  9718. },
  9719. {
  9720. "id": "materialize::rounded-corner",
  9721. "text": "Rounded Corner"
  9722. },
  9723. {
  9724. "id": "materialize::router-wireless",
  9725. "text": "Router Wireless"
  9726. },
  9727. {
  9728. "id": "materialize::routes",
  9729. "text": "Routes"
  9730. },
  9731. {
  9732. "id": "materialize::rowing",
  9733. "text": "Rowing"
  9734. },
  9735. {
  9736. "id": "materialize::rss",
  9737. "text": "Rss"
  9738. },
  9739. {
  9740. "id": "materialize::rss-box",
  9741. "text": "Rss Box"
  9742. },
  9743. {
  9744. "id": "materialize::ruler",
  9745. "text": "Ruler"
  9746. },
  9747. {
  9748. "id": "materialize::run",
  9749. "text": "Run"
  9750. },
  9751. {
  9752. "id": "materialize::run-fast",
  9753. "text": "Run Fast"
  9754. },
  9755. {
  9756. "id": "materialize::sale",
  9757. "text": "Sale"
  9758. },
  9759. {
  9760. "id": "materialize::satellite",
  9761. "text": "Satellite"
  9762. },
  9763. {
  9764. "id": "materialize::satellite-variant",
  9765. "text": "Satellite Variant"
  9766. },
  9767. {
  9768. "id": "materialize::saxophone",
  9769. "text": "Saxophone"
  9770. },
  9771. {
  9772. "id": "materialize::scale",
  9773. "text": "Scale"
  9774. },
  9775. {
  9776. "id": "materialize::scale-balance",
  9777. "text": "Scale Balance"
  9778. },
  9779. {
  9780. "id": "materialize::scale-bathroom",
  9781. "text": "Scale Bathroom"
  9782. },
  9783. {
  9784. "id": "materialize::scanner",
  9785. "text": "Scanner"
  9786. },
  9787. {
  9788. "id": "materialize::school",
  9789. "text": "School"
  9790. },
  9791. {
  9792. "id": "materialize::screen-rotation",
  9793. "text": "Screen Rotation"
  9794. },
  9795. {
  9796. "id": "materialize::screen-rotation-lock",
  9797. "text": "Screen Rotation Lock"
  9798. },
  9799. {
  9800. "id": "materialize::screwdriver",
  9801. "text": "Screwdriver"
  9802. },
  9803. {
  9804. "id": "materialize::script",
  9805. "text": "Script"
  9806. },
  9807. {
  9808. "id": "materialize::sd",
  9809. "text": "Sd"
  9810. },
  9811. {
  9812. "id": "materialize::seal",
  9813. "text": "Seal"
  9814. },
  9815. {
  9816. "id": "materialize::search-web",
  9817. "text": "Search Web"
  9818. },
  9819. {
  9820. "id": "materialize::seat-flat",
  9821. "text": "Seat Flat"
  9822. },
  9823. {
  9824. "id": "materialize::seat-flat-angled",
  9825. "text": "Seat Flat Angled"
  9826. },
  9827. {
  9828. "id": "materialize::seat-individual-suite",
  9829. "text": "Seat Individual Suite"
  9830. },
  9831. {
  9832. "id": "materialize::seat-legroom-extra",
  9833. "text": "Seat Legroom Extra"
  9834. },
  9835. {
  9836. "id": "materialize::seat-legroom-normal",
  9837. "text": "Seat Legroom Normal"
  9838. },
  9839. {
  9840. "id": "materialize::seat-legroom-reduced",
  9841. "text": "Seat Legroom Reduced"
  9842. },
  9843. {
  9844. "id": "materialize::seat-recline-extra",
  9845. "text": "Seat Recline Extra"
  9846. },
  9847. {
  9848. "id": "materialize::seat-recline-normal",
  9849. "text": "Seat Recline Normal"
  9850. },
  9851. {
  9852. "id": "materialize::security",
  9853. "text": "Security"
  9854. },
  9855. {
  9856. "id": "materialize::security-home",
  9857. "text": "Security Home"
  9858. },
  9859. {
  9860. "id": "materialize::security-network",
  9861. "text": "Security Network"
  9862. },
  9863. {
  9864. "id": "materialize::select",
  9865. "text": "Select"
  9866. },
  9867. {
  9868. "id": "materialize::select-all",
  9869. "text": "Select All"
  9870. },
  9871. {
  9872. "id": "materialize::select-inverse",
  9873. "text": "Select Inverse"
  9874. },
  9875. {
  9876. "id": "materialize::select-off",
  9877. "text": "Select Off"
  9878. },
  9879. {
  9880. "id": "materialize::selection",
  9881. "text": "Selection"
  9882. },
  9883. {
  9884. "id": "materialize::send",
  9885. "text": "Send"
  9886. },
  9887. {
  9888. "id": "materialize::serial-port",
  9889. "text": "Serial Port"
  9890. },
  9891. {
  9892. "id": "materialize::server",
  9893. "text": "Server"
  9894. },
  9895. {
  9896. "id": "materialize::server-minus",
  9897. "text": "Server Minus"
  9898. },
  9899. {
  9900. "id": "materialize::server-network",
  9901. "text": "Server Network"
  9902. },
  9903. {
  9904. "id": "materialize::server-network-off",
  9905. "text": "Server Network Off"
  9906. },
  9907. {
  9908. "id": "materialize::server-off",
  9909. "text": "Server Off"
  9910. },
  9911. {
  9912. "id": "materialize::server-plus",
  9913. "text": "Server Plus"
  9914. },
  9915. {
  9916. "id": "materialize::server-remove",
  9917. "text": "Server Remove"
  9918. },
  9919. {
  9920. "id": "materialize::server-security",
  9921. "text": "Server Security"
  9922. },
  9923. {
  9924. "id": "materialize::settings",
  9925. "text": "Settings"
  9926. },
  9927. {
  9928. "id": "materialize::settings-box",
  9929. "text": "Settings Box"
  9930. },
  9931. {
  9932. "id": "materialize::shape-circle-plus",
  9933. "text": "Shape Circle Plus"
  9934. },
  9935. {
  9936. "id": "materialize::shape-plus",
  9937. "text": "Shape Plus"
  9938. },
  9939. {
  9940. "id": "materialize::shape-polygon-plus",
  9941. "text": "Shape Polygon Plus"
  9942. },
  9943. {
  9944. "id": "materialize::shape-rectangle-plus",
  9945. "text": "Shape Rectangle Plus"
  9946. },
  9947. {
  9948. "id": "materialize::shape-square-plus",
  9949. "text": "Shape Square Plus"
  9950. },
  9951. {
  9952. "id": "materialize::share",
  9953. "text": "Share"
  9954. },
  9955. {
  9956. "id": "materialize::share-variant",
  9957. "text": "Share Variant"
  9958. },
  9959. {
  9960. "id": "materialize::shield",
  9961. "text": "Shield"
  9962. },
  9963. {
  9964. "id": "materialize::shield-outline",
  9965. "text": "Shield Outline"
  9966. },
  9967. {
  9968. "id": "materialize::shopping",
  9969. "text": "Shopping"
  9970. },
  9971. {
  9972. "id": "materialize::shopping-music",
  9973. "text": "Shopping Music"
  9974. },
  9975. {
  9976. "id": "materialize::shovel",
  9977. "text": "Shovel"
  9978. },
  9979. {
  9980. "id": "materialize::shovel-off",
  9981. "text": "Shovel Off"
  9982. },
  9983. {
  9984. "id": "materialize::shredder",
  9985. "text": "Shredder"
  9986. },
  9987. {
  9988. "id": "materialize::shuffle",
  9989. "text": "Shuffle"
  9990. },
  9991. {
  9992. "id": "materialize::shuffle-disabled",
  9993. "text": "Shuffle Disabled"
  9994. },
  9995. {
  9996. "id": "materialize::shuffle-variant",
  9997. "text": "Shuffle Variant"
  9998. },
  9999. {
  10000. "id": "materialize::sigma",
  10001. "text": "Sigma"
  10002. },
  10003. {
  10004. "id": "materialize::sigma-lower",
  10005. "text": "Sigma Lower"
  10006. },
  10007. {
  10008. "id": "materialize::sign-caution",
  10009. "text": "Sign Caution"
  10010. },
  10011. {
  10012. "id": "materialize::signal",
  10013. "text": "Signal"
  10014. },
  10015. {
  10016. "id": "materialize::signal-2g",
  10017. "text": "Signal 2g"
  10018. },
  10019. {
  10020. "id": "materialize::signal-3g",
  10021. "text": "Signal 3g"
  10022. },
  10023. {
  10024. "id": "materialize::signal-4g",
  10025. "text": "Signal 4g"
  10026. },
  10027. {
  10028. "id": "materialize::signal-hspa",
  10029. "text": "Signal Hspa"
  10030. },
  10031. {
  10032. "id": "materialize::signal-hspa-plus",
  10033. "text": "Signal Hspa Plus"
  10034. },
  10035. {
  10036. "id": "materialize::signal-variant",
  10037. "text": "Signal Variant"
  10038. },
  10039. {
  10040. "id": "materialize::silverware",
  10041. "text": "Silverware"
  10042. },
  10043. {
  10044. "id": "materialize::silverware-fork",
  10045. "text": "Silverware Fork"
  10046. },
  10047. {
  10048. "id": "materialize::silverware-spoon",
  10049. "text": "Silverware Spoon"
  10050. },
  10051. {
  10052. "id": "materialize::silverware-variant",
  10053. "text": "Silverware Variant"
  10054. },
  10055. {
  10056. "id": "materialize::sim",
  10057. "text": "Sim"
  10058. },
  10059. {
  10060. "id": "materialize::sim-alert",
  10061. "text": "Sim Alert"
  10062. },
  10063. {
  10064. "id": "materialize::sim-off",
  10065. "text": "Sim Off"
  10066. },
  10067. {
  10068. "id": "materialize::sitemap",
  10069. "text": "Sitemap"
  10070. },
  10071. {
  10072. "id": "materialize::skip-backward",
  10073. "text": "Skip Backward"
  10074. },
  10075. {
  10076. "id": "materialize::skip-forward",
  10077. "text": "Skip Forward"
  10078. },
  10079. {
  10080. "id": "materialize::skip-next",
  10081. "text": "Skip Next"
  10082. },
  10083. {
  10084. "id": "materialize::skip-next-circle",
  10085. "text": "Skip Next Circle"
  10086. },
  10087. {
  10088. "id": "materialize::skip-next-circle-outline",
  10089. "text": "Skip Next Circle Outline"
  10090. },
  10091. {
  10092. "id": "materialize::skip-previous",
  10093. "text": "Skip Previous"
  10094. },
  10095. {
  10096. "id": "materialize::skip-previous-circle",
  10097. "text": "Skip Previous Circle"
  10098. },
  10099. {
  10100. "id": "materialize::skip-previous-circle-outline",
  10101. "text": "Skip Previous Circle Outline"
  10102. },
  10103. {
  10104. "id": "materialize::skull",
  10105. "text": "Skull"
  10106. },
  10107. {
  10108. "id": "materialize::skype",
  10109. "text": "Skype"
  10110. },
  10111. {
  10112. "id": "materialize::skype-business",
  10113. "text": "Skype Business"
  10114. },
  10115. {
  10116. "id": "materialize::slack",
  10117. "text": "Slack"
  10118. },
  10119. {
  10120. "id": "materialize::sleep",
  10121. "text": "Sleep"
  10122. },
  10123. {
  10124. "id": "materialize::sleep-off",
  10125. "text": "Sleep Off"
  10126. },
  10127. {
  10128. "id": "materialize::smoking",
  10129. "text": "Smoking"
  10130. },
  10131. {
  10132. "id": "materialize::smoking-off",
  10133. "text": "Smoking Off"
  10134. },
  10135. {
  10136. "id": "materialize::snapchat",
  10137. "text": "Snapchat"
  10138. },
  10139. {
  10140. "id": "materialize::snowflake",
  10141. "text": "Snowflake"
  10142. },
  10143. {
  10144. "id": "materialize::snowman",
  10145. "text": "Snowman"
  10146. },
  10147. {
  10148. "id": "materialize::soccer",
  10149. "text": "Soccer"
  10150. },
  10151. {
  10152. "id": "materialize::sofa",
  10153. "text": "Sofa"
  10154. },
  10155. {
  10156. "id": "materialize::solid",
  10157. "text": "Solid"
  10158. },
  10159. {
  10160. "id": "materialize::sort",
  10161. "text": "Sort"
  10162. },
  10163. {
  10164. "id": "materialize::sort-alphabetical",
  10165. "text": "Sort Alphabetical"
  10166. },
  10167. {
  10168. "id": "materialize::sort-ascending",
  10169. "text": "Sort Ascending"
  10170. },
  10171. {
  10172. "id": "materialize::sort-descending",
  10173. "text": "Sort Descending"
  10174. },
  10175. {
  10176. "id": "materialize::sort-numeric",
  10177. "text": "Sort Numeric"
  10178. },
  10179. {
  10180. "id": "materialize::sort-variant",
  10181. "text": "Sort Variant"
  10182. },
  10183. {
  10184. "id": "materialize::soundcloud",
  10185. "text": "Soundcloud"
  10186. },
  10187. {
  10188. "id": "materialize::source-branch",
  10189. "text": "Source Branch"
  10190. },
  10191. {
  10192. "id": "materialize::source-commit",
  10193. "text": "Source Commit"
  10194. },
  10195. {
  10196. "id": "materialize::source-commit-end",
  10197. "text": "Source Commit End"
  10198. },
  10199. {
  10200. "id": "materialize::source-commit-end-local",
  10201. "text": "Source Commit End Local"
  10202. },
  10203. {
  10204. "id": "materialize::source-commit-local",
  10205. "text": "Source Commit Local"
  10206. },
  10207. {
  10208. "id": "materialize::source-commit-next-local",
  10209. "text": "Source Commit Next Local"
  10210. },
  10211. {
  10212. "id": "materialize::source-commit-start",
  10213. "text": "Source Commit Start"
  10214. },
  10215. {
  10216. "id": "materialize::source-commit-start-next-local",
  10217. "text": "Source Commit Start Next Local"
  10218. },
  10219. {
  10220. "id": "materialize::source-fork",
  10221. "text": "Source Fork"
  10222. },
  10223. {
  10224. "id": "materialize::source-merge",
  10225. "text": "Source Merge"
  10226. },
  10227. {
  10228. "id": "materialize::source-pull",
  10229. "text": "Source Pull"
  10230. },
  10231. {
  10232. "id": "materialize::speaker",
  10233. "text": "Speaker"
  10234. },
  10235. {
  10236. "id": "materialize::speaker-off",
  10237. "text": "Speaker Off"
  10238. },
  10239. {
  10240. "id": "materialize::speaker-wireless",
  10241. "text": "Speaker Wireless"
  10242. },
  10243. {
  10244. "id": "materialize::speedometer",
  10245. "text": "Speedometer"
  10246. },
  10247. {
  10248. "id": "materialize::spellcheck",
  10249. "text": "Spellcheck"
  10250. },
  10251. {
  10252. "id": "materialize::spotify",
  10253. "text": "Spotify"
  10254. },
  10255. {
  10256. "id": "materialize::spotlight",
  10257. "text": "Spotlight"
  10258. },
  10259. {
  10260. "id": "materialize::spotlight-beam",
  10261. "text": "Spotlight Beam"
  10262. },
  10263. {
  10264. "id": "materialize::spray",
  10265. "text": "Spray"
  10266. },
  10267. {
  10268. "id": "materialize::square-inc",
  10269. "text": "Square Inc"
  10270. },
  10271. {
  10272. "id": "materialize::square-inc-cash",
  10273. "text": "Square Inc Cash"
  10274. },
  10275. {
  10276. "id": "materialize::stackexchange",
  10277. "text": "Stackexchange"
  10278. },
  10279. {
  10280. "id": "materialize::stackoverflow",
  10281. "text": "Stackoverflow"
  10282. },
  10283. {
  10284. "id": "materialize::stadium",
  10285. "text": "Stadium"
  10286. },
  10287. {
  10288. "id": "materialize::stairs",
  10289. "text": "Stairs"
  10290. },
  10291. {
  10292. "id": "materialize::star",
  10293. "text": "Star"
  10294. },
  10295. {
  10296. "id": "materialize::star-circle",
  10297. "text": "Star Circle"
  10298. },
  10299. {
  10300. "id": "materialize::star-half",
  10301. "text": "Star Half"
  10302. },
  10303. {
  10304. "id": "materialize::star-off",
  10305. "text": "Star Off"
  10306. },
  10307. {
  10308. "id": "materialize::star-outline",
  10309. "text": "Star Outline"
  10310. },
  10311. {
  10312. "id": "materialize::steam",
  10313. "text": "Steam"
  10314. },
  10315. {
  10316. "id": "materialize::steering",
  10317. "text": "Steering"
  10318. },
  10319. {
  10320. "id": "materialize::step-backward",
  10321. "text": "Step Backward"
  10322. },
  10323. {
  10324. "id": "materialize::step-backward-2",
  10325. "text": "Step Backward 2"
  10326. },
  10327. {
  10328. "id": "materialize::step-forward",
  10329. "text": "Step Forward"
  10330. },
  10331. {
  10332. "id": "materialize::step-forward-2",
  10333. "text": "Step Forward 2"
  10334. },
  10335. {
  10336. "id": "materialize::stethoscope",
  10337. "text": "Stethoscope"
  10338. },
  10339. {
  10340. "id": "materialize::sticker",
  10341. "text": "Sticker"
  10342. },
  10343. {
  10344. "id": "materialize::stocking",
  10345. "text": "Stocking"
  10346. },
  10347. {
  10348. "id": "materialize::stop",
  10349. "text": "Stop"
  10350. },
  10351. {
  10352. "id": "materialize::stop-circle",
  10353. "text": "Stop Circle"
  10354. },
  10355. {
  10356. "id": "materialize::stop-circle-outline",
  10357. "text": "Stop Circle Outline"
  10358. },
  10359. {
  10360. "id": "materialize::store",
  10361. "text": "Store"
  10362. },
  10363. {
  10364. "id": "materialize::store-24-hour",
  10365. "text": "Store 24 Hour"
  10366. },
  10367. {
  10368. "id": "materialize::stove",
  10369. "text": "Stove"
  10370. },
  10371. {
  10372. "id": "materialize::subdirectory-arrow-left",
  10373. "text": "Subdirectory Arrow Left"
  10374. },
  10375. {
  10376. "id": "materialize::subdirectory-arrow-right",
  10377. "text": "Subdirectory Arrow Right"
  10378. },
  10379. {
  10380. "id": "materialize::subway",
  10381. "text": "Subway"
  10382. },
  10383. {
  10384. "id": "materialize::subway-variant",
  10385. "text": "Subway Variant"
  10386. },
  10387. {
  10388. "id": "materialize::sunglasses",
  10389. "text": "Sunglasses"
  10390. },
  10391. {
  10392. "id": "materialize::surround-sound",
  10393. "text": "Surround Sound"
  10394. },
  10395. {
  10396. "id": "materialize::svg",
  10397. "text": "Svg"
  10398. },
  10399. {
  10400. "id": "materialize::swap-horizontal",
  10401. "text": "Swap Horizontal"
  10402. },
  10403. {
  10404. "id": "materialize::swap-vertical",
  10405. "text": "Swap Vertical"
  10406. },
  10407. {
  10408. "id": "materialize::swim",
  10409. "text": "Swim"
  10410. },
  10411. {
  10412. "id": "materialize::switch",
  10413. "text": "Switch"
  10414. },
  10415. {
  10416. "id": "materialize::sword",
  10417. "text": "Sword"
  10418. },
  10419. {
  10420. "id": "materialize::sync",
  10421. "text": "Sync"
  10422. },
  10423. {
  10424. "id": "materialize::sync-alert",
  10425. "text": "Sync Alert"
  10426. },
  10427. {
  10428. "id": "materialize::sync-off",
  10429. "text": "Sync Off"
  10430. },
  10431. {
  10432. "id": "materialize::tab",
  10433. "text": "Tab"
  10434. },
  10435. {
  10436. "id": "materialize::tab-unselected",
  10437. "text": "Tab Unselected"
  10438. },
  10439. {
  10440. "id": "materialize::table",
  10441. "text": "Table"
  10442. },
  10443. {
  10444. "id": "materialize::table-column-plus-after",
  10445. "text": "Table Column Plus After"
  10446. },
  10447. {
  10448. "id": "materialize::table-column-plus-before",
  10449. "text": "Table Column Plus Before"
  10450. },
  10451. {
  10452. "id": "materialize::table-column-remove",
  10453. "text": "Table Column Remove"
  10454. },
  10455. {
  10456. "id": "materialize::table-column-width",
  10457. "text": "Table Column Width"
  10458. },
  10459. {
  10460. "id": "materialize::table-edit",
  10461. "text": "Table Edit"
  10462. },
  10463. {
  10464. "id": "materialize::table-large",
  10465. "text": "Table Large"
  10466. },
  10467. {
  10468. "id": "materialize::table-row-height",
  10469. "text": "Table Row Height"
  10470. },
  10471. {
  10472. "id": "materialize::table-row-plus-after",
  10473. "text": "Table Row Plus After"
  10474. },
  10475. {
  10476. "id": "materialize::table-row-plus-before",
  10477. "text": "Table Row Plus Before"
  10478. },
  10479. {
  10480. "id": "materialize::table-row-remove",
  10481. "text": "Table Row Remove"
  10482. },
  10483. {
  10484. "id": "materialize::tablet",
  10485. "text": "Tablet"
  10486. },
  10487. {
  10488. "id": "materialize::tablet-android",
  10489. "text": "Tablet Android"
  10490. },
  10491. {
  10492. "id": "materialize::tablet-ipad",
  10493. "text": "Tablet Ipad"
  10494. },
  10495. {
  10496. "id": "materialize::tag",
  10497. "text": "Tag"
  10498. },
  10499. {
  10500. "id": "materialize::tag-faces",
  10501. "text": "Tag Faces"
  10502. },
  10503. {
  10504. "id": "materialize::tag-heart",
  10505. "text": "Tag Heart"
  10506. },
  10507. {
  10508. "id": "materialize::tag-multiple",
  10509. "text": "Tag Multiple"
  10510. },
  10511. {
  10512. "id": "materialize::tag-outline",
  10513. "text": "Tag Outline"
  10514. },
  10515. {
  10516. "id": "materialize::tag-plus",
  10517. "text": "Tag Plus"
  10518. },
  10519. {
  10520. "id": "materialize::tag-remove",
  10521. "text": "Tag Remove"
  10522. },
  10523. {
  10524. "id": "materialize::tag-text-outline",
  10525. "text": "Tag Text Outline"
  10526. },
  10527. {
  10528. "id": "materialize::target",
  10529. "text": "Target"
  10530. },
  10531. {
  10532. "id": "materialize::taxi",
  10533. "text": "Taxi"
  10534. },
  10535. {
  10536. "id": "materialize::teamviewer",
  10537. "text": "Teamviewer"
  10538. },
  10539. {
  10540. "id": "materialize::telegram",
  10541. "text": "Telegram"
  10542. },
  10543. {
  10544. "id": "materialize::television",
  10545. "text": "Television"
  10546. },
  10547. {
  10548. "id": "materialize::television-guide",
  10549. "text": "Television Guide"
  10550. },
  10551. {
  10552. "id": "materialize::temperature-celsius",
  10553. "text": "Temperature Celsius"
  10554. },
  10555. {
  10556. "id": "materialize::temperature-fahrenheit",
  10557. "text": "Temperature Fahrenheit"
  10558. },
  10559. {
  10560. "id": "materialize::temperature-kelvin",
  10561. "text": "Temperature Kelvin"
  10562. },
  10563. {
  10564. "id": "materialize::tennis",
  10565. "text": "Tennis"
  10566. },
  10567. {
  10568. "id": "materialize::tent",
  10569. "text": "Tent"
  10570. },
  10571. {
  10572. "id": "materialize::terrain",
  10573. "text": "Terrain"
  10574. },
  10575. {
  10576. "id": "materialize::test-tube",
  10577. "text": "Test Tube"
  10578. },
  10579. {
  10580. "id": "materialize::text-shadow",
  10581. "text": "Text Shadow"
  10582. },
  10583. {
  10584. "id": "materialize::text-to-speech",
  10585. "text": "Text To Speech"
  10586. },
  10587. {
  10588. "id": "materialize::text-to-speech-off",
  10589. "text": "Text To Speech Off"
  10590. },
  10591. {
  10592. "id": "materialize::textbox",
  10593. "text": "Textbox"
  10594. },
  10595. {
  10596. "id": "materialize::texture",
  10597. "text": "Texture"
  10598. },
  10599. {
  10600. "id": "materialize::theater",
  10601. "text": "Theater"
  10602. },
  10603. {
  10604. "id": "materialize::theme-light-dark",
  10605. "text": "Theme Light Dark"
  10606. },
  10607. {
  10608. "id": "materialize::thermometer",
  10609. "text": "Thermometer"
  10610. },
  10611. {
  10612. "id": "materialize::thermometer-lines",
  10613. "text": "Thermometer Lines"
  10614. },
  10615. {
  10616. "id": "materialize::thumb-down",
  10617. "text": "Thumb Down"
  10618. },
  10619. {
  10620. "id": "materialize::thumb-down-outline",
  10621. "text": "Thumb Down Outline"
  10622. },
  10623. {
  10624. "id": "materialize::thumb-up",
  10625. "text": "Thumb Up"
  10626. },
  10627. {
  10628. "id": "materialize::thumb-up-outline",
  10629. "text": "Thumb Up Outline"
  10630. },
  10631. {
  10632. "id": "materialize::thumbs-up-down",
  10633. "text": "Thumbs Up Down"
  10634. },
  10635. {
  10636. "id": "materialize::ticket",
  10637. "text": "Ticket"
  10638. },
  10639. {
  10640. "id": "materialize::ticket-account",
  10641. "text": "Ticket Account"
  10642. },
  10643. {
  10644. "id": "materialize::ticket-confirmation",
  10645. "text": "Ticket Confirmation"
  10646. },
  10647. {
  10648. "id": "materialize::ticket-percent",
  10649. "text": "Ticket Percent"
  10650. },
  10651. {
  10652. "id": "materialize::tie",
  10653. "text": "Tie"
  10654. },
  10655. {
  10656. "id": "materialize::tilde",
  10657. "text": "Tilde"
  10658. },
  10659. {
  10660. "id": "materialize::timelapse",
  10661. "text": "Timelapse"
  10662. },
  10663. {
  10664. "id": "materialize::timer",
  10665. "text": "Timer"
  10666. },
  10667. {
  10668. "id": "materialize::timer-10",
  10669. "text": "Timer 10"
  10670. },
  10671. {
  10672. "id": "materialize::timer-3",
  10673. "text": "Timer 3"
  10674. },
  10675. {
  10676. "id": "materialize::timer-off",
  10677. "text": "Timer Off"
  10678. },
  10679. {
  10680. "id": "materialize::timer-sand",
  10681. "text": "Timer Sand"
  10682. },
  10683. {
  10684. "id": "materialize::timer-sand-empty",
  10685. "text": "Timer Sand Empty"
  10686. },
  10687. {
  10688. "id": "materialize::timetable",
  10689. "text": "Timetable"
  10690. },
  10691. {
  10692. "id": "materialize::toggle-switch",
  10693. "text": "Toggle Switch"
  10694. },
  10695. {
  10696. "id": "materialize::toggle-switch-off",
  10697. "text": "Toggle Switch Off"
  10698. },
  10699. {
  10700. "id": "materialize::tooltip",
  10701. "text": "Tooltip"
  10702. },
  10703. {
  10704. "id": "materialize::tooltip-edit",
  10705. "text": "Tooltip Edit"
  10706. },
  10707. {
  10708. "id": "materialize::tooltip-image",
  10709. "text": "Tooltip Image"
  10710. },
  10711. {
  10712. "id": "materialize::tooltip-outline",
  10713. "text": "Tooltip Outline"
  10714. },
  10715. {
  10716. "id": "materialize::tooltip-outline-plus",
  10717. "text": "Tooltip Outline Plus"
  10718. },
  10719. {
  10720. "id": "materialize::tooltip-text",
  10721. "text": "Tooltip Text"
  10722. },
  10723. {
  10724. "id": "materialize::tooth",
  10725. "text": "Tooth"
  10726. },
  10727. {
  10728. "id": "materialize::tor",
  10729. "text": "Tor"
  10730. },
  10731. {
  10732. "id": "materialize::tower-beach",
  10733. "text": "Tower Beach"
  10734. },
  10735. {
  10736. "id": "materialize::tower-fire",
  10737. "text": "Tower Fire"
  10738. },
  10739. {
  10740. "id": "materialize::traffic-light",
  10741. "text": "Traffic Light"
  10742. },
  10743. {
  10744. "id": "materialize::train",
  10745. "text": "Train"
  10746. },
  10747. {
  10748. "id": "materialize::tram",
  10749. "text": "Tram"
  10750. },
  10751. {
  10752. "id": "materialize::transcribe",
  10753. "text": "Transcribe"
  10754. },
  10755. {
  10756. "id": "materialize::transcribe-close",
  10757. "text": "Transcribe Close"
  10758. },
  10759. {
  10760. "id": "materialize::transfer",
  10761. "text": "Transfer"
  10762. },
  10763. {
  10764. "id": "materialize::transit-transfer",
  10765. "text": "Transit Transfer"
  10766. },
  10767. {
  10768. "id": "materialize::translate",
  10769. "text": "Translate"
  10770. },
  10771. {
  10772. "id": "materialize::treasure-chest",
  10773. "text": "Treasure Chest"
  10774. },
  10775. {
  10776. "id": "materialize::tree",
  10777. "text": "Tree"
  10778. },
  10779. {
  10780. "id": "materialize::trello",
  10781. "text": "Trello"
  10782. },
  10783. {
  10784. "id": "materialize::trending-down",
  10785. "text": "Trending Down"
  10786. },
  10787. {
  10788. "id": "materialize::trending-neutral",
  10789. "text": "Trending Neutral"
  10790. },
  10791. {
  10792. "id": "materialize::trending-up",
  10793. "text": "Trending Up"
  10794. },
  10795. {
  10796. "id": "materialize::triangle",
  10797. "text": "Triangle"
  10798. },
  10799. {
  10800. "id": "materialize::triangle-outline",
  10801. "text": "Triangle Outline"
  10802. },
  10803. {
  10804. "id": "materialize::trophy",
  10805. "text": "Trophy"
  10806. },
  10807. {
  10808. "id": "materialize::trophy-award",
  10809. "text": "Trophy Award"
  10810. },
  10811. {
  10812. "id": "materialize::trophy-outline",
  10813. "text": "Trophy Outline"
  10814. },
  10815. {
  10816. "id": "materialize::trophy-variant",
  10817. "text": "Trophy Variant"
  10818. },
  10819. {
  10820. "id": "materialize::trophy-variant-outline",
  10821. "text": "Trophy Variant Outline"
  10822. },
  10823. {
  10824. "id": "materialize::truck",
  10825. "text": "Truck"
  10826. },
  10827. {
  10828. "id": "materialize::truck-delivery",
  10829. "text": "Truck Delivery"
  10830. },
  10831. {
  10832. "id": "materialize::truck-trailer",
  10833. "text": "Truck Trailer"
  10834. },
  10835. {
  10836. "id": "materialize::tshirt-crew",
  10837. "text": "Tshirt Crew"
  10838. },
  10839. {
  10840. "id": "materialize::tshirt-v",
  10841. "text": "Tshirt V"
  10842. },
  10843. {
  10844. "id": "materialize::tumblr",
  10845. "text": "Tumblr"
  10846. },
  10847. {
  10848. "id": "materialize::tumblr-reblog",
  10849. "text": "Tumblr Reblog"
  10850. },
  10851. {
  10852. "id": "materialize::tune",
  10853. "text": "Tune"
  10854. },
  10855. {
  10856. "id": "materialize::tune-vertical",
  10857. "text": "Tune Vertical"
  10858. },
  10859. {
  10860. "id": "materialize::twitch",
  10861. "text": "Twitch"
  10862. },
  10863. {
  10864. "id": "materialize::twitter",
  10865. "text": "Twitter"
  10866. },
  10867. {
  10868. "id": "materialize::twitter-box",
  10869. "text": "Twitter Box"
  10870. },
  10871. {
  10872. "id": "materialize::twitter-circle",
  10873. "text": "Twitter Circle"
  10874. },
  10875. {
  10876. "id": "materialize::twitter-retweet",
  10877. "text": "Twitter Retweet"
  10878. },
  10879. {
  10880. "id": "materialize::ubuntu",
  10881. "text": "Ubuntu"
  10882. },
  10883. {
  10884. "id": "materialize::umbraco",
  10885. "text": "Umbraco"
  10886. },
  10887. {
  10888. "id": "materialize::umbrella",
  10889. "text": "Umbrella"
  10890. },
  10891. {
  10892. "id": "materialize::umbrella-outline",
  10893. "text": "Umbrella Outline"
  10894. },
  10895. {
  10896. "id": "materialize::undo",
  10897. "text": "Undo"
  10898. },
  10899. {
  10900. "id": "materialize::undo-variant",
  10901. "text": "Undo Variant"
  10902. },
  10903. {
  10904. "id": "materialize::unfold-less",
  10905. "text": "Unfold Less"
  10906. },
  10907. {
  10908. "id": "materialize::unfold-more",
  10909. "text": "Unfold More"
  10910. },
  10911. {
  10912. "id": "materialize::ungroup",
  10913. "text": "Ungroup"
  10914. },
  10915. {
  10916. "id": "materialize::unity",
  10917. "text": "Unity"
  10918. },
  10919. {
  10920. "id": "materialize::untappd",
  10921. "text": "Untappd"
  10922. },
  10923. {
  10924. "id": "materialize::update",
  10925. "text": "Update"
  10926. },
  10927. {
  10928. "id": "materialize::upload",
  10929. "text": "Upload"
  10930. },
  10931. {
  10932. "id": "materialize::usb",
  10933. "text": "Usb"
  10934. },
  10935. {
  10936. "id": "materialize::vector-arrange-above",
  10937. "text": "Vector Arrange Above"
  10938. },
  10939. {
  10940. "id": "materialize::vector-arrange-below",
  10941. "text": "Vector Arrange Below"
  10942. },
  10943. {
  10944. "id": "materialize::vector-circle",
  10945. "text": "Vector Circle"
  10946. },
  10947. {
  10948. "id": "materialize::vector-circle-variant",
  10949. "text": "Vector Circle Variant"
  10950. },
  10951. {
  10952. "id": "materialize::vector-combine",
  10953. "text": "Vector Combine"
  10954. },
  10955. {
  10956. "id": "materialize::vector-curve",
  10957. "text": "Vector Curve"
  10958. },
  10959. {
  10960. "id": "materialize::vector-difference",
  10961. "text": "Vector Difference"
  10962. },
  10963. {
  10964. "id": "materialize::vector-difference-ab",
  10965. "text": "Vector Difference Ab"
  10966. },
  10967. {
  10968. "id": "materialize::vector-difference-ba",
  10969. "text": "Vector Difference Ba"
  10970. },
  10971. {
  10972. "id": "materialize::vector-intersection",
  10973. "text": "Vector Intersection"
  10974. },
  10975. {
  10976. "id": "materialize::vector-line",
  10977. "text": "Vector Line"
  10978. },
  10979. {
  10980. "id": "materialize::vector-point",
  10981. "text": "Vector Point"
  10982. },
  10983. {
  10984. "id": "materialize::vector-polygon",
  10985. "text": "Vector Polygon"
  10986. },
  10987. {
  10988. "id": "materialize::vector-polyline",
  10989. "text": "Vector Polyline"
  10990. },
  10991. {
  10992. "id": "materialize::vector-rectangle",
  10993. "text": "Vector Rectangle"
  10994. },
  10995. {
  10996. "id": "materialize::vector-selection",
  10997. "text": "Vector Selection"
  10998. },
  10999. {
  11000. "id": "materialize::vector-square",
  11001. "text": "Vector Square"
  11002. },
  11003. {
  11004. "id": "materialize::vector-triangle",
  11005. "text": "Vector Triangle"
  11006. },
  11007. {
  11008. "id": "materialize::vector-union",
  11009. "text": "Vector Union"
  11010. },
  11011. {
  11012. "id": "materialize::verified",
  11013. "text": "Verified"
  11014. },
  11015. {
  11016. "id": "materialize::vibrate",
  11017. "text": "Vibrate"
  11018. },
  11019. {
  11020. "id": "materialize::video",
  11021. "text": "Video"
  11022. },
  11023. {
  11024. "id": "materialize::video-off",
  11025. "text": "Video Off"
  11026. },
  11027. {
  11028. "id": "materialize::video-switch",
  11029. "text": "Video Switch"
  11030. },
  11031. {
  11032. "id": "materialize::view-agenda",
  11033. "text": "View Agenda"
  11034. },
  11035. {
  11036. "id": "materialize::view-array",
  11037. "text": "View Array"
  11038. },
  11039. {
  11040. "id": "materialize::view-carousel",
  11041. "text": "View Carousel"
  11042. },
  11043. {
  11044. "id": "materialize::view-column",
  11045. "text": "View Column"
  11046. },
  11047. {
  11048. "id": "materialize::view-dashboard",
  11049. "text": "View Dashboard"
  11050. },
  11051. {
  11052. "id": "materialize::view-day",
  11053. "text": "View Day"
  11054. },
  11055. {
  11056. "id": "materialize::view-grid",
  11057. "text": "View Grid"
  11058. },
  11059. {
  11060. "id": "materialize::view-headline",
  11061. "text": "View Headline"
  11062. },
  11063. {
  11064. "id": "materialize::view-list",
  11065. "text": "View List"
  11066. },
  11067. {
  11068. "id": "materialize::view-module",
  11069. "text": "View Module"
  11070. },
  11071. {
  11072. "id": "materialize::view-parallel",
  11073. "text": "View Parallel"
  11074. },
  11075. {
  11076. "id": "materialize::view-quilt",
  11077. "text": "View Quilt"
  11078. },
  11079. {
  11080. "id": "materialize::view-sequential",
  11081. "text": "View Sequential"
  11082. },
  11083. {
  11084. "id": "materialize::view-stream",
  11085. "text": "View Stream"
  11086. },
  11087. {
  11088. "id": "materialize::view-week",
  11089. "text": "View Week"
  11090. },
  11091. {
  11092. "id": "materialize::vimeo",
  11093. "text": "Vimeo"
  11094. },
  11095. {
  11096. "id": "materialize::vine",
  11097. "text": "Vine"
  11098. },
  11099. {
  11100. "id": "materialize::violin",
  11101. "text": "Violin"
  11102. },
  11103. {
  11104. "id": "materialize::visualstudio",
  11105. "text": "Visualstudio"
  11106. },
  11107. {
  11108. "id": "materialize::vk",
  11109. "text": "Vk"
  11110. },
  11111. {
  11112. "id": "materialize::vk-box",
  11113. "text": "Vk Box"
  11114. },
  11115. {
  11116. "id": "materialize::vk-circle",
  11117. "text": "Vk Circle"
  11118. },
  11119. {
  11120. "id": "materialize::vlc",
  11121. "text": "Vlc"
  11122. },
  11123. {
  11124. "id": "materialize::voice",
  11125. "text": "Voice"
  11126. },
  11127. {
  11128. "id": "materialize::voicemail",
  11129. "text": "Voicemail"
  11130. },
  11131. {
  11132. "id": "materialize::volume-high",
  11133. "text": "Volume High"
  11134. },
  11135. {
  11136. "id": "materialize::volume-low",
  11137. "text": "Volume Low"
  11138. },
  11139. {
  11140. "id": "materialize::volume-medium",
  11141. "text": "Volume Medium"
  11142. },
  11143. {
  11144. "id": "materialize::volume-off",
  11145. "text": "Volume Off"
  11146. },
  11147. {
  11148. "id": "materialize::vpn",
  11149. "text": "Vpn"
  11150. },
  11151. {
  11152. "id": "materialize::walk",
  11153. "text": "Walk"
  11154. },
  11155. {
  11156. "id": "materialize::wallet",
  11157. "text": "Wallet"
  11158. },
  11159. {
  11160. "id": "materialize::wallet-giftcard",
  11161. "text": "Wallet Giftcard"
  11162. },
  11163. {
  11164. "id": "materialize::wallet-membership",
  11165. "text": "Wallet Membership"
  11166. },
  11167. {
  11168. "id": "materialize::wallet-travel",
  11169. "text": "Wallet Travel"
  11170. },
  11171. {
  11172. "id": "materialize::wan",
  11173. "text": "Wan"
  11174. },
  11175. {
  11176. "id": "materialize::washing-machine",
  11177. "text": "Washing Machine"
  11178. },
  11179. {
  11180. "id": "materialize::watch",
  11181. "text": "Watch"
  11182. },
  11183. {
  11184. "id": "materialize::watch-export",
  11185. "text": "Watch Export"
  11186. },
  11187. {
  11188. "id": "materialize::watch-import",
  11189. "text": "Watch Import"
  11190. },
  11191. {
  11192. "id": "materialize::watch-vibrate",
  11193. "text": "Watch Vibrate"
  11194. },
  11195. {
  11196. "id": "materialize::water",
  11197. "text": "Water"
  11198. },
  11199. {
  11200. "id": "materialize::water-off",
  11201. "text": "Water Off"
  11202. },
  11203. {
  11204. "id": "materialize::water-percent",
  11205. "text": "Water Percent"
  11206. },
  11207. {
  11208. "id": "materialize::water-pump",
  11209. "text": "Water Pump"
  11210. },
  11211. {
  11212. "id": "materialize::watermark",
  11213. "text": "Watermark"
  11214. },
  11215. {
  11216. "id": "materialize::weather-cloudy",
  11217. "text": "Weather Cloudy"
  11218. },
  11219. {
  11220. "id": "materialize::weather-fog",
  11221. "text": "Weather Fog"
  11222. },
  11223. {
  11224. "id": "materialize::weather-hail",
  11225. "text": "Weather Hail"
  11226. },
  11227. {
  11228. "id": "materialize::weather-lightning",
  11229. "text": "Weather Lightning"
  11230. },
  11231. {
  11232. "id": "materialize::weather-lightning-rainy",
  11233. "text": "Weather Lightning Rainy"
  11234. },
  11235. {
  11236. "id": "materialize::weather-night",
  11237. "text": "Weather Night"
  11238. },
  11239. {
  11240. "id": "materialize::weather-partlycloudy",
  11241. "text": "Weather Partlycloudy"
  11242. },
  11243. {
  11244. "id": "materialize::weather-pouring",
  11245. "text": "Weather Pouring"
  11246. },
  11247. {
  11248. "id": "materialize::weather-rainy",
  11249. "text": "Weather Rainy"
  11250. },
  11251. {
  11252. "id": "materialize::weather-snowy",
  11253. "text": "Weather Snowy"
  11254. },
  11255. {
  11256. "id": "materialize::weather-snowy-rainy",
  11257. "text": "Weather Snowy Rainy"
  11258. },
  11259. {
  11260. "id": "materialize::weather-sunny",
  11261. "text": "Weather Sunny"
  11262. },
  11263. {
  11264. "id": "materialize::weather-sunset",
  11265. "text": "Weather Sunset"
  11266. },
  11267. {
  11268. "id": "materialize::weather-sunset-down",
  11269. "text": "Weather Sunset Down"
  11270. },
  11271. {
  11272. "id": "materialize::weather-sunset-up",
  11273. "text": "Weather Sunset Up"
  11274. },
  11275. {
  11276. "id": "materialize::weather-windy",
  11277. "text": "Weather Windy"
  11278. },
  11279. {
  11280. "id": "materialize::weather-windy-variant",
  11281. "text": "Weather Windy Variant"
  11282. },
  11283. {
  11284. "id": "materialize::web",
  11285. "text": "Web"
  11286. },
  11287. {
  11288. "id": "materialize::webcam",
  11289. "text": "Webcam"
  11290. },
  11291. {
  11292. "id": "materialize::webhook",
  11293. "text": "Webhook"
  11294. },
  11295. {
  11296. "id": "materialize::webpack",
  11297. "text": "Webpack"
  11298. },
  11299. {
  11300. "id": "materialize::wechat",
  11301. "text": "Wechat"
  11302. },
  11303. {
  11304. "id": "materialize::weight",
  11305. "text": "Weight"
  11306. },
  11307. {
  11308. "id": "materialize::weight-kilogram",
  11309. "text": "Weight Kilogram"
  11310. },
  11311. {
  11312. "id": "materialize::whatsapp",
  11313. "text": "Whatsapp"
  11314. },
  11315. {
  11316. "id": "materialize::wheelchair-accessibility",
  11317. "text": "Wheelchair Accessibility"
  11318. },
  11319. {
  11320. "id": "materialize::white-balance-auto",
  11321. "text": "White Balance Auto"
  11322. },
  11323. {
  11324. "id": "materialize::white-balance-incandescent",
  11325. "text": "White Balance Incandescent"
  11326. },
  11327. {
  11328. "id": "materialize::white-balance-iridescent",
  11329. "text": "White Balance Iridescent"
  11330. },
  11331. {
  11332. "id": "materialize::white-balance-sunny",
  11333. "text": "White Balance Sunny"
  11334. },
  11335. {
  11336. "id": "materialize::widgets",
  11337. "text": "Widgets"
  11338. },
  11339. {
  11340. "id": "materialize::wifi",
  11341. "text": "Wifi"
  11342. },
  11343. {
  11344. "id": "materialize::wifi-off",
  11345. "text": "Wifi Off"
  11346. },
  11347. {
  11348. "id": "materialize::wii",
  11349. "text": "Wii"
  11350. },
  11351. {
  11352. "id": "materialize::wiiu",
  11353. "text": "Wiiu"
  11354. },
  11355. {
  11356. "id": "materialize::wikipedia",
  11357. "text": "Wikipedia"
  11358. },
  11359. {
  11360. "id": "materialize::window-close",
  11361. "text": "Window Close"
  11362. },
  11363. {
  11364. "id": "materialize::window-closed",
  11365. "text": "Window Closed"
  11366. },
  11367. {
  11368. "id": "materialize::window-maximize",
  11369. "text": "Window Maximize"
  11370. },
  11371. {
  11372. "id": "materialize::window-minimize",
  11373. "text": "Window Minimize"
  11374. },
  11375. {
  11376. "id": "materialize::window-open",
  11377. "text": "Window Open"
  11378. },
  11379. {
  11380. "id": "materialize::window-restore",
  11381. "text": "Window Restore"
  11382. },
  11383. {
  11384. "id": "materialize::windows",
  11385. "text": "Windows"
  11386. },
  11387. {
  11388. "id": "materialize::wordpress",
  11389. "text": "Wordpress"
  11390. },
  11391. {
  11392. "id": "materialize::worker",
  11393. "text": "Worker"
  11394. },
  11395. {
  11396. "id": "materialize::wrap",
  11397. "text": "Wrap"
  11398. },
  11399. {
  11400. "id": "materialize::wrench",
  11401. "text": "Wrench"
  11402. },
  11403. {
  11404. "id": "materialize::wunderlist",
  11405. "text": "Wunderlist"
  11406. },
  11407. {
  11408. "id": "materialize::xaml",
  11409. "text": "Xaml"
  11410. },
  11411. {
  11412. "id": "materialize::xbox",
  11413. "text": "Xbox"
  11414. },
  11415. {
  11416. "id": "materialize::xbox-controller",
  11417. "text": "Xbox Controller"
  11418. },
  11419. {
  11420. "id": "materialize::xbox-controller-off",
  11421. "text": "Xbox Controller Off"
  11422. },
  11423. {
  11424. "id": "materialize::xda",
  11425. "text": "Xda"
  11426. },
  11427. {
  11428. "id": "materialize::xing",
  11429. "text": "Xing"
  11430. },
  11431. {
  11432. "id": "materialize::xing-box",
  11433. "text": "Xing Box"
  11434. },
  11435. {
  11436. "id": "materialize::xing-circle",
  11437. "text": "Xing Circle"
  11438. },
  11439. {
  11440. "id": "materialize::xml",
  11441. "text": "Xml"
  11442. },
  11443. {
  11444. "id": "materialize::yeast",
  11445. "text": "Yeast"
  11446. },
  11447. {
  11448. "id": "materialize::yelp",
  11449. "text": "Yelp"
  11450. },
  11451. {
  11452. "id": "materialize::yin-yang",
  11453. "text": "Yin Yang"
  11454. },
  11455. {
  11456. "id": "materialize::youtube-play",
  11457. "text": "Youtube Play"
  11458. },
  11459. {
  11460. "id": "materialize::zip-box",
  11461. "text": "Zip Box"
  11462. }
  11463. ]
  11464. },
  11465. {
  11466. "text": "Simple Line",
  11467. "children": [
  11468. {
  11469. "id": "simpleline::emify-favicon-alt",
  11470. "text": "Emify Favicon Alt"
  11471. },
  11472. {
  11473. "id": "simpleline::user",
  11474. "text": "User"
  11475. },
  11476. {
  11477. "id": "simpleline::people",
  11478. "text": "People"
  11479. },
  11480. {
  11481. "id": "simpleline::user-female",
  11482. "text": "User Female"
  11483. },
  11484. {
  11485. "id": "simpleline::user-follow",
  11486. "text": "User Follow"
  11487. },
  11488. {
  11489. "id": "simpleline::user-following",
  11490. "text": "User Following"
  11491. },
  11492. {
  11493. "id": "simpleline::user-unfollow",
  11494. "text": "User Unfollow"
  11495. },
  11496. {
  11497. "id": "simpleline::login",
  11498. "text": "Login"
  11499. },
  11500. {
  11501. "id": "simpleline::logout",
  11502. "text": "Logout"
  11503. },
  11504. {
  11505. "id": "simpleline::emotsmile",
  11506. "text": "Emotsmile"
  11507. },
  11508. {
  11509. "id": "simpleline::phone",
  11510. "text": "Phone"
  11511. },
  11512. {
  11513. "id": "simpleline::call-end",
  11514. "text": "Call End"
  11515. },
  11516. {
  11517. "id": "simpleline::call-in",
  11518. "text": "Call In"
  11519. },
  11520. {
  11521. "id": "simpleline::call-out",
  11522. "text": "Call Out"
  11523. },
  11524. {
  11525. "id": "simpleline::map",
  11526. "text": "Map"
  11527. },
  11528. {
  11529. "id": "simpleline::location-pin",
  11530. "text": "Location Pin"
  11531. },
  11532. {
  11533. "id": "simpleline::direction",
  11534. "text": "Direction"
  11535. },
  11536. {
  11537. "id": "simpleline::directions",
  11538. "text": "Directions"
  11539. },
  11540. {
  11541. "id": "simpleline::compass",
  11542. "text": "Compass"
  11543. },
  11544. {
  11545. "id": "simpleline::layers",
  11546. "text": "Layers"
  11547. },
  11548. {
  11549. "id": "simpleline::menu",
  11550. "text": "Menu"
  11551. },
  11552. {
  11553. "id": "simpleline::list",
  11554. "text": "List"
  11555. },
  11556. {
  11557. "id": "simpleline::options-vertical",
  11558. "text": "Options Vertical"
  11559. },
  11560. {
  11561. "id": "simpleline::options",
  11562. "text": "Options"
  11563. },
  11564. {
  11565. "id": "simpleline::arrow-down",
  11566. "text": "Arrow Down"
  11567. },
  11568. {
  11569. "id": "simpleline::arrow-left",
  11570. "text": "Arrow Left"
  11571. },
  11572. {
  11573. "id": "simpleline::arrow-right",
  11574. "text": "Arrow Right"
  11575. },
  11576. {
  11577. "id": "simpleline::arrow-up",
  11578. "text": "Arrow Up"
  11579. },
  11580. {
  11581. "id": "simpleline::arrow-up-circle",
  11582. "text": "Arrow Up Circle"
  11583. },
  11584. {
  11585. "id": "simpleline::arrow-left-circle",
  11586. "text": "Arrow Left Circle"
  11587. },
  11588. {
  11589. "id": "simpleline::arrow-right-circle",
  11590. "text": "Arrow Right Circle"
  11591. },
  11592. {
  11593. "id": "simpleline::arrow-down-circle",
  11594. "text": "Arrow Down Circle"
  11595. },
  11596. {
  11597. "id": "simpleline::check",
  11598. "text": "Check"
  11599. },
  11600. {
  11601. "id": "simpleline::clock",
  11602. "text": "Clock"
  11603. },
  11604. {
  11605. "id": "simpleline::plus",
  11606. "text": "Plus"
  11607. },
  11608. {
  11609. "id": "simpleline::close",
  11610. "text": "Close"
  11611. },
  11612. {
  11613. "id": "simpleline::trophy",
  11614. "text": "Trophy"
  11615. },
  11616. {
  11617. "id": "simpleline::screen-smartphone",
  11618. "text": "Screen Smartphone"
  11619. },
  11620. {
  11621. "id": "simpleline::screen-desktop",
  11622. "text": "Screen Desktop"
  11623. },
  11624. {
  11625. "id": "simpleline::plane",
  11626. "text": "Plane"
  11627. },
  11628. {
  11629. "id": "simpleline::notebook",
  11630. "text": "Notebook"
  11631. },
  11632. {
  11633. "id": "simpleline::mustache",
  11634. "text": "Mustache"
  11635. },
  11636. {
  11637. "id": "simpleline::mouse",
  11638. "text": "Mouse"
  11639. },
  11640. {
  11641. "id": "simpleline::magnet",
  11642. "text": "Magnet"
  11643. },
  11644. {
  11645. "id": "simpleline::energy",
  11646. "text": "Energy"
  11647. },
  11648. {
  11649. "id": "simpleline::disc",
  11650. "text": "Disc"
  11651. },
  11652. {
  11653. "id": "simpleline::cursor",
  11654. "text": "Cursor"
  11655. },
  11656. {
  11657. "id": "simpleline::cursor-move",
  11658. "text": "Cursor Move"
  11659. },
  11660. {
  11661. "id": "simpleline::crop",
  11662. "text": "Crop"
  11663. },
  11664. {
  11665. "id": "simpleline::chemistry",
  11666. "text": "Chemistry"
  11667. },
  11668. {
  11669. "id": "simpleline::speedometer",
  11670. "text": "Speedometer"
  11671. },
  11672. {
  11673. "id": "simpleline::shield",
  11674. "text": "Shield"
  11675. },
  11676. {
  11677. "id": "simpleline::screen-tablet",
  11678. "text": "Screen Tablet"
  11679. },
  11680. {
  11681. "id": "simpleline::magic-wand",
  11682. "text": "Magic Wand"
  11683. },
  11684. {
  11685. "id": "simpleline::hourglass",
  11686. "text": "Hourglass"
  11687. },
  11688. {
  11689. "id": "simpleline::graduation",
  11690. "text": "Graduation"
  11691. },
  11692. {
  11693. "id": "simpleline::ghost",
  11694. "text": "Ghost"
  11695. },
  11696. {
  11697. "id": "simpleline::game-controller",
  11698. "text": "Game Controller"
  11699. },
  11700. {
  11701. "id": "simpleline::fire",
  11702. "text": "Fire"
  11703. },
  11704. {
  11705. "id": "simpleline::eyeglass",
  11706. "text": "Eyeglass"
  11707. },
  11708. {
  11709. "id": "simpleline::envelope-open",
  11710. "text": "Envelope Open"
  11711. },
  11712. {
  11713. "id": "simpleline::envolope-letter",
  11714. "text": "Envolope Letter"
  11715. },
  11716. {
  11717. "id": "simpleline::bell",
  11718. "text": "Bell"
  11719. },
  11720. {
  11721. "id": "simpleline::badge",
  11722. "text": "Badge"
  11723. },
  11724. {
  11725. "id": "simpleline::anchor",
  11726. "text": "Anchor"
  11727. },
  11728. {
  11729. "id": "simpleline::wallet",
  11730. "text": "Wallet"
  11731. },
  11732. {
  11733. "id": "simpleline::vector",
  11734. "text": "Vector"
  11735. },
  11736. {
  11737. "id": "simpleline::speech",
  11738. "text": "Speech"
  11739. },
  11740. {
  11741. "id": "simpleline::puzzle",
  11742. "text": "Puzzle"
  11743. },
  11744. {
  11745. "id": "simpleline::printer",
  11746. "text": "Printer"
  11747. },
  11748. {
  11749. "id": "simpleline::present",
  11750. "text": "Present"
  11751. },
  11752. {
  11753. "id": "simpleline::playlist",
  11754. "text": "Playlist"
  11755. },
  11756. {
  11757. "id": "simpleline::pin",
  11758. "text": "Pin"
  11759. },
  11760. {
  11761. "id": "simpleline::picture",
  11762. "text": "Picture"
  11763. },
  11764. {
  11765. "id": "simpleline::handbag",
  11766. "text": "Handbag"
  11767. },
  11768. {
  11769. "id": "simpleline::globe-alt",
  11770. "text": "Globe Alt"
  11771. },
  11772. {
  11773. "id": "simpleline::globe",
  11774. "text": "Globe"
  11775. },
  11776. {
  11777. "id": "simpleline::folder-alt",
  11778. "text": "Folder Alt"
  11779. },
  11780. {
  11781. "id": "simpleline::folder",
  11782. "text": "Folder"
  11783. },
  11784. {
  11785. "id": "simpleline::film",
  11786. "text": "Film"
  11787. },
  11788. {
  11789. "id": "simpleline::feed",
  11790. "text": "Feed"
  11791. },
  11792. {
  11793. "id": "simpleline::drop",
  11794. "text": "Drop"
  11795. },
  11796. {
  11797. "id": "simpleline::drawar",
  11798. "text": "Drawar"
  11799. },
  11800. {
  11801. "id": "simpleline::docs",
  11802. "text": "Docs"
  11803. },
  11804. {
  11805. "id": "simpleline::doc",
  11806. "text": "Doc"
  11807. },
  11808. {
  11809. "id": "simpleline::diamond",
  11810. "text": "Diamond"
  11811. },
  11812. {
  11813. "id": "simpleline::cup",
  11814. "text": "Cup"
  11815. },
  11816. {
  11817. "id": "simpleline::calculator",
  11818. "text": "Calculator"
  11819. },
  11820. {
  11821. "id": "simpleline::bubbles",
  11822. "text": "Bubbles"
  11823. },
  11824. {
  11825. "id": "simpleline::briefcase",
  11826. "text": "Briefcase"
  11827. },
  11828. {
  11829. "id": "simpleline::book-open",
  11830. "text": "Book Open"
  11831. },
  11832. {
  11833. "id": "simpleline::basket-loaded",
  11834. "text": "Basket Loaded"
  11835. },
  11836. {
  11837. "id": "simpleline::basket",
  11838. "text": "Basket"
  11839. },
  11840. {
  11841. "id": "simpleline::bag",
  11842. "text": "Bag"
  11843. },
  11844. {
  11845. "id": "simpleline::action-undo",
  11846. "text": "Action Undo"
  11847. },
  11848. {
  11849. "id": "simpleline::action-redo",
  11850. "text": "Action Redo"
  11851. },
  11852. {
  11853. "id": "simpleline::wrench",
  11854. "text": "Wrench"
  11855. },
  11856. {
  11857. "id": "simpleline::umbrella",
  11858. "text": "Umbrella"
  11859. },
  11860. {
  11861. "id": "simpleline::trash",
  11862. "text": "Trash"
  11863. },
  11864. {
  11865. "id": "simpleline::tag",
  11866. "text": "Tag"
  11867. },
  11868. {
  11869. "id": "simpleline::support",
  11870. "text": "Support"
  11871. },
  11872. {
  11873. "id": "simpleline::frame",
  11874. "text": "Frame"
  11875. },
  11876. {
  11877. "id": "simpleline::size-fullscreen",
  11878. "text": "Size Fullscreen"
  11879. },
  11880. {
  11881. "id": "simpleline::size-actual",
  11882. "text": "Size Actual"
  11883. },
  11884. {
  11885. "id": "simpleline::shuffle",
  11886. "text": "Shuffle"
  11887. },
  11888. {
  11889. "id": "simpleline::share-alt",
  11890. "text": "Share Alt"
  11891. },
  11892. {
  11893. "id": "simpleline::share",
  11894. "text": "Share"
  11895. },
  11896. {
  11897. "id": "simpleline::rocket",
  11898. "text": "Rocket"
  11899. },
  11900. {
  11901. "id": "simpleline::question",
  11902. "text": "Question"
  11903. },
  11904. {
  11905. "id": "simpleline::pie-chart",
  11906. "text": "Pie Chart"
  11907. },
  11908. {
  11909. "id": "simpleline::pencil",
  11910. "text": "Pencil"
  11911. },
  11912. {
  11913. "id": "simpleline::note",
  11914. "text": "Note"
  11915. },
  11916. {
  11917. "id": "simpleline::loop",
  11918. "text": "Loop"
  11919. },
  11920. {
  11921. "id": "simpleline::home",
  11922. "text": "Home"
  11923. },
  11924. {
  11925. "id": "simpleline::grid",
  11926. "text": "Grid"
  11927. },
  11928. {
  11929. "id": "simpleline::graph",
  11930. "text": "Graph"
  11931. },
  11932. {
  11933. "id": "simpleline::microphone",
  11934. "text": "Microphone"
  11935. },
  11936. {
  11937. "id": "simpleline::music-tone-alt",
  11938. "text": "Music Tone Alt"
  11939. },
  11940. {
  11941. "id": "simpleline::music-tone",
  11942. "text": "Music Tone"
  11943. },
  11944. {
  11945. "id": "simpleline::earphones-alt",
  11946. "text": "Earphones Alt"
  11947. },
  11948. {
  11949. "id": "simpleline::earphones",
  11950. "text": "Earphones"
  11951. },
  11952. {
  11953. "id": "simpleline::equalizer",
  11954. "text": "Equalizer"
  11955. },
  11956. {
  11957. "id": "simpleline::like",
  11958. "text": "Like"
  11959. },
  11960. {
  11961. "id": "simpleline::dislike",
  11962. "text": "Dislike"
  11963. },
  11964. {
  11965. "id": "simpleline::control-start",
  11966. "text": "Control Start"
  11967. },
  11968. {
  11969. "id": "simpleline::control-rewind",
  11970. "text": "Control Rewind"
  11971. },
  11972. {
  11973. "id": "simpleline::control-play",
  11974. "text": "Control Play"
  11975. },
  11976. {
  11977. "id": "simpleline::control-pause",
  11978. "text": "Control Pause"
  11979. },
  11980. {
  11981. "id": "simpleline::control-forward",
  11982. "text": "Control Forward"
  11983. },
  11984. {
  11985. "id": "simpleline::control-end",
  11986. "text": "Control End"
  11987. },
  11988. {
  11989. "id": "simpleline::volume-1",
  11990. "text": "Volume 1"
  11991. },
  11992. {
  11993. "id": "simpleline::volume-2",
  11994. "text": "Volume 2"
  11995. },
  11996. {
  11997. "id": "simpleline::volume-off",
  11998. "text": "Volume Off"
  11999. },
  12000. {
  12001. "id": "simpleline::calender",
  12002. "text": "Calender"
  12003. },
  12004. {
  12005. "id": "simpleline::bulb",
  12006. "text": "Bulb"
  12007. },
  12008. {
  12009. "id": "simpleline::chart",
  12010. "text": "Chart"
  12011. },
  12012. {
  12013. "id": "simpleline::ban",
  12014. "text": "Ban"
  12015. },
  12016. {
  12017. "id": "simpleline::bubble",
  12018. "text": "Bubble"
  12019. },
  12020. {
  12021. "id": "simpleline::camrecorder",
  12022. "text": "Camrecorder"
  12023. },
  12024. {
  12025. "id": "simpleline::camera",
  12026. "text": "Camera"
  12027. },
  12028. {
  12029. "id": "simpleline::cloud-download",
  12030. "text": "Cloud Download"
  12031. },
  12032. {
  12033. "id": "simpleline::cloud-upload",
  12034. "text": "Cloud Upload"
  12035. },
  12036. {
  12037. "id": "simpleline::eye",
  12038. "text": "Eye"
  12039. },
  12040. {
  12041. "id": "simpleline::flag",
  12042. "text": "Flag"
  12043. },
  12044. {
  12045. "id": "simpleline::heart",
  12046. "text": "Heart"
  12047. },
  12048. {
  12049. "id": "simpleline::info",
  12050. "text": "Info"
  12051. },
  12052. {
  12053. "id": "simpleline::key",
  12054. "text": "Key"
  12055. },
  12056. {
  12057. "id": "simpleline::link",
  12058. "text": "Link"
  12059. },
  12060. {
  12061. "id": "simpleline::lock",
  12062. "text": "Lock"
  12063. },
  12064. {
  12065. "id": "simpleline::lock-open",
  12066. "text": "Lock Open"
  12067. },
  12068. {
  12069. "id": "simpleline::magnifier",
  12070. "text": "Magnifier"
  12071. },
  12072. {
  12073. "id": "simpleline::magnifier-add",
  12074. "text": "Magnifier Add"
  12075. },
  12076. {
  12077. "id": "simpleline::magnifier-remove",
  12078. "text": "Magnifier Remove"
  12079. },
  12080. {
  12081. "id": "simpleline::paper-clip",
  12082. "text": "Paper Clip"
  12083. },
  12084. {
  12085. "id": "simpleline::paper-plane",
  12086. "text": "Paper Plane"
  12087. },
  12088. {
  12089. "id": "simpleline::power",
  12090. "text": "Power"
  12091. },
  12092. {
  12093. "id": "simpleline::refresh",
  12094. "text": "Refresh"
  12095. },
  12096. {
  12097. "id": "simpleline::reload",
  12098. "text": "Reload"
  12099. },
  12100. {
  12101. "id": "simpleline::settings",
  12102. "text": "Settings"
  12103. },
  12104. {
  12105. "id": "simpleline::star",
  12106. "text": "Star"
  12107. },
  12108. {
  12109. "id": "simpleline::symble-female",
  12110. "text": "Symble Female"
  12111. },
  12112. {
  12113. "id": "simpleline::symbol-male",
  12114. "text": "Symbol Male"
  12115. },
  12116. {
  12117. "id": "simpleline::target",
  12118. "text": "Target"
  12119. },
  12120. {
  12121. "id": "simpleline::credit-card",
  12122. "text": "Credit Card"
  12123. },
  12124. {
  12125. "id": "simpleline::paypal",
  12126. "text": "Paypal"
  12127. },
  12128. {
  12129. "id": "simpleline::social-tumblr",
  12130. "text": "Social Tumblr"
  12131. },
  12132. {
  12133. "id": "simpleline::social-twitter",
  12134. "text": "Social Twitter"
  12135. },
  12136. {
  12137. "id": "simpleline::social-facebook",
  12138. "text": "Social Facebook"
  12139. },
  12140. {
  12141. "id": "simpleline::social-instagram",
  12142. "text": "Social Instagram"
  12143. },
  12144. {
  12145. "id": "simpleline::social-linkedin",
  12146. "text": "Social Linkedin"
  12147. },
  12148. {
  12149. "id": "simpleline::social-pintarest",
  12150. "text": "Social Pintarest"
  12151. },
  12152. {
  12153. "id": "simpleline::social-github",
  12154. "text": "Social Github"
  12155. },
  12156. {
  12157. "id": "simpleline::social-gplus",
  12158. "text": "Social Gplus"
  12159. },
  12160. {
  12161. "id": "simpleline::social-reddit",
  12162. "text": "Social Reddit"
  12163. },
  12164. {
  12165. "id": "simpleline::social-skype",
  12166. "text": "Social Skype"
  12167. },
  12168. {
  12169. "id": "simpleline::social-dribbble",
  12170. "text": "Social Dribbble"
  12171. },
  12172. {
  12173. "id": "simpleline::social-behance",
  12174. "text": "Social Behance"
  12175. },
  12176. {
  12177. "id": "simpleline::social-foursqare",
  12178. "text": "Social Foursqare"
  12179. },
  12180. {
  12181. "id": "simpleline::social-soundcloud",
  12182. "text": "Social Soundcloud"
  12183. },
  12184. {
  12185. "id": "simpleline::social-spotify",
  12186. "text": "Social Spotify"
  12187. },
  12188. {
  12189. "id": "simpleline::social-stumbleupon",
  12190. "text": "Social Stumbleupon"
  12191. },
  12192. {
  12193. "id": "simpleline::social-youtube",
  12194. "text": "Social Youtube"
  12195. },
  12196. {
  12197. "id": "simpleline::social-dropbox",
  12198. "text": "Social Dropbox"
  12199. },
  12200. {
  12201. "id": "simpleline::di-emoticon-cool",
  12202. "text": "Di Emoticon Cool"
  12203. },
  12204. {
  12205. "id": "simpleline::di-emoticon-dead",
  12206. "text": "Di Emoticon Dead"
  12207. },
  12208. {
  12209. "id": "simpleline::di-emoticon-devil",
  12210. "text": "Di Emoticon Devil"
  12211. },
  12212. {
  12213. "id": "simpleline::di-emoticon-excited",
  12214. "text": "Di Emoticon Excited"
  12215. },
  12216. {
  12217. "id": "simpleline::di-emoticon-happy",
  12218. "text": "Di Emoticon Happy"
  12219. },
  12220. {
  12221. "id": "simpleline::di-emoticon-neutral",
  12222. "text": "Di Emoticon Neutral"
  12223. },
  12224. {
  12225. "id": "simpleline::di-emoticon-poop",
  12226. "text": "Di Emoticon Poop"
  12227. },
  12228. {
  12229. "id": "simpleline::di-emoticon-sad",
  12230. "text": "Di Emoticon Sad"
  12231. },
  12232. {
  12233. "id": "simpleline::di-emoticon-tongue",
  12234. "text": "Di Emoticon Tongue"
  12235. }
  12236. ]
  12237. },
  12238. {
  12239. "text": "Weather Icon",
  12240. "children": [
  12241. {
  12242. "id": "weathericon::day-cloudy-high",
  12243. "text": "Day Cloudy High"
  12244. },
  12245. {
  12246. "id": "weathericon::moonrise",
  12247. "text": "Moonrise"
  12248. },
  12249. {
  12250. "id": "weathericon::volcano",
  12251. "text": "Volcano"
  12252. },
  12253. {
  12254. "id": "weathericon::day-light-wind",
  12255. "text": "Day Light Wind"
  12256. },
  12257. {
  12258. "id": "weathericon::moonset",
  12259. "text": "Moonset"
  12260. },
  12261. {
  12262. "id": "weathericon::flood",
  12263. "text": "Flood"
  12264. },
  12265. {
  12266. "id": "weathericon::train",
  12267. "text": "Train"
  12268. },
  12269. {
  12270. "id": "weathericon::day-sleet",
  12271. "text": "Day Sleet"
  12272. },
  12273. {
  12274. "id": "weathericon::night-sleet",
  12275. "text": "Night Sleet"
  12276. },
  12277. {
  12278. "id": "weathericon::sandstorm",
  12279. "text": "Sandstorm"
  12280. },
  12281. {
  12282. "id": "weathericon::small-craft-advisory",
  12283. "text": "Small Craft Advisory"
  12284. },
  12285. {
  12286. "id": "weathericon::day-haze",
  12287. "text": "Day Haze"
  12288. },
  12289. {
  12290. "id": "weathericon::night-alt-sleet",
  12291. "text": "Night Alt Sleet"
  12292. },
  12293. {
  12294. "id": "weathericon::tsunami",
  12295. "text": "Tsunami"
  12296. },
  12297. {
  12298. "id": "weathericon::gale-warning",
  12299. "text": "Gale Warning"
  12300. },
  12301. {
  12302. "id": "weathericon::night-cloudy-high",
  12303. "text": "Night Cloudy High"
  12304. },
  12305. {
  12306. "id": "weathericon::raindrop",
  12307. "text": "Raindrop"
  12308. },
  12309. {
  12310. "id": "weathericon::earthquake",
  12311. "text": "Earthquake"
  12312. },
  12313. {
  12314. "id": "weathericon::storm-warning",
  12315. "text": "Storm Warning"
  12316. },
  12317. {
  12318. "id": "weathericon::night-alt-partly-cloudy",
  12319. "text": "Night Alt Partly Cloudy"
  12320. },
  12321. {
  12322. "id": "weathericon::barometer",
  12323. "text": "Barometer"
  12324. },
  12325. {
  12326. "id": "weathericon::fire",
  12327. "text": "Fire"
  12328. },
  12329. {
  12330. "id": "weathericon::hurricane-warning",
  12331. "text": "Hurricane Warning"
  12332. },
  12333. {
  12334. "id": "weathericon::sleet",
  12335. "text": "Sleet"
  12336. },
  12337. {
  12338. "id": "weathericon::humidity",
  12339. "text": "Humidity"
  12340. },
  12341. {
  12342. "id": "weathericon::day-sunny",
  12343. "text": "Day Sunny"
  12344. },
  12345. {
  12346. "id": "weathericon::day-cloudy",
  12347. "text": "Day Cloudy"
  12348. },
  12349. {
  12350. "id": "weathericon::day-cloudy-gusts",
  12351. "text": "Day Cloudy Gusts"
  12352. },
  12353. {
  12354. "id": "weathericon::day-cloudy-windy",
  12355. "text": "Day Cloudy Windy"
  12356. },
  12357. {
  12358. "id": "weathericon::day-fog",
  12359. "text": "Day Fog"
  12360. },
  12361. {
  12362. "id": "weathericon::day-hail",
  12363. "text": "Day Hail"
  12364. },
  12365. {
  12366. "id": "weathericon::day-haze",
  12367. "text": "Day Haze"
  12368. },
  12369. {
  12370. "id": "weathericon::day-lightning",
  12371. "text": "Day Lightning"
  12372. },
  12373. {
  12374. "id": "weathericon::day-rain",
  12375. "text": "Day Rain"
  12376. },
  12377. {
  12378. "id": "weathericon::day-rain-mix",
  12379. "text": "Day Rain Mix"
  12380. },
  12381. {
  12382. "id": "weathericon::day-rain-wind",
  12383. "text": "Day Rain Wind"
  12384. },
  12385. {
  12386. "id": "weathericon::day-showers",
  12387. "text": "Day Showers"
  12388. },
  12389. {
  12390. "id": "weathericon::day-sleet",
  12391. "text": "Day Sleet"
  12392. },
  12393. {
  12394. "id": "weathericon::day-sleet-storm",
  12395. "text": "Day Sleet Storm"
  12396. },
  12397. {
  12398. "id": "weathericon::day-snow",
  12399. "text": "Day Snow"
  12400. },
  12401. {
  12402. "id": "weathericon::day-snow-thunderstorm",
  12403. "text": "Day Snow Thunderstorm"
  12404. },
  12405. {
  12406. "id": "weathericon::day-snow-wind",
  12407. "text": "Day Snow Wind"
  12408. },
  12409. {
  12410. "id": "weathericon::day-sprinkle",
  12411. "text": "Day Sprinkle"
  12412. },
  12413. {
  12414. "id": "weathericon::day-storm-showers",
  12415. "text": "Day Storm Showers"
  12416. },
  12417. {
  12418. "id": "weathericon::day-sunny-overcast",
  12419. "text": "Day Sunny Overcast"
  12420. },
  12421. {
  12422. "id": "weathericon::day-thunderstorm",
  12423. "text": "Day Thunderstorm"
  12424. },
  12425. {
  12426. "id": "weathericon::day-windy",
  12427. "text": "Day Windy"
  12428. },
  12429. {
  12430. "id": "weathericon::solar-eclipse",
  12431. "text": "Solar Eclipse"
  12432. },
  12433. {
  12434. "id": "weathericon::hot",
  12435. "text": "Hot"
  12436. },
  12437. {
  12438. "id": "weathericon::day-cloudy-high",
  12439. "text": "Day Cloudy High"
  12440. },
  12441. {
  12442. "id": "weathericon::day-light-wind",
  12443. "text": "Day Light Wind"
  12444. },
  12445. {
  12446. "id": "weathericon::night-clear",
  12447. "text": "Night Clear"
  12448. },
  12449. {
  12450. "id": "weathericon::night-alt-cloudy",
  12451. "text": "Night Alt Cloudy"
  12452. },
  12453. {
  12454. "id": "weathericon::night-alt-cloudy-gusts",
  12455. "text": "Night Alt Cloudy Gusts"
  12456. },
  12457. {
  12458. "id": "weathericon::night-alt-cloudy-windy",
  12459. "text": "Night Alt Cloudy Windy"
  12460. },
  12461. {
  12462. "id": "weathericon::night-alt-hail",
  12463. "text": "Night Alt Hail"
  12464. },
  12465. {
  12466. "id": "weathericon::night-alt-lightning",
  12467. "text": "Night Alt Lightning"
  12468. },
  12469. {
  12470. "id": "weathericon::night-alt-rain",
  12471. "text": "Night Alt Rain"
  12472. },
  12473. {
  12474. "id": "weathericon::night-alt-rain-mix",
  12475. "text": "Night Alt Rain Mix"
  12476. },
  12477. {
  12478. "id": "weathericon::night-alt-rain-wind",
  12479. "text": "Night Alt Rain Wind"
  12480. },
  12481. {
  12482. "id": "weathericon::night-alt-showers",
  12483. "text": "Night Alt Showers"
  12484. },
  12485. {
  12486. "id": "weathericon::night-alt-sleet",
  12487. "text": "Night Alt Sleet"
  12488. },
  12489. {
  12490. "id": "weathericon::night-alt-sleet-storm",
  12491. "text": "Night Alt Sleet Storm"
  12492. },
  12493. {
  12494. "id": "weathericon::night-alt-snow",
  12495. "text": "Night Alt Snow"
  12496. },
  12497. {
  12498. "id": "weathericon::night-alt-snow-thunderstorm",
  12499. "text": "Night Alt Snow Thunderstorm"
  12500. },
  12501. {
  12502. "id": "weathericon::night-alt-snow-wind",
  12503. "text": "Night Alt Snow Wind"
  12504. },
  12505. {
  12506. "id": "weathericon::night-alt-sprinkle",
  12507. "text": "Night Alt Sprinkle"
  12508. },
  12509. {
  12510. "id": "weathericon::night-alt-storm-showers",
  12511. "text": "Night Alt Storm Showers"
  12512. },
  12513. {
  12514. "id": "weathericon::night-alt-thunderstorm",
  12515. "text": "Night Alt Thunderstorm"
  12516. },
  12517. {
  12518. "id": "weathericon::night-cloudy",
  12519. "text": "Night Cloudy"
  12520. },
  12521. {
  12522. "id": "weathericon::night-cloudy-gusts",
  12523. "text": "Night Cloudy Gusts"
  12524. },
  12525. {
  12526. "id": "weathericon::night-cloudy-windy",
  12527. "text": "Night Cloudy Windy"
  12528. },
  12529. {
  12530. "id": "weathericon::night-fog",
  12531. "text": "Night Fog"
  12532. },
  12533. {
  12534. "id": "weathericon::night-hail",
  12535. "text": "Night Hail"
  12536. },
  12537. {
  12538. "id": "weathericon::night-lightning",
  12539. "text": "Night Lightning"
  12540. },
  12541. {
  12542. "id": "weathericon::night-partly-cloudy",
  12543. "text": "Night Partly Cloudy"
  12544. },
  12545. {
  12546. "id": "weathericon::night-rain",
  12547. "text": "Night Rain"
  12548. },
  12549. {
  12550. "id": "weathericon::night-rain-mix",
  12551. "text": "Night Rain Mix"
  12552. },
  12553. {
  12554. "id": "weathericon::night-rain-wind",
  12555. "text": "Night Rain Wind"
  12556. },
  12557. {
  12558. "id": "weathericon::night-showers",
  12559. "text": "Night Showers"
  12560. },
  12561. {
  12562. "id": "weathericon::night-sleet",
  12563. "text": "Night Sleet"
  12564. },
  12565. {
  12566. "id": "weathericon::night-sleet-storm",
  12567. "text": "Night Sleet Storm"
  12568. },
  12569. {
  12570. "id": "weathericon::night-snow",
  12571. "text": "Night Snow"
  12572. },
  12573. {
  12574. "id": "weathericon::night-snow-thunderstorm",
  12575. "text": "Night Snow Thunderstorm"
  12576. },
  12577. {
  12578. "id": "weathericon::night-snow-wind",
  12579. "text": "Night Snow Wind"
  12580. },
  12581. {
  12582. "id": "weathericon::night-sprinkle",
  12583. "text": "Night Sprinkle"
  12584. },
  12585. {
  12586. "id": "weathericon::night-storm-showers",
  12587. "text": "Night Storm Showers"
  12588. },
  12589. {
  12590. "id": "weathericon::night-thunderstorm",
  12591. "text": "Night Thunderstorm"
  12592. },
  12593. {
  12594. "id": "weathericon::lunar-eclipse",
  12595. "text": "Lunar Eclipse"
  12596. },
  12597. {
  12598. "id": "weathericon::stars",
  12599. "text": "Stars"
  12600. },
  12601. {
  12602. "id": "weathericon::storm-showers",
  12603. "text": "Storm Showers"
  12604. },
  12605. {
  12606. "id": "weathericon::thunderstorm",
  12607. "text": "Thunderstorm"
  12608. },
  12609. {
  12610. "id": "weathericon::night-alt-cloudy-high",
  12611. "text": "Night Alt Cloudy High"
  12612. },
  12613. {
  12614. "id": "weathericon::night-cloudy-high",
  12615. "text": "Night Cloudy High"
  12616. },
  12617. {
  12618. "id": "weathericon::night-alt-partly-cloudy",
  12619. "text": "Night Alt Partly Cloudy"
  12620. },
  12621. {
  12622. "id": "weathericon::cloud",
  12623. "text": "Cloud"
  12624. },
  12625. {
  12626. "id": "weathericon::cloudy",
  12627. "text": "Cloudy"
  12628. },
  12629. {
  12630. "id": "weathericon::cloudy-gusts",
  12631. "text": "Cloudy Gusts"
  12632. },
  12633. {
  12634. "id": "weathericon::cloudy-windy",
  12635. "text": "Cloudy Windy"
  12636. },
  12637. {
  12638. "id": "weathericon::fog",
  12639. "text": "Fog"
  12640. },
  12641. {
  12642. "id": "weathericon::hail",
  12643. "text": "Hail"
  12644. },
  12645. {
  12646. "id": "weathericon::rain",
  12647. "text": "Rain"
  12648. },
  12649. {
  12650. "id": "weathericon::rain-mix",
  12651. "text": "Rain Mix"
  12652. },
  12653. {
  12654. "id": "weathericon::rain-wind",
  12655. "text": "Rain Wind"
  12656. },
  12657. {
  12658. "id": "weathericon::showers",
  12659. "text": "Showers"
  12660. },
  12661. {
  12662. "id": "weathericon::sleet",
  12663. "text": "Sleet"
  12664. },
  12665. {
  12666. "id": "weathericon::snow",
  12667. "text": "Snow"
  12668. },
  12669. {
  12670. "id": "weathericon::sprinkle",
  12671. "text": "Sprinkle"
  12672. },
  12673. {
  12674. "id": "weathericon::storm-showers",
  12675. "text": "Storm Showers"
  12676. },
  12677. {
  12678. "id": "weathericon::thunderstorm",
  12679. "text": "Thunderstorm"
  12680. },
  12681. {
  12682. "id": "weathericon::snow-wind",
  12683. "text": "Snow Wind"
  12684. },
  12685. {
  12686. "id": "weathericon::snow",
  12687. "text": "Snow"
  12688. },
  12689. {
  12690. "id": "weathericon::smog",
  12691. "text": "Smog"
  12692. },
  12693. {
  12694. "id": "weathericon::smoke",
  12695. "text": "Smoke"
  12696. },
  12697. {
  12698. "id": "weathericon::lightning",
  12699. "text": "Lightning"
  12700. },
  12701. {
  12702. "id": "weathericon::raindrops",
  12703. "text": "Raindrops"
  12704. },
  12705. {
  12706. "id": "weathericon::raindrop",
  12707. "text": "Raindrop"
  12708. },
  12709. {
  12710. "id": "weathericon::dust",
  12711. "text": "Dust"
  12712. },
  12713. {
  12714. "id": "weathericon::snowflake-cold",
  12715. "text": "Snowflake Cold"
  12716. },
  12717. {
  12718. "id": "weathericon::windy",
  12719. "text": "Windy"
  12720. },
  12721. {
  12722. "id": "weathericon::strong-wind",
  12723. "text": "Strong Wind"
  12724. },
  12725. {
  12726. "id": "weathericon::sandstorm",
  12727. "text": "Sandstorm"
  12728. },
  12729. {
  12730. "id": "weathericon::earthquake",
  12731. "text": "Earthquake"
  12732. },
  12733. {
  12734. "id": "weathericon::fire",
  12735. "text": "Fire"
  12736. },
  12737. {
  12738. "id": "weathericon::flood",
  12739. "text": "Flood"
  12740. },
  12741. {
  12742. "id": "weathericon::meteor",
  12743. "text": "Meteor"
  12744. },
  12745. {
  12746. "id": "weathericon::tsunami",
  12747. "text": "Tsunami"
  12748. },
  12749. {
  12750. "id": "weathericon::volcano",
  12751. "text": "Volcano"
  12752. },
  12753. {
  12754. "id": "weathericon::hurricane",
  12755. "text": "Hurricane"
  12756. },
  12757. {
  12758. "id": "weathericon::tornado",
  12759. "text": "Tornado"
  12760. },
  12761. {
  12762. "id": "weathericon::small-craft-advisory",
  12763. "text": "Small Craft Advisory"
  12764. },
  12765. {
  12766. "id": "weathericon::gale-warning",
  12767. "text": "Gale Warning"
  12768. },
  12769. {
  12770. "id": "weathericon::storm-warning",
  12771. "text": "Storm Warning"
  12772. },
  12773. {
  12774. "id": "weathericon::hurricane-warning",
  12775. "text": "Hurricane Warning"
  12776. },
  12777. {
  12778. "id": "weathericon::wind-direction",
  12779. "text": "Wind Direction"
  12780. },
  12781. {
  12782. "id": "weathericon::moon-new",
  12783. "text": "Moon New"
  12784. },
  12785. {
  12786. "id": "weathericon::moon-waxing-cresent-1",
  12787. "text": "Moon Waxing Cresent 1"
  12788. },
  12789. {
  12790. "id": "weathericon::moon-waxing-cresent-2",
  12791. "text": "Moon Waxing Cresent 2"
  12792. },
  12793. {
  12794. "id": "weathericon::moon-waxing-cresent-3",
  12795. "text": "Moon Waxing Cresent 3"
  12796. },
  12797. {
  12798. "id": "weathericon::moon-waxing-cresent-4",
  12799. "text": "Moon Waxing Cresent 4"
  12800. },
  12801. {
  12802. "id": "weathericon::moon-waxing-cresent-5",
  12803. "text": "Moon Waxing Cresent 5"
  12804. },
  12805. {
  12806. "id": "weathericon::moon-waxing-cresent-6",
  12807. "text": "Moon Waxing Cresent 6"
  12808. },
  12809. {
  12810. "id": "weathericon::moon-first-quarter",
  12811. "text": "Moon First Quarter"
  12812. },
  12813. {
  12814. "id": "weathericon::moon-waxing-gibbous-1",
  12815. "text": "Moon Waxing Gibbous 1"
  12816. },
  12817. {
  12818. "id": "weathericon::moon-waxing-gibbous-2",
  12819. "text": "Moon Waxing Gibbous 2"
  12820. },
  12821. {
  12822. "id": "weathericon::moon-waxing-gibbous-3",
  12823. "text": "Moon Waxing Gibbous 3"
  12824. },
  12825. {
  12826. "id": "weathericon::moon-waxing-gibbous-4",
  12827. "text": "Moon Waxing Gibbous 4"
  12828. },
  12829. {
  12830. "id": "weathericon::moon-waxing-gibbous-5",
  12831. "text": "Moon Waxing Gibbous 5"
  12832. },
  12833. {
  12834. "id": "weathericon::moon-waxing-gibbous-6",
  12835. "text": "Moon Waxing Gibbous 6"
  12836. },
  12837. {
  12838. "id": "weathericon::moon-full",
  12839. "text": "Moon Full"
  12840. },
  12841. {
  12842. "id": "weathericon::moon-waning-gibbous-1",
  12843. "text": "Moon Waning Gibbous 1"
  12844. },
  12845. {
  12846. "id": "weathericon::moon-waning-gibbous-2",
  12847. "text": "Moon Waning Gibbous 2"
  12848. },
  12849. {
  12850. "id": "weathericon::moon-waning-gibbous-3",
  12851. "text": "Moon Waning Gibbous 3"
  12852. },
  12853. {
  12854. "id": "weathericon::moon-waning-gibbous-4",
  12855. "text": "Moon Waning Gibbous 4"
  12856. },
  12857. {
  12858. "id": "weathericon::moon-waning-gibbous-5",
  12859. "text": "Moon Waning Gibbous 5"
  12860. },
  12861. {
  12862. "id": "weathericon::moon-waning-gibbous-6",
  12863. "text": "Moon Waning Gibbous 6"
  12864. },
  12865. {
  12866. "id": "weathericon::moon-third-quarter",
  12867. "text": "Moon Third Quarter"
  12868. },
  12869. {
  12870. "id": "weathericon::moon-waning-crescent-1",
  12871. "text": "Moon Waning Crescent 1"
  12872. },
  12873. {
  12874. "id": "weathericon::moon-waning-crescent-2",
  12875. "text": "Moon Waning Crescent 2"
  12876. },
  12877. {
  12878. "id": "weathericon::moon-waning-crescent-3",
  12879. "text": "Moon Waning Crescent 3"
  12880. },
  12881. {
  12882. "id": "weathericon::moon-waning-crescent-4",
  12883. "text": "Moon Waning Crescent 4"
  12884. },
  12885. {
  12886. "id": "weathericon::moon-waning-crescent-5",
  12887. "text": "Moon Waning Crescent 5"
  12888. },
  12889. {
  12890. "id": "weathericon::moon-waning-crescent-6",
  12891. "text": "Moon Waning Crescent 6"
  12892. },
  12893. {
  12894. "id": "weathericon::moon-alt-new",
  12895. "text": "Moon Alt New"
  12896. },
  12897. {
  12898. "id": "weathericon::moon-alt-waxing-cresent-1",
  12899. "text": "Moon Alt Waxing Cresent 1"
  12900. },
  12901. {
  12902. "id": "weathericon::moon-alt-waxing-cresent-2",
  12903. "text": "Moon Alt Waxing Cresent 2"
  12904. },
  12905. {
  12906. "id": "weathericon::moon-alt-waxing-cresent-3",
  12907. "text": "Moon Alt Waxing Cresent 3"
  12908. },
  12909. {
  12910. "id": "weathericon::moon-alt-waxing-cresent-4",
  12911. "text": "Moon Alt Waxing Cresent 4"
  12912. },
  12913. {
  12914. "id": "weathericon::moon-alt-waxing-cresent-5",
  12915. "text": "Moon Alt Waxing Cresent 5"
  12916. },
  12917. {
  12918. "id": "weathericon::moon-alt-waxing-cresent-6",
  12919. "text": "Moon Alt Waxing Cresent 6"
  12920. },
  12921. {
  12922. "id": "weathericon::moon-alt-first-quarter",
  12923. "text": "Moon Alt First Quarter"
  12924. },
  12925. {
  12926. "id": "weathericon::moon-alt-waxing-gibbous-1",
  12927. "text": "Moon Alt Waxing Gibbous 1"
  12928. },
  12929. {
  12930. "id": "weathericon::moon-alt-waxing-gibbous-2",
  12931. "text": "Moon Alt Waxing Gibbous 2"
  12932. },
  12933. {
  12934. "id": "weathericon::moon-alt-waxing-gibbous-3",
  12935. "text": "Moon Alt Waxing Gibbous 3"
  12936. },
  12937. {
  12938. "id": "weathericon::moon-alt-waxing-gibbous-4",
  12939. "text": "Moon Alt Waxing Gibbous 4"
  12940. },
  12941. {
  12942. "id": "weathericon::moon-alt-waxing-gibbous-5",
  12943. "text": "Moon Alt Waxing Gibbous 5"
  12944. },
  12945. {
  12946. "id": "weathericon::moon-alt-waxing-gibbous-6",
  12947. "text": "Moon Alt Waxing Gibbous 6"
  12948. },
  12949. {
  12950. "id": "weathericon::moon-alt-full",
  12951. "text": "Moon Alt Full"
  12952. },
  12953. {
  12954. "id": "weathericon::moon-alt-waning-gibbous-1",
  12955. "text": "Moon Alt Waning Gibbous 1"
  12956. },
  12957. {
  12958. "id": "weathericon::moon-alt-waning-gibbous-2",
  12959. "text": "Moon Alt Waning Gibbous 2"
  12960. },
  12961. {
  12962. "id": "weathericon::moon-alt-waning-gibbous-3",
  12963. "text": "Moon Alt Waning Gibbous 3"
  12964. },
  12965. {
  12966. "id": "weathericon::moon-alt-waning-gibbous-4",
  12967. "text": "Moon Alt Waning Gibbous 4"
  12968. },
  12969. {
  12970. "id": "weathericon::moon-alt-waning-gibbous-5",
  12971. "text": "Moon Alt Waning Gibbous 5"
  12972. },
  12973. {
  12974. "id": "weathericon::moon-alt-waning-gibbous-6",
  12975. "text": "Moon Alt Waning Gibbous 6"
  12976. },
  12977. {
  12978. "id": "weathericon::moon-alt-third-quarter",
  12979. "text": "Moon Alt Third Quarter"
  12980. },
  12981. {
  12982. "id": "weathericon::moon-alt-waning-crescent-1",
  12983. "text": "Moon Alt Waning Crescent 1"
  12984. },
  12985. {
  12986. "id": "weathericon::moon-alt-waning-crescent-2",
  12987. "text": "Moon Alt Waning Crescent 2"
  12988. },
  12989. {
  12990. "id": "weathericon::moon-alt-waning-crescent-3",
  12991. "text": "Moon Alt Waning Crescent 3"
  12992. },
  12993. {
  12994. "id": "weathericon::moon-alt-waning-crescent-4",
  12995. "text": "Moon Alt Waning Crescent 4"
  12996. },
  12997. {
  12998. "id": "weathericon::moon-alt-waning-crescent-5",
  12999. "text": "Moon Alt Waning Crescent 5"
  13000. },
  13001. {
  13002. "id": "weathericon::moon-alt-waning-crescent-6",
  13003. "text": "Moon Alt Waning Crescent 6"
  13004. },
  13005. {
  13006. "id": "weathericon::alien",
  13007. "text": "Alien"
  13008. },
  13009. {
  13010. "id": "weathericon::celsius",
  13011. "text": "Celsius"
  13012. },
  13013. {
  13014. "id": "weathericon::fahrenheit",
  13015. "text": "Fahrenheit"
  13016. },
  13017. {
  13018. "id": "weathericon::degrees",
  13019. "text": "Degrees"
  13020. },
  13021. {
  13022. "id": "weathericon::thermometer",
  13023. "text": "Thermometer"
  13024. },
  13025. {
  13026. "id": "weathericon::thermometer-exterior",
  13027. "text": "Thermometer Exterior"
  13028. },
  13029. {
  13030. "id": "weathericon::thermometer-internal",
  13031. "text": "Thermometer Internal"
  13032. },
  13033. {
  13034. "id": "weathericon::cloud-down",
  13035. "text": "Cloud Down"
  13036. },
  13037. {
  13038. "id": "weathericon::cloud-up",
  13039. "text": "Cloud Up"
  13040. },
  13041. {
  13042. "id": "weathericon::cloud-refresh",
  13043. "text": "Cloud Refresh"
  13044. },
  13045. {
  13046. "id": "weathericon::horizon",
  13047. "text": "Horizon"
  13048. },
  13049. {
  13050. "id": "weathericon::horizon-alt",
  13051. "text": "Horizon Alt"
  13052. },
  13053. {
  13054. "id": "weathericon::sunrise",
  13055. "text": "Sunrise"
  13056. },
  13057. {
  13058. "id": "weathericon::sunset",
  13059. "text": "Sunset"
  13060. },
  13061. {
  13062. "id": "weathericon::moonrise",
  13063. "text": "Moonrise"
  13064. },
  13065. {
  13066. "id": "weathericon::moonset",
  13067. "text": "Moonset"
  13068. },
  13069. {
  13070. "id": "weathericon::refresh",
  13071. "text": "Refresh"
  13072. },
  13073. {
  13074. "id": "weathericon::refresh-alt",
  13075. "text": "Refresh Alt"
  13076. },
  13077. {
  13078. "id": "weathericon::umbrella",
  13079. "text": "Umbrella"
  13080. },
  13081. {
  13082. "id": "weathericon::barometer",
  13083. "text": "Barometer"
  13084. },
  13085. {
  13086. "id": "weathericon::humidity",
  13087. "text": "Humidity"
  13088. },
  13089. {
  13090. "id": "weathericon::na",
  13091. "text": "Na"
  13092. },
  13093. {
  13094. "id": "weathericon::train",
  13095. "text": "Train"
  13096. },
  13097. {
  13098. "id": "weathericon::time-1",
  13099. "text": "Time 1"
  13100. },
  13101. {
  13102. "id": "weathericon::time-2",
  13103. "text": "Time 2"
  13104. },
  13105. {
  13106. "id": "weathericon::time-3",
  13107. "text": "Time 3"
  13108. },
  13109. {
  13110. "id": "weathericon::time-4",
  13111. "text": "Time 4"
  13112. },
  13113. {
  13114. "id": "weathericon::time-5",
  13115. "text": "Time 5"
  13116. },
  13117. {
  13118. "id": "weathericon::time-6",
  13119. "text": "Time 6"
  13120. },
  13121. {
  13122. "id": "weathericon::time-7",
  13123. "text": "Time 7"
  13124. },
  13125. {
  13126. "id": "weathericon::time-8",
  13127. "text": "Time 8"
  13128. },
  13129. {
  13130. "id": "weathericon::time-9",
  13131. "text": "Time 9"
  13132. },
  13133. {
  13134. "id": "weathericon::time-10",
  13135. "text": "Time 10"
  13136. },
  13137. {
  13138. "id": "weathericon::time-11",
  13139. "text": "Time 11"
  13140. },
  13141. {
  13142. "id": "weathericon::time-12",
  13143. "text": "Time 12"
  13144. },
  13145. {
  13146. "id": "weathericon::direction-up",
  13147. "text": "Direction Up"
  13148. },
  13149. {
  13150. "id": "weathericon::direction-up-right",
  13151. "text": "Direction Up Right"
  13152. },
  13153. {
  13154. "id": "weathericon::direction-right",
  13155. "text": "Direction Right"
  13156. },
  13157. {
  13158. "id": "weathericon::direction-down-right",
  13159. "text": "Direction Down Right"
  13160. },
  13161. {
  13162. "id": "weathericon::direction-down",
  13163. "text": "Direction Down"
  13164. },
  13165. {
  13166. "id": "weathericon::direction-down-left",
  13167. "text": "Direction Down Left"
  13168. },
  13169. {
  13170. "id": "weathericon::direction-left",
  13171. "text": "Direction Left"
  13172. },
  13173. {
  13174. "id": "weathericon::direction-up-left",
  13175. "text": "Direction Up Left"
  13176. }
  13177. ]
  13178. }
  13179. ]