index.iife.js 311 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791
  1. /*! Element Plus Icons Vue v2.3.2 */
  2. "use strict";
  3. var ElementPlusIconsVue = (() => {
  4. var __create = Object.create;
  5. var __defProp = Object.defineProperty;
  6. var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
  7. var __getOwnPropNames = Object.getOwnPropertyNames;
  8. var __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty;
  9. var __commonJS = (cb, mod) => function() {
  10. return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
  11. };
  12. var __export = (target, all) => {
  13. for (var name in all)
  14. __defProp(target, name, { get: all[name], enumerable: !0 });
  15. }, __copyProps = (to, from, except, desc) => {
  16. if (from && typeof from == "object" || typeof from == "function")
  17. for (let key of __getOwnPropNames(from))
  18. !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
  19. return to;
  20. };
  21. var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
  22. // If the importer is in node compatibility mode or this is not an ESM
  23. // file that has been converted to a CommonJS file using a Babel-
  24. // compatible transform (i.e. "__esModule" has not been set), then set
  25. // "default" to the CommonJS "module.exports" for node compatibility.
  26. isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
  27. mod
  28. )), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
  29. // globals:vue
  30. var require_vue = __commonJS({
  31. "globals:vue"(exports, module) {
  32. module.exports = Vue;
  33. }
  34. });
  35. // src/index.ts
  36. var index_exports = {};
  37. __export(index_exports, {
  38. AddLocation: () => add_location_default,
  39. Aim: () => aim_default,
  40. AlarmClock: () => alarm_clock_default,
  41. Apple: () => apple_default,
  42. ArrowDown: () => arrow_down_default,
  43. ArrowDownBold: () => arrow_down_bold_default,
  44. ArrowLeft: () => arrow_left_default,
  45. ArrowLeftBold: () => arrow_left_bold_default,
  46. ArrowRight: () => arrow_right_default,
  47. ArrowRightBold: () => arrow_right_bold_default,
  48. ArrowUp: () => arrow_up_default,
  49. ArrowUpBold: () => arrow_up_bold_default,
  50. Avatar: () => avatar_default,
  51. Back: () => back_default,
  52. Baseball: () => baseball_default,
  53. Basketball: () => basketball_default,
  54. Bell: () => bell_default,
  55. BellFilled: () => bell_filled_default,
  56. Bicycle: () => bicycle_default,
  57. Bottom: () => bottom_default,
  58. BottomLeft: () => bottom_left_default,
  59. BottomRight: () => bottom_right_default,
  60. Bowl: () => bowl_default,
  61. Box: () => box_default,
  62. Briefcase: () => briefcase_default,
  63. Brush: () => brush_default,
  64. BrushFilled: () => brush_filled_default,
  65. Burger: () => burger_default,
  66. Calendar: () => calendar_default,
  67. Camera: () => camera_default,
  68. CameraFilled: () => camera_filled_default,
  69. CaretBottom: () => caret_bottom_default,
  70. CaretLeft: () => caret_left_default,
  71. CaretRight: () => caret_right_default,
  72. CaretTop: () => caret_top_default,
  73. Cellphone: () => cellphone_default,
  74. ChatDotRound: () => chat_dot_round_default,
  75. ChatDotSquare: () => chat_dot_square_default,
  76. ChatLineRound: () => chat_line_round_default,
  77. ChatLineSquare: () => chat_line_square_default,
  78. ChatRound: () => chat_round_default,
  79. ChatSquare: () => chat_square_default,
  80. Check: () => check_default,
  81. Checked: () => checked_default,
  82. Cherry: () => cherry_default,
  83. Chicken: () => chicken_default,
  84. ChromeFilled: () => chrome_filled_default,
  85. CircleCheck: () => circle_check_default,
  86. CircleCheckFilled: () => circle_check_filled_default,
  87. CircleClose: () => circle_close_default,
  88. CircleCloseFilled: () => circle_close_filled_default,
  89. CirclePlus: () => circle_plus_default,
  90. CirclePlusFilled: () => circle_plus_filled_default,
  91. Clock: () => clock_default,
  92. Close: () => close_default,
  93. CloseBold: () => close_bold_default,
  94. Cloudy: () => cloudy_default,
  95. Coffee: () => coffee_default,
  96. CoffeeCup: () => coffee_cup_default,
  97. Coin: () => coin_default,
  98. ColdDrink: () => cold_drink_default,
  99. Collection: () => collection_default,
  100. CollectionTag: () => collection_tag_default,
  101. Comment: () => comment_default,
  102. Compass: () => compass_default,
  103. Connection: () => connection_default,
  104. Coordinate: () => coordinate_default,
  105. CopyDocument: () => copy_document_default,
  106. Cpu: () => cpu_default,
  107. CreditCard: () => credit_card_default,
  108. Crop: () => crop_default,
  109. DArrowLeft: () => d_arrow_left_default,
  110. DArrowRight: () => d_arrow_right_default,
  111. DCaret: () => d_caret_default,
  112. DataAnalysis: () => data_analysis_default,
  113. DataBoard: () => data_board_default,
  114. DataLine: () => data_line_default,
  115. Delete: () => delete_default,
  116. DeleteFilled: () => delete_filled_default,
  117. DeleteLocation: () => delete_location_default,
  118. Dessert: () => dessert_default,
  119. Discount: () => discount_default,
  120. Dish: () => dish_default,
  121. DishDot: () => dish_dot_default,
  122. Document: () => document_default,
  123. DocumentAdd: () => document_add_default,
  124. DocumentChecked: () => document_checked_default,
  125. DocumentCopy: () => document_copy_default,
  126. DocumentDelete: () => document_delete_default,
  127. DocumentRemove: () => document_remove_default,
  128. Download: () => download_default,
  129. Drizzling: () => drizzling_default,
  130. Edit: () => edit_default,
  131. EditPen: () => edit_pen_default,
  132. Eleme: () => eleme_default,
  133. ElemeFilled: () => eleme_filled_default,
  134. ElementPlus: () => element_plus_default,
  135. Expand: () => expand_default,
  136. Failed: () => failed_default,
  137. Female: () => female_default,
  138. Files: () => files_default,
  139. Film: () => film_default,
  140. Filter: () => filter_default,
  141. Finished: () => finished_default,
  142. FirstAidKit: () => first_aid_kit_default,
  143. Flag: () => flag_default,
  144. Fold: () => fold_default,
  145. Folder: () => folder_default,
  146. FolderAdd: () => folder_add_default,
  147. FolderChecked: () => folder_checked_default,
  148. FolderDelete: () => folder_delete_default,
  149. FolderOpened: () => folder_opened_default,
  150. FolderRemove: () => folder_remove_default,
  151. Food: () => food_default,
  152. Football: () => football_default,
  153. ForkSpoon: () => fork_spoon_default,
  154. Fries: () => fries_default,
  155. FullScreen: () => full_screen_default,
  156. Goblet: () => goblet_default,
  157. GobletFull: () => goblet_full_default,
  158. GobletSquare: () => goblet_square_default,
  159. GobletSquareFull: () => goblet_square_full_default,
  160. GoldMedal: () => gold_medal_default,
  161. Goods: () => goods_default,
  162. GoodsFilled: () => goods_filled_default,
  163. Grape: () => grape_default,
  164. Grid: () => grid_default,
  165. Guide: () => guide_default,
  166. Handbag: () => handbag_default,
  167. Headset: () => headset_default,
  168. Help: () => help_default,
  169. HelpFilled: () => help_filled_default,
  170. Hide: () => hide_default,
  171. Histogram: () => histogram_default,
  172. HomeFilled: () => home_filled_default,
  173. HotWater: () => hot_water_default,
  174. House: () => house_default,
  175. IceCream: () => ice_cream_default,
  176. IceCreamRound: () => ice_cream_round_default,
  177. IceCreamSquare: () => ice_cream_square_default,
  178. IceDrink: () => ice_drink_default,
  179. IceTea: () => ice_tea_default,
  180. InfoFilled: () => info_filled_default,
  181. Iphone: () => iphone_default,
  182. Key: () => key_default,
  183. KnifeFork: () => knife_fork_default,
  184. Lightning: () => lightning_default,
  185. Link: () => link_default,
  186. List: () => list_default,
  187. Loading: () => loading_default,
  188. Location: () => location_default,
  189. LocationFilled: () => location_filled_default,
  190. LocationInformation: () => location_information_default,
  191. Lock: () => lock_default,
  192. Lollipop: () => lollipop_default,
  193. MagicStick: () => magic_stick_default,
  194. Magnet: () => magnet_default,
  195. Male: () => male_default,
  196. Management: () => management_default,
  197. MapLocation: () => map_location_default,
  198. Medal: () => medal_default,
  199. Memo: () => memo_default,
  200. Menu: () => menu_default,
  201. Message: () => message_default,
  202. MessageBox: () => message_box_default,
  203. Mic: () => mic_default,
  204. Microphone: () => microphone_default,
  205. MilkTea: () => milk_tea_default,
  206. Minus: () => minus_default,
  207. Money: () => money_default,
  208. Monitor: () => monitor_default,
  209. Moon: () => moon_default,
  210. MoonNight: () => moon_night_default,
  211. More: () => more_default,
  212. MoreFilled: () => more_filled_default,
  213. MostlyCloudy: () => mostly_cloudy_default,
  214. Mouse: () => mouse_default,
  215. Mug: () => mug_default,
  216. Mute: () => mute_default,
  217. MuteNotification: () => mute_notification_default,
  218. NoSmoking: () => no_smoking_default,
  219. Notebook: () => notebook_default,
  220. Notification: () => notification_default,
  221. Odometer: () => odometer_default,
  222. OfficeBuilding: () => office_building_default,
  223. Open: () => open_default,
  224. Operation: () => operation_default,
  225. Opportunity: () => opportunity_default,
  226. Orange: () => orange_default,
  227. Paperclip: () => paperclip_default,
  228. PartlyCloudy: () => partly_cloudy_default,
  229. Pear: () => pear_default,
  230. Phone: () => phone_default,
  231. PhoneFilled: () => phone_filled_default,
  232. Picture: () => picture_default,
  233. PictureFilled: () => picture_filled_default,
  234. PictureRounded: () => picture_rounded_default,
  235. PieChart: () => pie_chart_default,
  236. Place: () => place_default,
  237. Platform: () => platform_default,
  238. Plus: () => plus_default,
  239. Pointer: () => pointer_default,
  240. Position: () => position_default,
  241. Postcard: () => postcard_default,
  242. Pouring: () => pouring_default,
  243. Present: () => present_default,
  244. PriceTag: () => price_tag_default,
  245. Printer: () => printer_default,
  246. Promotion: () => promotion_default,
  247. QuartzWatch: () => quartz_watch_default,
  248. QuestionFilled: () => question_filled_default,
  249. Rank: () => rank_default,
  250. Reading: () => reading_default,
  251. ReadingLamp: () => reading_lamp_default,
  252. Refresh: () => refresh_default,
  253. RefreshLeft: () => refresh_left_default,
  254. RefreshRight: () => refresh_right_default,
  255. Refrigerator: () => refrigerator_default,
  256. Remove: () => remove_default,
  257. RemoveFilled: () => remove_filled_default,
  258. Right: () => right_default,
  259. ScaleToOriginal: () => scale_to_original_default,
  260. School: () => school_default,
  261. Scissor: () => scissor_default,
  262. Search: () => search_default,
  263. Select: () => select_default,
  264. Sell: () => sell_default,
  265. SemiSelect: () => semi_select_default,
  266. Service: () => service_default,
  267. SetUp: () => set_up_default,
  268. Setting: () => setting_default,
  269. Share: () => share_default,
  270. Ship: () => ship_default,
  271. Shop: () => shop_default,
  272. ShoppingBag: () => shopping_bag_default,
  273. ShoppingCart: () => shopping_cart_default,
  274. ShoppingCartFull: () => shopping_cart_full_default,
  275. ShoppingTrolley: () => shopping_trolley_default,
  276. Smoking: () => smoking_default,
  277. Soccer: () => soccer_default,
  278. SoldOut: () => sold_out_default,
  279. Sort: () => sort_default,
  280. SortDown: () => sort_down_default,
  281. SortUp: () => sort_up_default,
  282. Stamp: () => stamp_default,
  283. Star: () => star_default,
  284. StarFilled: () => star_filled_default,
  285. Stopwatch: () => stopwatch_default,
  286. SuccessFilled: () => success_filled_default,
  287. Sugar: () => sugar_default,
  288. Suitcase: () => suitcase_default,
  289. SuitcaseLine: () => suitcase_line_default,
  290. Sunny: () => sunny_default,
  291. Sunrise: () => sunrise_default,
  292. Sunset: () => sunset_default,
  293. Switch: () => switch_default,
  294. SwitchButton: () => switch_button_default,
  295. SwitchFilled: () => switch_filled_default,
  296. TakeawayBox: () => takeaway_box_default,
  297. Ticket: () => ticket_default,
  298. Tickets: () => tickets_default,
  299. Timer: () => timer_default,
  300. ToiletPaper: () => toilet_paper_default,
  301. Tools: () => tools_default,
  302. Top: () => top_default,
  303. TopLeft: () => top_left_default,
  304. TopRight: () => top_right_default,
  305. TrendCharts: () => trend_charts_default,
  306. Trophy: () => trophy_default,
  307. TrophyBase: () => trophy_base_default,
  308. TurnOff: () => turn_off_default,
  309. Umbrella: () => umbrella_default,
  310. Unlock: () => unlock_default,
  311. Upload: () => upload_default,
  312. UploadFilled: () => upload_filled_default,
  313. User: () => user_default,
  314. UserFilled: () => user_filled_default,
  315. Van: () => van_default,
  316. VideoCamera: () => video_camera_default,
  317. VideoCameraFilled: () => video_camera_filled_default,
  318. VideoPause: () => video_pause_default,
  319. VideoPlay: () => video_play_default,
  320. View: () => view_default,
  321. Wallet: () => wallet_default,
  322. WalletFilled: () => wallet_filled_default,
  323. WarnTriangleFilled: () => warn_triangle_filled_default,
  324. Warning: () => warning_default,
  325. WarningFilled: () => warning_filled_default,
  326. Watch: () => watch_default,
  327. Watermelon: () => watermelon_default,
  328. WindPower: () => wind_power_default,
  329. ZoomIn: () => zoom_in_default,
  330. ZoomOut: () => zoom_out_default
  331. });
  332. // src/components/add-location.vue
  333. var import_vue = __toESM(require_vue()), import_vue2 = __toESM(require_vue()), _sfc_main = /* @__PURE__ */ (0, import_vue.defineComponent)({
  334. name: "AddLocation",
  335. __name: "add-location",
  336. setup(__props) {
  337. return (_ctx, _cache) => ((0, import_vue2.openBlock)(), (0, import_vue2.createElementBlock)("svg", {
  338. xmlns: "http://www.w3.org/2000/svg",
  339. viewBox: "0 0 1024 1024"
  340. }, [
  341. (0, import_vue2.createElementVNode)("path", {
  342. fill: "currentColor",
  343. d: "M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  344. }),
  345. (0, import_vue2.createElementVNode)("path", {
  346. fill: "currentColor",
  347. d: "M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"
  348. }),
  349. (0, import_vue2.createElementVNode)("path", {
  350. fill: "currentColor",
  351. d: "M544 384h96a32 32 0 1 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0z"
  352. })
  353. ]));
  354. }
  355. }), add_location_default = _sfc_main;
  356. // src/components/aim.vue
  357. var import_vue3 = __toESM(require_vue()), import_vue4 = __toESM(require_vue()), _sfc_main2 = /* @__PURE__ */ (0, import_vue3.defineComponent)({
  358. name: "Aim",
  359. __name: "aim",
  360. setup(__props) {
  361. return (_ctx, _cache) => ((0, import_vue4.openBlock)(), (0, import_vue4.createElementBlock)("svg", {
  362. xmlns: "http://www.w3.org/2000/svg",
  363. viewBox: "0 0 1024 1024"
  364. }, [
  365. (0, import_vue4.createElementVNode)("path", {
  366. fill: "currentColor",
  367. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  368. }),
  369. (0, import_vue4.createElementVNode)("path", {
  370. fill: "currentColor",
  371. d: "M512 96a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V128a32 32 0 0 1 32-32m0 576a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V704a32 32 0 0 1 32-32M96 512a32 32 0 0 1 32-32h192a32 32 0 0 1 0 64H128a32 32 0 0 1-32-32m576 0a32 32 0 0 1 32-32h192a32 32 0 1 1 0 64H704a32 32 0 0 1-32-32"
  372. })
  373. ]));
  374. }
  375. }), aim_default = _sfc_main2;
  376. // src/components/alarm-clock.vue
  377. var import_vue5 = __toESM(require_vue()), import_vue6 = __toESM(require_vue()), _sfc_main3 = /* @__PURE__ */ (0, import_vue5.defineComponent)({
  378. name: "AlarmClock",
  379. __name: "alarm-clock",
  380. setup(__props) {
  381. return (_ctx, _cache) => ((0, import_vue6.openBlock)(), (0, import_vue6.createElementBlock)("svg", {
  382. xmlns: "http://www.w3.org/2000/svg",
  383. viewBox: "0 0 1024 1024"
  384. }, [
  385. (0, import_vue6.createElementVNode)("path", {
  386. fill: "currentColor",
  387. d: "M512 832a320 320 0 1 0 0-640 320 320 0 0 0 0 640m0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768"
  388. }),
  389. (0, import_vue6.createElementVNode)("path", {
  390. fill: "currentColor",
  391. d: "m292.288 824.576 55.424 32-48 83.136a32 32 0 1 1-55.424-32zm439.424 0-55.424 32 48 83.136a32 32 0 1 0 55.424-32zM512 512h160a32 32 0 1 1 0 64H480a32 32 0 0 1-32-32V320a32 32 0 0 1 64 0zM90.496 312.256A160 160 0 0 1 312.32 90.496l-46.848 46.848a96 96 0 0 0-128 128L90.56 312.256zm835.264 0A160 160 0 0 0 704 90.496l46.848 46.848a96 96 0 0 1 128 128z"
  392. })
  393. ]));
  394. }
  395. }), alarm_clock_default = _sfc_main3;
  396. // src/components/apple.vue
  397. var import_vue7 = __toESM(require_vue()), import_vue8 = __toESM(require_vue()), _sfc_main4 = /* @__PURE__ */ (0, import_vue7.defineComponent)({
  398. name: "Apple",
  399. __name: "apple",
  400. setup(__props) {
  401. return (_ctx, _cache) => ((0, import_vue8.openBlock)(), (0, import_vue8.createElementBlock)("svg", {
  402. xmlns: "http://www.w3.org/2000/svg",
  403. viewBox: "0 0 1024 1024"
  404. }, [
  405. (0, import_vue8.createElementVNode)("path", {
  406. fill: "currentColor",
  407. d: "M599.872 203.776a189.4 189.4 0 0 1 64.384-4.672l2.624.128c31.168 1.024 51.2 4.096 79.488 16.32 37.632 16.128 74.496 45.056 111.488 89.344 96.384 115.264 82.752 372.8-34.752 521.728-7.68 9.728-32 41.6-30.72 39.936a427 427 0 0 1-30.08 35.776c-31.232 32.576-65.28 49.216-110.08 50.048-31.36.64-53.568-5.312-84.288-18.752l-6.528-2.88c-20.992-9.216-30.592-11.904-47.296-11.904-18.112 0-28.608 2.88-51.136 12.672l-6.464 2.816c-28.416 12.224-48.32 18.048-76.16 19.2-74.112 2.752-116.928-38.08-180.672-132.16-96.64-142.08-132.608-349.312-55.04-486.4 46.272-81.92 129.92-133.632 220.672-135.04 32.832-.576 60.288 6.848 99.648 22.72 27.136 10.88 34.752 13.76 37.376 14.272 16.256-20.16 27.776-36.992 34.56-50.24 13.568-26.304 27.2-59.968 40.704-100.8a32 32 0 1 1 60.8 20.224c-12.608 37.888-25.408 70.4-38.528 97.664m-51.52 78.08c-14.528 17.792-31.808 37.376-51.904 58.816a32 32 0 1 1-46.72-43.776l12.288-13.248c-28.032-11.2-61.248-26.688-95.68-26.112-70.4 1.088-135.296 41.6-171.648 105.792C121.6 492.608 176 684.16 247.296 788.992c34.816 51.328 76.352 108.992 130.944 106.944 52.48-2.112 72.32-34.688 135.872-34.688s81.28 34.688 136.96 33.536c56.448-1.088 75.776-39.04 126.848-103.872 107.904-136.768 107.904-362.752 35.776-449.088-72.192-86.272-124.672-84.096-151.68-85.12-41.472-4.288-81.6 12.544-113.664 25.152"
  408. })
  409. ]));
  410. }
  411. }), apple_default = _sfc_main4;
  412. // src/components/arrow-down-bold.vue
  413. var import_vue9 = __toESM(require_vue()), import_vue10 = __toESM(require_vue()), _sfc_main5 = /* @__PURE__ */ (0, import_vue9.defineComponent)({
  414. name: "ArrowDownBold",
  415. __name: "arrow-down-bold",
  416. setup(__props) {
  417. return (_ctx, _cache) => ((0, import_vue10.openBlock)(), (0, import_vue10.createElementBlock)("svg", {
  418. xmlns: "http://www.w3.org/2000/svg",
  419. viewBox: "0 0 1024 1024"
  420. }, [
  421. (0, import_vue10.createElementVNode)("path", {
  422. fill: "currentColor",
  423. d: "M104.704 338.752a64 64 0 0 1 90.496 0l316.8 316.8 316.8-316.8a64 64 0 0 1 90.496 90.496L557.248 791.296a64 64 0 0 1-90.496 0L104.704 429.248a64 64 0 0 1 0-90.496"
  424. })
  425. ]));
  426. }
  427. }), arrow_down_bold_default = _sfc_main5;
  428. // src/components/arrow-down.vue
  429. var import_vue11 = __toESM(require_vue()), import_vue12 = __toESM(require_vue()), _sfc_main6 = /* @__PURE__ */ (0, import_vue11.defineComponent)({
  430. name: "ArrowDown",
  431. __name: "arrow-down",
  432. setup(__props) {
  433. return (_ctx, _cache) => ((0, import_vue12.openBlock)(), (0, import_vue12.createElementBlock)("svg", {
  434. xmlns: "http://www.w3.org/2000/svg",
  435. viewBox: "0 0 1024 1024"
  436. }, [
  437. (0, import_vue12.createElementVNode)("path", {
  438. fill: "currentColor",
  439. d: "M831.872 340.864 512 652.672 192.128 340.864a30.59 30.59 0 0 0-42.752 0 29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728 30.59 30.59 0 0 0-42.752 0z"
  440. })
  441. ]));
  442. }
  443. }), arrow_down_default = _sfc_main6;
  444. // src/components/arrow-left-bold.vue
  445. var import_vue13 = __toESM(require_vue()), import_vue14 = __toESM(require_vue()), _sfc_main7 = /* @__PURE__ */ (0, import_vue13.defineComponent)({
  446. name: "ArrowLeftBold",
  447. __name: "arrow-left-bold",
  448. setup(__props) {
  449. return (_ctx, _cache) => ((0, import_vue14.openBlock)(), (0, import_vue14.createElementBlock)("svg", {
  450. xmlns: "http://www.w3.org/2000/svg",
  451. viewBox: "0 0 1024 1024"
  452. }, [
  453. (0, import_vue14.createElementVNode)("path", {
  454. fill: "currentColor",
  455. d: "M685.248 104.704a64 64 0 0 1 0 90.496L368.448 512l316.8 316.8a64 64 0 0 1-90.496 90.496L232.704 557.248a64 64 0 0 1 0-90.496l362.048-362.048a64 64 0 0 1 90.496 0"
  456. })
  457. ]));
  458. }
  459. }), arrow_left_bold_default = _sfc_main7;
  460. // src/components/arrow-left.vue
  461. var import_vue15 = __toESM(require_vue()), import_vue16 = __toESM(require_vue()), _sfc_main8 = /* @__PURE__ */ (0, import_vue15.defineComponent)({
  462. name: "ArrowLeft",
  463. __name: "arrow-left",
  464. setup(__props) {
  465. return (_ctx, _cache) => ((0, import_vue16.openBlock)(), (0, import_vue16.createElementBlock)("svg", {
  466. xmlns: "http://www.w3.org/2000/svg",
  467. viewBox: "0 0 1024 1024"
  468. }, [
  469. (0, import_vue16.createElementVNode)("path", {
  470. fill: "currentColor",
  471. d: "M609.408 149.376 277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0 30.59 30.59 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.59 30.59 0 0 0 0-42.688 29.12 29.12 0 0 0-41.728 0"
  472. })
  473. ]));
  474. }
  475. }), arrow_left_default = _sfc_main8;
  476. // src/components/arrow-right-bold.vue
  477. var import_vue17 = __toESM(require_vue()), import_vue18 = __toESM(require_vue()), _sfc_main9 = /* @__PURE__ */ (0, import_vue17.defineComponent)({
  478. name: "ArrowRightBold",
  479. __name: "arrow-right-bold",
  480. setup(__props) {
  481. return (_ctx, _cache) => ((0, import_vue18.openBlock)(), (0, import_vue18.createElementBlock)("svg", {
  482. xmlns: "http://www.w3.org/2000/svg",
  483. viewBox: "0 0 1024 1024"
  484. }, [
  485. (0, import_vue18.createElementVNode)("path", {
  486. fill: "currentColor",
  487. d: "M338.752 104.704a64 64 0 0 0 0 90.496l316.8 316.8-316.8 316.8a64 64 0 0 0 90.496 90.496l362.048-362.048a64 64 0 0 0 0-90.496L429.248 104.704a64 64 0 0 0-90.496 0"
  488. })
  489. ]));
  490. }
  491. }), arrow_right_bold_default = _sfc_main9;
  492. // src/components/arrow-right.vue
  493. var import_vue19 = __toESM(require_vue()), import_vue20 = __toESM(require_vue()), _sfc_main10 = /* @__PURE__ */ (0, import_vue19.defineComponent)({
  494. name: "ArrowRight",
  495. __name: "arrow-right",
  496. setup(__props) {
  497. return (_ctx, _cache) => ((0, import_vue20.openBlock)(), (0, import_vue20.createElementBlock)("svg", {
  498. xmlns: "http://www.w3.org/2000/svg",
  499. viewBox: "0 0 1024 1024"
  500. }, [
  501. (0, import_vue20.createElementVNode)("path", {
  502. fill: "currentColor",
  503. d: "M340.864 149.312a30.59 30.59 0 0 0 0 42.752L652.736 512 340.864 831.872a30.59 30.59 0 0 0 0 42.752 29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"
  504. })
  505. ]));
  506. }
  507. }), arrow_right_default = _sfc_main10;
  508. // src/components/arrow-up-bold.vue
  509. var import_vue21 = __toESM(require_vue()), import_vue22 = __toESM(require_vue()), _sfc_main11 = /* @__PURE__ */ (0, import_vue21.defineComponent)({
  510. name: "ArrowUpBold",
  511. __name: "arrow-up-bold",
  512. setup(__props) {
  513. return (_ctx, _cache) => ((0, import_vue22.openBlock)(), (0, import_vue22.createElementBlock)("svg", {
  514. xmlns: "http://www.w3.org/2000/svg",
  515. viewBox: "0 0 1024 1024"
  516. }, [
  517. (0, import_vue22.createElementVNode)("path", {
  518. fill: "currentColor",
  519. d: "M104.704 685.248a64 64 0 0 0 90.496 0l316.8-316.8 316.8 316.8a64 64 0 0 0 90.496-90.496L557.248 232.704a64 64 0 0 0-90.496 0L104.704 594.752a64 64 0 0 0 0 90.496"
  520. })
  521. ]));
  522. }
  523. }), arrow_up_bold_default = _sfc_main11;
  524. // src/components/arrow-up.vue
  525. var import_vue23 = __toESM(require_vue()), import_vue24 = __toESM(require_vue()), _sfc_main12 = /* @__PURE__ */ (0, import_vue23.defineComponent)({
  526. name: "ArrowUp",
  527. __name: "arrow-up",
  528. setup(__props) {
  529. return (_ctx, _cache) => ((0, import_vue24.openBlock)(), (0, import_vue24.createElementBlock)("svg", {
  530. xmlns: "http://www.w3.org/2000/svg",
  531. viewBox: "0 0 1024 1024"
  532. }, [
  533. (0, import_vue24.createElementVNode)("path", {
  534. fill: "currentColor",
  535. d: "m488.832 344.32-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872 319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0"
  536. })
  537. ]));
  538. }
  539. }), arrow_up_default = _sfc_main12;
  540. // src/components/avatar.vue
  541. var import_vue25 = __toESM(require_vue()), import_vue26 = __toESM(require_vue()), _sfc_main13 = /* @__PURE__ */ (0, import_vue25.defineComponent)({
  542. name: "Avatar",
  543. __name: "avatar",
  544. setup(__props) {
  545. return (_ctx, _cache) => ((0, import_vue26.openBlock)(), (0, import_vue26.createElementBlock)("svg", {
  546. xmlns: "http://www.w3.org/2000/svg",
  547. viewBox: "0 0 1024 1024"
  548. }, [
  549. (0, import_vue26.createElementVNode)("path", {
  550. fill: "currentColor",
  551. d: "M628.736 528.896A416 416 0 0 1 928 928H96a415.87 415.87 0 0 1 299.264-399.104L512 704zM720 304a208 208 0 1 1-416 0 208 208 0 0 1 416 0"
  552. })
  553. ]));
  554. }
  555. }), avatar_default = _sfc_main13;
  556. // src/components/back.vue
  557. var import_vue27 = __toESM(require_vue()), import_vue28 = __toESM(require_vue()), _sfc_main14 = /* @__PURE__ */ (0, import_vue27.defineComponent)({
  558. name: "Back",
  559. __name: "back",
  560. setup(__props) {
  561. return (_ctx, _cache) => ((0, import_vue28.openBlock)(), (0, import_vue28.createElementBlock)("svg", {
  562. xmlns: "http://www.w3.org/2000/svg",
  563. viewBox: "0 0 1024 1024"
  564. }, [
  565. (0, import_vue28.createElementVNode)("path", {
  566. fill: "currentColor",
  567. d: "M224 480h640a32 32 0 1 1 0 64H224a32 32 0 0 1 0-64"
  568. }),
  569. (0, import_vue28.createElementVNode)("path", {
  570. fill: "currentColor",
  571. d: "m237.248 512 265.408 265.344a32 32 0 0 1-45.312 45.312l-288-288a32 32 0 0 1 0-45.312l288-288a32 32 0 1 1 45.312 45.312z"
  572. })
  573. ]));
  574. }
  575. }), back_default = _sfc_main14;
  576. // src/components/baseball.vue
  577. var import_vue29 = __toESM(require_vue()), import_vue30 = __toESM(require_vue()), _sfc_main15 = /* @__PURE__ */ (0, import_vue29.defineComponent)({
  578. name: "Baseball",
  579. __name: "baseball",
  580. setup(__props) {
  581. return (_ctx, _cache) => ((0, import_vue30.openBlock)(), (0, import_vue30.createElementBlock)("svg", {
  582. xmlns: "http://www.w3.org/2000/svg",
  583. viewBox: "0 0 1024 1024"
  584. }, [
  585. (0, import_vue30.createElementVNode)("path", {
  586. fill: "currentColor",
  587. d: "M195.2 828.8a448 448 0 1 1 633.6-633.6 448 448 0 0 1-633.6 633.6m45.248-45.248a384 384 0 1 0 543.104-543.104 384 384 0 0 0-543.104 543.104"
  588. }),
  589. (0, import_vue30.createElementVNode)("path", {
  590. fill: "currentColor",
  591. d: "M497.472 96.896c22.784 4.672 44.416 9.472 64.896 14.528a256.128 256.128 0 0 0 350.208 350.208c5.056 20.48 9.856 42.112 14.528 64.896A320.128 320.128 0 0 1 497.472 96.896M108.48 491.904a320.128 320.128 0 0 1 423.616 423.68c-23.04-3.648-44.992-7.424-65.728-11.52a256.128 256.128 0 0 0-346.496-346.432 1737 1737 0 0 1-11.392-65.728"
  592. })
  593. ]));
  594. }
  595. }), baseball_default = _sfc_main15;
  596. // src/components/basketball.vue
  597. var import_vue31 = __toESM(require_vue()), import_vue32 = __toESM(require_vue()), _sfc_main16 = /* @__PURE__ */ (0, import_vue31.defineComponent)({
  598. name: "Basketball",
  599. __name: "basketball",
  600. setup(__props) {
  601. return (_ctx, _cache) => ((0, import_vue32.openBlock)(), (0, import_vue32.createElementBlock)("svg", {
  602. xmlns: "http://www.w3.org/2000/svg",
  603. viewBox: "0 0 1024 1024"
  604. }, [
  605. (0, import_vue32.createElementVNode)("path", {
  606. fill: "currentColor",
  607. d: "M778.752 788.224a382.46 382.46 0 0 0 116.032-245.632 256.51 256.51 0 0 0-241.728-13.952 762.9 762.9 0 0 1 125.696 259.584m-55.04 44.224a699.65 699.65 0 0 0-125.056-269.632 256.13 256.13 0 0 0-56.064 331.968 382.7 382.7 0 0 0 181.12-62.336m-254.08 61.248A320.13 320.13 0 0 1 557.76 513.6a716 716 0 0 0-48.192-48.128 320.13 320.13 0 0 1-379.264 88.384 382.4 382.4 0 0 0 110.144 229.696 382.4 382.4 0 0 0 229.184 110.08zM129.28 481.088a256.13 256.13 0 0 0 331.072-56.448 699.65 699.65 0 0 0-268.8-124.352 382.66 382.66 0 0 0-62.272 180.8m106.56-235.84a762.9 762.9 0 0 1 258.688 125.056 256.51 256.51 0 0 0-13.44-241.088A382.46 382.46 0 0 0 235.84 245.248m318.08-114.944c40.576 89.536 37.76 193.92-8.448 281.344a780 780 0 0 1 66.176 66.112 320.83 320.83 0 0 1 282.112-8.128 382.4 382.4 0 0 0-110.144-229.12 382.4 382.4 0 0 0-229.632-110.208zM828.8 828.8a448 448 0 1 1-633.6-633.6 448 448 0 0 1 633.6 633.6"
  608. })
  609. ]));
  610. }
  611. }), basketball_default = _sfc_main16;
  612. // src/components/bell-filled.vue
  613. var import_vue33 = __toESM(require_vue()), import_vue34 = __toESM(require_vue()), _sfc_main17 = /* @__PURE__ */ (0, import_vue33.defineComponent)({
  614. name: "BellFilled",
  615. __name: "bell-filled",
  616. setup(__props) {
  617. return (_ctx, _cache) => ((0, import_vue34.openBlock)(), (0, import_vue34.createElementBlock)("svg", {
  618. xmlns: "http://www.w3.org/2000/svg",
  619. viewBox: "0 0 1024 1024"
  620. }, [
  621. (0, import_vue34.createElementVNode)("path", {
  622. fill: "currentColor",
  623. d: "M640 832a128 128 0 0 1-256 0zm192-64H134.4a38.4 38.4 0 0 1 0-76.8H192V448c0-154.88 110.08-284.16 256.32-313.6a64 64 0 1 1 127.36 0A320.13 320.13 0 0 1 832 448v243.2h57.6a38.4 38.4 0 0 1 0 76.8z"
  624. })
  625. ]));
  626. }
  627. }), bell_filled_default = _sfc_main17;
  628. // src/components/bell.vue
  629. var import_vue35 = __toESM(require_vue()), import_vue36 = __toESM(require_vue()), _sfc_main18 = /* @__PURE__ */ (0, import_vue35.defineComponent)({
  630. name: "Bell",
  631. __name: "bell",
  632. setup(__props) {
  633. return (_ctx, _cache) => ((0, import_vue36.openBlock)(), (0, import_vue36.createElementBlock)("svg", {
  634. xmlns: "http://www.w3.org/2000/svg",
  635. viewBox: "0 0 1024 1024"
  636. }, [
  637. (0, import_vue36.createElementVNode)("path", {
  638. fill: "currentColor",
  639. d: "M512 64a64 64 0 0 1 64 64v64H448v-64a64 64 0 0 1 64-64"
  640. }),
  641. (0, import_vue36.createElementVNode)("path", {
  642. fill: "currentColor",
  643. d: "M256 768h512V448a256 256 0 1 0-512 0zm256-640a320 320 0 0 1 320 320v384H192V448a320 320 0 0 1 320-320"
  644. }),
  645. (0, import_vue36.createElementVNode)("path", {
  646. fill: "currentColor",
  647. d: "M96 768h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32m352 128h128a64 64 0 0 1-128 0"
  648. })
  649. ]));
  650. }
  651. }), bell_default = _sfc_main18;
  652. // src/components/bicycle.vue
  653. var import_vue37 = __toESM(require_vue()), import_vue38 = __toESM(require_vue()), _sfc_main19 = /* @__PURE__ */ (0, import_vue37.defineComponent)({
  654. name: "Bicycle",
  655. __name: "bicycle",
  656. setup(__props) {
  657. return (_ctx, _cache) => ((0, import_vue38.openBlock)(), (0, import_vue38.createElementBlock)("svg", {
  658. xmlns: "http://www.w3.org/2000/svg",
  659. viewBox: "0 0 1024 1024"
  660. }, [
  661. (0, import_vue38.createElementVNode)("path", {
  662. fill: "currentColor",
  663. d: "M256 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"
  664. }),
  665. (0, import_vue38.createElementVNode)("path", {
  666. fill: "currentColor",
  667. d: "M288 672h320q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  668. }),
  669. (0, import_vue38.createElementVNode)("path", {
  670. fill: "currentColor",
  671. d: "M768 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"
  672. }),
  673. (0, import_vue38.createElementVNode)("path", {
  674. fill: "currentColor",
  675. d: "M480 192a32 32 0 0 1 0-64h160a32 32 0 0 1 31.04 24.256l96 384a32 32 0 0 1-62.08 15.488L615.04 192zM96 384a32 32 0 0 1 0-64h128a32 32 0 0 1 30.336 21.888l64 192a32 32 0 1 1-60.672 20.224L200.96 384z"
  676. }),
  677. (0, import_vue38.createElementVNode)("path", {
  678. fill: "currentColor",
  679. d: "m373.376 599.808-42.752-47.616 320-288 42.752 47.616z"
  680. })
  681. ]));
  682. }
  683. }), bicycle_default = _sfc_main19;
  684. // src/components/bottom-left.vue
  685. var import_vue39 = __toESM(require_vue()), import_vue40 = __toESM(require_vue()), _sfc_main20 = /* @__PURE__ */ (0, import_vue39.defineComponent)({
  686. name: "BottomLeft",
  687. __name: "bottom-left",
  688. setup(__props) {
  689. return (_ctx, _cache) => ((0, import_vue40.openBlock)(), (0, import_vue40.createElementBlock)("svg", {
  690. xmlns: "http://www.w3.org/2000/svg",
  691. viewBox: "0 0 1024 1024"
  692. }, [
  693. (0, import_vue40.createElementVNode)("path", {
  694. fill: "currentColor",
  695. d: "M256 768h416a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V352a32 32 0 0 1 64 0z"
  696. }),
  697. (0, import_vue40.createElementVNode)("path", {
  698. fill: "currentColor",
  699. d: "M246.656 822.656a32 32 0 0 1-45.312-45.312l544-544a32 32 0 0 1 45.312 45.312z"
  700. })
  701. ]));
  702. }
  703. }), bottom_left_default = _sfc_main20;
  704. // src/components/bottom-right.vue
  705. var import_vue41 = __toESM(require_vue()), import_vue42 = __toESM(require_vue()), _sfc_main21 = /* @__PURE__ */ (0, import_vue41.defineComponent)({
  706. name: "BottomRight",
  707. __name: "bottom-right",
  708. setup(__props) {
  709. return (_ctx, _cache) => ((0, import_vue42.openBlock)(), (0, import_vue42.createElementBlock)("svg", {
  710. xmlns: "http://www.w3.org/2000/svg",
  711. viewBox: "0 0 1024 1024"
  712. }, [
  713. (0, import_vue42.createElementVNode)("path", {
  714. fill: "currentColor",
  715. d: "M352 768a32 32 0 1 0 0 64h448a32 32 0 0 0 32-32V352a32 32 0 0 0-64 0v416z"
  716. }),
  717. (0, import_vue42.createElementVNode)("path", {
  718. fill: "currentColor",
  719. d: "M777.344 822.656a32 32 0 0 0 45.312-45.312l-544-544a32 32 0 0 0-45.312 45.312z"
  720. })
  721. ]));
  722. }
  723. }), bottom_right_default = _sfc_main21;
  724. // src/components/bottom.vue
  725. var import_vue43 = __toESM(require_vue()), import_vue44 = __toESM(require_vue()), _sfc_main22 = /* @__PURE__ */ (0, import_vue43.defineComponent)({
  726. name: "Bottom",
  727. __name: "bottom",
  728. setup(__props) {
  729. return (_ctx, _cache) => ((0, import_vue44.openBlock)(), (0, import_vue44.createElementBlock)("svg", {
  730. xmlns: "http://www.w3.org/2000/svg",
  731. viewBox: "0 0 1024 1024"
  732. }, [
  733. (0, import_vue44.createElementVNode)("path", {
  734. fill: "currentColor",
  735. d: "M544 805.888V168a32 32 0 1 0-64 0v637.888L246.656 557.952a30.72 30.72 0 0 0-45.312 0 35.52 35.52 0 0 0 0 48.064l288 306.048a30.72 30.72 0 0 0 45.312 0l288-306.048a35.52 35.52 0 0 0 0-48 30.72 30.72 0 0 0-45.312 0L544 805.824z"
  736. })
  737. ]));
  738. }
  739. }), bottom_default = _sfc_main22;
  740. // src/components/bowl.vue
  741. var import_vue45 = __toESM(require_vue()), import_vue46 = __toESM(require_vue()), _sfc_main23 = /* @__PURE__ */ (0, import_vue45.defineComponent)({
  742. name: "Bowl",
  743. __name: "bowl",
  744. setup(__props) {
  745. return (_ctx, _cache) => ((0, import_vue46.openBlock)(), (0, import_vue46.createElementBlock)("svg", {
  746. xmlns: "http://www.w3.org/2000/svg",
  747. viewBox: "0 0 1024 1024"
  748. }, [
  749. (0, import_vue46.createElementVNode)("path", {
  750. fill: "currentColor",
  751. d: "M714.432 704a351.74 351.74 0 0 0 148.16-256H161.408a351.74 351.74 0 0 0 148.16 256zM288 766.592A415.68 415.68 0 0 1 96 416a32 32 0 0 1 32-32h768a32 32 0 0 1 32 32 415.68 415.68 0 0 1-192 350.592V832a64 64 0 0 1-64 64H352a64 64 0 0 1-64-64zM493.248 320h-90.496l254.4-254.4a32 32 0 1 1 45.248 45.248zm187.328 0h-128l269.696-155.712a32 32 0 0 1 32 55.424zM352 768v64h320v-64z"
  752. })
  753. ]));
  754. }
  755. }), bowl_default = _sfc_main23;
  756. // src/components/box.vue
  757. var import_vue47 = __toESM(require_vue()), import_vue48 = __toESM(require_vue()), _sfc_main24 = /* @__PURE__ */ (0, import_vue47.defineComponent)({
  758. name: "Box",
  759. __name: "box",
  760. setup(__props) {
  761. return (_ctx, _cache) => ((0, import_vue48.openBlock)(), (0, import_vue48.createElementBlock)("svg", {
  762. xmlns: "http://www.w3.org/2000/svg",
  763. viewBox: "0 0 1024 1024"
  764. }, [
  765. (0, import_vue48.createElementVNode)("path", {
  766. fill: "currentColor",
  767. d: "M317.056 128 128 344.064V896h768V344.064L706.944 128zm-14.528-64h418.944a32 32 0 0 1 24.064 10.88l206.528 236.096A32 32 0 0 1 960 332.032V928a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V332.032a32 32 0 0 1 7.936-21.12L278.4 75.008A32 32 0 0 1 302.528 64"
  768. }),
  769. (0, import_vue48.createElementVNode)("path", {
  770. fill: "currentColor",
  771. d: "M64 320h896v64H64z"
  772. }),
  773. (0, import_vue48.createElementVNode)("path", {
  774. fill: "currentColor",
  775. d: "M448 327.872V640h128V327.872L526.08 128h-28.16zM448 64h128l64 256v352a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V320z"
  776. })
  777. ]));
  778. }
  779. }), box_default = _sfc_main24;
  780. // src/components/briefcase.vue
  781. var import_vue49 = __toESM(require_vue()), import_vue50 = __toESM(require_vue()), _sfc_main25 = /* @__PURE__ */ (0, import_vue49.defineComponent)({
  782. name: "Briefcase",
  783. __name: "briefcase",
  784. setup(__props) {
  785. return (_ctx, _cache) => ((0, import_vue50.openBlock)(), (0, import_vue50.createElementBlock)("svg", {
  786. xmlns: "http://www.w3.org/2000/svg",
  787. viewBox: "0 0 1024 1024"
  788. }, [
  789. (0, import_vue50.createElementVNode)("path", {
  790. fill: "currentColor",
  791. d: "M320 320V128h384v192h192v192H128V320zM128 576h768v320H128zm256-256h256.064V192H384z"
  792. })
  793. ]));
  794. }
  795. }), briefcase_default = _sfc_main25;
  796. // src/components/brush-filled.vue
  797. var import_vue51 = __toESM(require_vue()), import_vue52 = __toESM(require_vue()), _sfc_main26 = /* @__PURE__ */ (0, import_vue51.defineComponent)({
  798. name: "BrushFilled",
  799. __name: "brush-filled",
  800. setup(__props) {
  801. return (_ctx, _cache) => ((0, import_vue52.openBlock)(), (0, import_vue52.createElementBlock)("svg", {
  802. xmlns: "http://www.w3.org/2000/svg",
  803. viewBox: "0 0 1024 1024"
  804. }, [
  805. (0, import_vue52.createElementVNode)("path", {
  806. fill: "currentColor",
  807. d: "M608 704v160a96 96 0 0 1-192 0V704h-96a128 128 0 0 1-128-128h640a128 128 0 0 1-128 128zM192 512V128.064h640V512z"
  808. })
  809. ]));
  810. }
  811. }), brush_filled_default = _sfc_main26;
  812. // src/components/brush.vue
  813. var import_vue53 = __toESM(require_vue()), import_vue54 = __toESM(require_vue()), _sfc_main27 = /* @__PURE__ */ (0, import_vue53.defineComponent)({
  814. name: "Brush",
  815. __name: "brush",
  816. setup(__props) {
  817. return (_ctx, _cache) => ((0, import_vue54.openBlock)(), (0, import_vue54.createElementBlock)("svg", {
  818. xmlns: "http://www.w3.org/2000/svg",
  819. viewBox: "0 0 1024 1024"
  820. }, [
  821. (0, import_vue54.createElementVNode)("path", {
  822. fill: "currentColor",
  823. d: "M896 448H128v192a64 64 0 0 0 64 64h192v192h256V704h192a64 64 0 0 0 64-64zm-770.752-64c0-47.552 5.248-90.24 15.552-128 14.72-54.016 42.496-107.392 83.2-160h417.28l-15.36 70.336L736 96h211.2c-24.832 42.88-41.92 96.256-51.2 160a664 664 0 0 0-6.144 128H960v256a128 128 0 0 1-128 128H704v160a32 32 0 0 1-32 32H352a32 32 0 0 1-32-32V768H192A128 128 0 0 1 64 640V384zm64 0h636.544c-2.048-45.824.256-91.584 6.848-137.216 4.48-30.848 10.688-59.776 18.688-86.784h-96.64l-221.12 141.248L561.92 160H256.512c-25.856 37.888-43.776 75.456-53.952 112.832-8.768 32.064-13.248 69.12-13.312 111.168"
  824. })
  825. ]));
  826. }
  827. }), brush_default = _sfc_main27;
  828. // src/components/burger.vue
  829. var import_vue55 = __toESM(require_vue()), import_vue56 = __toESM(require_vue()), _sfc_main28 = /* @__PURE__ */ (0, import_vue55.defineComponent)({
  830. name: "Burger",
  831. __name: "burger",
  832. setup(__props) {
  833. return (_ctx, _cache) => ((0, import_vue56.openBlock)(), (0, import_vue56.createElementBlock)("svg", {
  834. xmlns: "http://www.w3.org/2000/svg",
  835. viewBox: "0 0 1024 1024"
  836. }, [
  837. (0, import_vue56.createElementVNode)("path", {
  838. fill: "currentColor",
  839. d: "M160 512a32 32 0 0 0-32 32v64a32 32 0 0 0 30.08 32H864a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32zm736-58.56A96 96 0 0 1 960 544v64a96 96 0 0 1-51.968 85.312L855.36 833.6a96 96 0 0 1-89.856 62.272H258.496A96 96 0 0 1 168.64 833.6l-52.608-140.224A96 96 0 0 1 64 608v-64a96 96 0 0 1 64-90.56V448a384 384 0 1 1 768 5.44M832 448a320 320 0 0 0-640 0zM512 704H188.352l40.192 107.136a32 32 0 0 0 29.952 20.736h507.008a32 32 0 0 0 29.952-20.736L835.648 704z"
  840. })
  841. ]));
  842. }
  843. }), burger_default = _sfc_main28;
  844. // src/components/calendar.vue
  845. var import_vue57 = __toESM(require_vue()), import_vue58 = __toESM(require_vue()), _sfc_main29 = /* @__PURE__ */ (0, import_vue57.defineComponent)({
  846. name: "Calendar",
  847. __name: "calendar",
  848. setup(__props) {
  849. return (_ctx, _cache) => ((0, import_vue58.openBlock)(), (0, import_vue58.createElementBlock)("svg", {
  850. xmlns: "http://www.w3.org/2000/svg",
  851. viewBox: "0 0 1024 1024"
  852. }, [
  853. (0, import_vue58.createElementVNode)("path", {
  854. fill: "currentColor",
  855. d: "M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64zm192-256h384V96a32 32 0 1 1 64 0v32h160a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h160V96a32 32 0 0 1 64 0zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64m0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64"
  856. })
  857. ]));
  858. }
  859. }), calendar_default = _sfc_main29;
  860. // src/components/camera-filled.vue
  861. var import_vue59 = __toESM(require_vue()), import_vue60 = __toESM(require_vue()), _sfc_main30 = /* @__PURE__ */ (0, import_vue59.defineComponent)({
  862. name: "CameraFilled",
  863. __name: "camera-filled",
  864. setup(__props) {
  865. return (_ctx, _cache) => ((0, import_vue60.openBlock)(), (0, import_vue60.createElementBlock)("svg", {
  866. xmlns: "http://www.w3.org/2000/svg",
  867. viewBox: "0 0 1024 1024"
  868. }, [
  869. (0, import_vue60.createElementVNode)("path", {
  870. fill: "currentColor",
  871. d: "M160 224a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h704a64 64 0 0 0 64-64V288a64 64 0 0 0-64-64H748.416l-46.464-92.672A64 64 0 0 0 644.736 96H379.328a64 64 0 0 0-57.216 35.392L275.776 224zm352 435.2a115.2 115.2 0 1 0 0-230.4 115.2 115.2 0 0 0 0 230.4m0 140.8a256 256 0 1 1 0-512 256 256 0 0 1 0 512"
  872. })
  873. ]));
  874. }
  875. }), camera_filled_default = _sfc_main30;
  876. // src/components/camera.vue
  877. var import_vue61 = __toESM(require_vue()), import_vue62 = __toESM(require_vue()), _sfc_main31 = /* @__PURE__ */ (0, import_vue61.defineComponent)({
  878. name: "Camera",
  879. __name: "camera",
  880. setup(__props) {
  881. return (_ctx, _cache) => ((0, import_vue62.openBlock)(), (0, import_vue62.createElementBlock)("svg", {
  882. xmlns: "http://www.w3.org/2000/svg",
  883. viewBox: "0 0 1024 1024"
  884. }, [
  885. (0, import_vue62.createElementVNode)("path", {
  886. fill: "currentColor",
  887. d: "M896 256H128v576h768zm-199.424-64-32.064-64h-304.96l-32 64zM96 192h160l46.336-92.608A64 64 0 0 1 359.552 64h304.96a64 64 0 0 1 57.216 35.328L768.192 192H928a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32m416 512a160 160 0 1 0 0-320 160 160 0 0 0 0 320m0 64a224 224 0 1 1 0-448 224 224 0 0 1 0 448"
  888. })
  889. ]));
  890. }
  891. }), camera_default = _sfc_main31;
  892. // src/components/caret-bottom.vue
  893. var import_vue63 = __toESM(require_vue()), import_vue64 = __toESM(require_vue()), _sfc_main32 = /* @__PURE__ */ (0, import_vue63.defineComponent)({
  894. name: "CaretBottom",
  895. __name: "caret-bottom",
  896. setup(__props) {
  897. return (_ctx, _cache) => ((0, import_vue64.openBlock)(), (0, import_vue64.createElementBlock)("svg", {
  898. xmlns: "http://www.w3.org/2000/svg",
  899. viewBox: "0 0 1024 1024"
  900. }, [
  901. (0, import_vue64.createElementVNode)("path", {
  902. fill: "currentColor",
  903. d: "m192 384 320 384 320-384z"
  904. })
  905. ]));
  906. }
  907. }), caret_bottom_default = _sfc_main32;
  908. // src/components/caret-left.vue
  909. var import_vue65 = __toESM(require_vue()), import_vue66 = __toESM(require_vue()), _sfc_main33 = /* @__PURE__ */ (0, import_vue65.defineComponent)({
  910. name: "CaretLeft",
  911. __name: "caret-left",
  912. setup(__props) {
  913. return (_ctx, _cache) => ((0, import_vue66.openBlock)(), (0, import_vue66.createElementBlock)("svg", {
  914. xmlns: "http://www.w3.org/2000/svg",
  915. viewBox: "0 0 1024 1024"
  916. }, [
  917. (0, import_vue66.createElementVNode)("path", {
  918. fill: "currentColor",
  919. d: "M672 192 288 511.936 672 832z"
  920. })
  921. ]));
  922. }
  923. }), caret_left_default = _sfc_main33;
  924. // src/components/caret-right.vue
  925. var import_vue67 = __toESM(require_vue()), import_vue68 = __toESM(require_vue()), _sfc_main34 = /* @__PURE__ */ (0, import_vue67.defineComponent)({
  926. name: "CaretRight",
  927. __name: "caret-right",
  928. setup(__props) {
  929. return (_ctx, _cache) => ((0, import_vue68.openBlock)(), (0, import_vue68.createElementBlock)("svg", {
  930. xmlns: "http://www.w3.org/2000/svg",
  931. viewBox: "0 0 1024 1024"
  932. }, [
  933. (0, import_vue68.createElementVNode)("path", {
  934. fill: "currentColor",
  935. d: "M384 192v640l384-320.064z"
  936. })
  937. ]));
  938. }
  939. }), caret_right_default = _sfc_main34;
  940. // src/components/caret-top.vue
  941. var import_vue69 = __toESM(require_vue()), import_vue70 = __toESM(require_vue()), _sfc_main35 = /* @__PURE__ */ (0, import_vue69.defineComponent)({
  942. name: "CaretTop",
  943. __name: "caret-top",
  944. setup(__props) {
  945. return (_ctx, _cache) => ((0, import_vue70.openBlock)(), (0, import_vue70.createElementBlock)("svg", {
  946. xmlns: "http://www.w3.org/2000/svg",
  947. viewBox: "0 0 1024 1024"
  948. }, [
  949. (0, import_vue70.createElementVNode)("path", {
  950. fill: "currentColor",
  951. d: "M512 320 192 704h639.936z"
  952. })
  953. ]));
  954. }
  955. }), caret_top_default = _sfc_main35;
  956. // src/components/cellphone.vue
  957. var import_vue71 = __toESM(require_vue()), import_vue72 = __toESM(require_vue()), _sfc_main36 = /* @__PURE__ */ (0, import_vue71.defineComponent)({
  958. name: "Cellphone",
  959. __name: "cellphone",
  960. setup(__props) {
  961. return (_ctx, _cache) => ((0, import_vue72.openBlock)(), (0, import_vue72.createElementBlock)("svg", {
  962. xmlns: "http://www.w3.org/2000/svg",
  963. viewBox: "0 0 1024 1024"
  964. }, [
  965. (0, import_vue72.createElementVNode)("path", {
  966. fill: "currentColor",
  967. d: "M256 128a64 64 0 0 0-64 64v640a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64zm0-64h512a128 128 0 0 1 128 128v640a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V192A128 128 0 0 1 256 64m128 128h256a32 32 0 1 1 0 64H384a32 32 0 0 1 0-64m128 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128"
  968. })
  969. ]));
  970. }
  971. }), cellphone_default = _sfc_main36;
  972. // src/components/chat-dot-round.vue
  973. var import_vue73 = __toESM(require_vue()), import_vue74 = __toESM(require_vue()), _sfc_main37 = /* @__PURE__ */ (0, import_vue73.defineComponent)({
  974. name: "ChatDotRound",
  975. __name: "chat-dot-round",
  976. setup(__props) {
  977. return (_ctx, _cache) => ((0, import_vue74.openBlock)(), (0, import_vue74.createElementBlock)("svg", {
  978. xmlns: "http://www.w3.org/2000/svg",
  979. viewBox: "0 0 1024 1024"
  980. }, [
  981. (0, import_vue74.createElementVNode)("path", {
  982. fill: "currentColor",
  983. d: "m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.06 461.06 0 0 1-206.912-48.384l-175.616 58.56z"
  984. }),
  985. (0, import_vue74.createElementVNode)("path", {
  986. fill: "currentColor",
  987. d: "M512 563.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4"
  988. })
  989. ]));
  990. }
  991. }), chat_dot_round_default = _sfc_main37;
  992. // src/components/chat-dot-square.vue
  993. var import_vue75 = __toESM(require_vue()), import_vue76 = __toESM(require_vue()), _sfc_main38 = /* @__PURE__ */ (0, import_vue75.defineComponent)({
  994. name: "ChatDotSquare",
  995. __name: "chat-dot-square",
  996. setup(__props) {
  997. return (_ctx, _cache) => ((0, import_vue76.openBlock)(), (0, import_vue76.createElementBlock)("svg", {
  998. xmlns: "http://www.w3.org/2000/svg",
  999. viewBox: "0 0 1024 1024"
  1000. }, [
  1001. (0, import_vue76.createElementVNode)("path", {
  1002. fill: "currentColor",
  1003. d: "M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"
  1004. }),
  1005. (0, import_vue76.createElementVNode)("path", {
  1006. fill: "currentColor",
  1007. d: "M512 499.2a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m192 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4m-384 0a51.2 51.2 0 1 1 0-102.4 51.2 51.2 0 0 1 0 102.4"
  1008. })
  1009. ]));
  1010. }
  1011. }), chat_dot_square_default = _sfc_main38;
  1012. // src/components/chat-line-round.vue
  1013. var import_vue77 = __toESM(require_vue()), import_vue78 = __toESM(require_vue()), _sfc_main39 = /* @__PURE__ */ (0, import_vue77.defineComponent)({
  1014. name: "ChatLineRound",
  1015. __name: "chat-line-round",
  1016. setup(__props) {
  1017. return (_ctx, _cache) => ((0, import_vue78.openBlock)(), (0, import_vue78.createElementBlock)("svg", {
  1018. xmlns: "http://www.w3.org/2000/svg",
  1019. viewBox: "0 0 1024 1024"
  1020. }, [
  1021. (0, import_vue78.createElementVNode)("path", {
  1022. fill: "currentColor",
  1023. d: "m174.72 855.68 135.296-45.12 23.68 11.84C388.096 849.536 448.576 864 512 864c211.84 0 384-166.784 384-352S723.84 160 512 160 128 326.784 128 512c0 69.12 24.96 139.264 70.848 199.232l22.08 28.8-46.272 115.584zm-45.248 82.56A32 32 0 0 1 89.6 896l58.368-145.92C94.72 680.32 64 596.864 64 512 64 299.904 256 96 512 96s448 203.904 448 416-192 416-448 416a461.06 461.06 0 0 1-206.912-48.384l-175.616 58.56z"
  1024. }),
  1025. (0, import_vue78.createElementVNode)("path", {
  1026. fill: "currentColor",
  1027. d: "M352 576h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m32-192h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32"
  1028. })
  1029. ]));
  1030. }
  1031. }), chat_line_round_default = _sfc_main39;
  1032. // src/components/chat-line-square.vue
  1033. var import_vue79 = __toESM(require_vue()), import_vue80 = __toESM(require_vue()), _sfc_main40 = /* @__PURE__ */ (0, import_vue79.defineComponent)({
  1034. name: "ChatLineSquare",
  1035. __name: "chat-line-square",
  1036. setup(__props) {
  1037. return (_ctx, _cache) => ((0, import_vue80.openBlock)(), (0, import_vue80.createElementBlock)("svg", {
  1038. xmlns: "http://www.w3.org/2000/svg",
  1039. viewBox: "0 0 1024 1024"
  1040. }, [
  1041. (0, import_vue80.createElementVNode)("path", {
  1042. fill: "currentColor",
  1043. d: "M160 826.88 273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"
  1044. }),
  1045. (0, import_vue80.createElementVNode)("path", {
  1046. fill: "currentColor",
  1047. d: "M352 512h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m0-192h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32"
  1048. })
  1049. ]));
  1050. }
  1051. }), chat_line_square_default = _sfc_main40;
  1052. // src/components/chat-round.vue
  1053. var import_vue81 = __toESM(require_vue()), import_vue82 = __toESM(require_vue()), _sfc_main41 = /* @__PURE__ */ (0, import_vue81.defineComponent)({
  1054. name: "ChatRound",
  1055. __name: "chat-round",
  1056. setup(__props) {
  1057. return (_ctx, _cache) => ((0, import_vue82.openBlock)(), (0, import_vue82.createElementBlock)("svg", {
  1058. xmlns: "http://www.w3.org/2000/svg",
  1059. viewBox: "0 0 1024 1024"
  1060. }, [
  1061. (0, import_vue82.createElementVNode)("path", {
  1062. fill: "currentColor",
  1063. d: "m174.72 855.68 130.048-43.392 23.424 11.392C382.4 849.984 444.352 864 512 864c223.744 0 384-159.872 384-352 0-192.832-159.104-352-384-352S128 319.168 128 512a341.12 341.12 0 0 0 69.248 204.288l21.632 28.8-44.16 110.528zm-45.248 82.56A32 32 0 0 1 89.6 896l56.512-141.248A405.12 405.12 0 0 1 64 512C64 299.904 235.648 96 512 96s448 203.904 448 416-173.44 416-448 416c-79.68 0-150.848-17.152-211.712-46.72l-170.88 56.96z"
  1064. })
  1065. ]));
  1066. }
  1067. }), chat_round_default = _sfc_main41;
  1068. // src/components/chat-square.vue
  1069. var import_vue83 = __toESM(require_vue()), import_vue84 = __toESM(require_vue()), _sfc_main42 = /* @__PURE__ */ (0, import_vue83.defineComponent)({
  1070. name: "ChatSquare",
  1071. __name: "chat-square",
  1072. setup(__props) {
  1073. return (_ctx, _cache) => ((0, import_vue84.openBlock)(), (0, import_vue84.createElementBlock)("svg", {
  1074. xmlns: "http://www.w3.org/2000/svg",
  1075. viewBox: "0 0 1024 1024"
  1076. }, [
  1077. (0, import_vue84.createElementVNode)("path", {
  1078. fill: "currentColor",
  1079. d: "M273.536 736H800a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64H224a64 64 0 0 0-64 64v570.88zM296 800 147.968 918.4A32 32 0 0 1 96 893.44V256a128 128 0 0 1 128-128h576a128 128 0 0 1 128 128v416a128 128 0 0 1-128 128z"
  1080. })
  1081. ]));
  1082. }
  1083. }), chat_square_default = _sfc_main42;
  1084. // src/components/check.vue
  1085. var import_vue85 = __toESM(require_vue()), import_vue86 = __toESM(require_vue()), _sfc_main43 = /* @__PURE__ */ (0, import_vue85.defineComponent)({
  1086. name: "Check",
  1087. __name: "check",
  1088. setup(__props) {
  1089. return (_ctx, _cache) => ((0, import_vue86.openBlock)(), (0, import_vue86.createElementBlock)("svg", {
  1090. xmlns: "http://www.w3.org/2000/svg",
  1091. viewBox: "0 0 1024 1024"
  1092. }, [
  1093. (0, import_vue86.createElementVNode)("path", {
  1094. fill: "currentColor",
  1095. d: "M406.656 706.944 195.84 496.256a32 32 0 1 0-45.248 45.248l256 256 512-512a32 32 0 0 0-45.248-45.248L406.592 706.944z"
  1096. })
  1097. ]));
  1098. }
  1099. }), check_default = _sfc_main43;
  1100. // src/components/checked.vue
  1101. var import_vue87 = __toESM(require_vue()), import_vue88 = __toESM(require_vue()), _sfc_main44 = /* @__PURE__ */ (0, import_vue87.defineComponent)({
  1102. name: "Checked",
  1103. __name: "checked",
  1104. setup(__props) {
  1105. return (_ctx, _cache) => ((0, import_vue88.openBlock)(), (0, import_vue88.createElementBlock)("svg", {
  1106. xmlns: "http://www.w3.org/2000/svg",
  1107. viewBox: "0 0 1024 1024"
  1108. }, [
  1109. (0, import_vue88.createElementVNode)("path", {
  1110. fill: "currentColor",
  1111. d: "M704 192h160v736H160V192h160.064v64H704zM311.616 537.28l-45.312 45.248L447.36 763.52l316.8-316.8-45.312-45.184L447.36 673.024zM384 192V96h256v96z"
  1112. })
  1113. ]));
  1114. }
  1115. }), checked_default = _sfc_main44;
  1116. // src/components/cherry.vue
  1117. var import_vue89 = __toESM(require_vue()), import_vue90 = __toESM(require_vue()), _sfc_main45 = /* @__PURE__ */ (0, import_vue89.defineComponent)({
  1118. name: "Cherry",
  1119. __name: "cherry",
  1120. setup(__props) {
  1121. return (_ctx, _cache) => ((0, import_vue90.openBlock)(), (0, import_vue90.createElementBlock)("svg", {
  1122. xmlns: "http://www.w3.org/2000/svg",
  1123. viewBox: "0 0 1024 1024"
  1124. }, [
  1125. (0, import_vue90.createElementVNode)("path", {
  1126. fill: "currentColor",
  1127. d: "M261.056 449.6c13.824-69.696 34.88-128.96 63.36-177.728 23.744-40.832 61.12-88.64 112.256-143.872H320a32 32 0 0 1 0-64h384a32 32 0 1 1 0 64H554.752c14.912 39.168 41.344 86.592 79.552 141.76 47.36 68.48 84.8 106.752 106.304 114.304a224 224 0 1 1-84.992 14.784c-22.656-22.912-47.04-53.76-73.92-92.608-38.848-56.128-67.008-105.792-84.352-149.312-55.296 58.24-94.528 107.52-117.76 147.2-23.168 39.744-41.088 88.768-53.568 147.072a224.064 224.064 0 1 1-64.96-1.6M288 832a160 160 0 1 0 0-320 160 160 0 0 0 0 320m448-64a160 160 0 1 0 0-320 160 160 0 0 0 0 320"
  1128. })
  1129. ]));
  1130. }
  1131. }), cherry_default = _sfc_main45;
  1132. // src/components/chicken.vue
  1133. var import_vue91 = __toESM(require_vue()), import_vue92 = __toESM(require_vue()), _sfc_main46 = /* @__PURE__ */ (0, import_vue91.defineComponent)({
  1134. name: "Chicken",
  1135. __name: "chicken",
  1136. setup(__props) {
  1137. return (_ctx, _cache) => ((0, import_vue92.openBlock)(), (0, import_vue92.createElementBlock)("svg", {
  1138. xmlns: "http://www.w3.org/2000/svg",
  1139. viewBox: "0 0 1024 1024"
  1140. }, [
  1141. (0, import_vue92.createElementVNode)("path", {
  1142. fill: "currentColor",
  1143. d: "M349.952 716.992 478.72 588.16a106.7 106.7 0 0 1-26.176-19.072 106.7 106.7 0 0 1-19.072-26.176L304.704 671.744c.768 3.072 1.472 6.144 2.048 9.216l2.048 31.936 31.872 1.984c3.136.64 6.208 1.28 9.28 2.112m57.344 33.152a128 128 0 1 1-216.32 114.432l-1.92-32-32-1.92a128 128 0 1 1 114.432-216.32L416.64 469.248c-2.432-101.44 58.112-239.104 149.056-330.048 107.328-107.328 231.296-85.504 316.8 0 85.44 85.44 107.328 209.408 0 316.8-91.008 90.88-228.672 151.424-330.112 149.056L407.296 750.08zm90.496-226.304c49.536 49.536 233.344-7.04 339.392-113.088 78.208-78.208 63.232-163.072 0-226.304-63.168-63.232-148.032-78.208-226.24 0C504.896 290.496 448.32 474.368 497.792 523.84M244.864 708.928a64 64 0 1 0-59.84 59.84l56.32-3.52zm8.064 127.68a64 64 0 1 0 59.84-59.84l-56.32 3.52z"
  1144. })
  1145. ]));
  1146. }
  1147. }), chicken_default = _sfc_main46;
  1148. // src/components/chrome-filled.vue
  1149. var import_vue93 = __toESM(require_vue()), import_vue94 = __toESM(require_vue()), _sfc_main47 = /* @__PURE__ */ (0, import_vue93.defineComponent)({
  1150. name: "ChromeFilled",
  1151. __name: "chrome-filled",
  1152. setup(__props) {
  1153. return (_ctx, _cache) => ((0, import_vue94.openBlock)(), (0, import_vue94.createElementBlock)("svg", {
  1154. xmlns: "http://www.w3.org/2000/svg",
  1155. "xml:space": "preserve",
  1156. viewBox: "0 0 1024 1024"
  1157. }, [
  1158. (0, import_vue94.createElementVNode)("path", {
  1159. fill: "currentColor",
  1160. d: "M938.67 512.01c0-44.59-6.82-87.6-19.54-128H682.67a212.37 212.37 0 0 1 42.67 128c.06 38.71-10.45 76.7-30.42 109.87l-182.91 316.8c235.65-.01 426.66-191.02 426.66-426.67"
  1161. }),
  1162. (0, import_vue94.createElementVNode)("path", {
  1163. fill: "currentColor",
  1164. d: "M576.79 401.63a127.9 127.9 0 0 0-63.56-17.6c-22.36-.22-44.39 5.43-63.89 16.38s-35.79 26.82-47.25 46.02a128 128 0 0 0-2.16 127.44l1.24 2.13a127.9 127.9 0 0 0 46.36 46.61 127.9 127.9 0 0 0 63.38 17.44c22.29.2 44.24-5.43 63.68-16.33a127.94 127.94 0 0 0 47.16-45.79v-.01l1.11-1.92a127.98 127.98 0 0 0 .29-127.46 127.96 127.96 0 0 0-46.36-46.91"
  1165. }),
  1166. (0, import_vue94.createElementVNode)("path", {
  1167. fill: "currentColor",
  1168. d: "M394.45 333.96A213.34 213.34 0 0 1 512 298.67h369.58A426.5 426.5 0 0 0 512 85.34a425.6 425.6 0 0 0-171.74 35.98 425.6 425.6 0 0 0-142.62 102.22l118.14 204.63a213.4 213.4 0 0 1 78.67-94.21m117.56 604.72H512zm-97.25-236.73a213.3 213.3 0 0 1-89.54-86.81L142.48 298.6c-36.35 62.81-57.13 135.68-57.13 213.42 0 203.81 142.93 374.22 333.95 416.55h.04l118.19-204.71a213.3 213.3 0 0 1-122.77-21.91"
  1169. })
  1170. ]));
  1171. }
  1172. }), chrome_filled_default = _sfc_main47;
  1173. // src/components/circle-check-filled.vue
  1174. var import_vue95 = __toESM(require_vue()), import_vue96 = __toESM(require_vue()), _sfc_main48 = /* @__PURE__ */ (0, import_vue95.defineComponent)({
  1175. name: "CircleCheckFilled",
  1176. __name: "circle-check-filled",
  1177. setup(__props) {
  1178. return (_ctx, _cache) => ((0, import_vue96.openBlock)(), (0, import_vue96.createElementBlock)("svg", {
  1179. xmlns: "http://www.w3.org/2000/svg",
  1180. viewBox: "0 0 1024 1024"
  1181. }, [
  1182. (0, import_vue96.createElementVNode)("path", {
  1183. fill: "currentColor",
  1184. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.27 38.27 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"
  1185. })
  1186. ]));
  1187. }
  1188. }), circle_check_filled_default = _sfc_main48;
  1189. // src/components/circle-check.vue
  1190. var import_vue97 = __toESM(require_vue()), import_vue98 = __toESM(require_vue()), _sfc_main49 = /* @__PURE__ */ (0, import_vue97.defineComponent)({
  1191. name: "CircleCheck",
  1192. __name: "circle-check",
  1193. setup(__props) {
  1194. return (_ctx, _cache) => ((0, import_vue98.openBlock)(), (0, import_vue98.createElementBlock)("svg", {
  1195. xmlns: "http://www.w3.org/2000/svg",
  1196. viewBox: "0 0 1024 1024"
  1197. }, [
  1198. (0, import_vue98.createElementVNode)("path", {
  1199. fill: "currentColor",
  1200. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  1201. }),
  1202. (0, import_vue98.createElementVNode)("path", {
  1203. fill: "currentColor",
  1204. d: "M745.344 361.344a32 32 0 0 1 45.312 45.312l-288 288a32 32 0 0 1-45.312 0l-160-160a32 32 0 1 1 45.312-45.312L480 626.752z"
  1205. })
  1206. ]));
  1207. }
  1208. }), circle_check_default = _sfc_main49;
  1209. // src/components/circle-close-filled.vue
  1210. var import_vue99 = __toESM(require_vue()), import_vue100 = __toESM(require_vue()), _sfc_main50 = /* @__PURE__ */ (0, import_vue99.defineComponent)({
  1211. name: "CircleCloseFilled",
  1212. __name: "circle-close-filled",
  1213. setup(__props) {
  1214. return (_ctx, _cache) => ((0, import_vue100.openBlock)(), (0, import_vue100.createElementBlock)("svg", {
  1215. xmlns: "http://www.w3.org/2000/svg",
  1216. viewBox: "0 0 1024 1024"
  1217. }, [
  1218. (0, import_vue100.createElementVNode)("path", {
  1219. fill: "currentColor",
  1220. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512 353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336 616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512 670.4 407.936a38.4 38.4 0 1 0-54.336-54.336z"
  1221. })
  1222. ]));
  1223. }
  1224. }), circle_close_filled_default = _sfc_main50;
  1225. // src/components/circle-close.vue
  1226. var import_vue101 = __toESM(require_vue()), import_vue102 = __toESM(require_vue()), _sfc_main51 = /* @__PURE__ */ (0, import_vue101.defineComponent)({
  1227. name: "CircleClose",
  1228. __name: "circle-close",
  1229. setup(__props) {
  1230. return (_ctx, _cache) => ((0, import_vue102.openBlock)(), (0, import_vue102.createElementBlock)("svg", {
  1231. xmlns: "http://www.w3.org/2000/svg",
  1232. viewBox: "0 0 1024 1024"
  1233. }, [
  1234. (0, import_vue102.createElementVNode)("path", {
  1235. fill: "currentColor",
  1236. d: "m466.752 512-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248z"
  1237. }),
  1238. (0, import_vue102.createElementVNode)("path", {
  1239. fill: "currentColor",
  1240. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  1241. })
  1242. ]));
  1243. }
  1244. }), circle_close_default = _sfc_main51;
  1245. // src/components/circle-plus-filled.vue
  1246. var import_vue103 = __toESM(require_vue()), import_vue104 = __toESM(require_vue()), _sfc_main52 = /* @__PURE__ */ (0, import_vue103.defineComponent)({
  1247. name: "CirclePlusFilled",
  1248. __name: "circle-plus-filled",
  1249. setup(__props) {
  1250. return (_ctx, _cache) => ((0, import_vue104.openBlock)(), (0, import_vue104.createElementBlock)("svg", {
  1251. xmlns: "http://www.w3.org/2000/svg",
  1252. viewBox: "0 0 1024 1024"
  1253. }, [
  1254. (0, import_vue104.createElementVNode)("path", {
  1255. fill: "currentColor",
  1256. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-38.4 409.6H326.4a38.4 38.4 0 1 0 0 76.8h147.2v147.2a38.4 38.4 0 0 0 76.8 0V550.4h147.2a38.4 38.4 0 0 0 0-76.8H550.4V326.4a38.4 38.4 0 1 0-76.8 0z"
  1257. })
  1258. ]));
  1259. }
  1260. }), circle_plus_filled_default = _sfc_main52;
  1261. // src/components/circle-plus.vue
  1262. var import_vue105 = __toESM(require_vue()), import_vue106 = __toESM(require_vue()), _sfc_main53 = /* @__PURE__ */ (0, import_vue105.defineComponent)({
  1263. name: "CirclePlus",
  1264. __name: "circle-plus",
  1265. setup(__props) {
  1266. return (_ctx, _cache) => ((0, import_vue106.openBlock)(), (0, import_vue106.createElementBlock)("svg", {
  1267. xmlns: "http://www.w3.org/2000/svg",
  1268. viewBox: "0 0 1024 1024"
  1269. }, [
  1270. (0, import_vue106.createElementVNode)("path", {
  1271. fill: "currentColor",
  1272. d: "M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64"
  1273. }),
  1274. (0, import_vue106.createElementVNode)("path", {
  1275. fill: "currentColor",
  1276. d: "M480 672V352a32 32 0 1 1 64 0v320a32 32 0 0 1-64 0"
  1277. }),
  1278. (0, import_vue106.createElementVNode)("path", {
  1279. fill: "currentColor",
  1280. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  1281. })
  1282. ]));
  1283. }
  1284. }), circle_plus_default = _sfc_main53;
  1285. // src/components/clock.vue
  1286. var import_vue107 = __toESM(require_vue()), import_vue108 = __toESM(require_vue()), _sfc_main54 = /* @__PURE__ */ (0, import_vue107.defineComponent)({
  1287. name: "Clock",
  1288. __name: "clock",
  1289. setup(__props) {
  1290. return (_ctx, _cache) => ((0, import_vue108.openBlock)(), (0, import_vue108.createElementBlock)("svg", {
  1291. xmlns: "http://www.w3.org/2000/svg",
  1292. viewBox: "0 0 1024 1024"
  1293. }, [
  1294. (0, import_vue108.createElementVNode)("path", {
  1295. fill: "currentColor",
  1296. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  1297. }),
  1298. (0, import_vue108.createElementVNode)("path", {
  1299. fill: "currentColor",
  1300. d: "M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32"
  1301. }),
  1302. (0, import_vue108.createElementVNode)("path", {
  1303. fill: "currentColor",
  1304. d: "M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32"
  1305. })
  1306. ]));
  1307. }
  1308. }), clock_default = _sfc_main54;
  1309. // src/components/close-bold.vue
  1310. var import_vue109 = __toESM(require_vue()), import_vue110 = __toESM(require_vue()), _sfc_main55 = /* @__PURE__ */ (0, import_vue109.defineComponent)({
  1311. name: "CloseBold",
  1312. __name: "close-bold",
  1313. setup(__props) {
  1314. return (_ctx, _cache) => ((0, import_vue110.openBlock)(), (0, import_vue110.createElementBlock)("svg", {
  1315. xmlns: "http://www.w3.org/2000/svg",
  1316. viewBox: "0 0 1024 1024"
  1317. }, [
  1318. (0, import_vue110.createElementVNode)("path", {
  1319. fill: "currentColor",
  1320. d: "M195.2 195.2a64 64 0 0 1 90.496 0L512 421.504 738.304 195.2a64 64 0 0 1 90.496 90.496L602.496 512 828.8 738.304a64 64 0 0 1-90.496 90.496L512 602.496 285.696 828.8a64 64 0 0 1-90.496-90.496L421.504 512 195.2 285.696a64 64 0 0 1 0-90.496"
  1321. })
  1322. ]));
  1323. }
  1324. }), close_bold_default = _sfc_main55;
  1325. // src/components/close.vue
  1326. var import_vue111 = __toESM(require_vue()), import_vue112 = __toESM(require_vue()), _sfc_main56 = /* @__PURE__ */ (0, import_vue111.defineComponent)({
  1327. name: "Close",
  1328. __name: "close",
  1329. setup(__props) {
  1330. return (_ctx, _cache) => ((0, import_vue112.openBlock)(), (0, import_vue112.createElementBlock)("svg", {
  1331. xmlns: "http://www.w3.org/2000/svg",
  1332. viewBox: "0 0 1024 1024"
  1333. }, [
  1334. (0, import_vue112.createElementVNode)("path", {
  1335. fill: "currentColor",
  1336. d: "M764.288 214.592 512 466.88 259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512 214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"
  1337. })
  1338. ]));
  1339. }
  1340. }), close_default = _sfc_main56;
  1341. // src/components/cloudy.vue
  1342. var import_vue113 = __toESM(require_vue()), import_vue114 = __toESM(require_vue()), _sfc_main57 = /* @__PURE__ */ (0, import_vue113.defineComponent)({
  1343. name: "Cloudy",
  1344. __name: "cloudy",
  1345. setup(__props) {
  1346. return (_ctx, _cache) => ((0, import_vue114.openBlock)(), (0, import_vue114.createElementBlock)("svg", {
  1347. xmlns: "http://www.w3.org/2000/svg",
  1348. viewBox: "0 0 1024 1024"
  1349. }, [
  1350. (0, import_vue114.createElementVNode)("path", {
  1351. fill: "currentColor",
  1352. d: "M598.4 831.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 831.872m-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 381.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"
  1353. })
  1354. ]));
  1355. }
  1356. }), cloudy_default = _sfc_main57;
  1357. // src/components/coffee-cup.vue
  1358. var import_vue115 = __toESM(require_vue()), import_vue116 = __toESM(require_vue()), _sfc_main58 = /* @__PURE__ */ (0, import_vue115.defineComponent)({
  1359. name: "CoffeeCup",
  1360. __name: "coffee-cup",
  1361. setup(__props) {
  1362. return (_ctx, _cache) => ((0, import_vue116.openBlock)(), (0, import_vue116.createElementBlock)("svg", {
  1363. xmlns: "http://www.w3.org/2000/svg",
  1364. viewBox: "0 0 1024 1024"
  1365. }, [
  1366. (0, import_vue116.createElementVNode)("path", {
  1367. fill: "currentColor",
  1368. d: "M768 192a192 192 0 1 1-8 383.808A256.13 256.13 0 0 1 512 768H320A256 256 0 0 1 64 512V160a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 64v256a128 128 0 1 0 0-256M96 832h640a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64m32-640v320a192 192 0 0 0 192 192h192a192 192 0 0 0 192-192V192z"
  1369. })
  1370. ]));
  1371. }
  1372. }), coffee_cup_default = _sfc_main58;
  1373. // src/components/coffee.vue
  1374. var import_vue117 = __toESM(require_vue()), import_vue118 = __toESM(require_vue()), _sfc_main59 = /* @__PURE__ */ (0, import_vue117.defineComponent)({
  1375. name: "Coffee",
  1376. __name: "coffee",
  1377. setup(__props) {
  1378. return (_ctx, _cache) => ((0, import_vue118.openBlock)(), (0, import_vue118.createElementBlock)("svg", {
  1379. xmlns: "http://www.w3.org/2000/svg",
  1380. viewBox: "0 0 1024 1024"
  1381. }, [
  1382. (0, import_vue118.createElementVNode)("path", {
  1383. fill: "currentColor",
  1384. d: "M822.592 192h14.272a32 32 0 0 1 31.616 26.752l21.312 128A32 32 0 0 1 858.24 384h-49.344l-39.04 546.304A32 32 0 0 1 737.92 960H285.824a32 32 0 0 1-32-29.696L214.912 384H165.76a32 32 0 0 1-31.552-37.248l21.312-128A32 32 0 0 1 187.136 192h14.016l-6.72-93.696A32 32 0 0 1 226.368 64h571.008a32 32 0 0 1 31.936 34.304zm-64.128 0 4.544-64H260.736l4.544 64zm-548.16 128H820.48l-10.688-64H214.208l-10.688 64zm68.736 64 36.544 512H708.16l36.544-512z"
  1385. })
  1386. ]));
  1387. }
  1388. }), coffee_default = _sfc_main59;
  1389. // src/components/coin.vue
  1390. var import_vue119 = __toESM(require_vue()), import_vue120 = __toESM(require_vue()), _sfc_main60 = /* @__PURE__ */ (0, import_vue119.defineComponent)({
  1391. name: "Coin",
  1392. __name: "coin",
  1393. setup(__props) {
  1394. return (_ctx, _cache) => ((0, import_vue120.openBlock)(), (0, import_vue120.createElementBlock)("svg", {
  1395. xmlns: "http://www.w3.org/2000/svg",
  1396. viewBox: "0 0 1024 1024"
  1397. }, [
  1398. (0, import_vue120.createElementVNode)("path", {
  1399. fill: "currentColor",
  1400. d: "m161.92 580.736 29.888 58.88C171.328 659.776 160 681.728 160 704c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 615.808 928 657.664 928 704c0 129.728-188.544 224-416 224S96 833.728 96 704c0-46.592 24.32-88.576 65.92-123.264"
  1401. }),
  1402. (0, import_vue120.createElementVNode)("path", {
  1403. fill: "currentColor",
  1404. d: "m161.92 388.736 29.888 58.88C171.328 467.84 160 489.792 160 512c0 82.304 155.328 160 352 160s352-77.696 352-160c0-22.272-11.392-44.16-31.808-64.32l30.464-58.432C903.936 423.808 928 465.664 928 512c0 129.728-188.544 224-416 224S96 641.728 96 512c0-46.592 24.32-88.576 65.92-123.264"
  1405. }),
  1406. (0, import_vue120.createElementVNode)("path", {
  1407. fill: "currentColor",
  1408. d: "M512 544c-227.456 0-416-94.272-416-224S284.544 96 512 96s416 94.272 416 224-188.544 224-416 224m0-64c196.672 0 352-77.696 352-160S708.672 160 512 160s-352 77.696-352 160 155.328 160 352 160"
  1409. })
  1410. ]));
  1411. }
  1412. }), coin_default = _sfc_main60;
  1413. // src/components/cold-drink.vue
  1414. var import_vue121 = __toESM(require_vue()), import_vue122 = __toESM(require_vue()), _sfc_main61 = /* @__PURE__ */ (0, import_vue121.defineComponent)({
  1415. name: "ColdDrink",
  1416. __name: "cold-drink",
  1417. setup(__props) {
  1418. return (_ctx, _cache) => ((0, import_vue122.openBlock)(), (0, import_vue122.createElementBlock)("svg", {
  1419. xmlns: "http://www.w3.org/2000/svg",
  1420. viewBox: "0 0 1024 1024"
  1421. }, [
  1422. (0, import_vue122.createElementVNode)("path", {
  1423. fill: "currentColor",
  1424. d: "M768 64a192 192 0 1 1-69.952 370.88L480 725.376V896h96a32 32 0 1 1 0 64H320a32 32 0 1 1 0-64h96V725.376L76.8 273.536a64 64 0 0 1-12.8-38.4v-10.688a32 32 0 0 1 32-32h71.808l-65.536-83.84a32 32 0 0 1 50.432-39.424l96.256 123.264h337.728A192.06 192.06 0 0 1 768 64M656.896 192.448H800a32 32 0 0 1 32 32v10.624a64 64 0 0 1-12.8 38.4l-80.448 107.2a128 128 0 1 0-81.92-188.16v-.064zm-357.888 64 129.472 165.76a32 32 0 0 1-50.432 39.36l-160.256-205.12H144l304 404.928 304-404.928z"
  1425. })
  1426. ]));
  1427. }
  1428. }), cold_drink_default = _sfc_main61;
  1429. // src/components/collection-tag.vue
  1430. var import_vue123 = __toESM(require_vue()), import_vue124 = __toESM(require_vue()), _sfc_main62 = /* @__PURE__ */ (0, import_vue123.defineComponent)({
  1431. name: "CollectionTag",
  1432. __name: "collection-tag",
  1433. setup(__props) {
  1434. return (_ctx, _cache) => ((0, import_vue124.openBlock)(), (0, import_vue124.createElementBlock)("svg", {
  1435. xmlns: "http://www.w3.org/2000/svg",
  1436. viewBox: "0 0 1024 1024"
  1437. }, [
  1438. (0, import_vue124.createElementVNode)("path", {
  1439. fill: "currentColor",
  1440. d: "M256 128v698.88l196.032-156.864a96 96 0 0 1 119.936 0L768 826.816V128zm-32-64h576a32 32 0 0 1 32 32v797.44a32 32 0 0 1-51.968 24.96L531.968 720a32 32 0 0 0-39.936 0L243.968 918.4A32 32 0 0 1 192 893.44V96a32 32 0 0 1 32-32"
  1441. })
  1442. ]));
  1443. }
  1444. }), collection_tag_default = _sfc_main62;
  1445. // src/components/collection.vue
  1446. var import_vue125 = __toESM(require_vue()), import_vue126 = __toESM(require_vue()), _sfc_main63 = /* @__PURE__ */ (0, import_vue125.defineComponent)({
  1447. name: "Collection",
  1448. __name: "collection",
  1449. setup(__props) {
  1450. return (_ctx, _cache) => ((0, import_vue126.openBlock)(), (0, import_vue126.createElementBlock)("svg", {
  1451. xmlns: "http://www.w3.org/2000/svg",
  1452. viewBox: "0 0 1024 1024"
  1453. }, [
  1454. (0, import_vue126.createElementVNode)("path", {
  1455. fill: "currentColor",
  1456. d: "M192 736h640V128H256a64 64 0 0 0-64 64zm64-672h608a32 32 0 0 1 32 32v672a32 32 0 0 1-32 32H160l-32 57.536V192A128 128 0 0 1 256 64"
  1457. }),
  1458. (0, import_vue126.createElementVNode)("path", {
  1459. fill: "currentColor",
  1460. d: "M240 800a48 48 0 1 0 0 96h592v-96zm0-64h656v160a64 64 0 0 1-64 64H240a112 112 0 0 1 0-224m144-608v250.88l96-76.8 96 76.8V128zm-64-64h320v381.44a32 32 0 0 1-51.968 24.96L480 384l-108.032 86.4A32 32 0 0 1 320 445.44z"
  1461. })
  1462. ]));
  1463. }
  1464. }), collection_default = _sfc_main63;
  1465. // src/components/comment.vue
  1466. var import_vue127 = __toESM(require_vue()), import_vue128 = __toESM(require_vue()), _sfc_main64 = /* @__PURE__ */ (0, import_vue127.defineComponent)({
  1467. name: "Comment",
  1468. __name: "comment",
  1469. setup(__props) {
  1470. return (_ctx, _cache) => ((0, import_vue128.openBlock)(), (0, import_vue128.createElementBlock)("svg", {
  1471. xmlns: "http://www.w3.org/2000/svg",
  1472. viewBox: "0 0 1024 1024"
  1473. }, [
  1474. (0, import_vue128.createElementVNode)("path", {
  1475. fill: "currentColor",
  1476. d: "M736 504a56 56 0 1 1 0-112 56 56 0 0 1 0 112m-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112m-224 0a56 56 0 1 1 0-112 56 56 0 0 1 0 112M128 128v640h192v160l224-160h352V128z"
  1477. })
  1478. ]));
  1479. }
  1480. }), comment_default = _sfc_main64;
  1481. // src/components/compass.vue
  1482. var import_vue129 = __toESM(require_vue()), import_vue130 = __toESM(require_vue()), _sfc_main65 = /* @__PURE__ */ (0, import_vue129.defineComponent)({
  1483. name: "Compass",
  1484. __name: "compass",
  1485. setup(__props) {
  1486. return (_ctx, _cache) => ((0, import_vue130.openBlock)(), (0, import_vue130.createElementBlock)("svg", {
  1487. xmlns: "http://www.w3.org/2000/svg",
  1488. viewBox: "0 0 1024 1024"
  1489. }, [
  1490. (0, import_vue130.createElementVNode)("path", {
  1491. fill: "currentColor",
  1492. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  1493. }),
  1494. (0, import_vue130.createElementVNode)("path", {
  1495. fill: "currentColor",
  1496. d: "M725.888 315.008C676.48 428.672 624 513.28 568.576 568.64c-55.424 55.424-139.968 107.904-253.568 157.312a12.8 12.8 0 0 1-16.896-16.832c49.536-113.728 102.016-198.272 157.312-253.632 55.36-55.296 139.904-107.776 253.632-157.312a12.8 12.8 0 0 1 16.832 16.832"
  1497. })
  1498. ]));
  1499. }
  1500. }), compass_default = _sfc_main65;
  1501. // src/components/connection.vue
  1502. var import_vue131 = __toESM(require_vue()), import_vue132 = __toESM(require_vue()), _sfc_main66 = /* @__PURE__ */ (0, import_vue131.defineComponent)({
  1503. name: "Connection",
  1504. __name: "connection",
  1505. setup(__props) {
  1506. return (_ctx, _cache) => ((0, import_vue132.openBlock)(), (0, import_vue132.createElementBlock)("svg", {
  1507. xmlns: "http://www.w3.org/2000/svg",
  1508. viewBox: "0 0 1024 1024"
  1509. }, [
  1510. (0, import_vue132.createElementVNode)("path", {
  1511. fill: "currentColor",
  1512. d: "M640 384v64H448a128 128 0 0 0-128 128v128a128 128 0 0 0 128 128h320a128 128 0 0 0 128-128V576a128 128 0 0 0-64-110.848V394.88c74.56 26.368 128 97.472 128 181.056v128a192 192 0 0 1-192 192H448a192 192 0 0 1-192-192V576a192 192 0 0 1 192-192z"
  1513. }),
  1514. (0, import_vue132.createElementVNode)("path", {
  1515. fill: "currentColor",
  1516. d: "M384 640v-64h192a128 128 0 0 0 128-128V320a128 128 0 0 0-128-128H256a128 128 0 0 0-128 128v128a128 128 0 0 0 64 110.848v70.272A192.06 192.06 0 0 1 64 448V320a192 192 0 0 1 192-192h320a192 192 0 0 1 192 192v128a192 192 0 0 1-192 192z"
  1517. })
  1518. ]));
  1519. }
  1520. }), connection_default = _sfc_main66;
  1521. // src/components/coordinate.vue
  1522. var import_vue133 = __toESM(require_vue()), import_vue134 = __toESM(require_vue()), _sfc_main67 = /* @__PURE__ */ (0, import_vue133.defineComponent)({
  1523. name: "Coordinate",
  1524. __name: "coordinate",
  1525. setup(__props) {
  1526. return (_ctx, _cache) => ((0, import_vue134.openBlock)(), (0, import_vue134.createElementBlock)("svg", {
  1527. xmlns: "http://www.w3.org/2000/svg",
  1528. viewBox: "0 0 1024 1024"
  1529. }, [
  1530. (0, import_vue134.createElementVNode)("path", {
  1531. fill: "currentColor",
  1532. d: "M480 512h64v320h-64z"
  1533. }),
  1534. (0, import_vue134.createElementVNode)("path", {
  1535. fill: "currentColor",
  1536. d: "M192 896h640a64 64 0 0 0-64-64H256a64 64 0 0 0-64 64m64-128h512a128 128 0 0 1 128 128v64H128v-64a128 128 0 0 1 128-128m256-256a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512"
  1537. })
  1538. ]));
  1539. }
  1540. }), coordinate_default = _sfc_main67;
  1541. // src/components/copy-document.vue
  1542. var import_vue135 = __toESM(require_vue()), import_vue136 = __toESM(require_vue()), _sfc_main68 = /* @__PURE__ */ (0, import_vue135.defineComponent)({
  1543. name: "CopyDocument",
  1544. __name: "copy-document",
  1545. setup(__props) {
  1546. return (_ctx, _cache) => ((0, import_vue136.openBlock)(), (0, import_vue136.createElementBlock)("svg", {
  1547. xmlns: "http://www.w3.org/2000/svg",
  1548. viewBox: "0 0 1024 1024"
  1549. }, [
  1550. (0, import_vue136.createElementVNode)("path", {
  1551. fill: "currentColor",
  1552. d: "M768 832a128 128 0 0 1-128 128H192A128 128 0 0 1 64 832V384a128 128 0 0 1 128-128v64a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64z"
  1553. }),
  1554. (0, import_vue136.createElementVNode)("path", {
  1555. fill: "currentColor",
  1556. d: "M384 128a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V192a64 64 0 0 0-64-64zm0-64h448a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H384a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64"
  1557. })
  1558. ]));
  1559. }
  1560. }), copy_document_default = _sfc_main68;
  1561. // src/components/cpu.vue
  1562. var import_vue137 = __toESM(require_vue()), import_vue138 = __toESM(require_vue()), _sfc_main69 = /* @__PURE__ */ (0, import_vue137.defineComponent)({
  1563. name: "Cpu",
  1564. __name: "cpu",
  1565. setup(__props) {
  1566. return (_ctx, _cache) => ((0, import_vue138.openBlock)(), (0, import_vue138.createElementBlock)("svg", {
  1567. xmlns: "http://www.w3.org/2000/svg",
  1568. viewBox: "0 0 1024 1024"
  1569. }, [
  1570. (0, import_vue138.createElementVNode)("path", {
  1571. fill: "currentColor",
  1572. d: "M320 256a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h384a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64zm0-64h384a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128H320a128 128 0 0 1-128-128V320a128 128 0 0 1 128-128"
  1573. }),
  1574. (0, import_vue138.createElementVNode)("path", {
  1575. fill: "currentColor",
  1576. d: "M512 64a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m160 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m-320 0a32 32 0 0 1 32 32v128h-64V96a32 32 0 0 1 32-32m160 896a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32m160 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32m-320 0a32 32 0 0 1-32-32V800h64v128a32 32 0 0 1-32 32M64 512a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m0-160a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m0 320a32 32 0 0 1 32-32h128v64H96a32 32 0 0 1-32-32m896-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32m0-160a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32m0 320a32 32 0 0 1-32 32H800v-64h128a32 32 0 0 1 32 32"
  1577. })
  1578. ]));
  1579. }
  1580. }), cpu_default = _sfc_main69;
  1581. // src/components/credit-card.vue
  1582. var import_vue139 = __toESM(require_vue()), import_vue140 = __toESM(require_vue()), _sfc_main70 = /* @__PURE__ */ (0, import_vue139.defineComponent)({
  1583. name: "CreditCard",
  1584. __name: "credit-card",
  1585. setup(__props) {
  1586. return (_ctx, _cache) => ((0, import_vue140.openBlock)(), (0, import_vue140.createElementBlock)("svg", {
  1587. xmlns: "http://www.w3.org/2000/svg",
  1588. viewBox: "0 0 1024 1024"
  1589. }, [
  1590. (0, import_vue140.createElementVNode)("path", {
  1591. fill: "currentColor",
  1592. d: "M896 324.096c0-42.368-2.496-55.296-9.536-68.48a52.35 52.35 0 0 0-22.144-22.08c-13.12-7.04-26.048-9.536-68.416-9.536H228.096c-42.368 0-55.296 2.496-68.48 9.536a52.35 52.35 0 0 0-22.08 22.144c-7.04 13.12-9.536 26.048-9.536 68.416v375.808c0 42.368 2.496 55.296 9.536 68.48a52.35 52.35 0 0 0 22.144 22.08c13.12 7.04 26.048 9.536 68.416 9.536h567.808c42.368 0 55.296-2.496 68.48-9.536a52.35 52.35 0 0 0 22.08-22.144c7.04-13.12 9.536-26.048 9.536-68.416zm64 0v375.808c0 57.088-5.952 77.76-17.088 98.56-11.136 20.928-27.52 37.312-48.384 48.448S852.928 864 795.968 864H228.032c-57.088 0-77.76-5.952-98.56-17.088a116.3 116.3 0 0 1-48.448-48.384c-11.136-20.864-17.088-41.6-17.088-98.56V324.032c0-57.088 5.952-77.76 17.088-98.56 11.136-20.928 27.52-37.312 48.384-48.448s41.6-17.088 98.56-17.088H795.84c57.088 0 77.76 5.952 98.56 17.088 20.928 11.136 37.312 27.52 48.448 48.384s17.088 41.6 17.088 98.56z"
  1593. }),
  1594. (0, import_vue140.createElementVNode)("path", {
  1595. fill: "currentColor",
  1596. d: "M64 320h896v64H64zm0 128h896v64H64zm128 192h256v64H192z"
  1597. })
  1598. ]));
  1599. }
  1600. }), credit_card_default = _sfc_main70;
  1601. // src/components/crop.vue
  1602. var import_vue141 = __toESM(require_vue()), import_vue142 = __toESM(require_vue()), _sfc_main71 = /* @__PURE__ */ (0, import_vue141.defineComponent)({
  1603. name: "Crop",
  1604. __name: "crop",
  1605. setup(__props) {
  1606. return (_ctx, _cache) => ((0, import_vue142.openBlock)(), (0, import_vue142.createElementBlock)("svg", {
  1607. xmlns: "http://www.w3.org/2000/svg",
  1608. viewBox: "0 0 1024 1024"
  1609. }, [
  1610. (0, import_vue142.createElementVNode)("path", {
  1611. fill: "currentColor",
  1612. d: "M256 768h672a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V96a32 32 0 0 1 64 0z"
  1613. }),
  1614. (0, import_vue142.createElementVNode)("path", {
  1615. fill: "currentColor",
  1616. d: "M832 224v704a32 32 0 1 1-64 0V256H96a32 32 0 0 1 0-64h704a32 32 0 0 1 32 32"
  1617. })
  1618. ]));
  1619. }
  1620. }), crop_default = _sfc_main71;
  1621. // src/components/d-arrow-left.vue
  1622. var import_vue143 = __toESM(require_vue()), import_vue144 = __toESM(require_vue()), _sfc_main72 = /* @__PURE__ */ (0, import_vue143.defineComponent)({
  1623. name: "DArrowLeft",
  1624. __name: "d-arrow-left",
  1625. setup(__props) {
  1626. return (_ctx, _cache) => ((0, import_vue144.openBlock)(), (0, import_vue144.createElementBlock)("svg", {
  1627. xmlns: "http://www.w3.org/2000/svg",
  1628. viewBox: "0 0 1024 1024"
  1629. }, [
  1630. (0, import_vue144.createElementVNode)("path", {
  1631. fill: "currentColor",
  1632. d: "M529.408 149.376a29.12 29.12 0 0 1 41.728 0 30.59 30.59 0 0 1 0 42.688L259.264 511.936l311.872 319.936a30.59 30.59 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L197.76 534.272a32 32 0 0 1 0-44.672zm256 0a29.12 29.12 0 0 1 41.728 0 30.59 30.59 0 0 1 0 42.688L515.264 511.936l311.872 319.936a30.59 30.59 0 0 1-.512 43.264 29.12 29.12 0 0 1-41.216-.512L453.76 534.272a32 32 0 0 1 0-44.672z"
  1633. })
  1634. ]));
  1635. }
  1636. }), d_arrow_left_default = _sfc_main72;
  1637. // src/components/d-arrow-right.vue
  1638. var import_vue145 = __toESM(require_vue()), import_vue146 = __toESM(require_vue()), _sfc_main73 = /* @__PURE__ */ (0, import_vue145.defineComponent)({
  1639. name: "DArrowRight",
  1640. __name: "d-arrow-right",
  1641. setup(__props) {
  1642. return (_ctx, _cache) => ((0, import_vue146.openBlock)(), (0, import_vue146.createElementBlock)("svg", {
  1643. xmlns: "http://www.w3.org/2000/svg",
  1644. viewBox: "0 0 1024 1024"
  1645. }, [
  1646. (0, import_vue146.createElementVNode)("path", {
  1647. fill: "currentColor",
  1648. d: "M452.864 149.312a29.12 29.12 0 0 1 41.728.064L826.24 489.664a32 32 0 0 1 0 44.672L494.592 874.624a29.12 29.12 0 0 1-41.728 0 30.59 30.59 0 0 1 0-42.752L764.736 512 452.864 192a30.59 30.59 0 0 1 0-42.688m-256 0a29.12 29.12 0 0 1 41.728.064L570.24 489.664a32 32 0 0 1 0 44.672L238.592 874.624a29.12 29.12 0 0 1-41.728 0 30.59 30.59 0 0 1 0-42.752L508.736 512 196.864 192a30.59 30.59 0 0 1 0-42.688"
  1649. })
  1650. ]));
  1651. }
  1652. }), d_arrow_right_default = _sfc_main73;
  1653. // src/components/d-caret.vue
  1654. var import_vue147 = __toESM(require_vue()), import_vue148 = __toESM(require_vue()), _sfc_main74 = /* @__PURE__ */ (0, import_vue147.defineComponent)({
  1655. name: "DCaret",
  1656. __name: "d-caret",
  1657. setup(__props) {
  1658. return (_ctx, _cache) => ((0, import_vue148.openBlock)(), (0, import_vue148.createElementBlock)("svg", {
  1659. xmlns: "http://www.w3.org/2000/svg",
  1660. viewBox: "0 0 1024 1024"
  1661. }, [
  1662. (0, import_vue148.createElementVNode)("path", {
  1663. fill: "currentColor",
  1664. d: "m512 128 288 320H224zM224 576h576L512 896z"
  1665. })
  1666. ]));
  1667. }
  1668. }), d_caret_default = _sfc_main74;
  1669. // src/components/data-analysis.vue
  1670. var import_vue149 = __toESM(require_vue()), import_vue150 = __toESM(require_vue()), _sfc_main75 = /* @__PURE__ */ (0, import_vue149.defineComponent)({
  1671. name: "DataAnalysis",
  1672. __name: "data-analysis",
  1673. setup(__props) {
  1674. return (_ctx, _cache) => ((0, import_vue150.openBlock)(), (0, import_vue150.createElementBlock)("svg", {
  1675. xmlns: "http://www.w3.org/2000/svg",
  1676. viewBox: "0 0 1024 1024"
  1677. }, [
  1678. (0, import_vue150.createElementVNode)("path", {
  1679. fill: "currentColor",
  1680. d: "m665.216 768 110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32l110.848-192H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32zM832 192H192v512h640zM352 448a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0v-64a32 32 0 0 1 32-32m160-64a32 32 0 0 1 32 32v128a32 32 0 0 1-64 0V416a32 32 0 0 1 32-32m160-64a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V352a32 32 0 0 1 32-32"
  1681. })
  1682. ]));
  1683. }
  1684. }), data_analysis_default = _sfc_main75;
  1685. // src/components/data-board.vue
  1686. var import_vue151 = __toESM(require_vue()), import_vue152 = __toESM(require_vue()), _sfc_main76 = /* @__PURE__ */ (0, import_vue151.defineComponent)({
  1687. name: "DataBoard",
  1688. __name: "data-board",
  1689. setup(__props) {
  1690. return (_ctx, _cache) => ((0, import_vue152.openBlock)(), (0, import_vue152.createElementBlock)("svg", {
  1691. xmlns: "http://www.w3.org/2000/svg",
  1692. viewBox: "0 0 1024 1024"
  1693. }, [
  1694. (0, import_vue152.createElementVNode)("path", {
  1695. fill: "currentColor",
  1696. d: "M32 128h960v64H32z"
  1697. }),
  1698. (0, import_vue152.createElementVNode)("path", {
  1699. fill: "currentColor",
  1700. d: "M192 192v512h640V192zm-64-64h768v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32z"
  1701. }),
  1702. (0, import_vue152.createElementVNode)("path", {
  1703. fill: "currentColor",
  1704. d: "M322.176 960H248.32l144.64-250.56 55.424 32zm453.888 0h-73.856L576 741.44l55.424-32z"
  1705. })
  1706. ]));
  1707. }
  1708. }), data_board_default = _sfc_main76;
  1709. // src/components/data-line.vue
  1710. var import_vue153 = __toESM(require_vue()), import_vue154 = __toESM(require_vue()), _sfc_main77 = /* @__PURE__ */ (0, import_vue153.defineComponent)({
  1711. name: "DataLine",
  1712. __name: "data-line",
  1713. setup(__props) {
  1714. return (_ctx, _cache) => ((0, import_vue154.openBlock)(), (0, import_vue154.createElementBlock)("svg", {
  1715. xmlns: "http://www.w3.org/2000/svg",
  1716. viewBox: "0 0 1024 1024"
  1717. }, [
  1718. (0, import_vue154.createElementVNode)("path", {
  1719. fill: "currentColor",
  1720. d: "M359.168 768H160a32 32 0 0 1-32-32V192H64a32 32 0 0 1 0-64h896a32 32 0 1 1 0 64h-64v544a32 32 0 0 1-32 32H665.216l110.848 192h-73.856L591.36 768H433.024L322.176 960H248.32zM832 192H192v512h640zM342.656 534.656a32 32 0 1 1-45.312-45.312L444.992 341.76l125.44 94.08L679.04 300.032a32 32 0 1 1 49.92 39.936L581.632 524.224 451.008 426.24 342.656 534.592z"
  1721. })
  1722. ]));
  1723. }
  1724. }), data_line_default = _sfc_main77;
  1725. // src/components/delete-filled.vue
  1726. var import_vue155 = __toESM(require_vue()), import_vue156 = __toESM(require_vue()), _sfc_main78 = /* @__PURE__ */ (0, import_vue155.defineComponent)({
  1727. name: "DeleteFilled",
  1728. __name: "delete-filled",
  1729. setup(__props) {
  1730. return (_ctx, _cache) => ((0, import_vue156.openBlock)(), (0, import_vue156.createElementBlock)("svg", {
  1731. xmlns: "http://www.w3.org/2000/svg",
  1732. viewBox: "0 0 1024 1024"
  1733. }, [
  1734. (0, import_vue156.createElementVNode)("path", {
  1735. fill: "currentColor",
  1736. d: "M352 192V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64H96a32 32 0 0 1 0-64zm64 0h192v-64H416zM192 960a32 32 0 0 1-32-32V256h704v672a32 32 0 0 1-32 32zm224-192a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32m192 0a32 32 0 0 0 32-32V416a32 32 0 0 0-64 0v320a32 32 0 0 0 32 32"
  1737. })
  1738. ]));
  1739. }
  1740. }), delete_filled_default = _sfc_main78;
  1741. // src/components/delete-location.vue
  1742. var import_vue157 = __toESM(require_vue()), import_vue158 = __toESM(require_vue()), _sfc_main79 = /* @__PURE__ */ (0, import_vue157.defineComponent)({
  1743. name: "DeleteLocation",
  1744. __name: "delete-location",
  1745. setup(__props) {
  1746. return (_ctx, _cache) => ((0, import_vue158.openBlock)(), (0, import_vue158.createElementBlock)("svg", {
  1747. xmlns: "http://www.w3.org/2000/svg",
  1748. viewBox: "0 0 1024 1024"
  1749. }, [
  1750. (0, import_vue158.createElementVNode)("path", {
  1751. fill: "currentColor",
  1752. d: "M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  1753. }),
  1754. (0, import_vue158.createElementVNode)("path", {
  1755. fill: "currentColor",
  1756. d: "M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"
  1757. }),
  1758. (0, import_vue158.createElementVNode)("path", {
  1759. fill: "currentColor",
  1760. d: "M384 384h256q32 0 32 32t-32 32H384q-32 0-32-32t32-32"
  1761. })
  1762. ]));
  1763. }
  1764. }), delete_location_default = _sfc_main79;
  1765. // src/components/delete.vue
  1766. var import_vue159 = __toESM(require_vue()), import_vue160 = __toESM(require_vue()), _sfc_main80 = /* @__PURE__ */ (0, import_vue159.defineComponent)({
  1767. name: "Delete",
  1768. __name: "delete",
  1769. setup(__props) {
  1770. return (_ctx, _cache) => ((0, import_vue160.openBlock)(), (0, import_vue160.createElementBlock)("svg", {
  1771. xmlns: "http://www.w3.org/2000/svg",
  1772. viewBox: "0 0 1024 1024"
  1773. }, [
  1774. (0, import_vue160.createElementVNode)("path", {
  1775. fill: "currentColor",
  1776. d: "M160 256H96a32 32 0 0 1 0-64h256V95.936a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V192h256a32 32 0 1 1 0 64h-64v672a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32zm448-64v-64H416v64zM224 896h576V256H224zm192-128a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32m192 0a32 32 0 0 1-32-32V416a32 32 0 0 1 64 0v320a32 32 0 0 1-32 32"
  1777. })
  1778. ]));
  1779. }
  1780. }), delete_default = _sfc_main80;
  1781. // src/components/dessert.vue
  1782. var import_vue161 = __toESM(require_vue()), import_vue162 = __toESM(require_vue()), _sfc_main81 = /* @__PURE__ */ (0, import_vue161.defineComponent)({
  1783. name: "Dessert",
  1784. __name: "dessert",
  1785. setup(__props) {
  1786. return (_ctx, _cache) => ((0, import_vue162.openBlock)(), (0, import_vue162.createElementBlock)("svg", {
  1787. xmlns: "http://www.w3.org/2000/svg",
  1788. viewBox: "0 0 1024 1024"
  1789. }, [
  1790. (0, import_vue162.createElementVNode)("path", {
  1791. fill: "currentColor",
  1792. d: "M128 416v-48a144 144 0 0 1 168.64-141.888 224.128 224.128 0 0 1 430.72 0A144 144 0 0 1 896 368v48a384 384 0 0 1-352 382.72V896h-64v-97.28A384 384 0 0 1 128 416m287.104-32.064h193.792a143.81 143.81 0 0 1 58.88-132.736 160.064 160.064 0 0 0-311.552 0 143.81 143.81 0 0 1 58.88 132.8zm-72.896 0a72 72 0 1 0-140.48 0zm339.584 0h140.416a72 72 0 1 0-140.48 0zM512 736a320 320 0 0 0 318.4-288.064H193.6A320 320 0 0 0 512 736M384 896.064h256a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64"
  1793. })
  1794. ]));
  1795. }
  1796. }), dessert_default = _sfc_main81;
  1797. // src/components/discount.vue
  1798. var import_vue163 = __toESM(require_vue()), import_vue164 = __toESM(require_vue()), _sfc_main82 = /* @__PURE__ */ (0, import_vue163.defineComponent)({
  1799. name: "Discount",
  1800. __name: "discount",
  1801. setup(__props) {
  1802. return (_ctx, _cache) => ((0, import_vue164.openBlock)(), (0, import_vue164.createElementBlock)("svg", {
  1803. xmlns: "http://www.w3.org/2000/svg",
  1804. viewBox: "0 0 1024 1024"
  1805. }, [
  1806. (0, import_vue164.createElementVNode)("path", {
  1807. fill: "currentColor",
  1808. d: "M224 704h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0L224 318.336zm0 64v128h576V768zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0"
  1809. }),
  1810. (0, import_vue164.createElementVNode)("path", {
  1811. fill: "currentColor",
  1812. d: "M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"
  1813. })
  1814. ]));
  1815. }
  1816. }), discount_default = _sfc_main82;
  1817. // src/components/dish-dot.vue
  1818. var import_vue165 = __toESM(require_vue()), import_vue166 = __toESM(require_vue()), _sfc_main83 = /* @__PURE__ */ (0, import_vue165.defineComponent)({
  1819. name: "DishDot",
  1820. __name: "dish-dot",
  1821. setup(__props) {
  1822. return (_ctx, _cache) => ((0, import_vue166.openBlock)(), (0, import_vue166.createElementBlock)("svg", {
  1823. xmlns: "http://www.w3.org/2000/svg",
  1824. viewBox: "0 0 1024 1024"
  1825. }, [
  1826. (0, import_vue166.createElementVNode)("path", {
  1827. fill: "currentColor",
  1828. d: "m384.064 274.56.064-50.688A128 128 0 0 1 512.128 96c70.528 0 127.68 57.152 127.68 127.68v50.752A448.19 448.19 0 0 1 955.392 768H68.544A448.19 448.19 0 0 1 384 274.56zM96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64m32-128h768a384 384 0 1 0-768 0m447.808-448v-32.32a63.68 63.68 0 0 0-63.68-63.68 64 64 0 0 0-64 63.936V256z"
  1829. })
  1830. ]));
  1831. }
  1832. }), dish_dot_default = _sfc_main83;
  1833. // src/components/dish.vue
  1834. var import_vue167 = __toESM(require_vue()), import_vue168 = __toESM(require_vue()), _sfc_main84 = /* @__PURE__ */ (0, import_vue167.defineComponent)({
  1835. name: "Dish",
  1836. __name: "dish",
  1837. setup(__props) {
  1838. return (_ctx, _cache) => ((0, import_vue168.openBlock)(), (0, import_vue168.createElementBlock)("svg", {
  1839. xmlns: "http://www.w3.org/2000/svg",
  1840. viewBox: "0 0 1024 1024"
  1841. }, [
  1842. (0, import_vue168.createElementVNode)("path", {
  1843. fill: "currentColor",
  1844. d: "M480 257.152V192h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64h-96v65.152A448 448 0 0 1 955.52 768H68.48A448 448 0 0 1 480 257.152M128 704h768a384 384 0 1 0-768 0M96 832h832a32 32 0 1 1 0 64H96a32 32 0 1 1 0-64"
  1845. })
  1846. ]));
  1847. }
  1848. }), dish_default = _sfc_main84;
  1849. // src/components/document-add.vue
  1850. var import_vue169 = __toESM(require_vue()), import_vue170 = __toESM(require_vue()), _sfc_main85 = /* @__PURE__ */ (0, import_vue169.defineComponent)({
  1851. name: "DocumentAdd",
  1852. __name: "document-add",
  1853. setup(__props) {
  1854. return (_ctx, _cache) => ((0, import_vue170.openBlock)(), (0, import_vue170.createElementBlock)("svg", {
  1855. xmlns: "http://www.w3.org/2000/svg",
  1856. viewBox: "0 0 1024 1024"
  1857. }, [
  1858. (0, import_vue170.createElementVNode)("path", {
  1859. fill: "currentColor",
  1860. d: "M832 384H576V128H192v768h640zm-26.496-64L640 154.496V320zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m320 512V448h64v128h128v64H544v128h-64V640H352v-64z"
  1861. })
  1862. ]));
  1863. }
  1864. }), document_add_default = _sfc_main85;
  1865. // src/components/document-checked.vue
  1866. var import_vue171 = __toESM(require_vue()), import_vue172 = __toESM(require_vue()), _sfc_main86 = /* @__PURE__ */ (0, import_vue171.defineComponent)({
  1867. name: "DocumentChecked",
  1868. __name: "document-checked",
  1869. setup(__props) {
  1870. return (_ctx, _cache) => ((0, import_vue172.openBlock)(), (0, import_vue172.createElementBlock)("svg", {
  1871. xmlns: "http://www.w3.org/2000/svg",
  1872. viewBox: "0 0 1024 1024"
  1873. }, [
  1874. (0, import_vue172.createElementVNode)("path", {
  1875. fill: "currentColor",
  1876. d: "M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m318.4 582.144 180.992-180.992L704.64 510.4 478.4 736.64 320 578.304l45.248-45.312z"
  1877. })
  1878. ]));
  1879. }
  1880. }), document_checked_default = _sfc_main86;
  1881. // src/components/document-copy.vue
  1882. var import_vue173 = __toESM(require_vue()), import_vue174 = __toESM(require_vue()), _sfc_main87 = /* @__PURE__ */ (0, import_vue173.defineComponent)({
  1883. name: "DocumentCopy",
  1884. __name: "document-copy",
  1885. setup(__props) {
  1886. return (_ctx, _cache) => ((0, import_vue174.openBlock)(), (0, import_vue174.createElementBlock)("svg", {
  1887. xmlns: "http://www.w3.org/2000/svg",
  1888. viewBox: "0 0 1024 1024"
  1889. }, [
  1890. (0, import_vue174.createElementVNode)("path", {
  1891. fill: "currentColor",
  1892. d: "M128 320v576h576V320zm-32-64h640a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32M960 96v704a32 32 0 0 1-32 32h-96v-64h64V128H384v64h-64V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32M256 672h320v64H256zm0-192h320v64H256z"
  1893. })
  1894. ]));
  1895. }
  1896. }), document_copy_default = _sfc_main87;
  1897. // src/components/document-delete.vue
  1898. var import_vue175 = __toESM(require_vue()), import_vue176 = __toESM(require_vue()), _sfc_main88 = /* @__PURE__ */ (0, import_vue175.defineComponent)({
  1899. name: "DocumentDelete",
  1900. __name: "document-delete",
  1901. setup(__props) {
  1902. return (_ctx, _cache) => ((0, import_vue176.openBlock)(), (0, import_vue176.createElementBlock)("svg", {
  1903. xmlns: "http://www.w3.org/2000/svg",
  1904. viewBox: "0 0 1024 1024"
  1905. }, [
  1906. (0, import_vue176.createElementVNode)("path", {
  1907. fill: "currentColor",
  1908. d: "M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m308.992 546.304-90.496-90.624 45.248-45.248 90.56 90.496 90.496-90.432 45.248 45.248-90.496 90.56 90.496 90.496-45.248 45.248-90.496-90.496-90.56 90.496-45.248-45.248z"
  1909. })
  1910. ]));
  1911. }
  1912. }), document_delete_default = _sfc_main88;
  1913. // src/components/document-remove.vue
  1914. var import_vue177 = __toESM(require_vue()), import_vue178 = __toESM(require_vue()), _sfc_main89 = /* @__PURE__ */ (0, import_vue177.defineComponent)({
  1915. name: "DocumentRemove",
  1916. __name: "document-remove",
  1917. setup(__props) {
  1918. return (_ctx, _cache) => ((0, import_vue178.openBlock)(), (0, import_vue178.createElementBlock)("svg", {
  1919. xmlns: "http://www.w3.org/2000/svg",
  1920. viewBox: "0 0 1024 1024"
  1921. }, [
  1922. (0, import_vue178.createElementVNode)("path", {
  1923. fill: "currentColor",
  1924. d: "M805.504 320 640 154.496V320zM832 384H576V128H192v768h640zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m192 512h320v64H352z"
  1925. })
  1926. ]));
  1927. }
  1928. }), document_remove_default = _sfc_main89;
  1929. // src/components/document.vue
  1930. var import_vue179 = __toESM(require_vue()), import_vue180 = __toESM(require_vue()), _sfc_main90 = /* @__PURE__ */ (0, import_vue179.defineComponent)({
  1931. name: "Document",
  1932. __name: "document",
  1933. setup(__props) {
  1934. return (_ctx, _cache) => ((0, import_vue180.openBlock)(), (0, import_vue180.createElementBlock)("svg", {
  1935. xmlns: "http://www.w3.org/2000/svg",
  1936. viewBox: "0 0 1024 1024"
  1937. }, [
  1938. (0, import_vue180.createElementVNode)("path", {
  1939. fill: "currentColor",
  1940. d: "M832 384H576V128H192v768h640zm-26.496-64L640 154.496V320zM160 64h480l256 256v608a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m160 448h384v64H320zm0-192h160v64H320zm0 384h384v64H320z"
  1941. })
  1942. ]));
  1943. }
  1944. }), document_default = _sfc_main90;
  1945. // src/components/download.vue
  1946. var import_vue181 = __toESM(require_vue()), import_vue182 = __toESM(require_vue()), _sfc_main91 = /* @__PURE__ */ (0, import_vue181.defineComponent)({
  1947. name: "Download",
  1948. __name: "download",
  1949. setup(__props) {
  1950. return (_ctx, _cache) => ((0, import_vue182.openBlock)(), (0, import_vue182.createElementBlock)("svg", {
  1951. xmlns: "http://www.w3.org/2000/svg",
  1952. viewBox: "0 0 1024 1024"
  1953. }, [
  1954. (0, import_vue182.createElementVNode)("path", {
  1955. fill: "currentColor",
  1956. d: "M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m384-253.696 236.288-236.352 45.248 45.248L508.8 704 192 387.2l45.248-45.248L480 584.704V128h64z"
  1957. })
  1958. ]));
  1959. }
  1960. }), download_default = _sfc_main91;
  1961. // src/components/drizzling.vue
  1962. var import_vue183 = __toESM(require_vue()), import_vue184 = __toESM(require_vue()), _sfc_main92 = /* @__PURE__ */ (0, import_vue183.defineComponent)({
  1963. name: "Drizzling",
  1964. __name: "drizzling",
  1965. setup(__props) {
  1966. return (_ctx, _cache) => ((0, import_vue184.openBlock)(), (0, import_vue184.createElementBlock)("svg", {
  1967. xmlns: "http://www.w3.org/2000/svg",
  1968. viewBox: "0 0 1024 1024"
  1969. }, [
  1970. (0, import_vue184.createElementVNode)("path", {
  1971. fill: "currentColor",
  1972. d: "m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672M959.552 480a256 256 0 0 1-256 256h-400A239.81 239.81 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480M288 800h64v64h-64zm192 0h64v64h-64zm-96 96h64v64h-64zm192 0h64v64h-64zm96-96h64v64h-64z"
  1973. })
  1974. ]));
  1975. }
  1976. }), drizzling_default = _sfc_main92;
  1977. // src/components/edit-pen.vue
  1978. var import_vue185 = __toESM(require_vue()), import_vue186 = __toESM(require_vue()), _sfc_main93 = /* @__PURE__ */ (0, import_vue185.defineComponent)({
  1979. name: "EditPen",
  1980. __name: "edit-pen",
  1981. setup(__props) {
  1982. return (_ctx, _cache) => ((0, import_vue186.openBlock)(), (0, import_vue186.createElementBlock)("svg", {
  1983. xmlns: "http://www.w3.org/2000/svg",
  1984. viewBox: "0 0 1024 1024"
  1985. }, [
  1986. (0, import_vue186.createElementVNode)("path", {
  1987. fill: "currentColor",
  1988. d: "m199.04 672.64 193.984 112 224-387.968-193.92-112-224 388.032zm-23.872 60.16 32.896 148.288 144.896-45.696zM455.04 229.248l193.92 112 56.704-98.112-193.984-112zM104.32 708.8l384-665.024 304.768 175.936L409.152 884.8h.064l-248.448 78.336zm384 254.272v-64h448v64z"
  1989. })
  1990. ]));
  1991. }
  1992. }), edit_pen_default = _sfc_main93;
  1993. // src/components/edit.vue
  1994. var import_vue187 = __toESM(require_vue()), import_vue188 = __toESM(require_vue()), _sfc_main94 = /* @__PURE__ */ (0, import_vue187.defineComponent)({
  1995. name: "Edit",
  1996. __name: "edit",
  1997. setup(__props) {
  1998. return (_ctx, _cache) => ((0, import_vue188.openBlock)(), (0, import_vue188.createElementBlock)("svg", {
  1999. xmlns: "http://www.w3.org/2000/svg",
  2000. viewBox: "0 0 1024 1024"
  2001. }, [
  2002. (0, import_vue188.createElementVNode)("path", {
  2003. fill: "currentColor",
  2004. d: "M832 512a32 32 0 1 1 64 0v352a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h352a32 32 0 0 1 0 64H192v640h640z"
  2005. }),
  2006. (0, import_vue188.createElementVNode)("path", {
  2007. fill: "currentColor",
  2008. d: "m469.952 554.24 52.8-7.552L847.104 222.4a32 32 0 1 0-45.248-45.248L477.44 501.44l-7.552 52.8zm422.4-422.4a96 96 0 0 1 0 135.808l-331.84 331.84a32 32 0 0 1-18.112 9.088L436.8 623.68a32 32 0 0 1-36.224-36.224l15.104-105.6a32 32 0 0 1 9.024-18.112l331.904-331.84a96 96 0 0 1 135.744 0z"
  2009. })
  2010. ]));
  2011. }
  2012. }), edit_default = _sfc_main94;
  2013. // src/components/eleme-filled.vue
  2014. var import_vue189 = __toESM(require_vue()), import_vue190 = __toESM(require_vue()), _sfc_main95 = /* @__PURE__ */ (0, import_vue189.defineComponent)({
  2015. name: "ElemeFilled",
  2016. __name: "eleme-filled",
  2017. setup(__props) {
  2018. return (_ctx, _cache) => ((0, import_vue190.openBlock)(), (0, import_vue190.createElementBlock)("svg", {
  2019. xmlns: "http://www.w3.org/2000/svg",
  2020. viewBox: "0 0 1024 1024"
  2021. }, [
  2022. (0, import_vue190.createElementVNode)("path", {
  2023. fill: "currentColor",
  2024. d: "M176 64h672c61.824 0 112 50.176 112 112v672a112 112 0 0 1-112 112H176A112 112 0 0 1 64 848V176c0-61.824 50.176-112 112-112m150.528 173.568c-152.896 99.968-196.544 304.064-97.408 456.96a330.69 330.69 0 0 0 456.96 96.64c9.216-5.888 17.6-11.776 25.152-18.56a18.24 18.24 0 0 0 4.224-24.32L700.352 724.8a47.55 47.55 0 0 0-65.536-14.272A234.56 234.56 0 0 1 310.592 641.6C240 533.248 271.104 387.968 379.456 316.48a234.3 234.3 0 0 1 276.352 15.168c1.664.832 2.56 2.56 3.392 4.224 5.888 8.384 3.328 19.328-5.12 25.216L456.832 489.6a47.55 47.55 0 0 0-14.336 65.472l16 24.384c5.888 8.384 16.768 10.88 25.216 5.056l308.224-199.936a19.584 19.584 0 0 0 6.72-23.488v-.896c-4.992-9.216-10.048-17.6-15.104-26.88-99.968-151.168-304.064-194.88-456.96-95.744zM786.88 504.704l-62.208 40.32c-8.32 5.888-10.88 16.768-4.992 25.216L760 632.32c5.888 8.448 16.768 11.008 25.152 5.12l31.104-20.16a55.36 55.36 0 0 0 16-76.48l-20.224-31.04a19.52 19.52 0 0 0-25.152-5.12z"
  2025. })
  2026. ]));
  2027. }
  2028. }), eleme_filled_default = _sfc_main95;
  2029. // src/components/eleme.vue
  2030. var import_vue191 = __toESM(require_vue()), import_vue192 = __toESM(require_vue()), _sfc_main96 = /* @__PURE__ */ (0, import_vue191.defineComponent)({
  2031. name: "Eleme",
  2032. __name: "eleme",
  2033. setup(__props) {
  2034. return (_ctx, _cache) => ((0, import_vue192.openBlock)(), (0, import_vue192.createElementBlock)("svg", {
  2035. xmlns: "http://www.w3.org/2000/svg",
  2036. viewBox: "0 0 1024 1024"
  2037. }, [
  2038. (0, import_vue192.createElementVNode)("path", {
  2039. fill: "currentColor",
  2040. d: "M300.032 188.8c174.72-113.28 408-63.36 522.24 109.44 5.76 10.56 11.52 20.16 17.28 30.72v.96a22.4 22.4 0 0 1-7.68 26.88l-352.32 228.48c-9.6 6.72-22.08 3.84-28.8-5.76l-18.24-27.84a54.336 54.336 0 0 1 16.32-74.88l225.6-146.88c9.6-6.72 12.48-19.2 5.76-28.8-.96-1.92-1.92-3.84-3.84-4.8a267.84 267.84 0 0 0-315.84-17.28c-123.84 81.6-159.36 247.68-78.72 371.52a268.096 268.096 0 0 0 370.56 78.72 54.336 54.336 0 0 1 74.88 16.32l17.28 26.88c5.76 9.6 3.84 21.12-4.8 27.84-8.64 7.68-18.24 14.4-28.8 21.12a377.92 377.92 0 0 1-522.24-110.4c-113.28-174.72-63.36-408 111.36-522.24m526.08 305.28a22.336 22.336 0 0 1 28.8 5.76l23.04 35.52a63.23 63.23 0 0 1-18.24 87.36l-35.52 23.04c-9.6 6.72-22.08 3.84-28.8-5.76l-46.08-71.04c-6.72-9.6-3.84-22.08 5.76-28.8z"
  2041. })
  2042. ]));
  2043. }
  2044. }), eleme_default = _sfc_main96;
  2045. // src/components/element-plus.vue
  2046. var import_vue193 = __toESM(require_vue()), import_vue194 = __toESM(require_vue()), _sfc_main97 = /* @__PURE__ */ (0, import_vue193.defineComponent)({
  2047. name: "ElementPlus",
  2048. __name: "element-plus",
  2049. setup(__props) {
  2050. return (_ctx, _cache) => ((0, import_vue194.openBlock)(), (0, import_vue194.createElementBlock)("svg", {
  2051. xmlns: "http://www.w3.org/2000/svg",
  2052. viewBox: "0 0 1024 1024"
  2053. }, [
  2054. (0, import_vue194.createElementVNode)("path", {
  2055. fill: "currentColor",
  2056. d: "M839.7 734.7c0 33.3-17.9 41-17.9 41S519.7 949.8 499.2 960c-10.2 5.1-20.5 5.1-30.7 0 0 0-314.9-184.3-325.1-192-5.1-5.1-10.2-12.8-12.8-20.5V368.6c0-17.9 20.5-28.2 20.5-28.2L466 158.6q19.2-7.65 38.4 0s279 161.3 309.8 179.2c17.9 7.7 28.2 25.6 25.6 46.1-.1-5-.1 317.5-.1 350.8M714.2 371.2c-64-35.8-217.6-125.4-217.6-125.4-7.7-5.1-20.5-5.1-30.7 0L217.6 389.1s-17.9 10.2-17.9 23v297c0 5.1 5.1 12.8 7.7 17.9 7.7 5.1 256 148.5 256 148.5 7.7 5.1 17.9 5.1 25.6 0 15.4-7.7 250.9-145.9 250.9-145.9s12.8-5.1 12.8-30.7v-74.2l-276.5 169v-64c0-17.9 7.7-30.7 20.5-46.1L745 535c5.1-7.7 10.2-20.5 10.2-30.7v-66.6l-279 169v-69.1c0-15.4 5.1-30.7 17.9-38.4zM919 135.7c0-5.1-5.1-7.7-7.7-7.7h-58.9V66.6c0-5.1-5.1-5.1-10.2-5.1l-30.7 5.1c-5.1 0-5.1 2.6-5.1 5.1V128h-56.3c-5.1 0-5.1 5.1-7.7 5.1v38.4h69.1v64c0 5.1 5.1 5.1 10.2 5.1l30.7-5.1c5.1 0 5.1-2.6 5.1-5.1v-56.3h64z"
  2057. })
  2058. ]));
  2059. }
  2060. }), element_plus_default = _sfc_main97;
  2061. // src/components/expand.vue
  2062. var import_vue195 = __toESM(require_vue()), import_vue196 = __toESM(require_vue()), _sfc_main98 = /* @__PURE__ */ (0, import_vue195.defineComponent)({
  2063. name: "Expand",
  2064. __name: "expand",
  2065. setup(__props) {
  2066. return (_ctx, _cache) => ((0, import_vue196.openBlock)(), (0, import_vue196.createElementBlock)("svg", {
  2067. xmlns: "http://www.w3.org/2000/svg",
  2068. viewBox: "0 0 1024 1024"
  2069. }, [
  2070. (0, import_vue196.createElementVNode)("path", {
  2071. fill: "currentColor",
  2072. d: "M128 192h768v128H128zm0 256h512v128H128zm0 256h768v128H128zm576-352 192 160-192 128z"
  2073. })
  2074. ]));
  2075. }
  2076. }), expand_default = _sfc_main98;
  2077. // src/components/failed.vue
  2078. var import_vue197 = __toESM(require_vue()), import_vue198 = __toESM(require_vue()), _sfc_main99 = /* @__PURE__ */ (0, import_vue197.defineComponent)({
  2079. name: "Failed",
  2080. __name: "failed",
  2081. setup(__props) {
  2082. return (_ctx, _cache) => ((0, import_vue198.openBlock)(), (0, import_vue198.createElementBlock)("svg", {
  2083. xmlns: "http://www.w3.org/2000/svg",
  2084. viewBox: "0 0 1024 1024"
  2085. }, [
  2086. (0, import_vue198.createElementVNode)("path", {
  2087. fill: "currentColor",
  2088. d: "m557.248 608 135.744-135.744-45.248-45.248-135.68 135.744-135.808-135.68-45.248 45.184L466.752 608l-135.68 135.68 45.184 45.312L512 653.248l135.744 135.744 45.248-45.248L557.312 608zM704 192h160v736H160V192h160v64h384zm-320 0V96h256v96z"
  2089. })
  2090. ]));
  2091. }
  2092. }), failed_default = _sfc_main99;
  2093. // src/components/female.vue
  2094. var import_vue199 = __toESM(require_vue()), import_vue200 = __toESM(require_vue()), _sfc_main100 = /* @__PURE__ */ (0, import_vue199.defineComponent)({
  2095. name: "Female",
  2096. __name: "female",
  2097. setup(__props) {
  2098. return (_ctx, _cache) => ((0, import_vue200.openBlock)(), (0, import_vue200.createElementBlock)("svg", {
  2099. xmlns: "http://www.w3.org/2000/svg",
  2100. viewBox: "0 0 1024 1024"
  2101. }, [
  2102. (0, import_vue200.createElementVNode)("path", {
  2103. fill: "currentColor",
  2104. d: "M512 640a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"
  2105. }),
  2106. (0, import_vue200.createElementVNode)("path", {
  2107. fill: "currentColor",
  2108. d: "M512 640q32 0 32 32v256q0 32-32 32t-32-32V672q0-32 32-32"
  2109. }),
  2110. (0, import_vue200.createElementVNode)("path", {
  2111. fill: "currentColor",
  2112. d: "M352 800h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32"
  2113. })
  2114. ]));
  2115. }
  2116. }), female_default = _sfc_main100;
  2117. // src/components/files.vue
  2118. var import_vue201 = __toESM(require_vue()), import_vue202 = __toESM(require_vue()), _sfc_main101 = /* @__PURE__ */ (0, import_vue201.defineComponent)({
  2119. name: "Files",
  2120. __name: "files",
  2121. setup(__props) {
  2122. return (_ctx, _cache) => ((0, import_vue202.openBlock)(), (0, import_vue202.createElementBlock)("svg", {
  2123. xmlns: "http://www.w3.org/2000/svg",
  2124. viewBox: "0 0 1024 1024"
  2125. }, [
  2126. (0, import_vue202.createElementVNode)("path", {
  2127. fill: "currentColor",
  2128. d: "M128 384v448h768V384zm-32-64h832a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32m64-128h704v64H160zm96-128h512v64H256z"
  2129. })
  2130. ]));
  2131. }
  2132. }), files_default = _sfc_main101;
  2133. // src/components/film.vue
  2134. var import_vue203 = __toESM(require_vue()), import_vue204 = __toESM(require_vue()), _sfc_main102 = /* @__PURE__ */ (0, import_vue203.defineComponent)({
  2135. name: "Film",
  2136. __name: "film",
  2137. setup(__props) {
  2138. return (_ctx, _cache) => ((0, import_vue204.openBlock)(), (0, import_vue204.createElementBlock)("svg", {
  2139. xmlns: "http://www.w3.org/2000/svg",
  2140. viewBox: "0 0 1024 1024"
  2141. }, [
  2142. (0, import_vue204.createElementVNode)("path", {
  2143. fill: "currentColor",
  2144. d: "M160 160v704h704V160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32"
  2145. }),
  2146. (0, import_vue204.createElementVNode)("path", {
  2147. fill: "currentColor",
  2148. d: "M320 288V128h64v352h256V128h64v160h160v64H704v128h160v64H704v128h160v64H704v160h-64V544H384v352h-64V736H128v-64h192V544H128v-64h192V352H128v-64z"
  2149. })
  2150. ]));
  2151. }
  2152. }), film_default = _sfc_main102;
  2153. // src/components/filter.vue
  2154. var import_vue205 = __toESM(require_vue()), import_vue206 = __toESM(require_vue()), _sfc_main103 = /* @__PURE__ */ (0, import_vue205.defineComponent)({
  2155. name: "Filter",
  2156. __name: "filter",
  2157. setup(__props) {
  2158. return (_ctx, _cache) => ((0, import_vue206.openBlock)(), (0, import_vue206.createElementBlock)("svg", {
  2159. xmlns: "http://www.w3.org/2000/svg",
  2160. viewBox: "0 0 1024 1024"
  2161. }, [
  2162. (0, import_vue206.createElementVNode)("path", {
  2163. fill: "currentColor",
  2164. d: "M384 523.392V928a32 32 0 0 0 46.336 28.608l192-96A32 32 0 0 0 640 832V523.392l280.768-343.104a32 32 0 1 0-49.536-40.576l-288 352A32 32 0 0 0 576 512v300.224l-128 64V512a32 32 0 0 0-7.232-20.288L195.52 192H704a32 32 0 1 0 0-64H128a32 32 0 0 0-24.768 52.288z"
  2165. })
  2166. ]));
  2167. }
  2168. }), filter_default = _sfc_main103;
  2169. // src/components/finished.vue
  2170. var import_vue207 = __toESM(require_vue()), import_vue208 = __toESM(require_vue()), _sfc_main104 = /* @__PURE__ */ (0, import_vue207.defineComponent)({
  2171. name: "Finished",
  2172. __name: "finished",
  2173. setup(__props) {
  2174. return (_ctx, _cache) => ((0, import_vue208.openBlock)(), (0, import_vue208.createElementBlock)("svg", {
  2175. xmlns: "http://www.w3.org/2000/svg",
  2176. viewBox: "0 0 1024 1024"
  2177. }, [
  2178. (0, import_vue208.createElementVNode)("path", {
  2179. fill: "currentColor",
  2180. d: "M280.768 753.728 691.456 167.04a32 32 0 1 1 52.416 36.672L314.24 817.472a32 32 0 0 1-45.44 7.296l-230.4-172.8a32 32 0 0 1 38.4-51.2zM736 448a32 32 0 1 1 0-64h192a32 32 0 1 1 0 64zM608 640a32 32 0 0 1 0-64h319.936a32 32 0 1 1 0 64zM480 832a32 32 0 1 1 0-64h447.936a32 32 0 1 1 0 64z"
  2181. })
  2182. ]));
  2183. }
  2184. }), finished_default = _sfc_main104;
  2185. // src/components/first-aid-kit.vue
  2186. var import_vue209 = __toESM(require_vue()), import_vue210 = __toESM(require_vue()), _sfc_main105 = /* @__PURE__ */ (0, import_vue209.defineComponent)({
  2187. name: "FirstAidKit",
  2188. __name: "first-aid-kit",
  2189. setup(__props) {
  2190. return (_ctx, _cache) => ((0, import_vue210.openBlock)(), (0, import_vue210.createElementBlock)("svg", {
  2191. xmlns: "http://www.w3.org/2000/svg",
  2192. viewBox: "0 0 1024 1024"
  2193. }, [
  2194. (0, import_vue210.createElementVNode)("path", {
  2195. fill: "currentColor",
  2196. d: "M192 256a64 64 0 0 0-64 64v448a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V320a64 64 0 0 0-64-64zm0-64h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128"
  2197. }),
  2198. (0, import_vue210.createElementVNode)("path", {
  2199. fill: "currentColor",
  2200. d: "M544 512h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96v-96a32 32 0 0 1 64 0zM352 128v64h320v-64zm-32-64h384a32 32 0 0 1 32 32v128a32 32 0 0 1-32 32H320a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"
  2201. })
  2202. ]));
  2203. }
  2204. }), first_aid_kit_default = _sfc_main105;
  2205. // src/components/flag.vue
  2206. var import_vue211 = __toESM(require_vue()), import_vue212 = __toESM(require_vue()), _sfc_main106 = /* @__PURE__ */ (0, import_vue211.defineComponent)({
  2207. name: "Flag",
  2208. __name: "flag",
  2209. setup(__props) {
  2210. return (_ctx, _cache) => ((0, import_vue212.openBlock)(), (0, import_vue212.createElementBlock)("svg", {
  2211. xmlns: "http://www.w3.org/2000/svg",
  2212. viewBox: "0 0 1024 1024"
  2213. }, [
  2214. (0, import_vue212.createElementVNode)("path", {
  2215. fill: "currentColor",
  2216. d: "M288 128h608L736 384l160 256H288v320h-96V64h96z"
  2217. })
  2218. ]));
  2219. }
  2220. }), flag_default = _sfc_main106;
  2221. // src/components/fold.vue
  2222. var import_vue213 = __toESM(require_vue()), import_vue214 = __toESM(require_vue()), _sfc_main107 = /* @__PURE__ */ (0, import_vue213.defineComponent)({
  2223. name: "Fold",
  2224. __name: "fold",
  2225. setup(__props) {
  2226. return (_ctx, _cache) => ((0, import_vue214.openBlock)(), (0, import_vue214.createElementBlock)("svg", {
  2227. xmlns: "http://www.w3.org/2000/svg",
  2228. viewBox: "0 0 1024 1024"
  2229. }, [
  2230. (0, import_vue214.createElementVNode)("path", {
  2231. fill: "currentColor",
  2232. d: "M896 192H128v128h768zm0 256H384v128h512zm0 256H128v128h768zM320 384 128 512l192 128z"
  2233. })
  2234. ]));
  2235. }
  2236. }), fold_default = _sfc_main107;
  2237. // src/components/folder-add.vue
  2238. var import_vue215 = __toESM(require_vue()), import_vue216 = __toESM(require_vue()), _sfc_main108 = /* @__PURE__ */ (0, import_vue215.defineComponent)({
  2239. name: "FolderAdd",
  2240. __name: "folder-add",
  2241. setup(__props) {
  2242. return (_ctx, _cache) => ((0, import_vue216.openBlock)(), (0, import_vue216.createElementBlock)("svg", {
  2243. xmlns: "http://www.w3.org/2000/svg",
  2244. viewBox: "0 0 1024 1024"
  2245. }, [
  2246. (0, import_vue216.createElementVNode)("path", {
  2247. fill: "currentColor",
  2248. d: "M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m384 416V416h64v128h128v64H544v128h-64V608H352v-64z"
  2249. })
  2250. ]));
  2251. }
  2252. }), folder_add_default = _sfc_main108;
  2253. // src/components/folder-checked.vue
  2254. var import_vue217 = __toESM(require_vue()), import_vue218 = __toESM(require_vue()), _sfc_main109 = /* @__PURE__ */ (0, import_vue217.defineComponent)({
  2255. name: "FolderChecked",
  2256. __name: "folder-checked",
  2257. setup(__props) {
  2258. return (_ctx, _cache) => ((0, import_vue218.openBlock)(), (0, import_vue218.createElementBlock)("svg", {
  2259. xmlns: "http://www.w3.org/2000/svg",
  2260. viewBox: "0 0 1024 1024"
  2261. }, [
  2262. (0, import_vue218.createElementVNode)("path", {
  2263. fill: "currentColor",
  2264. d: "M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m414.08 502.144 180.992-180.992L736.32 494.4 510.08 720.64l-158.4-158.336 45.248-45.312z"
  2265. })
  2266. ]));
  2267. }
  2268. }), folder_checked_default = _sfc_main109;
  2269. // src/components/folder-delete.vue
  2270. var import_vue219 = __toESM(require_vue()), import_vue220 = __toESM(require_vue()), _sfc_main110 = /* @__PURE__ */ (0, import_vue219.defineComponent)({
  2271. name: "FolderDelete",
  2272. __name: "folder-delete",
  2273. setup(__props) {
  2274. return (_ctx, _cache) => ((0, import_vue220.openBlock)(), (0, import_vue220.createElementBlock)("svg", {
  2275. xmlns: "http://www.w3.org/2000/svg",
  2276. viewBox: "0 0 1024 1024"
  2277. }, [
  2278. (0, import_vue220.createElementVNode)("path", {
  2279. fill: "currentColor",
  2280. d: "M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m370.752 448-90.496-90.496 45.248-45.248L512 530.752l90.496-90.496 45.248 45.248L557.248 576l90.496 90.496-45.248 45.248L512 621.248l-90.496 90.496-45.248-45.248z"
  2281. })
  2282. ]));
  2283. }
  2284. }), folder_delete_default = _sfc_main110;
  2285. // src/components/folder-opened.vue
  2286. var import_vue221 = __toESM(require_vue()), import_vue222 = __toESM(require_vue()), _sfc_main111 = /* @__PURE__ */ (0, import_vue221.defineComponent)({
  2287. name: "FolderOpened",
  2288. __name: "folder-opened",
  2289. setup(__props) {
  2290. return (_ctx, _cache) => ((0, import_vue222.openBlock)(), (0, import_vue222.createElementBlock)("svg", {
  2291. xmlns: "http://www.w3.org/2000/svg",
  2292. viewBox: "0 0 1024 1024"
  2293. }, [
  2294. (0, import_vue222.createElementVNode)("path", {
  2295. fill: "currentColor",
  2296. d: "M878.08 448H241.92l-96 384h636.16zM832 384v-64H485.76L357.504 192H128v448l57.92-231.744A32 32 0 0 1 216.96 384zm-24.96 512H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h287.872l128.384 128H864a32 32 0 0 1 32 32v96h23.04a32 32 0 0 1 31.04 39.744l-112 448A32 32 0 0 1 807.04 896"
  2297. })
  2298. ]));
  2299. }
  2300. }), folder_opened_default = _sfc_main111;
  2301. // src/components/folder-remove.vue
  2302. var import_vue223 = __toESM(require_vue()), import_vue224 = __toESM(require_vue()), _sfc_main112 = /* @__PURE__ */ (0, import_vue223.defineComponent)({
  2303. name: "FolderRemove",
  2304. __name: "folder-remove",
  2305. setup(__props) {
  2306. return (_ctx, _cache) => ((0, import_vue224.openBlock)(), (0, import_vue224.createElementBlock)("svg", {
  2307. xmlns: "http://www.w3.org/2000/svg",
  2308. viewBox: "0 0 1024 1024"
  2309. }, [
  2310. (0, import_vue224.createElementVNode)("path", {
  2311. fill: "currentColor",
  2312. d: "M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32m256 416h320v64H352z"
  2313. })
  2314. ]));
  2315. }
  2316. }), folder_remove_default = _sfc_main112;
  2317. // src/components/folder.vue
  2318. var import_vue225 = __toESM(require_vue()), import_vue226 = __toESM(require_vue()), _sfc_main113 = /* @__PURE__ */ (0, import_vue225.defineComponent)({
  2319. name: "Folder",
  2320. __name: "folder",
  2321. setup(__props) {
  2322. return (_ctx, _cache) => ((0, import_vue226.openBlock)(), (0, import_vue226.createElementBlock)("svg", {
  2323. xmlns: "http://www.w3.org/2000/svg",
  2324. viewBox: "0 0 1024 1024"
  2325. }, [
  2326. (0, import_vue226.createElementVNode)("path", {
  2327. fill: "currentColor",
  2328. d: "M128 192v640h768V320H485.76L357.504 192zm-32-64h287.872l128.384 128H928a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32"
  2329. })
  2330. ]));
  2331. }
  2332. }), folder_default = _sfc_main113;
  2333. // src/components/food.vue
  2334. var import_vue227 = __toESM(require_vue()), import_vue228 = __toESM(require_vue()), _sfc_main114 = /* @__PURE__ */ (0, import_vue227.defineComponent)({
  2335. name: "Food",
  2336. __name: "food",
  2337. setup(__props) {
  2338. return (_ctx, _cache) => ((0, import_vue228.openBlock)(), (0, import_vue228.createElementBlock)("svg", {
  2339. xmlns: "http://www.w3.org/2000/svg",
  2340. viewBox: "0 0 1024 1024"
  2341. }, [
  2342. (0, import_vue228.createElementVNode)("path", {
  2343. fill: "currentColor",
  2344. d: "M128 352.576V352a288 288 0 0 1 491.072-204.224 192 192 0 0 1 274.24 204.48 64 64 0 0 1 57.216 74.24C921.6 600.512 850.048 710.656 736 756.992V800a96 96 0 0 1-96 96H384a96 96 0 0 1-96-96v-43.008c-114.048-46.336-185.6-156.48-214.528-330.496A64 64 0 0 1 128 352.64zm64-.576h64a160 160 0 0 1 320 0h64a224 224 0 0 0-448 0m128 0h192a96 96 0 0 0-192 0m439.424 0h68.544A128.256 128.256 0 0 0 704 192c-15.36 0-29.952 2.688-43.52 7.616 11.328 18.176 20.672 37.76 27.84 58.304A64.128 64.128 0 0 1 759.424 352M672 768H352v32a32 32 0 0 0 32 32h256a32 32 0 0 0 32-32zm-342.528-64h365.056c101.504-32.64 165.76-124.928 192.896-288H136.576c27.136 163.072 91.392 255.36 192.896 288"
  2345. })
  2346. ]));
  2347. }
  2348. }), food_default = _sfc_main114;
  2349. // src/components/football.vue
  2350. var import_vue229 = __toESM(require_vue()), import_vue230 = __toESM(require_vue()), _sfc_main115 = /* @__PURE__ */ (0, import_vue229.defineComponent)({
  2351. name: "Football",
  2352. __name: "football",
  2353. setup(__props) {
  2354. return (_ctx, _cache) => ((0, import_vue230.openBlock)(), (0, import_vue230.createElementBlock)("svg", {
  2355. xmlns: "http://www.w3.org/2000/svg",
  2356. viewBox: "0 0 1024 1024"
  2357. }, [
  2358. (0, import_vue230.createElementVNode)("path", {
  2359. fill: "currentColor",
  2360. d: "M512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896m0-64a384 384 0 1 0 0-768 384 384 0 0 0 0 768"
  2361. }),
  2362. (0, import_vue230.createElementVNode)("path", {
  2363. fill: "currentColor",
  2364. d: "M186.816 268.288c16-16.384 31.616-31.744 46.976-46.08 17.472 30.656 39.808 58.112 65.984 81.28l-32.512 56.448a386 386 0 0 1-80.448-91.648m653.696-5.312a385.9 385.9 0 0 1-83.776 96.96l-32.512-56.384a322.9 322.9 0 0 0 68.48-85.76c15.552 14.08 31.488 29.12 47.808 45.184M465.984 445.248l11.136-63.104a323.6 323.6 0 0 0 69.76 0l11.136 63.104a388 388 0 0 1-92.032 0m-62.72-12.8A381.8 381.8 0 0 1 320 396.544l32-55.424a320 320 0 0 0 62.464 27.712l-11.2 63.488zm300.8-35.84a381.8 381.8 0 0 1-83.328 35.84l-11.2-63.552A320 320 0 0 0 672 341.184l32 55.424zm-520.768 364.8a385.9 385.9 0 0 1 83.968-97.28l32.512 56.32c-26.88 23.936-49.856 52.352-67.52 84.032-16-13.44-32.32-27.712-48.96-43.072m657.536.128a1443 1443 0 0 1-49.024 43.072 321.4 321.4 0 0 0-67.584-84.16l32.512-56.32c33.216 27.456 61.696 60.352 84.096 97.408M465.92 578.752a388 388 0 0 1 92.032 0l-11.136 63.104a323.6 323.6 0 0 0-69.76 0zm-62.72 12.8 11.2 63.552a320 320 0 0 0-62.464 27.712L320 627.392a381.8 381.8 0 0 1 83.264-35.84zm300.8 35.84-32 55.424a318.3 318.3 0 0 0-62.528-27.712l11.2-63.488c29.44 8.64 57.28 20.736 83.264 35.776z"
  2365. })
  2366. ]));
  2367. }
  2368. }), football_default = _sfc_main115;
  2369. // src/components/fork-spoon.vue
  2370. var import_vue231 = __toESM(require_vue()), import_vue232 = __toESM(require_vue()), _sfc_main116 = /* @__PURE__ */ (0, import_vue231.defineComponent)({
  2371. name: "ForkSpoon",
  2372. __name: "fork-spoon",
  2373. setup(__props) {
  2374. return (_ctx, _cache) => ((0, import_vue232.openBlock)(), (0, import_vue232.createElementBlock)("svg", {
  2375. xmlns: "http://www.w3.org/2000/svg",
  2376. viewBox: "0 0 1024 1024"
  2377. }, [
  2378. (0, import_vue232.createElementVNode)("path", {
  2379. fill: "currentColor",
  2380. d: "M256 410.304V96a32 32 0 0 1 64 0v314.304a96 96 0 0 0 64-90.56V96a32 32 0 0 1 64 0v223.744a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.544a160 160 0 0 1-128-156.8V96a32 32 0 0 1 64 0v223.744a96 96 0 0 0 64 90.56M672 572.48C581.184 552.128 512 446.848 512 320c0-141.44 85.952-256 192-256s192 114.56 192 256c0 126.848-69.184 232.128-160 252.48V928a32 32 0 1 1-64 0zM704 512c66.048 0 128-82.56 128-192s-61.952-192-128-192-128 82.56-128 192 61.952 192 128 192"
  2381. })
  2382. ]));
  2383. }
  2384. }), fork_spoon_default = _sfc_main116;
  2385. // src/components/fries.vue
  2386. var import_vue233 = __toESM(require_vue()), import_vue234 = __toESM(require_vue()), _sfc_main117 = /* @__PURE__ */ (0, import_vue233.defineComponent)({
  2387. name: "Fries",
  2388. __name: "fries",
  2389. setup(__props) {
  2390. return (_ctx, _cache) => ((0, import_vue234.openBlock)(), (0, import_vue234.createElementBlock)("svg", {
  2391. xmlns: "http://www.w3.org/2000/svg",
  2392. viewBox: "0 0 1024 1024"
  2393. }, [
  2394. (0, import_vue234.createElementVNode)("path", {
  2395. fill: "currentColor",
  2396. d: "M608 224v-64a32 32 0 0 0-64 0v336h26.88A64 64 0 0 0 608 484.096zm101.12 160A64 64 0 0 0 672 395.904V384h64V224a32 32 0 1 0-64 0v160zm74.88 0a92.928 92.928 0 0 1 91.328 110.08l-60.672 323.584A96 96 0 0 1 720.32 896H303.68a96 96 0 0 1-94.336-78.336L148.672 494.08A92.928 92.928 0 0 1 240 384h-16V224a96 96 0 0 1 188.608-25.28A95.74 95.74 0 0 1 480 197.44V160a96 96 0 0 1 188.608-25.28A96 96 0 0 1 800 224v160zM670.784 512a128 128 0 0 1-99.904 48H453.12a128 128 0 0 1-99.84-48H352v-1.536a128 128 0 0 1-9.984-14.976L314.88 448H240a28.928 28.928 0 0 0-28.48 34.304L241.088 640h541.824l29.568-157.696A28.928 28.928 0 0 0 784 448h-74.88l-27.136 47.488A132 132 0 0 1 672 510.464V512zM480 288a32 32 0 0 0-64 0v196.096A64 64 0 0 0 453.12 496H480zm-128 96V224a32 32 0 0 0-64 0v160zh-37.12A64 64 0 0 1 352 395.904zm-98.88 320 19.072 101.888A32 32 0 0 0 303.68 832h416.64a32 32 0 0 0 31.488-26.112L770.88 704z"
  2397. })
  2398. ]));
  2399. }
  2400. }), fries_default = _sfc_main117;
  2401. // src/components/full-screen.vue
  2402. var import_vue235 = __toESM(require_vue()), import_vue236 = __toESM(require_vue()), _sfc_main118 = /* @__PURE__ */ (0, import_vue235.defineComponent)({
  2403. name: "FullScreen",
  2404. __name: "full-screen",
  2405. setup(__props) {
  2406. return (_ctx, _cache) => ((0, import_vue236.openBlock)(), (0, import_vue236.createElementBlock)("svg", {
  2407. xmlns: "http://www.w3.org/2000/svg",
  2408. viewBox: "0 0 1024 1024"
  2409. }, [
  2410. (0, import_vue236.createElementVNode)("path", {
  2411. fill: "currentColor",
  2412. d: "m160 96.064 192 .192a32 32 0 0 1 0 64l-192-.192V352a32 32 0 0 1-64 0V96h64zm0 831.872V928H96V672a32 32 0 1 1 64 0v191.936l192-.192a32 32 0 1 1 0 64zM864 96.064V96h64v256a32 32 0 1 1-64 0V160.064l-192 .192a32 32 0 1 1 0-64zm0 831.872-192-.192a32 32 0 0 1 0-64l192 .192V672a32 32 0 1 1 64 0v256h-64z"
  2413. })
  2414. ]));
  2415. }
  2416. }), full_screen_default = _sfc_main118;
  2417. // src/components/goblet-full.vue
  2418. var import_vue237 = __toESM(require_vue()), import_vue238 = __toESM(require_vue()), _sfc_main119 = /* @__PURE__ */ (0, import_vue237.defineComponent)({
  2419. name: "GobletFull",
  2420. __name: "goblet-full",
  2421. setup(__props) {
  2422. return (_ctx, _cache) => ((0, import_vue238.openBlock)(), (0, import_vue238.createElementBlock)("svg", {
  2423. xmlns: "http://www.w3.org/2000/svg",
  2424. viewBox: "0 0 1024 1024"
  2425. }, [
  2426. (0, import_vue238.createElementVNode)("path", {
  2427. fill: "currentColor",
  2428. d: "M256 320h512c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320m503.936 64H264.064a256.128 256.128 0 0 0 495.872 0M544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4"
  2429. })
  2430. ]));
  2431. }
  2432. }), goblet_full_default = _sfc_main119;
  2433. // src/components/goblet-square-full.vue
  2434. var import_vue239 = __toESM(require_vue()), import_vue240 = __toESM(require_vue()), _sfc_main120 = /* @__PURE__ */ (0, import_vue239.defineComponent)({
  2435. name: "GobletSquareFull",
  2436. __name: "goblet-square-full",
  2437. setup(__props) {
  2438. return (_ctx, _cache) => ((0, import_vue240.openBlock)(), (0, import_vue240.createElementBlock)("svg", {
  2439. xmlns: "http://www.w3.org/2000/svg",
  2440. viewBox: "0 0 1024 1024"
  2441. }, [
  2442. (0, import_vue240.createElementVNode)("path", {
  2443. fill: "currentColor",
  2444. d: "M256 270.912c10.048 6.72 22.464 14.912 28.992 18.624a220.16 220.16 0 0 0 114.752 30.72c30.592 0 49.408-9.472 91.072-41.152l.64-.448c52.928-40.32 82.368-55.04 132.288-54.656 55.552.448 99.584 20.8 142.72 57.408l1.536 1.28V128H256zm.96 76.288C266.368 482.176 346.88 575.872 512 576c157.44.064 237.952-85.056 253.248-209.984a952 952 0 0 1-40.192-35.712c-32.704-27.776-63.36-41.92-101.888-42.24-31.552-.256-50.624 9.28-93.12 41.6l-.576.448c-52.096 39.616-81.024 54.208-129.792 54.208-54.784 0-100.48-13.376-142.784-37.056zM480 638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96z"
  2445. })
  2446. ]));
  2447. }
  2448. }), goblet_square_full_default = _sfc_main120;
  2449. // src/components/goblet-square.vue
  2450. var import_vue241 = __toESM(require_vue()), import_vue242 = __toESM(require_vue()), _sfc_main121 = /* @__PURE__ */ (0, import_vue241.defineComponent)({
  2451. name: "GobletSquare",
  2452. __name: "goblet-square",
  2453. setup(__props) {
  2454. return (_ctx, _cache) => ((0, import_vue242.openBlock)(), (0, import_vue242.createElementBlock)("svg", {
  2455. xmlns: "http://www.w3.org/2000/svg",
  2456. viewBox: "0 0 1024 1024"
  2457. }, [
  2458. (0, import_vue242.createElementVNode)("path", {
  2459. fill: "currentColor",
  2460. d: "M544 638.912V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.848C250.624 623.424 192 442.496 192 319.68V96a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v224c0 122.816-58.624 303.68-288 318.912M256 319.68c0 149.568 80 256.192 256 256.256C688.128 576 768 469.568 768 320V128H256z"
  2461. })
  2462. ]));
  2463. }
  2464. }), goblet_square_default = _sfc_main121;
  2465. // src/components/goblet.vue
  2466. var import_vue243 = __toESM(require_vue()), import_vue244 = __toESM(require_vue()), _sfc_main122 = /* @__PURE__ */ (0, import_vue243.defineComponent)({
  2467. name: "Goblet",
  2468. __name: "goblet",
  2469. setup(__props) {
  2470. return (_ctx, _cache) => ((0, import_vue244.openBlock)(), (0, import_vue244.createElementBlock)("svg", {
  2471. xmlns: "http://www.w3.org/2000/svg",
  2472. viewBox: "0 0 1024 1024"
  2473. }, [
  2474. (0, import_vue244.createElementVNode)("path", {
  2475. fill: "currentColor",
  2476. d: "M544 638.4V896h96a32 32 0 1 1 0 64H384a32 32 0 1 1 0-64h96V638.4A320 320 0 0 1 192 320c0-85.632 21.312-170.944 64-256h512c42.688 64.32 64 149.632 64 256a320 320 0 0 1-288 318.4M256 320a256 256 0 1 0 512 0c0-78.592-12.608-142.4-36.928-192h-434.24C269.504 192.384 256 256.256 256 320"
  2477. })
  2478. ]));
  2479. }
  2480. }), goblet_default = _sfc_main122;
  2481. // src/components/gold-medal.vue
  2482. var import_vue245 = __toESM(require_vue()), import_vue246 = __toESM(require_vue()), _sfc_main123 = /* @__PURE__ */ (0, import_vue245.defineComponent)({
  2483. name: "GoldMedal",
  2484. __name: "gold-medal",
  2485. setup(__props) {
  2486. return (_ctx, _cache) => ((0, import_vue246.openBlock)(), (0, import_vue246.createElementBlock)("svg", {
  2487. xmlns: "http://www.w3.org/2000/svg",
  2488. "xml:space": "preserve",
  2489. viewBox: "0 0 1024 1024"
  2490. }, [
  2491. (0, import_vue246.createElementVNode)("path", {
  2492. fill: "currentColor",
  2493. d: "m772.13 452.84 53.86-351.81c1.32-10.01-1.17-18.68-7.49-26.02S804.35 64 795.01 64H228.99v-.01h-.06c-9.33 0-17.15 3.67-23.49 11.01s-8.83 16.01-7.49 26.02l53.87 351.89C213.54 505.73 193.59 568.09 192 640c2 90.67 33.17 166.17 93.5 226.5S421.33 957.99 512 960c90.67-2 166.17-33.17 226.5-93.5 60.33-60.34 91.49-135.83 93.5-226.5-1.59-71.94-21.56-134.32-59.87-187.16M640.01 128h117.02l-39.01 254.02c-20.75-10.64-40.74-19.73-59.94-27.28-5.92-3-11.95-5.8-18.08-8.41V128zM576 128v198.76c-13.18-2.58-26.74-4.43-40.67-5.55-8.07-.8-15.85-1.2-23.33-1.2-10.54 0-21.09.66-31.64 1.96a360 360 0 0 0-32.36 4.79V128zm-192 0h.04v218.3c-6.22 2.66-12.34 5.5-18.36 8.56-19.13 7.54-39.02 16.6-59.66 27.16L267.01 128zm308.99 692.99c-48 48-108.33 73-180.99 75.01-72.66-2.01-132.99-27.01-180.99-75.01S258.01 712.66 256 640c2.01-72.66 27.01-132.99 75.01-180.99 19.67-19.67 41.41-35.47 65.22-47.41 38.33-15.04 71.15-23.92 98.44-26.65 5.07-.41 10.2-.7 15.39-.88.63-.01 1.28-.03 1.91-.03.66 0 1.35.03 2.02.04 5.11.17 10.15.46 15.13.86 27.4 2.71 60.37 11.65 98.91 26.79 23.71 11.93 45.36 27.69 64.96 47.29 48 48 73 108.33 75.01 180.99-2.01 72.65-27.01 132.98-75.01 180.98"
  2494. }),
  2495. (0, import_vue246.createElementVNode)("path", {
  2496. fill: "currentColor",
  2497. d: "M544 480H416v64h64v192h-64v64h192v-64h-64z"
  2498. })
  2499. ]));
  2500. }
  2501. }), gold_medal_default = _sfc_main123;
  2502. // src/components/goods-filled.vue
  2503. var import_vue247 = __toESM(require_vue()), import_vue248 = __toESM(require_vue()), _sfc_main124 = /* @__PURE__ */ (0, import_vue247.defineComponent)({
  2504. name: "GoodsFilled",
  2505. __name: "goods-filled",
  2506. setup(__props) {
  2507. return (_ctx, _cache) => ((0, import_vue248.openBlock)(), (0, import_vue248.createElementBlock)("svg", {
  2508. xmlns: "http://www.w3.org/2000/svg",
  2509. viewBox: "0 0 1024 1024"
  2510. }, [
  2511. (0, import_vue248.createElementVNode)("path", {
  2512. fill: "currentColor",
  2513. d: "M192 352h640l64 544H128zm128 224h64V448h-64zm320 0h64V448h-64zM384 288h-64a192 192 0 1 1 384 0h-64a128 128 0 1 0-256 0"
  2514. })
  2515. ]));
  2516. }
  2517. }), goods_filled_default = _sfc_main124;
  2518. // src/components/goods.vue
  2519. var import_vue249 = __toESM(require_vue()), import_vue250 = __toESM(require_vue()), _sfc_main125 = /* @__PURE__ */ (0, import_vue249.defineComponent)({
  2520. name: "Goods",
  2521. __name: "goods",
  2522. setup(__props) {
  2523. return (_ctx, _cache) => ((0, import_vue250.openBlock)(), (0, import_vue250.createElementBlock)("svg", {
  2524. xmlns: "http://www.w3.org/2000/svg",
  2525. viewBox: "0 0 1024 1024"
  2526. }, [
  2527. (0, import_vue250.createElementVNode)("path", {
  2528. fill: "currentColor",
  2529. d: "M320 288v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4h131.072a32 32 0 0 1 31.808 28.8l57.6 576a32 32 0 0 1-31.808 35.2H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320zm64 0h256v-22.336C640 189.248 582.272 128 512 128s-128 61.248-128 137.664v22.4zm-64 64H217.92l-51.2 512h690.56l-51.264-512H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0z"
  2530. })
  2531. ]));
  2532. }
  2533. }), goods_default = _sfc_main125;
  2534. // src/components/grape.vue
  2535. var import_vue251 = __toESM(require_vue()), import_vue252 = __toESM(require_vue()), _sfc_main126 = /* @__PURE__ */ (0, import_vue251.defineComponent)({
  2536. name: "Grape",
  2537. __name: "grape",
  2538. setup(__props) {
  2539. return (_ctx, _cache) => ((0, import_vue252.openBlock)(), (0, import_vue252.createElementBlock)("svg", {
  2540. xmlns: "http://www.w3.org/2000/svg",
  2541. viewBox: "0 0 1024 1024"
  2542. }, [
  2543. (0, import_vue252.createElementVNode)("path", {
  2544. fill: "currentColor",
  2545. d: "M544 195.2a160 160 0 0 1 96 60.8 160 160 0 1 1 146.24 254.976 160 160 0 0 1-128 224 160 160 0 1 1-292.48 0 160 160 0 0 1-128-224A160 160 0 1 1 384 256a160 160 0 0 1 96-60.8V128h-64a32 32 0 0 1 0-64h192a32 32 0 0 1 0 64h-64zM512 448a96 96 0 1 0 0-192 96 96 0 0 0 0 192m-256 0a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128 224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192m128-224a96 96 0 1 0 0-192 96 96 0 0 0 0 192"
  2546. })
  2547. ]));
  2548. }
  2549. }), grape_default = _sfc_main126;
  2550. // src/components/grid.vue
  2551. var import_vue253 = __toESM(require_vue()), import_vue254 = __toESM(require_vue()), _sfc_main127 = /* @__PURE__ */ (0, import_vue253.defineComponent)({
  2552. name: "Grid",
  2553. __name: "grid",
  2554. setup(__props) {
  2555. return (_ctx, _cache) => ((0, import_vue254.openBlock)(), (0, import_vue254.createElementBlock)("svg", {
  2556. xmlns: "http://www.w3.org/2000/svg",
  2557. viewBox: "0 0 1024 1024"
  2558. }, [
  2559. (0, import_vue254.createElementVNode)("path", {
  2560. fill: "currentColor",
  2561. d: "M640 384v256H384V384zm64 0h192v256H704zm-64 512H384V704h256zm64 0V704h192v192zm-64-768v192H384V128zm64 0h192v192H704zM320 384v256H128V384zm0 512H128V704h192zm0-768v192H128V128z"
  2562. })
  2563. ]));
  2564. }
  2565. }), grid_default = _sfc_main127;
  2566. // src/components/guide.vue
  2567. var import_vue255 = __toESM(require_vue()), import_vue256 = __toESM(require_vue()), _sfc_main128 = /* @__PURE__ */ (0, import_vue255.defineComponent)({
  2568. name: "Guide",
  2569. __name: "guide",
  2570. setup(__props) {
  2571. return (_ctx, _cache) => ((0, import_vue256.openBlock)(), (0, import_vue256.createElementBlock)("svg", {
  2572. xmlns: "http://www.w3.org/2000/svg",
  2573. viewBox: "0 0 1024 1024"
  2574. }, [
  2575. (0, import_vue256.createElementVNode)("path", {
  2576. fill: "currentColor",
  2577. d: "M640 608h-64V416h64zm0 160v160a32 32 0 0 1-32 32H416a32 32 0 0 1-32-32V768h64v128h128V768zM384 608V416h64v192zm256-352h-64V128H448v128h-64V96a32 32 0 0 1 32-32h192a32 32 0 0 1 32 32z"
  2578. }),
  2579. (0, import_vue256.createElementVNode)("path", {
  2580. fill: "currentColor",
  2581. d: "m220.8 256-71.232 80 71.168 80H768V256zm-14.4-64H800a32 32 0 0 1 32 32v224a32 32 0 0 1-32 32H206.4a32 32 0 0 1-23.936-10.752l-99.584-112a32 32 0 0 1 0-42.496l99.584-112A32 32 0 0 1 206.4 192m678.784 496-71.104 80H266.816V608h547.2zm-56.768-144H234.88a32 32 0 0 0-32 32v224a32 32 0 0 0 32 32h593.6a32 32 0 0 0 23.936-10.752l99.584-112a32 32 0 0 0 0-42.496l-99.584-112A32 32 0 0 0 828.48 544z"
  2582. })
  2583. ]));
  2584. }
  2585. }), guide_default = _sfc_main128;
  2586. // src/components/handbag.vue
  2587. var import_vue257 = __toESM(require_vue()), import_vue258 = __toESM(require_vue()), _sfc_main129 = /* @__PURE__ */ (0, import_vue257.defineComponent)({
  2588. name: "Handbag",
  2589. __name: "handbag",
  2590. setup(__props) {
  2591. return (_ctx, _cache) => ((0, import_vue258.openBlock)(), (0, import_vue258.createElementBlock)("svg", {
  2592. xmlns: "http://www.w3.org/2000/svg",
  2593. "xml:space": "preserve",
  2594. viewBox: "0 0 1024 1024"
  2595. }, [
  2596. (0, import_vue258.createElementVNode)("path", {
  2597. fill: "currentColor",
  2598. d: "M887.01 264.99c-6-5.99-13.67-8.99-23.01-8.99H704c-1.34-54.68-20.01-100.01-56-136s-81.32-54.66-136-56c-54.68 1.34-100.01 20.01-136 56s-54.66 81.32-56 136H160c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.67-8.99 23.01v640c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V288c0-9.35-2.99-17.02-8.99-23.01M421.5 165.5c24.32-24.34 54.49-36.84 90.5-37.5 35.99.68 66.16 13.18 90.5 37.5s36.84 54.49 37.5 90.5H384c.68-35.99 13.18-66.16 37.5-90.5M832 896H192V320h128v128h64V320h256v128h64V320h128z"
  2599. })
  2600. ]));
  2601. }
  2602. }), handbag_default = _sfc_main129;
  2603. // src/components/headset.vue
  2604. var import_vue259 = __toESM(require_vue()), import_vue260 = __toESM(require_vue()), _sfc_main130 = /* @__PURE__ */ (0, import_vue259.defineComponent)({
  2605. name: "Headset",
  2606. __name: "headset",
  2607. setup(__props) {
  2608. return (_ctx, _cache) => ((0, import_vue260.openBlock)(), (0, import_vue260.createElementBlock)("svg", {
  2609. xmlns: "http://www.w3.org/2000/svg",
  2610. viewBox: "0 0 1024 1024"
  2611. }, [
  2612. (0, import_vue260.createElementVNode)("path", {
  2613. fill: "currentColor",
  2614. d: "M896 529.152V512a384 384 0 1 0-768 0v17.152A128 128 0 0 1 320 640v128a128 128 0 1 1-256 0V512a448 448 0 1 1 896 0v256a128 128 0 1 1-256 0V640a128 128 0 0 1 192-110.848M896 640a64 64 0 0 0-128 0v128a64 64 0 0 0 128 0zm-768 0v128a64 64 0 0 0 128 0V640a64 64 0 1 0-128 0"
  2615. })
  2616. ]));
  2617. }
  2618. }), headset_default = _sfc_main130;
  2619. // src/components/help-filled.vue
  2620. var import_vue261 = __toESM(require_vue()), import_vue262 = __toESM(require_vue()), _sfc_main131 = /* @__PURE__ */ (0, import_vue261.defineComponent)({
  2621. name: "HelpFilled",
  2622. __name: "help-filled",
  2623. setup(__props) {
  2624. return (_ctx, _cache) => ((0, import_vue262.openBlock)(), (0, import_vue262.createElementBlock)("svg", {
  2625. xmlns: "http://www.w3.org/2000/svg",
  2626. viewBox: "0 0 1024 1024"
  2627. }, [
  2628. (0, import_vue262.createElementVNode)("path", {
  2629. fill: "currentColor",
  2630. d: "M926.784 480H701.312A192.51 192.51 0 0 0 544 322.688V97.216A416.064 416.064 0 0 1 926.784 480m0 64A416.064 416.064 0 0 1 544 926.784V701.312A192.51 192.51 0 0 0 701.312 544zM97.28 544h225.472A192.51 192.51 0 0 0 480 701.312v225.472A416.064 416.064 0 0 1 97.216 544zm0-64A416.064 416.064 0 0 1 480 97.216v225.472A192.51 192.51 0 0 0 322.688 480H97.216z"
  2631. })
  2632. ]));
  2633. }
  2634. }), help_filled_default = _sfc_main131;
  2635. // src/components/help.vue
  2636. var import_vue263 = __toESM(require_vue()), import_vue264 = __toESM(require_vue()), _sfc_main132 = /* @__PURE__ */ (0, import_vue263.defineComponent)({
  2637. name: "Help",
  2638. __name: "help",
  2639. setup(__props) {
  2640. return (_ctx, _cache) => ((0, import_vue264.openBlock)(), (0, import_vue264.createElementBlock)("svg", {
  2641. xmlns: "http://www.w3.org/2000/svg",
  2642. viewBox: "0 0 1024 1024"
  2643. }, [
  2644. (0, import_vue264.createElementVNode)("path", {
  2645. fill: "currentColor",
  2646. d: "m759.936 805.248-90.944-91.008A254.9 254.9 0 0 1 512 768a254.9 254.9 0 0 1-156.992-53.76l-90.944 91.008A382.46 382.46 0 0 0 512 896c94.528 0 181.12-34.176 247.936-90.752m45.312-45.312A382.46 382.46 0 0 0 896 512c0-94.528-34.176-181.12-90.752-247.936l-91.008 90.944C747.904 398.4 768 452.864 768 512s-20.096 113.6-53.76 156.992zm-45.312-541.184A382.46 382.46 0 0 0 512 128c-94.528 0-181.12 34.176-247.936 90.752l90.944 91.008A254.9 254.9 0 0 1 512 256c59.136 0 113.6 20.096 156.992 53.76zm-541.184 45.312A382.46 382.46 0 0 0 128 512c0 94.528 34.176 181.12 90.752 247.936l91.008-90.944A254.9 254.9 0 0 1 256 512c0-59.136 20.096-113.6 53.76-156.992zm417.28 394.496a194.6 194.6 0 0 0 22.528-22.528C686.912 602.56 704 559.232 704 512a191.23 191.23 0 0 0-67.968-146.56A191.3 191.3 0 0 0 512 320a191.23 191.23 0 0 0-146.56 67.968C337.088 421.44 320 464.768 320 512a191.23 191.23 0 0 0 67.968 146.56C421.44 686.912 464.768 704 512 704c47.296 0 90.56-17.088 124.032-45.44M512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  2647. })
  2648. ]));
  2649. }
  2650. }), help_default = _sfc_main132;
  2651. // src/components/hide.vue
  2652. var import_vue265 = __toESM(require_vue()), import_vue266 = __toESM(require_vue()), _sfc_main133 = /* @__PURE__ */ (0, import_vue265.defineComponent)({
  2653. name: "Hide",
  2654. __name: "hide",
  2655. setup(__props) {
  2656. return (_ctx, _cache) => ((0, import_vue266.openBlock)(), (0, import_vue266.createElementBlock)("svg", {
  2657. xmlns: "http://www.w3.org/2000/svg",
  2658. viewBox: "0 0 1024 1024"
  2659. }, [
  2660. (0, import_vue266.createElementVNode)("path", {
  2661. fill: "currentColor",
  2662. d: "M876.8 156.8c0-9.6-3.2-16-9.6-22.4s-12.8-9.6-22.4-9.6-16 3.2-22.4 9.6L736 220.8c-64-32-137.6-51.2-224-60.8-160 16-288 73.6-377.6 176S0 496 0 512s48 73.6 134.4 176c22.4 25.6 44.8 48 73.6 67.2l-86.4 89.6c-6.4 6.4-9.6 12.8-9.6 22.4s3.2 16 9.6 22.4 12.8 9.6 22.4 9.6 16-3.2 22.4-9.6l704-710.4c3.2-6.4 6.4-12.8 6.4-22.4m-646.4 528Q115.2 579.2 76.8 512q43.2-72 153.6-172.8C304 272 400 230.4 512 224c64 3.2 124.8 19.2 176 44.8l-54.4 54.4C598.4 300.8 560 288 512 288c-64 0-115.2 22.4-160 64s-64 96-64 160c0 48 12.8 89.6 35.2 124.8L256 707.2c-9.6-6.4-19.2-16-25.6-22.4m140.8-96Q352 555.2 352 512c0-44.8 16-83.2 48-112s67.2-48 112-48c28.8 0 54.4 6.4 73.6 19.2zM889.599 336c-12.8-16-28.8-28.8-41.6-41.6l-48 48c73.6 67.2 124.8 124.8 150.4 169.6q-43.2 72-153.6 172.8c-73.6 67.2-172.8 108.8-284.8 115.2-51.2-3.2-99.2-12.8-140.8-28.8l-48 48c57.6 22.4 118.4 38.4 188.8 44.8 160-16 288-73.6 377.6-176S1024 528 1024 512s-48.001-73.6-134.401-176"
  2663. }),
  2664. (0, import_vue266.createElementVNode)("path", {
  2665. fill: "currentColor",
  2666. d: "M511.998 672c-12.8 0-25.6-3.2-38.4-6.4l-51.2 51.2c28.8 12.8 57.6 19.2 89.6 19.2 64 0 115.2-22.4 160-64 41.6-41.6 64-96 64-160 0-32-6.4-64-19.2-89.6l-51.2 51.2c3.2 12.8 6.4 25.6 6.4 38.4 0 44.8-16 83.2-48 112s-67.2 48-112 48"
  2667. })
  2668. ]));
  2669. }
  2670. }), hide_default = _sfc_main133;
  2671. // src/components/histogram.vue
  2672. var import_vue267 = __toESM(require_vue()), import_vue268 = __toESM(require_vue()), _sfc_main134 = /* @__PURE__ */ (0, import_vue267.defineComponent)({
  2673. name: "Histogram",
  2674. __name: "histogram",
  2675. setup(__props) {
  2676. return (_ctx, _cache) => ((0, import_vue268.openBlock)(), (0, import_vue268.createElementBlock)("svg", {
  2677. xmlns: "http://www.w3.org/2000/svg",
  2678. viewBox: "0 0 1024 1024"
  2679. }, [
  2680. (0, import_vue268.createElementVNode)("path", {
  2681. fill: "currentColor",
  2682. d: "M416 896V128h192v768zm-288 0V448h192v448zm576 0V320h192v576z"
  2683. })
  2684. ]));
  2685. }
  2686. }), histogram_default = _sfc_main134;
  2687. // src/components/home-filled.vue
  2688. var import_vue269 = __toESM(require_vue()), import_vue270 = __toESM(require_vue()), _sfc_main135 = /* @__PURE__ */ (0, import_vue269.defineComponent)({
  2689. name: "HomeFilled",
  2690. __name: "home-filled",
  2691. setup(__props) {
  2692. return (_ctx, _cache) => ((0, import_vue270.openBlock)(), (0, import_vue270.createElementBlock)("svg", {
  2693. xmlns: "http://www.w3.org/2000/svg",
  2694. viewBox: "0 0 1024 1024"
  2695. }, [
  2696. (0, import_vue270.createElementVNode)("path", {
  2697. fill: "currentColor",
  2698. d: "M512 128 128 447.936V896h255.936V640H640v256h255.936V447.936z"
  2699. })
  2700. ]));
  2701. }
  2702. }), home_filled_default = _sfc_main135;
  2703. // src/components/hot-water.vue
  2704. var import_vue271 = __toESM(require_vue()), import_vue272 = __toESM(require_vue()), _sfc_main136 = /* @__PURE__ */ (0, import_vue271.defineComponent)({
  2705. name: "HotWater",
  2706. __name: "hot-water",
  2707. setup(__props) {
  2708. return (_ctx, _cache) => ((0, import_vue272.openBlock)(), (0, import_vue272.createElementBlock)("svg", {
  2709. xmlns: "http://www.w3.org/2000/svg",
  2710. viewBox: "0 0 1024 1024"
  2711. }, [
  2712. (0, import_vue272.createElementVNode)("path", {
  2713. fill: "currentColor",
  2714. d: "M273.067 477.867h477.866V409.6H273.067zm0 68.266v51.2A187.733 187.733 0 0 0 460.8 785.067h102.4a187.733 187.733 0 0 0 187.733-187.734v-51.2zm-34.134-204.8h546.134a34.133 34.133 0 0 1 34.133 34.134v221.866a256 256 0 0 1-256 256H460.8a256 256 0 0 1-256-256V375.467a34.133 34.133 0 0 1 34.133-34.134M512 34.133a34.133 34.133 0 0 1 34.133 34.134v170.666a34.133 34.133 0 0 1-68.266 0V68.267A34.133 34.133 0 0 1 512 34.133M375.467 102.4a34.133 34.133 0 0 1 34.133 34.133v102.4a34.133 34.133 0 0 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.134-34.133m273.066 0a34.133 34.133 0 0 1 34.134 34.133v102.4a34.133 34.133 0 1 1-68.267 0v-102.4a34.133 34.133 0 0 1 34.133-34.133M170.667 921.668h682.666a34.133 34.133 0 1 1 0 68.267H170.667a34.133 34.133 0 1 1 0-68.267"
  2715. })
  2716. ]));
  2717. }
  2718. }), hot_water_default = _sfc_main136;
  2719. // src/components/house.vue
  2720. var import_vue273 = __toESM(require_vue()), import_vue274 = __toESM(require_vue()), _sfc_main137 = /* @__PURE__ */ (0, import_vue273.defineComponent)({
  2721. name: "House",
  2722. __name: "house",
  2723. setup(__props) {
  2724. return (_ctx, _cache) => ((0, import_vue274.openBlock)(), (0, import_vue274.createElementBlock)("svg", {
  2725. xmlns: "http://www.w3.org/2000/svg",
  2726. viewBox: "0 0 1024 1024"
  2727. }, [
  2728. (0, import_vue274.createElementVNode)("path", {
  2729. fill: "currentColor",
  2730. d: "M192 413.952V896h640V413.952L512 147.328zM139.52 374.4l352-293.312a32 32 0 0 1 40.96 0l352 293.312A32 32 0 0 1 896 398.976V928a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V398.976a32 32 0 0 1 11.52-24.576"
  2731. })
  2732. ]));
  2733. }
  2734. }), house_default = _sfc_main137;
  2735. // src/components/ice-cream-round.vue
  2736. var import_vue275 = __toESM(require_vue()), import_vue276 = __toESM(require_vue()), _sfc_main138 = /* @__PURE__ */ (0, import_vue275.defineComponent)({
  2737. name: "IceCreamRound",
  2738. __name: "ice-cream-round",
  2739. setup(__props) {
  2740. return (_ctx, _cache) => ((0, import_vue276.openBlock)(), (0, import_vue276.createElementBlock)("svg", {
  2741. xmlns: "http://www.w3.org/2000/svg",
  2742. viewBox: "0 0 1024 1024"
  2743. }, [
  2744. (0, import_vue276.createElementVNode)("path", {
  2745. fill: "currentColor",
  2746. d: "m308.352 489.344 226.304 226.304a32 32 0 0 0 45.248 0L783.552 512A192 192 0 1 0 512 240.448L308.352 444.16a32 32 0 0 0 0 45.248zm135.744 226.304L308.352 851.392a96 96 0 0 1-135.744-135.744l135.744-135.744-45.248-45.248a96 96 0 0 1 0-135.808L466.752 195.2A256 256 0 0 1 828.8 557.248L625.152 760.96a96 96 0 0 1-135.808 0l-45.248-45.248zM398.848 670.4 353.6 625.152 217.856 760.896a32 32 0 0 0 45.248 45.248zm248.96-384.64a32 32 0 0 1 0 45.248L466.624 512a32 32 0 1 1-45.184-45.248l180.992-181.056a32 32 0 0 1 45.248 0zm90.496 90.496a32 32 0 0 1 0 45.248L557.248 602.496A32 32 0 1 1 512 557.248l180.992-180.992a32 32 0 0 1 45.312 0"
  2747. })
  2748. ]));
  2749. }
  2750. }), ice_cream_round_default = _sfc_main138;
  2751. // src/components/ice-cream-square.vue
  2752. var import_vue277 = __toESM(require_vue()), import_vue278 = __toESM(require_vue()), _sfc_main139 = /* @__PURE__ */ (0, import_vue277.defineComponent)({
  2753. name: "IceCreamSquare",
  2754. __name: "ice-cream-square",
  2755. setup(__props) {
  2756. return (_ctx, _cache) => ((0, import_vue278.openBlock)(), (0, import_vue278.createElementBlock)("svg", {
  2757. xmlns: "http://www.w3.org/2000/svg",
  2758. viewBox: "0 0 1024 1024"
  2759. }, [
  2760. (0, import_vue278.createElementVNode)("path", {
  2761. fill: "currentColor",
  2762. d: "M416 640h256a32 32 0 0 0 32-32V160a32 32 0 0 0-32-32H352a32 32 0 0 0-32 32v448a32 32 0 0 0 32 32zm192 64v160a96 96 0 0 1-192 0V704h-64a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96h320a96 96 0 0 1 96 96v448a96 96 0 0 1-96 96zm-64 0h-64v160a32 32 0 1 0 64 0z"
  2763. })
  2764. ]));
  2765. }
  2766. }), ice_cream_square_default = _sfc_main139;
  2767. // src/components/ice-cream.vue
  2768. var import_vue279 = __toESM(require_vue()), import_vue280 = __toESM(require_vue()), _sfc_main140 = /* @__PURE__ */ (0, import_vue279.defineComponent)({
  2769. name: "IceCream",
  2770. __name: "ice-cream",
  2771. setup(__props) {
  2772. return (_ctx, _cache) => ((0, import_vue280.openBlock)(), (0, import_vue280.createElementBlock)("svg", {
  2773. xmlns: "http://www.w3.org/2000/svg",
  2774. viewBox: "0 0 1024 1024"
  2775. }, [
  2776. (0, import_vue280.createElementVNode)("path", {
  2777. fill: "currentColor",
  2778. d: "M128.64 448a208 208 0 0 1 193.536-191.552 224 224 0 0 1 445.248 15.488A208.13 208.13 0 0 1 894.784 448H896L548.8 983.68a32 32 0 0 1-53.248.704L128 448zm64.256 0h286.208a144 144 0 0 0-286.208 0m351.36 0h286.272a144 144 0 0 0-286.272 0m-294.848 64 271.808 396.608L778.24 512zM511.68 352.64a207.87 207.87 0 0 1 189.184-96.192 160 160 0 0 0-314.752 5.632c52.608 12.992 97.28 46.08 125.568 90.56"
  2779. })
  2780. ]));
  2781. }
  2782. }), ice_cream_default = _sfc_main140;
  2783. // src/components/ice-drink.vue
  2784. var import_vue281 = __toESM(require_vue()), import_vue282 = __toESM(require_vue()), _sfc_main141 = /* @__PURE__ */ (0, import_vue281.defineComponent)({
  2785. name: "IceDrink",
  2786. __name: "ice-drink",
  2787. setup(__props) {
  2788. return (_ctx, _cache) => ((0, import_vue282.openBlock)(), (0, import_vue282.createElementBlock)("svg", {
  2789. xmlns: "http://www.w3.org/2000/svg",
  2790. viewBox: "0 0 1024 1024"
  2791. }, [
  2792. (0, import_vue282.createElementVNode)("path", {
  2793. fill: "currentColor",
  2794. d: "M512 448v128h239.68l16.064-128zm-64 0H256.256l16.064 128H448zm64-255.36V384h247.744A256.13 256.13 0 0 0 512 192.64m-64 8.064A256.45 256.45 0 0 0 264.256 384H448zm64-72.064A320.13 320.13 0 0 1 825.472 384H896a32 32 0 1 1 0 64h-64v1.92l-56.96 454.016A64 64 0 0 1 711.552 960H312.448a64 64 0 0 1-63.488-56.064L192 449.92V448h-64a32 32 0 0 1 0-64h70.528A320.38 320.38 0 0 1 448 135.04V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H544a32 32 0 0 0-32 32zM743.68 640H280.32l32.128 256h399.104z"
  2795. })
  2796. ]));
  2797. }
  2798. }), ice_drink_default = _sfc_main141;
  2799. // src/components/ice-tea.vue
  2800. var import_vue283 = __toESM(require_vue()), import_vue284 = __toESM(require_vue()), _sfc_main142 = /* @__PURE__ */ (0, import_vue283.defineComponent)({
  2801. name: "IceTea",
  2802. __name: "ice-tea",
  2803. setup(__props) {
  2804. return (_ctx, _cache) => ((0, import_vue284.openBlock)(), (0, import_vue284.createElementBlock)("svg", {
  2805. xmlns: "http://www.w3.org/2000/svg",
  2806. viewBox: "0 0 1024 1024"
  2807. }, [
  2808. (0, import_vue284.createElementVNode)("path", {
  2809. fill: "currentColor",
  2810. d: "M197.696 259.648a320.128 320.128 0 0 1 628.608 0A96 96 0 0 1 896 352v64a96 96 0 0 1-71.616 92.864l-49.408 395.072A64 64 0 0 1 711.488 960H312.512a64 64 0 0 1-63.488-56.064l-49.408-395.072A96 96 0 0 1 128 416v-64a96 96 0 0 1 69.696-92.352M264.064 256h495.872a256.128 256.128 0 0 0-495.872 0m495.424 256H264.512l48 384h398.976zM224 448h576a32 32 0 0 0 32-32v-64a32 32 0 0 0-32-32H224a32 32 0 0 0-32 32v64a32 32 0 0 0 32 32m160 192h64v64h-64zm192 64h64v64h-64zm-128 64h64v64h-64zm64-192h64v64h-64z"
  2811. })
  2812. ]));
  2813. }
  2814. }), ice_tea_default = _sfc_main142;
  2815. // src/components/info-filled.vue
  2816. var import_vue285 = __toESM(require_vue()), import_vue286 = __toESM(require_vue()), _sfc_main143 = /* @__PURE__ */ (0, import_vue285.defineComponent)({
  2817. name: "InfoFilled",
  2818. __name: "info-filled",
  2819. setup(__props) {
  2820. return (_ctx, _cache) => ((0, import_vue286.openBlock)(), (0, import_vue286.createElementBlock)("svg", {
  2821. xmlns: "http://www.w3.org/2000/svg",
  2822. viewBox: "0 0 1024 1024"
  2823. }, [
  2824. (0, import_vue286.createElementVNode)("path", {
  2825. fill: "currentColor",
  2826. d: "M512 64a448 448 0 1 1 0 896.064A448 448 0 0 1 512 64m67.2 275.072c33.28 0 60.288-23.104 60.288-57.344s-27.072-57.344-60.288-57.344c-33.28 0-60.16 23.104-60.16 57.344s26.88 57.344 60.16 57.344M590.912 699.2c0-6.848 2.368-24.64 1.024-34.752l-52.608 60.544c-10.88 11.456-24.512 19.392-30.912 17.28a12.99 12.99 0 0 1-8.256-14.72l87.68-276.992c7.168-35.136-12.544-67.2-54.336-71.296-44.096 0-108.992 44.736-148.48 101.504 0 6.784-1.28 23.68.064 33.792l52.544-60.608c10.88-11.328 23.552-19.328 29.952-17.152a12.8 12.8 0 0 1 7.808 16.128L388.48 728.576c-10.048 32.256 8.96 63.872 55.04 71.04 67.84 0 107.904-43.648 147.456-100.416z"
  2827. })
  2828. ]));
  2829. }
  2830. }), info_filled_default = _sfc_main143;
  2831. // src/components/iphone.vue
  2832. var import_vue287 = __toESM(require_vue()), import_vue288 = __toESM(require_vue()), _sfc_main144 = /* @__PURE__ */ (0, import_vue287.defineComponent)({
  2833. name: "Iphone",
  2834. __name: "iphone",
  2835. setup(__props) {
  2836. return (_ctx, _cache) => ((0, import_vue288.openBlock)(), (0, import_vue288.createElementBlock)("svg", {
  2837. xmlns: "http://www.w3.org/2000/svg",
  2838. viewBox: "0 0 1024 1024"
  2839. }, [
  2840. (0, import_vue288.createElementVNode)("path", {
  2841. fill: "currentColor",
  2842. d: "M224 768v96.064a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64V768zm0-64h576V160a64 64 0 0 0-64-64H288a64 64 0 0 0-64 64zm32 288a96 96 0 0 1-96-96V128a96 96 0 0 1 96-96h512a96 96 0 0 1 96 96v768a96 96 0 0 1-96 96zm304-144a48 48 0 1 1-96 0 48 48 0 0 1 96 0"
  2843. })
  2844. ]));
  2845. }
  2846. }), iphone_default = _sfc_main144;
  2847. // src/components/key.vue
  2848. var import_vue289 = __toESM(require_vue()), import_vue290 = __toESM(require_vue()), _sfc_main145 = /* @__PURE__ */ (0, import_vue289.defineComponent)({
  2849. name: "Key",
  2850. __name: "key",
  2851. setup(__props) {
  2852. return (_ctx, _cache) => ((0, import_vue290.openBlock)(), (0, import_vue290.createElementBlock)("svg", {
  2853. xmlns: "http://www.w3.org/2000/svg",
  2854. viewBox: "0 0 1024 1024"
  2855. }, [
  2856. (0, import_vue290.createElementVNode)("path", {
  2857. fill: "currentColor",
  2858. d: "M448 456.064V96a32 32 0 0 1 32-32.064L672 64a32 32 0 0 1 0 64H512v128h160a32 32 0 0 1 0 64H512v128a256 256 0 1 1-64 8.064M512 896a192 192 0 1 0 0-384 192 192 0 0 0 0 384"
  2859. })
  2860. ]));
  2861. }
  2862. }), key_default = _sfc_main145;
  2863. // src/components/knife-fork.vue
  2864. var import_vue291 = __toESM(require_vue()), import_vue292 = __toESM(require_vue()), _sfc_main146 = /* @__PURE__ */ (0, import_vue291.defineComponent)({
  2865. name: "KnifeFork",
  2866. __name: "knife-fork",
  2867. setup(__props) {
  2868. return (_ctx, _cache) => ((0, import_vue292.openBlock)(), (0, import_vue292.createElementBlock)("svg", {
  2869. xmlns: "http://www.w3.org/2000/svg",
  2870. viewBox: "0 0 1024 1024"
  2871. }, [
  2872. (0, import_vue292.createElementVNode)("path", {
  2873. fill: "currentColor",
  2874. d: "M256 410.56V96a32 32 0 0 1 64 0v314.56A96 96 0 0 0 384 320V96a32 32 0 0 1 64 0v224a160 160 0 0 1-128 156.8V928a32 32 0 1 1-64 0V476.8A160 160 0 0 1 128 320V96a32 32 0 0 1 64 0v224a96 96 0 0 0 64 90.56m384-250.24V544h126.72c-3.328-78.72-12.928-147.968-28.608-207.744-14.336-54.528-46.848-113.344-98.112-175.872zM640 608v320a32 32 0 1 1-64 0V64h64c85.312 89.472 138.688 174.848 160 256s32 177.152 32 288z"
  2875. })
  2876. ]));
  2877. }
  2878. }), knife_fork_default = _sfc_main146;
  2879. // src/components/lightning.vue
  2880. var import_vue293 = __toESM(require_vue()), import_vue294 = __toESM(require_vue()), _sfc_main147 = /* @__PURE__ */ (0, import_vue293.defineComponent)({
  2881. name: "Lightning",
  2882. __name: "lightning",
  2883. setup(__props) {
  2884. return (_ctx, _cache) => ((0, import_vue294.openBlock)(), (0, import_vue294.createElementBlock)("svg", {
  2885. xmlns: "http://www.w3.org/2000/svg",
  2886. viewBox: "0 0 1024 1024"
  2887. }, [
  2888. (0, import_vue294.createElementVNode)("path", {
  2889. fill: "currentColor",
  2890. d: "M288 671.36v64.128A239.81 239.81 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 736 734.016v-64.768a192 192 0 0 0 3.328-377.92l-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 91.968 70.464 167.36 160.256 175.232z"
  2891. }),
  2892. (0, import_vue294.createElementVNode)("path", {
  2893. fill: "currentColor",
  2894. d: "M416 736a32 32 0 0 1-27.776-47.872l128-224a32 32 0 1 1 55.552 31.744L471.168 672H608a32 32 0 0 1 27.776 47.872l-128 224a32 32 0 1 1-55.68-31.744L552.96 736z"
  2895. })
  2896. ]));
  2897. }
  2898. }), lightning_default = _sfc_main147;
  2899. // src/components/link.vue
  2900. var import_vue295 = __toESM(require_vue()), import_vue296 = __toESM(require_vue()), _sfc_main148 = /* @__PURE__ */ (0, import_vue295.defineComponent)({
  2901. name: "Link",
  2902. __name: "link",
  2903. setup(__props) {
  2904. return (_ctx, _cache) => ((0, import_vue296.openBlock)(), (0, import_vue296.createElementBlock)("svg", {
  2905. xmlns: "http://www.w3.org/2000/svg",
  2906. viewBox: "0 0 1024 1024"
  2907. }, [
  2908. (0, import_vue296.createElementVNode)("path", {
  2909. fill: "currentColor",
  2910. d: "M715.648 625.152 670.4 579.904l90.496-90.56c75.008-74.944 85.12-186.368 22.656-248.896-62.528-62.464-173.952-52.352-248.96 22.656L444.16 353.6l-45.248-45.248 90.496-90.496c100.032-99.968 251.968-110.08 339.456-22.656 87.488 87.488 77.312 239.424-22.656 339.456l-90.496 90.496zm-90.496 90.496-90.496 90.496C434.624 906.112 282.688 916.224 195.2 828.8c-87.488-87.488-77.312-239.424 22.656-339.456l90.496-90.496 45.248 45.248-90.496 90.56c-75.008 74.944-85.12 186.368-22.656 248.896 62.528 62.464 173.952 52.352 248.96-22.656l90.496-90.496zm0-362.048 45.248 45.248L398.848 670.4 353.6 625.152z"
  2911. })
  2912. ]));
  2913. }
  2914. }), link_default = _sfc_main148;
  2915. // src/components/list.vue
  2916. var import_vue297 = __toESM(require_vue()), import_vue298 = __toESM(require_vue()), _sfc_main149 = /* @__PURE__ */ (0, import_vue297.defineComponent)({
  2917. name: "List",
  2918. __name: "list",
  2919. setup(__props) {
  2920. return (_ctx, _cache) => ((0, import_vue298.openBlock)(), (0, import_vue298.createElementBlock)("svg", {
  2921. xmlns: "http://www.w3.org/2000/svg",
  2922. viewBox: "0 0 1024 1024"
  2923. }, [
  2924. (0, import_vue298.createElementVNode)("path", {
  2925. fill: "currentColor",
  2926. d: "M704 192h160v736H160V192h160v64h384zM288 512h448v-64H288zm0 256h448v-64H288zm96-576V96h256v96z"
  2927. })
  2928. ]));
  2929. }
  2930. }), list_default = _sfc_main149;
  2931. // src/components/loading.vue
  2932. var import_vue299 = __toESM(require_vue()), import_vue300 = __toESM(require_vue()), _sfc_main150 = /* @__PURE__ */ (0, import_vue299.defineComponent)({
  2933. name: "Loading",
  2934. __name: "loading",
  2935. setup(__props) {
  2936. return (_ctx, _cache) => ((0, import_vue300.openBlock)(), (0, import_vue300.createElementBlock)("svg", {
  2937. xmlns: "http://www.w3.org/2000/svg",
  2938. viewBox: "0 0 1024 1024"
  2939. }, [
  2940. (0, import_vue300.createElementVNode)("path", {
  2941. fill: "currentColor",
  2942. d: "M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32m0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32m448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32m-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32M195.2 195.2a32 32 0 0 1 45.248 0L376.32 331.008a32 32 0 0 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248m452.544 452.544a32 32 0 0 1 45.248 0L828.8 783.552a32 32 0 0 1-45.248 45.248L647.744 692.992a32 32 0 0 1 0-45.248M828.8 195.264a32 32 0 0 1 0 45.184L692.992 376.32a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0m-452.544 452.48a32 32 0 0 1 0 45.248L240.448 828.8a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0"
  2943. })
  2944. ]));
  2945. }
  2946. }), loading_default = _sfc_main150;
  2947. // src/components/location-filled.vue
  2948. var import_vue301 = __toESM(require_vue()), import_vue302 = __toESM(require_vue()), _sfc_main151 = /* @__PURE__ */ (0, import_vue301.defineComponent)({
  2949. name: "LocationFilled",
  2950. __name: "location-filled",
  2951. setup(__props) {
  2952. return (_ctx, _cache) => ((0, import_vue302.openBlock)(), (0, import_vue302.createElementBlock)("svg", {
  2953. xmlns: "http://www.w3.org/2000/svg",
  2954. viewBox: "0 0 1024 1024"
  2955. }, [
  2956. (0, import_vue302.createElementVNode)("path", {
  2957. fill: "currentColor",
  2958. d: "M512 928c23.936 0 117.504-68.352 192.064-153.152C803.456 661.888 864 535.808 864 416c0-189.632-155.84-320-352-320S160 226.368 160 416c0 120.32 60.544 246.4 159.936 359.232C394.432 859.84 488 928 512 928m0-435.2a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 140.8a204.8 204.8 0 1 1 0-409.6 204.8 204.8 0 0 1 0 409.6"
  2959. })
  2960. ]));
  2961. }
  2962. }), location_filled_default = _sfc_main151;
  2963. // src/components/location-information.vue
  2964. var import_vue303 = __toESM(require_vue()), import_vue304 = __toESM(require_vue()), _sfc_main152 = /* @__PURE__ */ (0, import_vue303.defineComponent)({
  2965. name: "LocationInformation",
  2966. __name: "location-information",
  2967. setup(__props) {
  2968. return (_ctx, _cache) => ((0, import_vue304.openBlock)(), (0, import_vue304.createElementBlock)("svg", {
  2969. xmlns: "http://www.w3.org/2000/svg",
  2970. viewBox: "0 0 1024 1024"
  2971. }, [
  2972. (0, import_vue304.createElementVNode)("path", {
  2973. fill: "currentColor",
  2974. d: "M288 896h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  2975. }),
  2976. (0, import_vue304.createElementVNode)("path", {
  2977. fill: "currentColor",
  2978. d: "M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"
  2979. }),
  2980. (0, import_vue304.createElementVNode)("path", {
  2981. fill: "currentColor",
  2982. d: "M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192m0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320"
  2983. })
  2984. ]));
  2985. }
  2986. }), location_information_default = _sfc_main152;
  2987. // src/components/location.vue
  2988. var import_vue305 = __toESM(require_vue()), import_vue306 = __toESM(require_vue()), _sfc_main153 = /* @__PURE__ */ (0, import_vue305.defineComponent)({
  2989. name: "Location",
  2990. __name: "location",
  2991. setup(__props) {
  2992. return (_ctx, _cache) => ((0, import_vue306.openBlock)(), (0, import_vue306.createElementBlock)("svg", {
  2993. xmlns: "http://www.w3.org/2000/svg",
  2994. viewBox: "0 0 1024 1024"
  2995. }, [
  2996. (0, import_vue306.createElementVNode)("path", {
  2997. fill: "currentColor",
  2998. d: "M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"
  2999. }),
  3000. (0, import_vue306.createElementVNode)("path", {
  3001. fill: "currentColor",
  3002. d: "M512 512a96 96 0 1 0 0-192 96 96 0 0 0 0 192m0 64a160 160 0 1 1 0-320 160 160 0 0 1 0 320"
  3003. })
  3004. ]));
  3005. }
  3006. }), location_default = _sfc_main153;
  3007. // src/components/lock.vue
  3008. var import_vue307 = __toESM(require_vue()), import_vue308 = __toESM(require_vue()), _sfc_main154 = /* @__PURE__ */ (0, import_vue307.defineComponent)({
  3009. name: "Lock",
  3010. __name: "lock",
  3011. setup(__props) {
  3012. return (_ctx, _cache) => ((0, import_vue308.openBlock)(), (0, import_vue308.createElementBlock)("svg", {
  3013. xmlns: "http://www.w3.org/2000/svg",
  3014. viewBox: "0 0 1024 1024"
  3015. }, [
  3016. (0, import_vue308.createElementVNode)("path", {
  3017. fill: "currentColor",
  3018. d: "M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96"
  3019. }),
  3020. (0, import_vue308.createElementVNode)("path", {
  3021. fill: "currentColor",
  3022. d: "M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32m192-160v-64a192 192 0 1 0-384 0v64zM512 64a256 256 0 0 1 256 256v128H256V320A256 256 0 0 1 512 64"
  3023. })
  3024. ]));
  3025. }
  3026. }), lock_default = _sfc_main154;
  3027. // src/components/lollipop.vue
  3028. var import_vue309 = __toESM(require_vue()), import_vue310 = __toESM(require_vue()), _sfc_main155 = /* @__PURE__ */ (0, import_vue309.defineComponent)({
  3029. name: "Lollipop",
  3030. __name: "lollipop",
  3031. setup(__props) {
  3032. return (_ctx, _cache) => ((0, import_vue310.openBlock)(), (0, import_vue310.createElementBlock)("svg", {
  3033. xmlns: "http://www.w3.org/2000/svg",
  3034. viewBox: "0 0 1024 1024"
  3035. }, [
  3036. (0, import_vue310.createElementVNode)("path", {
  3037. fill: "currentColor",
  3038. d: "M513.28 448a64 64 0 1 1 76.544 49.728A96 96 0 0 0 768 448h64a160 160 0 0 1-320 0zm-126.976-29.696a256 256 0 1 0 43.52-180.48A256 256 0 0 1 832 448h-64a192 192 0 0 0-381.696-29.696m105.664 249.472L285.696 874.048a96 96 0 0 1-135.68-135.744l206.208-206.272a320 320 0 1 1 135.744 135.744m-54.464-36.032a322 322 0 0 1-45.248-45.248L195.2 783.552a32 32 0 1 0 45.248 45.248l197.056-197.12z"
  3039. })
  3040. ]));
  3041. }
  3042. }), lollipop_default = _sfc_main155;
  3043. // src/components/magic-stick.vue
  3044. var import_vue311 = __toESM(require_vue()), import_vue312 = __toESM(require_vue()), _sfc_main156 = /* @__PURE__ */ (0, import_vue311.defineComponent)({
  3045. name: "MagicStick",
  3046. __name: "magic-stick",
  3047. setup(__props) {
  3048. return (_ctx, _cache) => ((0, import_vue312.openBlock)(), (0, import_vue312.createElementBlock)("svg", {
  3049. xmlns: "http://www.w3.org/2000/svg",
  3050. viewBox: "0 0 1024 1024"
  3051. }, [
  3052. (0, import_vue312.createElementVNode)("path", {
  3053. fill: "currentColor",
  3054. d: "M512 64h64v192h-64zm0 576h64v192h-64zM160 480v-64h192v64zm576 0v-64h192v64zM249.856 199.04l45.248-45.184L430.848 289.6 385.6 334.848 249.856 199.104zM657.152 606.4l45.248-45.248 135.744 135.744-45.248 45.248zM114.048 923.2 68.8 877.952l316.8-316.8 45.248 45.248zM702.4 334.848 657.152 289.6l135.744-135.744 45.248 45.248z"
  3055. })
  3056. ]));
  3057. }
  3058. }), magic_stick_default = _sfc_main156;
  3059. // src/components/magnet.vue
  3060. var import_vue313 = __toESM(require_vue()), import_vue314 = __toESM(require_vue()), _sfc_main157 = /* @__PURE__ */ (0, import_vue313.defineComponent)({
  3061. name: "Magnet",
  3062. __name: "magnet",
  3063. setup(__props) {
  3064. return (_ctx, _cache) => ((0, import_vue314.openBlock)(), (0, import_vue314.createElementBlock)("svg", {
  3065. xmlns: "http://www.w3.org/2000/svg",
  3066. viewBox: "0 0 1024 1024"
  3067. }, [
  3068. (0, import_vue314.createElementVNode)("path", {
  3069. fill: "currentColor",
  3070. d: "M832 320V192H704v320a192 192 0 1 1-384 0V192H192v128h128v64H192v128a320 320 0 0 0 640 0V384H704v-64zM640 512V128h256v384a384 384 0 1 1-768 0V128h256v384a128 128 0 1 0 256 0"
  3071. })
  3072. ]));
  3073. }
  3074. }), magnet_default = _sfc_main157;
  3075. // src/components/male.vue
  3076. var import_vue315 = __toESM(require_vue()), import_vue316 = __toESM(require_vue()), _sfc_main158 = /* @__PURE__ */ (0, import_vue315.defineComponent)({
  3077. name: "Male",
  3078. __name: "male",
  3079. setup(__props) {
  3080. return (_ctx, _cache) => ((0, import_vue316.openBlock)(), (0, import_vue316.createElementBlock)("svg", {
  3081. xmlns: "http://www.w3.org/2000/svg",
  3082. viewBox: "0 0 1024 1024"
  3083. }, [
  3084. (0, import_vue316.createElementVNode)("path", {
  3085. fill: "currentColor",
  3086. d: "M399.5 849.5a225 225 0 1 0 0-450 225 225 0 0 0 0 450m0 56.25a281.25 281.25 0 1 1 0-562.5 281.25 281.25 0 0 1 0 562.5m253.125-787.5h225q28.125 0 28.125 28.125T877.625 174.5h-225q-28.125 0-28.125-28.125t28.125-28.125"
  3087. }),
  3088. (0, import_vue316.createElementVNode)("path", {
  3089. fill: "currentColor",
  3090. d: "M877.625 118.25q28.125 0 28.125 28.125v225q0 28.125-28.125 28.125T849.5 371.375v-225q0-28.125 28.125-28.125"
  3091. }),
  3092. (0, import_vue316.createElementVNode)("path", {
  3093. fill: "currentColor",
  3094. d: "M604.813 458.9 565.1 419.131l292.613-292.668 39.825 39.824z"
  3095. })
  3096. ]));
  3097. }
  3098. }), male_default = _sfc_main158;
  3099. // src/components/management.vue
  3100. var import_vue317 = __toESM(require_vue()), import_vue318 = __toESM(require_vue()), _sfc_main159 = /* @__PURE__ */ (0, import_vue317.defineComponent)({
  3101. name: "Management",
  3102. __name: "management",
  3103. setup(__props) {
  3104. return (_ctx, _cache) => ((0, import_vue318.openBlock)(), (0, import_vue318.createElementBlock)("svg", {
  3105. xmlns: "http://www.w3.org/2000/svg",
  3106. viewBox: "0 0 1024 1024"
  3107. }, [
  3108. (0, import_vue318.createElementVNode)("path", {
  3109. fill: "currentColor",
  3110. d: "M576 128v288l96-96 96 96V128h128v768H320V128zm-448 0h128v768H128z"
  3111. })
  3112. ]));
  3113. }
  3114. }), management_default = _sfc_main159;
  3115. // src/components/map-location.vue
  3116. var import_vue319 = __toESM(require_vue()), import_vue320 = __toESM(require_vue()), _sfc_main160 = /* @__PURE__ */ (0, import_vue319.defineComponent)({
  3117. name: "MapLocation",
  3118. __name: "map-location",
  3119. setup(__props) {
  3120. return (_ctx, _cache) => ((0, import_vue320.openBlock)(), (0, import_vue320.createElementBlock)("svg", {
  3121. xmlns: "http://www.w3.org/2000/svg",
  3122. viewBox: "0 0 1024 1024"
  3123. }, [
  3124. (0, import_vue320.createElementVNode)("path", {
  3125. fill: "currentColor",
  3126. d: "M800 416a288 288 0 1 0-576 0c0 118.144 94.528 272.128 288 456.576C705.472 688.128 800 534.144 800 416M512 960C277.312 746.688 160 565.312 160 416a352 352 0 0 1 704 0c0 149.312-117.312 330.688-352 544"
  3127. }),
  3128. (0, import_vue320.createElementVNode)("path", {
  3129. fill: "currentColor",
  3130. d: "M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256m345.6 192L960 960H672v-64H352v64H64l102.4-256zm-68.928 0H235.328l-76.8 192h706.944z"
  3131. })
  3132. ]));
  3133. }
  3134. }), map_location_default = _sfc_main160;
  3135. // src/components/medal.vue
  3136. var import_vue321 = __toESM(require_vue()), import_vue322 = __toESM(require_vue()), _sfc_main161 = /* @__PURE__ */ (0, import_vue321.defineComponent)({
  3137. name: "Medal",
  3138. __name: "medal",
  3139. setup(__props) {
  3140. return (_ctx, _cache) => ((0, import_vue322.openBlock)(), (0, import_vue322.createElementBlock)("svg", {
  3141. xmlns: "http://www.w3.org/2000/svg",
  3142. viewBox: "0 0 1024 1024"
  3143. }, [
  3144. (0, import_vue322.createElementVNode)("path", {
  3145. fill: "currentColor",
  3146. d: "M512 896a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"
  3147. }),
  3148. (0, import_vue322.createElementVNode)("path", {
  3149. fill: "currentColor",
  3150. d: "M576 128H448v200a286.7 286.7 0 0 1 64-8c19.52 0 40.832 2.688 64 8zm64 0v219.648c24.448 9.088 50.56 20.416 78.4 33.92L757.44 128zm-256 0H266.624l39.04 253.568c27.84-13.504 53.888-24.832 78.336-33.92zM229.312 64h565.376a32 32 0 0 1 31.616 36.864L768 480c-113.792-64-199.104-96-256-96s-142.208 32-256 96l-58.304-379.136A32 32 0 0 1 229.312 64"
  3151. })
  3152. ]));
  3153. }
  3154. }), medal_default = _sfc_main161;
  3155. // src/components/memo.vue
  3156. var import_vue323 = __toESM(require_vue()), import_vue324 = __toESM(require_vue()), _sfc_main162 = /* @__PURE__ */ (0, import_vue323.defineComponent)({
  3157. name: "Memo",
  3158. __name: "memo",
  3159. setup(__props) {
  3160. return (_ctx, _cache) => ((0, import_vue324.openBlock)(), (0, import_vue324.createElementBlock)("svg", {
  3161. xmlns: "http://www.w3.org/2000/svg",
  3162. "xml:space": "preserve",
  3163. viewBox: "0 0 1024 1024"
  3164. }, [
  3165. (0, import_vue324.createElementVNode)("path", {
  3166. fill: "currentColor",
  3167. d: "M480 320h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32"
  3168. }),
  3169. (0, import_vue324.createElementVNode)("path", {
  3170. fill: "currentColor",
  3171. d: "M887.01 72.99C881.01 67 873.34 64 864 64H160c-9.35 0-17.02 3-23.01 8.99C131 78.99 128 86.66 128 96v832c0 9.35 2.99 17.02 8.99 23.01S150.66 960 160 960h704c9.35 0 17.02-2.99 23.01-8.99S896 937.34 896 928V96c0-9.35-3-17.02-8.99-23.01M192 896V128h96v768zm640 0H352V128h480z"
  3172. }),
  3173. (0, import_vue324.createElementVNode)("path", {
  3174. fill: "currentColor",
  3175. d: "M480 512h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32m0 192h192c21.33 0 32-10.67 32-32s-10.67-32-32-32H480c-21.33 0-32 10.67-32 32s10.67 32 32 32"
  3176. })
  3177. ]));
  3178. }
  3179. }), memo_default = _sfc_main162;
  3180. // src/components/menu.vue
  3181. var import_vue325 = __toESM(require_vue()), import_vue326 = __toESM(require_vue()), _sfc_main163 = /* @__PURE__ */ (0, import_vue325.defineComponent)({
  3182. name: "Menu",
  3183. __name: "menu",
  3184. setup(__props) {
  3185. return (_ctx, _cache) => ((0, import_vue326.openBlock)(), (0, import_vue326.createElementBlock)("svg", {
  3186. xmlns: "http://www.w3.org/2000/svg",
  3187. viewBox: "0 0 1024 1024"
  3188. }, [
  3189. (0, import_vue326.createElementVNode)("path", {
  3190. fill: "currentColor",
  3191. d: "M160 448a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32zm448 0a32 32 0 0 1-32-32V160.064a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32V416a32 32 0 0 1-32 32zM160 896a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h256a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32zm448 0a32 32 0 0 1-32-32V608a32 32 0 0 1 32-32h255.936a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32z"
  3192. })
  3193. ]));
  3194. }
  3195. }), menu_default = _sfc_main163;
  3196. // src/components/message-box.vue
  3197. var import_vue327 = __toESM(require_vue()), import_vue328 = __toESM(require_vue()), _sfc_main164 = /* @__PURE__ */ (0, import_vue327.defineComponent)({
  3198. name: "MessageBox",
  3199. __name: "message-box",
  3200. setup(__props) {
  3201. return (_ctx, _cache) => ((0, import_vue328.openBlock)(), (0, import_vue328.createElementBlock)("svg", {
  3202. xmlns: "http://www.w3.org/2000/svg",
  3203. viewBox: "0 0 1024 1024"
  3204. }, [
  3205. (0, import_vue328.createElementVNode)("path", {
  3206. fill: "currentColor",
  3207. d: "M288 384h448v64H288zm96-128h256v64H384zM131.456 512H384v128h256V512h252.544L721.856 192H302.144zM896 576H704v128H320V576H128v256h768zM275.776 128h472.448a32 32 0 0 1 28.608 17.664l179.84 359.552A32 32 0 0 1 960 519.552V864a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V519.552a32 32 0 0 1 3.392-14.336l179.776-359.552A32 32 0 0 1 275.776 128"
  3208. })
  3209. ]));
  3210. }
  3211. }), message_box_default = _sfc_main164;
  3212. // src/components/message.vue
  3213. var import_vue329 = __toESM(require_vue()), import_vue330 = __toESM(require_vue()), _sfc_main165 = /* @__PURE__ */ (0, import_vue329.defineComponent)({
  3214. name: "Message",
  3215. __name: "message",
  3216. setup(__props) {
  3217. return (_ctx, _cache) => ((0, import_vue330.openBlock)(), (0, import_vue330.createElementBlock)("svg", {
  3218. xmlns: "http://www.w3.org/2000/svg",
  3219. viewBox: "0 0 1024 1024"
  3220. }, [
  3221. (0, import_vue330.createElementVNode)("path", {
  3222. fill: "currentColor",
  3223. d: "M128 224v512a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V224zm0-64h768a64 64 0 0 1 64 64v512a128 128 0 0 1-128 128H192A128 128 0 0 1 64 736V224a64 64 0 0 1 64-64"
  3224. }),
  3225. (0, import_vue330.createElementVNode)("path", {
  3226. fill: "currentColor",
  3227. d: "M904 224 656.512 506.88a192 192 0 0 1-289.024 0L120 224zm-698.944 0 210.56 240.704a128 128 0 0 0 192.704 0L818.944 224z"
  3228. })
  3229. ]));
  3230. }
  3231. }), message_default = _sfc_main165;
  3232. // src/components/mic.vue
  3233. var import_vue331 = __toESM(require_vue()), import_vue332 = __toESM(require_vue()), _sfc_main166 = /* @__PURE__ */ (0, import_vue331.defineComponent)({
  3234. name: "Mic",
  3235. __name: "mic",
  3236. setup(__props) {
  3237. return (_ctx, _cache) => ((0, import_vue332.openBlock)(), (0, import_vue332.createElementBlock)("svg", {
  3238. xmlns: "http://www.w3.org/2000/svg",
  3239. viewBox: "0 0 1024 1024"
  3240. }, [
  3241. (0, import_vue332.createElementVNode)("path", {
  3242. fill: "currentColor",
  3243. d: "M480 704h160a64 64 0 0 0 64-64v-32h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-96h-96a32 32 0 0 1 0-64h96v-32a64 64 0 0 0-64-64H384a64 64 0 0 0-64 64v32h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v96h96a32 32 0 0 1 0 64h-96v32a64 64 0 0 0 64 64zm64 64v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768h-96a128 128 0 0 1-128-128V192A128 128 0 0 1 384 64h256a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128z"
  3244. })
  3245. ]));
  3246. }
  3247. }), mic_default = _sfc_main166;
  3248. // src/components/microphone.vue
  3249. var import_vue333 = __toESM(require_vue()), import_vue334 = __toESM(require_vue()), _sfc_main167 = /* @__PURE__ */ (0, import_vue333.defineComponent)({
  3250. name: "Microphone",
  3251. __name: "microphone",
  3252. setup(__props) {
  3253. return (_ctx, _cache) => ((0, import_vue334.openBlock)(), (0, import_vue334.createElementBlock)("svg", {
  3254. xmlns: "http://www.w3.org/2000/svg",
  3255. viewBox: "0 0 1024 1024"
  3256. }, [
  3257. (0, import_vue334.createElementVNode)("path", {
  3258. fill: "currentColor",
  3259. d: "M512 128a128 128 0 0 0-128 128v256a128 128 0 1 0 256 0V256a128 128 0 0 0-128-128m0-64a192 192 0 0 1 192 192v256a192 192 0 1 1-384 0V256A192 192 0 0 1 512 64m-32 832v-64a288 288 0 0 1-288-288v-32a32 32 0 0 1 64 0v32a224 224 0 0 0 224 224h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64z"
  3260. })
  3261. ]));
  3262. }
  3263. }), microphone_default = _sfc_main167;
  3264. // src/components/milk-tea.vue
  3265. var import_vue335 = __toESM(require_vue()), import_vue336 = __toESM(require_vue()), _sfc_main168 = /* @__PURE__ */ (0, import_vue335.defineComponent)({
  3266. name: "MilkTea",
  3267. __name: "milk-tea",
  3268. setup(__props) {
  3269. return (_ctx, _cache) => ((0, import_vue336.openBlock)(), (0, import_vue336.createElementBlock)("svg", {
  3270. xmlns: "http://www.w3.org/2000/svg",
  3271. viewBox: "0 0 1024 1024"
  3272. }, [
  3273. (0, import_vue336.createElementVNode)("path", {
  3274. fill: "currentColor",
  3275. d: "M416 128V96a96 96 0 0 1 96-96h128a32 32 0 1 1 0 64H512a32 32 0 0 0-32 32v32h320a96 96 0 0 1 11.712 191.296l-39.68 581.056A64 64 0 0 1 708.224 960H315.776a64 64 0 0 1-63.872-59.648l-39.616-581.056A96 96 0 0 1 224 128zM276.48 320l39.296 576h392.448l4.8-70.784a224.064 224.064 0 0 1 30.016-439.808L747.52 320zM224 256h576a32 32 0 1 0 0-64H224a32 32 0 0 0 0 64m493.44 503.872 21.12-309.12a160 160 0 0 0-21.12 309.12"
  3276. })
  3277. ]));
  3278. }
  3279. }), milk_tea_default = _sfc_main168;
  3280. // src/components/minus.vue
  3281. var import_vue337 = __toESM(require_vue()), import_vue338 = __toESM(require_vue()), _sfc_main169 = /* @__PURE__ */ (0, import_vue337.defineComponent)({
  3282. name: "Minus",
  3283. __name: "minus",
  3284. setup(__props) {
  3285. return (_ctx, _cache) => ((0, import_vue338.openBlock)(), (0, import_vue338.createElementBlock)("svg", {
  3286. xmlns: "http://www.w3.org/2000/svg",
  3287. viewBox: "0 0 1024 1024"
  3288. }, [
  3289. (0, import_vue338.createElementVNode)("path", {
  3290. fill: "currentColor",
  3291. d: "M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64"
  3292. })
  3293. ]));
  3294. }
  3295. }), minus_default = _sfc_main169;
  3296. // src/components/money.vue
  3297. var import_vue339 = __toESM(require_vue()), import_vue340 = __toESM(require_vue()), _sfc_main170 = /* @__PURE__ */ (0, import_vue339.defineComponent)({
  3298. name: "Money",
  3299. __name: "money",
  3300. setup(__props) {
  3301. return (_ctx, _cache) => ((0, import_vue340.openBlock)(), (0, import_vue340.createElementBlock)("svg", {
  3302. xmlns: "http://www.w3.org/2000/svg",
  3303. viewBox: "0 0 1024 1024"
  3304. }, [
  3305. (0, import_vue340.createElementVNode)("path", {
  3306. fill: "currentColor",
  3307. d: "M256 640v192h640V384H768v-64h150.976c14.272 0 19.456 1.472 24.64 4.288a29.06 29.06 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64v493.952c0 14.272-1.472 19.456-4.288 24.64a29.06 29.06 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H233.024c-14.272 0-19.456-1.472-24.64-4.288a29.06 29.06 0 0 1-12.16-12.096c-2.688-5.184-4.224-10.368-4.224-24.576V640z"
  3308. }),
  3309. (0, import_vue340.createElementVNode)("path", {
  3310. fill: "currentColor",
  3311. d: "M768 192H128v448h640zm64-22.976v493.952c0 14.272-1.472 19.456-4.288 24.64a29.06 29.06 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.06 29.06 0 0 1-12.16-12.096C65.536 682.432 64 677.248 64 663.04V169.024c0-14.272 1.472-19.456 4.288-24.64a29.06 29.06 0 0 1 12.096-12.16C85.568 129.536 90.752 128 104.96 128h685.952c14.272 0 19.456 1.472 24.64 4.288a29.06 29.06 0 0 1 12.16 12.096c2.752 5.184 4.224 10.368 4.224 24.64z"
  3312. }),
  3313. (0, import_vue340.createElementVNode)("path", {
  3314. fill: "currentColor",
  3315. d: "M448 576a160 160 0 1 1 0-320 160 160 0 0 1 0 320m0-64a96 96 0 1 0 0-192 96 96 0 0 0 0 192"
  3316. })
  3317. ]));
  3318. }
  3319. }), money_default = _sfc_main170;
  3320. // src/components/monitor.vue
  3321. var import_vue341 = __toESM(require_vue()), import_vue342 = __toESM(require_vue()), _sfc_main171 = /* @__PURE__ */ (0, import_vue341.defineComponent)({
  3322. name: "Monitor",
  3323. __name: "monitor",
  3324. setup(__props) {
  3325. return (_ctx, _cache) => ((0, import_vue342.openBlock)(), (0, import_vue342.createElementBlock)("svg", {
  3326. xmlns: "http://www.w3.org/2000/svg",
  3327. viewBox: "0 0 1024 1024"
  3328. }, [
  3329. (0, import_vue342.createElementVNode)("path", {
  3330. fill: "currentColor",
  3331. d: "M544 768v128h192a32 32 0 1 1 0 64H288a32 32 0 1 1 0-64h192V768H192A128 128 0 0 1 64 640V256a128 128 0 0 1 128-128h640a128 128 0 0 1 128 128v384a128 128 0 0 1-128 128zM192 192a64 64 0 0 0-64 64v384a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V256a64 64 0 0 0-64-64z"
  3332. })
  3333. ]));
  3334. }
  3335. }), monitor_default = _sfc_main171;
  3336. // src/components/moon-night.vue
  3337. var import_vue343 = __toESM(require_vue()), import_vue344 = __toESM(require_vue()), _sfc_main172 = /* @__PURE__ */ (0, import_vue343.defineComponent)({
  3338. name: "MoonNight",
  3339. __name: "moon-night",
  3340. setup(__props) {
  3341. return (_ctx, _cache) => ((0, import_vue344.openBlock)(), (0, import_vue344.createElementBlock)("svg", {
  3342. xmlns: "http://www.w3.org/2000/svg",
  3343. viewBox: "0 0 1024 1024"
  3344. }, [
  3345. (0, import_vue344.createElementVNode)("path", {
  3346. fill: "currentColor",
  3347. d: "M384 512a448 448 0 0 1 215.872-383.296A384 384 0 0 0 213.76 640h188.8A448.3 448.3 0 0 1 384 512M171.136 704a448 448 0 0 1 636.992-575.296A384 384 0 0 0 499.328 704h-328.32z"
  3348. }),
  3349. (0, import_vue344.createElementVNode)("path", {
  3350. fill: "currentColor",
  3351. d: "M32 640h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32m128 128h384a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m160 127.68 224 .256a32 32 0 0 1 32 32V928a32 32 0 0 1-32 32l-224-.384a32 32 0 0 1-32-32v-.064a32 32 0 0 1 32-32z"
  3352. })
  3353. ]));
  3354. }
  3355. }), moon_night_default = _sfc_main172;
  3356. // src/components/moon.vue
  3357. var import_vue345 = __toESM(require_vue()), import_vue346 = __toESM(require_vue()), _sfc_main173 = /* @__PURE__ */ (0, import_vue345.defineComponent)({
  3358. name: "Moon",
  3359. __name: "moon",
  3360. setup(__props) {
  3361. return (_ctx, _cache) => ((0, import_vue346.openBlock)(), (0, import_vue346.createElementBlock)("svg", {
  3362. xmlns: "http://www.w3.org/2000/svg",
  3363. viewBox: "0 0 1024 1024"
  3364. }, [
  3365. (0, import_vue346.createElementVNode)("path", {
  3366. fill: "currentColor",
  3367. d: "M240.448 240.448a384 384 0 1 0 559.424 525.696 448 448 0 0 1-542.016-542.08 391 391 0 0 0-17.408 16.384m181.056 362.048a384 384 0 0 0 525.632 16.384A448 448 0 1 1 405.056 76.8a384 384 0 0 0 16.448 525.696"
  3368. })
  3369. ]));
  3370. }
  3371. }), moon_default = _sfc_main173;
  3372. // src/components/more-filled.vue
  3373. var import_vue347 = __toESM(require_vue()), import_vue348 = __toESM(require_vue()), _sfc_main174 = /* @__PURE__ */ (0, import_vue347.defineComponent)({
  3374. name: "MoreFilled",
  3375. __name: "more-filled",
  3376. setup(__props) {
  3377. return (_ctx, _cache) => ((0, import_vue348.openBlock)(), (0, import_vue348.createElementBlock)("svg", {
  3378. xmlns: "http://www.w3.org/2000/svg",
  3379. viewBox: "0 0 1024 1024"
  3380. }, [
  3381. (0, import_vue348.createElementVNode)("path", {
  3382. fill: "currentColor",
  3383. d: "M176 416a112 112 0 1 1 0 224 112 112 0 0 1 0-224m336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224m336 0a112 112 0 1 1 0 224 112 112 0 0 1 0-224"
  3384. })
  3385. ]));
  3386. }
  3387. }), more_filled_default = _sfc_main174;
  3388. // src/components/more.vue
  3389. var import_vue349 = __toESM(require_vue()), import_vue350 = __toESM(require_vue()), _sfc_main175 = /* @__PURE__ */ (0, import_vue349.defineComponent)({
  3390. name: "More",
  3391. __name: "more",
  3392. setup(__props) {
  3393. return (_ctx, _cache) => ((0, import_vue350.openBlock)(), (0, import_vue350.createElementBlock)("svg", {
  3394. xmlns: "http://www.w3.org/2000/svg",
  3395. viewBox: "0 0 1024 1024"
  3396. }, [
  3397. (0, import_vue350.createElementVNode)("path", {
  3398. fill: "currentColor",
  3399. d: "M176 416a112 112 0 1 0 0 224 112 112 0 0 0 0-224m0 64a48 48 0 1 1 0 96 48 48 0 0 1 0-96m336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224m0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96m336-64a112 112 0 1 1 0 224 112 112 0 0 1 0-224m0 64a48 48 0 1 0 0 96 48 48 0 0 0 0-96"
  3400. })
  3401. ]));
  3402. }
  3403. }), more_default = _sfc_main175;
  3404. // src/components/mostly-cloudy.vue
  3405. var import_vue351 = __toESM(require_vue()), import_vue352 = __toESM(require_vue()), _sfc_main176 = /* @__PURE__ */ (0, import_vue351.defineComponent)({
  3406. name: "MostlyCloudy",
  3407. __name: "mostly-cloudy",
  3408. setup(__props) {
  3409. return (_ctx, _cache) => ((0, import_vue352.openBlock)(), (0, import_vue352.createElementBlock)("svg", {
  3410. xmlns: "http://www.w3.org/2000/svg",
  3411. viewBox: "0 0 1024 1024"
  3412. }, [
  3413. (0, import_vue352.createElementVNode)("path", {
  3414. fill: "currentColor",
  3415. d: "M737.216 357.952 704 349.824l-11.776-32a192.064 192.064 0 0 0-367.424 23.04l-8.96 39.04-39.04 8.96A192.064 192.064 0 0 0 320 768h368a207.81 207.81 0 0 0 207.808-208 208.32 208.32 0 0 0-158.592-202.048m15.168-62.208A272.32 272.32 0 0 1 959.744 560a271.81 271.81 0 0 1-271.552 272H320a256 256 0 0 1-57.536-505.536 256.128 256.128 0 0 1 489.92-30.72"
  3416. })
  3417. ]));
  3418. }
  3419. }), mostly_cloudy_default = _sfc_main176;
  3420. // src/components/mouse.vue
  3421. var import_vue353 = __toESM(require_vue()), import_vue354 = __toESM(require_vue()), _sfc_main177 = /* @__PURE__ */ (0, import_vue353.defineComponent)({
  3422. name: "Mouse",
  3423. __name: "mouse",
  3424. setup(__props) {
  3425. return (_ctx, _cache) => ((0, import_vue354.openBlock)(), (0, import_vue354.createElementBlock)("svg", {
  3426. xmlns: "http://www.w3.org/2000/svg",
  3427. viewBox: "0 0 1024 1024"
  3428. }, [
  3429. (0, import_vue354.createElementVNode)("path", {
  3430. fill: "currentColor",
  3431. d: "M438.144 256c-68.352 0-92.736 4.672-117.76 18.112q-30.144 16.128-46.272 46.272C260.672 345.408 256 369.792 256 438.144v275.712c0 68.352 4.672 92.736 18.112 117.76q16.128 30.144 46.272 46.272C345.408 891.328 369.792 896 438.144 896h147.712c68.352 0 92.736-4.672 117.76-18.112q30.144-16.128 46.272-46.272C763.328 806.592 768 782.208 768 713.856V438.144c0-68.352-4.672-92.736-18.112-117.76a110.46 110.46 0 0 0-46.272-46.272C678.592 260.672 654.208 256 585.856 256zm0-64h147.712c85.568 0 116.608 8.96 147.904 25.6 31.36 16.768 55.872 41.344 72.576 72.64C823.104 321.536 832 352.576 832 438.08v275.84c0 85.504-8.96 116.544-25.6 147.84a174.46 174.46 0 0 1-72.64 72.576C702.464 951.104 671.424 960 585.92 960H438.08c-85.504 0-116.544-8.96-147.84-25.6a174.46 174.46 0 0 1-72.64-72.704c-16.768-31.296-25.664-62.336-25.664-147.84v-275.84c0-85.504 8.96-116.544 25.6-147.84a174.46 174.46 0 0 1 72.768-72.576c31.232-16.704 62.272-25.6 147.776-25.6z"
  3432. }),
  3433. (0, import_vue354.createElementVNode)("path", {
  3434. fill: "currentColor",
  3435. d: "M512 320q32 0 32 32v128q0 32-32 32t-32-32V352q0-32 32-32m32-96a32 32 0 0 1-64 0v-64a32 32 0 0 0-32-32h-96a32 32 0 0 1 0-64h96a96 96 0 0 1 96 96z"
  3436. })
  3437. ]));
  3438. }
  3439. }), mouse_default = _sfc_main177;
  3440. // src/components/mug.vue
  3441. var import_vue355 = __toESM(require_vue()), import_vue356 = __toESM(require_vue()), _sfc_main178 = /* @__PURE__ */ (0, import_vue355.defineComponent)({
  3442. name: "Mug",
  3443. __name: "mug",
  3444. setup(__props) {
  3445. return (_ctx, _cache) => ((0, import_vue356.openBlock)(), (0, import_vue356.createElementBlock)("svg", {
  3446. xmlns: "http://www.w3.org/2000/svg",
  3447. viewBox: "0 0 1024 1024"
  3448. }, [
  3449. (0, import_vue356.createElementVNode)("path", {
  3450. fill: "currentColor",
  3451. d: "M736 800V160H160v640a64 64 0 0 0 64 64h448a64 64 0 0 0 64-64m64-544h63.552a96 96 0 0 1 96 96v224a96 96 0 0 1-96 96H800v128a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V128a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 64v288h63.552a32 32 0 0 0 32-32V352a32 32 0 0 0-32-32z"
  3452. })
  3453. ]));
  3454. }
  3455. }), mug_default = _sfc_main178;
  3456. // src/components/mute-notification.vue
  3457. var import_vue357 = __toESM(require_vue()), import_vue358 = __toESM(require_vue()), _sfc_main179 = /* @__PURE__ */ (0, import_vue357.defineComponent)({
  3458. name: "MuteNotification",
  3459. __name: "mute-notification",
  3460. setup(__props) {
  3461. return (_ctx, _cache) => ((0, import_vue358.openBlock)(), (0, import_vue358.createElementBlock)("svg", {
  3462. xmlns: "http://www.w3.org/2000/svg",
  3463. viewBox: "0 0 1024 1024"
  3464. }, [
  3465. (0, import_vue358.createElementVNode)("path", {
  3466. fill: "currentColor",
  3467. d: "m241.216 832 63.616-64H768V448c0-42.368-10.24-82.304-28.48-117.504l46.912-47.232C815.36 331.392 832 387.84 832 448v320h96a32 32 0 1 1 0 64zm-90.24 0H96a32 32 0 1 1 0-64h96V448a320.13 320.13 0 0 1 256-313.6V128a64 64 0 1 1 128 0v6.4a319.55 319.55 0 0 1 171.648 97.088l-45.184 45.44A256 256 0 0 0 256 448v278.336L151.04 832zM448 896h128a64 64 0 0 1-128 0"
  3468. }),
  3469. (0, import_vue358.createElementVNode)("path", {
  3470. fill: "currentColor",
  3471. d: "M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056z"
  3472. })
  3473. ]));
  3474. }
  3475. }), mute_notification_default = _sfc_main179;
  3476. // src/components/mute.vue
  3477. var import_vue359 = __toESM(require_vue()), import_vue360 = __toESM(require_vue()), _sfc_main180 = /* @__PURE__ */ (0, import_vue359.defineComponent)({
  3478. name: "Mute",
  3479. __name: "mute",
  3480. setup(__props) {
  3481. return (_ctx, _cache) => ((0, import_vue360.openBlock)(), (0, import_vue360.createElementBlock)("svg", {
  3482. xmlns: "http://www.w3.org/2000/svg",
  3483. viewBox: "0 0 1024 1024"
  3484. }, [
  3485. (0, import_vue360.createElementVNode)("path", {
  3486. fill: "currentColor",
  3487. d: "m412.16 592.128-45.44 45.44A191.23 191.23 0 0 1 320 512V256a192 192 0 1 1 384 0v44.352l-64 64V256a128 128 0 1 0-256 0v256c0 30.336 10.56 58.24 28.16 80.128m51.968 38.592A128 128 0 0 0 640 512v-57.152l64-64V512a192 192 0 0 1-287.68 166.528zM314.88 779.968l46.144-46.08A223 223 0 0 0 480 768h64a224 224 0 0 0 224-224v-32a32 32 0 1 1 64 0v32a288 288 0 0 1-288 288v64h64a32 32 0 1 1 0 64H416a32 32 0 1 1 0-64h64v-64c-61.44 0-118.4-19.2-165.12-52.032M266.752 737.6A286.98 286.98 0 0 1 192 544v-32a32 32 0 0 1 64 0v32c0 56.832 21.184 108.8 56.064 148.288z"
  3488. }),
  3489. (0, import_vue360.createElementVNode)("path", {
  3490. fill: "currentColor",
  3491. d: "M150.72 859.072a32 32 0 0 1-45.44-45.056l704-708.544a32 32 0 0 1 45.44 45.056z"
  3492. })
  3493. ]));
  3494. }
  3495. }), mute_default = _sfc_main180;
  3496. // src/components/no-smoking.vue
  3497. var import_vue361 = __toESM(require_vue()), import_vue362 = __toESM(require_vue()), _sfc_main181 = /* @__PURE__ */ (0, import_vue361.defineComponent)({
  3498. name: "NoSmoking",
  3499. __name: "no-smoking",
  3500. setup(__props) {
  3501. return (_ctx, _cache) => ((0, import_vue362.openBlock)(), (0, import_vue362.createElementBlock)("svg", {
  3502. xmlns: "http://www.w3.org/2000/svg",
  3503. viewBox: "0 0 1024 1024"
  3504. }, [
  3505. (0, import_vue362.createElementVNode)("path", {
  3506. fill: "currentColor",
  3507. d: "M440.256 576H256v128h56.256l-64 64H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32h280.256zm143.488 128H704V583.744L775.744 512H928a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H519.744zM768 576v128h128V576zm-29.696-207.552 45.248 45.248-497.856 497.856-45.248-45.248zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"
  3508. })
  3509. ]));
  3510. }
  3511. }), no_smoking_default = _sfc_main181;
  3512. // src/components/notebook.vue
  3513. var import_vue363 = __toESM(require_vue()), import_vue364 = __toESM(require_vue()), _sfc_main182 = /* @__PURE__ */ (0, import_vue363.defineComponent)({
  3514. name: "Notebook",
  3515. __name: "notebook",
  3516. setup(__props) {
  3517. return (_ctx, _cache) => ((0, import_vue364.openBlock)(), (0, import_vue364.createElementBlock)("svg", {
  3518. xmlns: "http://www.w3.org/2000/svg",
  3519. viewBox: "0 0 1024 1024"
  3520. }, [
  3521. (0, import_vue364.createElementVNode)("path", {
  3522. fill: "currentColor",
  3523. d: "M192 128v768h640V128zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"
  3524. }),
  3525. (0, import_vue364.createElementVNode)("path", {
  3526. fill: "currentColor",
  3527. d: "M672 128h64v768h-64zM96 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32m0 192h128q32 0 32 32t-32 32H96q-32 0-32-32t32-32"
  3528. })
  3529. ]));
  3530. }
  3531. }), notebook_default = _sfc_main182;
  3532. // src/components/notification.vue
  3533. var import_vue365 = __toESM(require_vue()), import_vue366 = __toESM(require_vue()), _sfc_main183 = /* @__PURE__ */ (0, import_vue365.defineComponent)({
  3534. name: "Notification",
  3535. __name: "notification",
  3536. setup(__props) {
  3537. return (_ctx, _cache) => ((0, import_vue366.openBlock)(), (0, import_vue366.createElementBlock)("svg", {
  3538. xmlns: "http://www.w3.org/2000/svg",
  3539. viewBox: "0 0 1024 1024"
  3540. }, [
  3541. (0, import_vue366.createElementVNode)("path", {
  3542. fill: "currentColor",
  3543. d: "M512 128v64H256a64 64 0 0 0-64 64v512a64 64 0 0 0 64 64h512a64 64 0 0 0 64-64V512h64v256a128 128 0 0 1-128 128H256a128 128 0 0 1-128-128V256a128 128 0 0 1 128-128z"
  3544. }),
  3545. (0, import_vue366.createElementVNode)("path", {
  3546. fill: "currentColor",
  3547. d: "M768 384a128 128 0 1 0 0-256 128 128 0 0 0 0 256m0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384"
  3548. })
  3549. ]));
  3550. }
  3551. }), notification_default = _sfc_main183;
  3552. // src/components/odometer.vue
  3553. var import_vue367 = __toESM(require_vue()), import_vue368 = __toESM(require_vue()), _sfc_main184 = /* @__PURE__ */ (0, import_vue367.defineComponent)({
  3554. name: "Odometer",
  3555. __name: "odometer",
  3556. setup(__props) {
  3557. return (_ctx, _cache) => ((0, import_vue368.openBlock)(), (0, import_vue368.createElementBlock)("svg", {
  3558. xmlns: "http://www.w3.org/2000/svg",
  3559. viewBox: "0 0 1024 1024"
  3560. }, [
  3561. (0, import_vue368.createElementVNode)("path", {
  3562. fill: "currentColor",
  3563. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  3564. }),
  3565. (0, import_vue368.createElementVNode)("path", {
  3566. fill: "currentColor",
  3567. d: "M192 512a320 320 0 1 1 640 0 32 32 0 1 1-64 0 256 256 0 1 0-512 0 32 32 0 0 1-64 0"
  3568. }),
  3569. (0, import_vue368.createElementVNode)("path", {
  3570. fill: "currentColor",
  3571. d: "M570.432 627.84A96 96 0 1 1 509.568 608l60.992-187.776A32 32 0 1 1 631.424 440l-60.992 187.776zM502.08 734.464a32 32 0 1 0 19.84-60.928 32 32 0 0 0-19.84 60.928"
  3572. })
  3573. ]));
  3574. }
  3575. }), odometer_default = _sfc_main184;
  3576. // src/components/office-building.vue
  3577. var import_vue369 = __toESM(require_vue()), import_vue370 = __toESM(require_vue()), _sfc_main185 = /* @__PURE__ */ (0, import_vue369.defineComponent)({
  3578. name: "OfficeBuilding",
  3579. __name: "office-building",
  3580. setup(__props) {
  3581. return (_ctx, _cache) => ((0, import_vue370.openBlock)(), (0, import_vue370.createElementBlock)("svg", {
  3582. xmlns: "http://www.w3.org/2000/svg",
  3583. viewBox: "0 0 1024 1024"
  3584. }, [
  3585. (0, import_vue370.createElementVNode)("path", {
  3586. fill: "currentColor",
  3587. d: "M192 128v704h384V128zm-32-64h448a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"
  3588. }),
  3589. (0, import_vue370.createElementVNode)("path", {
  3590. fill: "currentColor",
  3591. d: "M256 256h256v64H256zm0 192h256v64H256zm0 192h256v64H256zm384-128h128v64H640zm0 128h128v64H640zM64 832h896v64H64z"
  3592. }),
  3593. (0, import_vue370.createElementVNode)("path", {
  3594. fill: "currentColor",
  3595. d: "M640 384v448h192V384zm-32-64h256a32 32 0 0 1 32 32v512a32 32 0 0 1-32 32H608a32 32 0 0 1-32-32V352a32 32 0 0 1 32-32"
  3596. })
  3597. ]));
  3598. }
  3599. }), office_building_default = _sfc_main185;
  3600. // src/components/open.vue
  3601. var import_vue371 = __toESM(require_vue()), import_vue372 = __toESM(require_vue()), _sfc_main186 = /* @__PURE__ */ (0, import_vue371.defineComponent)({
  3602. name: "Open",
  3603. __name: "open",
  3604. setup(__props) {
  3605. return (_ctx, _cache) => ((0, import_vue372.openBlock)(), (0, import_vue372.createElementBlock)("svg", {
  3606. xmlns: "http://www.w3.org/2000/svg",
  3607. viewBox: "0 0 1024 1024"
  3608. }, [
  3609. (0, import_vue372.createElementVNode)("path", {
  3610. fill: "currentColor",
  3611. d: "M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36"
  3612. }),
  3613. (0, import_vue372.createElementVNode)("path", {
  3614. fill: "currentColor",
  3615. d: "M694.044 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454m0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088"
  3616. })
  3617. ]));
  3618. }
  3619. }), open_default = _sfc_main186;
  3620. // src/components/operation.vue
  3621. var import_vue373 = __toESM(require_vue()), import_vue374 = __toESM(require_vue()), _sfc_main187 = /* @__PURE__ */ (0, import_vue373.defineComponent)({
  3622. name: "Operation",
  3623. __name: "operation",
  3624. setup(__props) {
  3625. return (_ctx, _cache) => ((0, import_vue374.openBlock)(), (0, import_vue374.createElementBlock)("svg", {
  3626. xmlns: "http://www.w3.org/2000/svg",
  3627. viewBox: "0 0 1024 1024"
  3628. }, [
  3629. (0, import_vue374.createElementVNode)("path", {
  3630. fill: "currentColor",
  3631. d: "M389.44 768a96.064 96.064 0 0 1 181.12 0H896v64H570.56a96.064 96.064 0 0 1-181.12 0H128v-64zm192-288a96.064 96.064 0 0 1 181.12 0H896v64H762.56a96.064 96.064 0 0 1-181.12 0H128v-64zm-320-288a96.064 96.064 0 0 1 181.12 0H896v64H442.56a96.064 96.064 0 0 1-181.12 0H128v-64z"
  3632. })
  3633. ]));
  3634. }
  3635. }), operation_default = _sfc_main187;
  3636. // src/components/opportunity.vue
  3637. var import_vue375 = __toESM(require_vue()), import_vue376 = __toESM(require_vue()), _sfc_main188 = /* @__PURE__ */ (0, import_vue375.defineComponent)({
  3638. name: "Opportunity",
  3639. __name: "opportunity",
  3640. setup(__props) {
  3641. return (_ctx, _cache) => ((0, import_vue376.openBlock)(), (0, import_vue376.createElementBlock)("svg", {
  3642. xmlns: "http://www.w3.org/2000/svg",
  3643. viewBox: "0 0 1024 1024"
  3644. }, [
  3645. (0, import_vue376.createElementVNode)("path", {
  3646. fill: "currentColor",
  3647. d: "M384 960v-64h192.064v64zm448-544a350.66 350.66 0 0 1-128.32 271.424C665.344 719.04 640 763.776 640 813.504V832H320v-14.336c0-48-19.392-95.36-57.216-124.992a351.55 351.55 0 0 1-128.448-344.256c25.344-136.448 133.888-248.128 269.76-276.48A352.384 352.384 0 0 1 832 416m-544 32c0-132.288 75.904-224 192-224v-64c-154.432 0-256 122.752-256 288z"
  3648. })
  3649. ]));
  3650. }
  3651. }), opportunity_default = _sfc_main188;
  3652. // src/components/orange.vue
  3653. var import_vue377 = __toESM(require_vue()), import_vue378 = __toESM(require_vue()), _sfc_main189 = /* @__PURE__ */ (0, import_vue377.defineComponent)({
  3654. name: "Orange",
  3655. __name: "orange",
  3656. setup(__props) {
  3657. return (_ctx, _cache) => ((0, import_vue378.openBlock)(), (0, import_vue378.createElementBlock)("svg", {
  3658. xmlns: "http://www.w3.org/2000/svg",
  3659. viewBox: "0 0 1024 1024"
  3660. }, [
  3661. (0, import_vue378.createElementVNode)("path", {
  3662. fill: "currentColor",
  3663. d: "M544 894.72a382.34 382.34 0 0 0 215.936-89.472L577.024 622.272c-10.24 6.016-21.248 10.688-33.024 13.696v258.688zm261.248-134.784A382.34 382.34 0 0 0 894.656 544H635.968c-3.008 11.776-7.68 22.848-13.696 33.024zM894.656 480a382.34 382.34 0 0 0-89.408-215.936L622.272 446.976c6.016 10.24 10.688 21.248 13.696 33.024zm-134.72-261.248A382.34 382.34 0 0 0 544 129.344v258.688c11.776 3.008 22.848 7.68 33.024 13.696zM480 129.344a382.34 382.34 0 0 0-215.936 89.408l182.912 182.976c10.24-6.016 21.248-10.688 33.024-13.696zm-261.248 134.72A382.34 382.34 0 0 0 129.344 480h258.688c3.008-11.776 7.68-22.848 13.696-33.024zM129.344 544a382.34 382.34 0 0 0 89.408 215.936l182.976-182.912A127.2 127.2 0 0 1 388.032 544zm134.72 261.248A382.34 382.34 0 0 0 480 894.656V635.968a127.2 127.2 0 0 1-33.024-13.696zM512 960a448 448 0 1 1 0-896 448 448 0 0 1 0 896m0-384a64 64 0 1 0 0-128 64 64 0 0 0 0 128"
  3664. })
  3665. ]));
  3666. }
  3667. }), orange_default = _sfc_main189;
  3668. // src/components/paperclip.vue
  3669. var import_vue379 = __toESM(require_vue()), import_vue380 = __toESM(require_vue()), _sfc_main190 = /* @__PURE__ */ (0, import_vue379.defineComponent)({
  3670. name: "Paperclip",
  3671. __name: "paperclip",
  3672. setup(__props) {
  3673. return (_ctx, _cache) => ((0, import_vue380.openBlock)(), (0, import_vue380.createElementBlock)("svg", {
  3674. xmlns: "http://www.w3.org/2000/svg",
  3675. viewBox: "0 0 1024 1024"
  3676. }, [
  3677. (0, import_vue380.createElementVNode)("path", {
  3678. fill: "currentColor",
  3679. d: "M602.496 240.448A192 192 0 1 1 874.048 512l-316.8 316.8A256 256 0 0 1 195.2 466.752L602.496 59.456l45.248 45.248L240.448 512A192 192 0 0 0 512 783.552l316.8-316.8a128 128 0 1 0-181.056-181.056L353.6 579.904a32 32 0 1 0 45.248 45.248l294.144-294.144 45.312 45.248L444.096 670.4a96 96 0 1 1-135.744-135.744z"
  3680. })
  3681. ]));
  3682. }
  3683. }), paperclip_default = _sfc_main190;
  3684. // src/components/partly-cloudy.vue
  3685. var import_vue381 = __toESM(require_vue()), import_vue382 = __toESM(require_vue()), _sfc_main191 = /* @__PURE__ */ (0, import_vue381.defineComponent)({
  3686. name: "PartlyCloudy",
  3687. __name: "partly-cloudy",
  3688. setup(__props) {
  3689. return (_ctx, _cache) => ((0, import_vue382.openBlock)(), (0, import_vue382.createElementBlock)("svg", {
  3690. xmlns: "http://www.w3.org/2000/svg",
  3691. viewBox: "0 0 1024 1024"
  3692. }, [
  3693. (0, import_vue382.createElementVNode)("path", {
  3694. fill: "currentColor",
  3695. d: "M598.4 895.872H328.192a256 256 0 0 1-34.496-510.528A352 352 0 1 1 598.4 895.872m-271.36-64h272.256a288 288 0 1 0-248.512-417.664L335.04 445.44l-34.816 3.584a192 192 0 0 0 26.88 382.848z"
  3696. }),
  3697. (0, import_vue382.createElementVNode)("path", {
  3698. fill: "currentColor",
  3699. d: "M139.84 501.888a256 256 0 1 1 417.856-277.12c-17.728 2.176-38.208 8.448-61.504 18.816A192 192 0 1 0 189.12 460.48a6004 6004 0 0 0-49.28 41.408"
  3700. })
  3701. ]));
  3702. }
  3703. }), partly_cloudy_default = _sfc_main191;
  3704. // src/components/pear.vue
  3705. var import_vue383 = __toESM(require_vue()), import_vue384 = __toESM(require_vue()), _sfc_main192 = /* @__PURE__ */ (0, import_vue383.defineComponent)({
  3706. name: "Pear",
  3707. __name: "pear",
  3708. setup(__props) {
  3709. return (_ctx, _cache) => ((0, import_vue384.openBlock)(), (0, import_vue384.createElementBlock)("svg", {
  3710. xmlns: "http://www.w3.org/2000/svg",
  3711. viewBox: "0 0 1024 1024"
  3712. }, [
  3713. (0, import_vue384.createElementVNode)("path", {
  3714. fill: "currentColor",
  3715. d: "M542.336 258.816a443 443 0 0 0-9.024 25.088 32 32 0 1 1-60.8-20.032l1.088-3.328a162.69 162.69 0 0 0-122.048 131.392l-17.088 102.72-20.736 15.36C256.192 552.704 224 610.88 224 672c0 120.576 126.4 224 288 224s288-103.424 288-224c0-61.12-32.192-119.296-89.728-161.92l-20.736-15.424-17.088-102.72a162.69 162.69 0 0 0-130.112-133.12m-40.128-66.56c7.936-15.552 16.576-30.08 25.92-43.776 23.296-33.92 49.408-59.776 78.528-77.12a32 32 0 1 1 32.704 55.04c-20.544 12.224-40.064 31.552-58.432 58.304a317 317 0 0 0-9.792 15.104 226.69 226.69 0 0 1 164.48 181.568l12.8 77.248C819.456 511.36 864 587.392 864 672c0 159.04-157.568 288-352 288S160 831.04 160 672c0-84.608 44.608-160.64 115.584-213.376l12.8-77.248a226.624 226.624 0 0 1 213.76-189.184z"
  3716. })
  3717. ]));
  3718. }
  3719. }), pear_default = _sfc_main192;
  3720. // src/components/phone-filled.vue
  3721. var import_vue385 = __toESM(require_vue()), import_vue386 = __toESM(require_vue()), _sfc_main193 = /* @__PURE__ */ (0, import_vue385.defineComponent)({
  3722. name: "PhoneFilled",
  3723. __name: "phone-filled",
  3724. setup(__props) {
  3725. return (_ctx, _cache) => ((0, import_vue386.openBlock)(), (0, import_vue386.createElementBlock)("svg", {
  3726. xmlns: "http://www.w3.org/2000/svg",
  3727. viewBox: "0 0 1024 1024"
  3728. }, [
  3729. (0, import_vue386.createElementVNode)("path", {
  3730. fill: "currentColor",
  3731. d: "M199.232 125.568 90.624 379.008a32 32 0 0 0 6.784 35.2l512.384 512.384a32 32 0 0 0 35.2 6.784l253.44-108.608a32 32 0 0 0 10.048-52.032L769.6 633.92a32 32 0 0 0-36.928-5.952l-130.176 65.088-271.488-271.552 65.024-130.176a32 32 0 0 0-5.952-36.928L251.2 115.52a32 32 0 0 0-51.968 10.048"
  3732. })
  3733. ]));
  3734. }
  3735. }), phone_filled_default = _sfc_main193;
  3736. // src/components/phone.vue
  3737. var import_vue387 = __toESM(require_vue()), import_vue388 = __toESM(require_vue()), _sfc_main194 = /* @__PURE__ */ (0, import_vue387.defineComponent)({
  3738. name: "Phone",
  3739. __name: "phone",
  3740. setup(__props) {
  3741. return (_ctx, _cache) => ((0, import_vue388.openBlock)(), (0, import_vue388.createElementBlock)("svg", {
  3742. xmlns: "http://www.w3.org/2000/svg",
  3743. viewBox: "0 0 1024 1024"
  3744. }, [
  3745. (0, import_vue388.createElementVNode)("path", {
  3746. fill: "currentColor",
  3747. d: "M79.36 432.256 591.744 944.64a32 32 0 0 0 35.2 6.784l253.44-108.544a32 32 0 0 0 9.984-52.032l-153.856-153.92a32 32 0 0 0-36.928-6.016l-69.888 34.944L358.08 394.24l35.008-69.888a32 32 0 0 0-5.952-36.928L233.152 133.568a32 32 0 0 0-52.032 10.048L72.512 397.056a32 32 0 0 0 6.784 35.2zm60.48-29.952 81.536-190.08L325.568 316.48l-24.64 49.216-20.608 41.216 32.576 32.64 271.552 271.552 32.64 32.64 41.216-20.672 49.28-24.576 104.192 104.128-190.08 81.472zM512 320v-64a256 256 0 0 1 256 256h-64a192 192 0 0 0-192-192m0-192V64a448 448 0 0 1 448 448h-64a384 384 0 0 0-384-384"
  3748. })
  3749. ]));
  3750. }
  3751. }), phone_default = _sfc_main194;
  3752. // src/components/picture-filled.vue
  3753. var import_vue389 = __toESM(require_vue()), import_vue390 = __toESM(require_vue()), _sfc_main195 = /* @__PURE__ */ (0, import_vue389.defineComponent)({
  3754. name: "PictureFilled",
  3755. __name: "picture-filled",
  3756. setup(__props) {
  3757. return (_ctx, _cache) => ((0, import_vue390.openBlock)(), (0, import_vue390.createElementBlock)("svg", {
  3758. xmlns: "http://www.w3.org/2000/svg",
  3759. viewBox: "0 0 1024 1024"
  3760. }, [
  3761. (0, import_vue390.createElementVNode)("path", {
  3762. fill: "currentColor",
  3763. d: "M96 896a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h832a32 32 0 0 1 32 32v704a32 32 0 0 1-32 32zm315.52-228.48-68.928-68.928a32 32 0 0 0-45.248 0L128 768.064h778.688l-242.112-290.56a32 32 0 0 0-49.216 0L458.752 665.408a32 32 0 0 1-47.232 2.112M256 384a96 96 0 1 0 192.064-.064A96 96 0 0 0 256 384"
  3764. })
  3765. ]));
  3766. }
  3767. }), picture_filled_default = _sfc_main195;
  3768. // src/components/picture-rounded.vue
  3769. var import_vue391 = __toESM(require_vue()), import_vue392 = __toESM(require_vue()), _sfc_main196 = /* @__PURE__ */ (0, import_vue391.defineComponent)({
  3770. name: "PictureRounded",
  3771. __name: "picture-rounded",
  3772. setup(__props) {
  3773. return (_ctx, _cache) => ((0, import_vue392.openBlock)(), (0, import_vue392.createElementBlock)("svg", {
  3774. xmlns: "http://www.w3.org/2000/svg",
  3775. viewBox: "0 0 1024 1024"
  3776. }, [
  3777. (0, import_vue392.createElementVNode)("path", {
  3778. fill: "currentColor",
  3779. d: "M512 128a384 384 0 1 0 0 768 384 384 0 0 0 0-768m0-64a448 448 0 1 1 0 896 448 448 0 0 1 0-896"
  3780. }),
  3781. (0, import_vue392.createElementVNode)("path", {
  3782. fill: "currentColor",
  3783. d: "M640 288q64 0 64 64t-64 64-64-64 64-64M214.656 790.656l-45.312-45.312 185.664-185.6a96 96 0 0 1 123.712-10.24l138.24 98.688a32 32 0 0 0 39.872-2.176L906.688 422.4l42.624 47.744L699.52 693.696a96 96 0 0 1-119.808 6.592l-138.24-98.752a32 32 0 0 0-41.152 3.456l-185.664 185.6z"
  3784. })
  3785. ]));
  3786. }
  3787. }), picture_rounded_default = _sfc_main196;
  3788. // src/components/picture.vue
  3789. var import_vue393 = __toESM(require_vue()), import_vue394 = __toESM(require_vue()), _sfc_main197 = /* @__PURE__ */ (0, import_vue393.defineComponent)({
  3790. name: "Picture",
  3791. __name: "picture",
  3792. setup(__props) {
  3793. return (_ctx, _cache) => ((0, import_vue394.openBlock)(), (0, import_vue394.createElementBlock)("svg", {
  3794. xmlns: "http://www.w3.org/2000/svg",
  3795. viewBox: "0 0 1024 1024"
  3796. }, [
  3797. (0, import_vue394.createElementVNode)("path", {
  3798. fill: "currentColor",
  3799. d: "M160 160v704h704V160zm-32-64h768a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H128a32 32 0 0 1-32-32V128a32 32 0 0 1 32-32"
  3800. }),
  3801. (0, import_vue394.createElementVNode)("path", {
  3802. fill: "currentColor",
  3803. d: "M384 288q64 0 64 64t-64 64-64-64 64-64M185.408 876.992l-50.816-38.912L350.72 556.032a96 96 0 0 1 134.592-17.856l1.856 1.472 122.88 99.136a32 32 0 0 0 44.992-4.864l216-269.888 49.92 39.936-215.808 269.824-.256.32a96 96 0 0 1-135.04 14.464l-122.88-99.072-.64-.512a32 32 0 0 0-44.8 5.952z"
  3804. })
  3805. ]));
  3806. }
  3807. }), picture_default = _sfc_main197;
  3808. // src/components/pie-chart.vue
  3809. var import_vue395 = __toESM(require_vue()), import_vue396 = __toESM(require_vue()), _sfc_main198 = /* @__PURE__ */ (0, import_vue395.defineComponent)({
  3810. name: "PieChart",
  3811. __name: "pie-chart",
  3812. setup(__props) {
  3813. return (_ctx, _cache) => ((0, import_vue396.openBlock)(), (0, import_vue396.createElementBlock)("svg", {
  3814. xmlns: "http://www.w3.org/2000/svg",
  3815. viewBox: "0 0 1024 1024"
  3816. }, [
  3817. (0, import_vue396.createElementVNode)("path", {
  3818. fill: "currentColor",
  3819. d: "M448 68.48v64.832A384.128 384.128 0 0 0 512 896a384.13 384.13 0 0 0 378.688-320h64.768A448.128 448.128 0 0 1 64 512 448.13 448.13 0 0 1 448 68.48"
  3820. }),
  3821. (0, import_vue396.createElementVNode)("path", {
  3822. fill: "currentColor",
  3823. d: "M576 97.28V448h350.72A384.064 384.064 0 0 0 576 97.28M512 64V33.152A448 448 0 0 1 990.848 512H512z"
  3824. })
  3825. ]));
  3826. }
  3827. }), pie_chart_default = _sfc_main198;
  3828. // src/components/place.vue
  3829. var import_vue397 = __toESM(require_vue()), import_vue398 = __toESM(require_vue()), _sfc_main199 = /* @__PURE__ */ (0, import_vue397.defineComponent)({
  3830. name: "Place",
  3831. __name: "place",
  3832. setup(__props) {
  3833. return (_ctx, _cache) => ((0, import_vue398.openBlock)(), (0, import_vue398.createElementBlock)("svg", {
  3834. xmlns: "http://www.w3.org/2000/svg",
  3835. viewBox: "0 0 1024 1024"
  3836. }, [
  3837. (0, import_vue398.createElementVNode)("path", {
  3838. fill: "currentColor",
  3839. d: "M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512"
  3840. }),
  3841. (0, import_vue398.createElementVNode)("path", {
  3842. fill: "currentColor",
  3843. d: "M512 512a32 32 0 0 1 32 32v256a32 32 0 1 1-64 0V544a32 32 0 0 1 32-32"
  3844. }),
  3845. (0, import_vue398.createElementVNode)("path", {
  3846. fill: "currentColor",
  3847. d: "M384 649.088v64.96C269.76 732.352 192 771.904 192 800c0 37.696 139.904 96 320 96s320-58.304 320-96c0-28.16-77.76-67.648-192-85.952v-64.96C789.12 671.04 896 730.368 896 800c0 88.32-171.904 160-384 160s-384-71.68-384-160c0-69.696 106.88-128.96 256-150.912"
  3848. })
  3849. ]));
  3850. }
  3851. }), place_default = _sfc_main199;
  3852. // src/components/platform.vue
  3853. var import_vue399 = __toESM(require_vue()), import_vue400 = __toESM(require_vue()), _sfc_main200 = /* @__PURE__ */ (0, import_vue399.defineComponent)({
  3854. name: "Platform",
  3855. __name: "platform",
  3856. setup(__props) {
  3857. return (_ctx, _cache) => ((0, import_vue400.openBlock)(), (0, import_vue400.createElementBlock)("svg", {
  3858. xmlns: "http://www.w3.org/2000/svg",
  3859. viewBox: "0 0 1024 1024"
  3860. }, [
  3861. (0, import_vue400.createElementVNode)("path", {
  3862. fill: "currentColor",
  3863. d: "M448 832v-64h128v64h192v64H256v-64zM128 704V128h768v576z"
  3864. })
  3865. ]));
  3866. }
  3867. }), platform_default = _sfc_main200;
  3868. // src/components/plus.vue
  3869. var import_vue401 = __toESM(require_vue()), import_vue402 = __toESM(require_vue()), _sfc_main201 = /* @__PURE__ */ (0, import_vue401.defineComponent)({
  3870. name: "Plus",
  3871. __name: "plus",
  3872. setup(__props) {
  3873. return (_ctx, _cache) => ((0, import_vue402.openBlock)(), (0, import_vue402.createElementBlock)("svg", {
  3874. xmlns: "http://www.w3.org/2000/svg",
  3875. viewBox: "0 0 1024 1024"
  3876. }, [
  3877. (0, import_vue402.createElementVNode)("path", {
  3878. fill: "currentColor",
  3879. d: "M480 480V128a32 32 0 0 1 64 0v352h352a32 32 0 1 1 0 64H544v352a32 32 0 1 1-64 0V544H128a32 32 0 0 1 0-64z"
  3880. })
  3881. ]));
  3882. }
  3883. }), plus_default = _sfc_main201;
  3884. // src/components/pointer.vue
  3885. var import_vue403 = __toESM(require_vue()), import_vue404 = __toESM(require_vue()), _sfc_main202 = /* @__PURE__ */ (0, import_vue403.defineComponent)({
  3886. name: "Pointer",
  3887. __name: "pointer",
  3888. setup(__props) {
  3889. return (_ctx, _cache) => ((0, import_vue404.openBlock)(), (0, import_vue404.createElementBlock)("svg", {
  3890. xmlns: "http://www.w3.org/2000/svg",
  3891. viewBox: "0 0 1024 1024"
  3892. }, [
  3893. (0, import_vue404.createElementVNode)("path", {
  3894. fill: "currentColor",
  3895. d: "M511.552 128c-35.584 0-64.384 28.8-64.384 64.448v516.48L274.048 570.88a94.27 94.27 0 0 0-112.896-3.456 44.416 44.416 0 0 0-8.96 62.208L332.8 870.4A64 64 0 0 0 384 896h512V575.232a64 64 0 0 0-45.632-61.312l-205.952-61.76A96 96 0 0 1 576 360.192V192.448C576 156.8 547.2 128 511.552 128M359.04 556.8l24.128 19.2V192.448a128.448 128.448 0 1 1 256.832 0v167.744a32 32 0 0 0 22.784 30.656l206.016 61.76A128 128 0 0 1 960 575.232V896a64 64 0 0 1-64 64H384a128 128 0 0 1-102.4-51.2L101.056 668.032A108.416 108.416 0 0 1 128 512.512a158.27 158.27 0 0 1 185.984 8.32z"
  3896. })
  3897. ]));
  3898. }
  3899. }), pointer_default = _sfc_main202;
  3900. // src/components/position.vue
  3901. var import_vue405 = __toESM(require_vue()), import_vue406 = __toESM(require_vue()), _sfc_main203 = /* @__PURE__ */ (0, import_vue405.defineComponent)({
  3902. name: "Position",
  3903. __name: "position",
  3904. setup(__props) {
  3905. return (_ctx, _cache) => ((0, import_vue406.openBlock)(), (0, import_vue406.createElementBlock)("svg", {
  3906. xmlns: "http://www.w3.org/2000/svg",
  3907. viewBox: "0 0 1024 1024"
  3908. }, [
  3909. (0, import_vue406.createElementVNode)("path", {
  3910. fill: "currentColor",
  3911. d: "m249.6 417.088 319.744 43.072 39.168 310.272L845.12 178.88zm-129.024 47.168a32 32 0 0 1-7.68-61.44l777.792-311.04a32 32 0 0 1 41.6 41.6l-310.336 775.68a32 32 0 0 1-61.44-7.808L512 516.992z"
  3912. })
  3913. ]));
  3914. }
  3915. }), position_default = _sfc_main203;
  3916. // src/components/postcard.vue
  3917. var import_vue407 = __toESM(require_vue()), import_vue408 = __toESM(require_vue()), _sfc_main204 = /* @__PURE__ */ (0, import_vue407.defineComponent)({
  3918. name: "Postcard",
  3919. __name: "postcard",
  3920. setup(__props) {
  3921. return (_ctx, _cache) => ((0, import_vue408.openBlock)(), (0, import_vue408.createElementBlock)("svg", {
  3922. xmlns: "http://www.w3.org/2000/svg",
  3923. viewBox: "0 0 1024 1024"
  3924. }, [
  3925. (0, import_vue408.createElementVNode)("path", {
  3926. fill: "currentColor",
  3927. d: "M160 224a32 32 0 0 0-32 32v512a32 32 0 0 0 32 32h704a32 32 0 0 0 32-32V256a32 32 0 0 0-32-32zm0-64h704a96 96 0 0 1 96 96v512a96 96 0 0 1-96 96H160a96 96 0 0 1-96-96V256a96 96 0 0 1 96-96"
  3928. }),
  3929. (0, import_vue408.createElementVNode)("path", {
  3930. fill: "currentColor",
  3931. d: "M704 320a64 64 0 1 1 0 128 64 64 0 0 1 0-128M288 448h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32m0 128h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  3932. })
  3933. ]));
  3934. }
  3935. }), postcard_default = _sfc_main204;
  3936. // src/components/pouring.vue
  3937. var import_vue409 = __toESM(require_vue()), import_vue410 = __toESM(require_vue()), _sfc_main205 = /* @__PURE__ */ (0, import_vue409.defineComponent)({
  3938. name: "Pouring",
  3939. __name: "pouring",
  3940. setup(__props) {
  3941. return (_ctx, _cache) => ((0, import_vue410.openBlock)(), (0, import_vue410.createElementBlock)("svg", {
  3942. xmlns: "http://www.w3.org/2000/svg",
  3943. viewBox: "0 0 1024 1024"
  3944. }, [
  3945. (0, import_vue410.createElementVNode)("path", {
  3946. fill: "currentColor",
  3947. d: "m739.328 291.328-35.2-6.592-12.8-33.408a192.064 192.064 0 0 0-365.952 23.232l-9.92 40.896-41.472 7.04a176.32 176.32 0 0 0-146.24 173.568c0 97.28 78.72 175.936 175.808 175.936h400a192 192 0 0 0 35.776-380.672M959.552 480a256 256 0 0 1-256 256h-400A239.81 239.81 0 0 1 63.744 496.192a240.32 240.32 0 0 1 199.488-236.8 256.128 256.128 0 0 1 487.872-30.976A256.064 256.064 0 0 1 959.552 480M224 800a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32m192 0a32 32 0 0 1 32 32v96a32 32 0 1 1-64 0v-96a32 32 0 0 1 32-32"
  3948. })
  3949. ]));
  3950. }
  3951. }), pouring_default = _sfc_main205;
  3952. // src/components/present.vue
  3953. var import_vue411 = __toESM(require_vue()), import_vue412 = __toESM(require_vue()), _sfc_main206 = /* @__PURE__ */ (0, import_vue411.defineComponent)({
  3954. name: "Present",
  3955. __name: "present",
  3956. setup(__props) {
  3957. return (_ctx, _cache) => ((0, import_vue412.openBlock)(), (0, import_vue412.createElementBlock)("svg", {
  3958. xmlns: "http://www.w3.org/2000/svg",
  3959. viewBox: "0 0 1024 1024"
  3960. }, [
  3961. (0, import_vue412.createElementVNode)("path", {
  3962. fill: "currentColor",
  3963. d: "M480 896V640H192v-64h288V320H192v576zm64 0h288V320H544v256h288v64H544zM128 256h768v672a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32z"
  3964. }),
  3965. (0, import_vue412.createElementVNode)("path", {
  3966. fill: "currentColor",
  3967. d: "M96 256h832q32 0 32 32t-32 32H96q-32 0-32-32t32-32"
  3968. }),
  3969. (0, import_vue412.createElementVNode)("path", {
  3970. fill: "currentColor",
  3971. d: "M416 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"
  3972. }),
  3973. (0, import_vue412.createElementVNode)("path", {
  3974. fill: "currentColor",
  3975. d: "M608 256a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"
  3976. })
  3977. ]));
  3978. }
  3979. }), present_default = _sfc_main206;
  3980. // src/components/price-tag.vue
  3981. var import_vue413 = __toESM(require_vue()), import_vue414 = __toESM(require_vue()), _sfc_main207 = /* @__PURE__ */ (0, import_vue413.defineComponent)({
  3982. name: "PriceTag",
  3983. __name: "price-tag",
  3984. setup(__props) {
  3985. return (_ctx, _cache) => ((0, import_vue414.openBlock)(), (0, import_vue414.createElementBlock)("svg", {
  3986. xmlns: "http://www.w3.org/2000/svg",
  3987. viewBox: "0 0 1024 1024"
  3988. }, [
  3989. (0, import_vue414.createElementVNode)("path", {
  3990. fill: "currentColor",
  3991. d: "M224 318.336V896h576V318.336L552.512 115.84a64 64 0 0 0-81.024 0zM593.024 66.304l259.2 212.096A32 32 0 0 1 864 303.168V928a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V303.168a32 32 0 0 1 11.712-24.768l259.2-212.096a128 128 0 0 1 162.112 0"
  3992. }),
  3993. (0, import_vue414.createElementVNode)("path", {
  3994. fill: "currentColor",
  3995. d: "M512 448a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"
  3996. })
  3997. ]));
  3998. }
  3999. }), price_tag_default = _sfc_main207;
  4000. // src/components/printer.vue
  4001. var import_vue415 = __toESM(require_vue()), import_vue416 = __toESM(require_vue()), _sfc_main208 = /* @__PURE__ */ (0, import_vue415.defineComponent)({
  4002. name: "Printer",
  4003. __name: "printer",
  4004. setup(__props) {
  4005. return (_ctx, _cache) => ((0, import_vue416.openBlock)(), (0, import_vue416.createElementBlock)("svg", {
  4006. xmlns: "http://www.w3.org/2000/svg",
  4007. viewBox: "0 0 1024 1024"
  4008. }, [
  4009. (0, import_vue416.createElementVNode)("path", {
  4010. fill: "currentColor",
  4011. d: "M256 768H105.024c-14.272 0-19.456-1.472-24.64-4.288a29.06 29.06 0 0 1-12.16-12.096C65.536 746.432 64 741.248 64 727.04V379.072c0-42.816 4.48-58.304 12.8-73.984 8.384-15.616 20.672-27.904 36.288-36.288 15.68-8.32 31.168-12.8 73.984-12.8H256V64h512v192h68.928c42.816 0 58.304 4.48 73.984 12.8 15.616 8.384 27.904 20.672 36.288 36.288 8.32 15.68 12.8 31.168 12.8 73.984v347.904c0 14.272-1.472 19.456-4.288 24.64a29.06 29.06 0 0 1-12.096 12.16c-5.184 2.752-10.368 4.224-24.64 4.224H768v192H256zm64-192v320h384V576zm-64 128V512h512v192h128V379.072c0-29.376-1.408-36.48-5.248-43.776a23.3 23.3 0 0 0-10.048-10.048c-7.232-3.84-14.4-5.248-43.776-5.248H187.072c-29.376 0-36.48 1.408-43.776 5.248a23.3 23.3 0 0 0-10.048 10.048c-3.84 7.232-5.248 14.4-5.248 43.776V704zm64-448h384V128H320zm-64 128h64v64h-64zm128 0h64v64h-64z"
  4012. })
  4013. ]));
  4014. }
  4015. }), printer_default = _sfc_main208;
  4016. // src/components/promotion.vue
  4017. var import_vue417 = __toESM(require_vue()), import_vue418 = __toESM(require_vue()), _sfc_main209 = /* @__PURE__ */ (0, import_vue417.defineComponent)({
  4018. name: "Promotion",
  4019. __name: "promotion",
  4020. setup(__props) {
  4021. return (_ctx, _cache) => ((0, import_vue418.openBlock)(), (0, import_vue418.createElementBlock)("svg", {
  4022. xmlns: "http://www.w3.org/2000/svg",
  4023. viewBox: "0 0 1024 1024"
  4024. }, [
  4025. (0, import_vue418.createElementVNode)("path", {
  4026. fill: "currentColor",
  4027. d: "m64 448 832-320-128 704-446.08-243.328L832 192 242.816 545.472zm256 512V657.024L512 768z"
  4028. })
  4029. ]));
  4030. }
  4031. }), promotion_default = _sfc_main209;
  4032. // src/components/quartz-watch.vue
  4033. var import_vue419 = __toESM(require_vue()), import_vue420 = __toESM(require_vue()), _sfc_main210 = /* @__PURE__ */ (0, import_vue419.defineComponent)({
  4034. name: "QuartzWatch",
  4035. __name: "quartz-watch",
  4036. setup(__props) {
  4037. return (_ctx, _cache) => ((0, import_vue420.openBlock)(), (0, import_vue420.createElementBlock)("svg", {
  4038. xmlns: "http://www.w3.org/2000/svg",
  4039. "xml:space": "preserve",
  4040. viewBox: "0 0 1024 1024"
  4041. }, [
  4042. (0, import_vue420.createElementVNode)("path", {
  4043. fill: "currentColor",
  4044. d: "M422.02 602.01v-.03c-6.68-5.99-14.35-8.83-23.01-8.51q-13.005.48-22.5 10.02c-6.33 6.36-9.5 13.7-9.5 22.02s3 15.82 8.99 22.5c8.68 8.68 19.02 11.35 31.01 8s19.49-10.85 22.5-22.5.51-22.15-7.49-31.49zM384 512c0-9.35-3-17.02-8.99-23.01-6-5.99-13.66-8.99-23.01-8.99s-17.02 3-23.01 8.99c-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99s17.02-3 23.01-8.99c5.99-6 8.99-13.67 8.99-23.01m6.53-82.49c11.65 3.01 22.15.51 31.49-7.49h.04c5.99-6.68 8.83-14.34 8.51-23.01s-3.66-16.16-10.02-22.5c-6.36-6.33-13.7-9.5-22.02-9.5s-15.82 3-22.5 8.99c-8.68 8.69-11.35 19.02-8 31.01q5.025 17.985 22.5 22.5m242.94 0q17.505-4.545 22.02-22.02c3.01-11.65.51-22.15-7.49-31.49h.01c-6.68-5.99-14.18-8.99-22.5-8.99s-15.66 3.16-22.02 9.5q-9.54 9.51-10.02 22.5c-.32 8.66 2.52 16.33 8.51 23.01 9.32 8.02 19.82 10.52 31.49 7.49M512 640c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01s-3-17.02-8.99-23.01c-6-5.99-13.66-8.99-23.01-8.99m183.01-151.01c-6-5.99-13.66-8.99-23.01-8.99s-17.02 3-23.01 8.99c-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.66 8.99 23.01 8.99s17.02-3 23.01-8.99c5.99-6 8.99-13.67 8.99-23.01 0-9.35-3-17.02-8.99-23.01"
  4045. }),
  4046. (0, import_vue420.createElementVNode)("path", {
  4047. fill: "currentColor",
  4048. d: "M832 512c-2-90.67-33.17-166.17-93.5-226.5-20.43-20.42-42.6-37.49-66.5-51.23V64H352v170.26c-23.9 13.74-46.07 30.81-66.5 51.24-60.33 60.33-91.49 135.83-93.5 226.5 2 90.67 33.17 166.17 93.5 226.5 20.43 20.43 42.6 37.5 66.5 51.24V960h320V789.74c23.9-13.74 46.07-30.81 66.5-51.24 60.33-60.34 91.49-135.83 93.5-226.5M416 128h192v78.69c-29.85-9.03-61.85-13.93-96-14.69-34.15.75-66.15 5.65-96 14.68zm192 768H416v-78.68c29.85 9.03 61.85 13.93 96 14.68 34.15-.75 66.15-5.65 96-14.68zm-96-128c-72.66-2.01-132.99-27.01-180.99-75.01S258.01 584.66 256 512c2.01-72.66 27.01-132.99 75.01-180.99S439.34 258.01 512 256c72.66 2.01 132.99 27.01 180.99 75.01S765.99 439.34 768 512c-2.01 72.66-27.01 132.99-75.01 180.99S584.66 765.99 512 768"
  4049. }),
  4050. (0, import_vue420.createElementVNode)("path", {
  4051. fill: "currentColor",
  4052. d: "M512 320c-9.35 0-17.02 3-23.01 8.99-5.99 6-8.99 13.66-8.99 23.01s3 17.02 8.99 23.01c6 5.99 13.67 8.99 23.01 8.99 9.35 0 17.02-3 23.01-8.99 5.99-6 8.99-13.66 8.99-23.01s-3-17.02-8.99-23.01c-6-5.99-13.66-8.99-23.01-8.99m112.99 273.5c-8.66-.32-16.33 2.52-23.01 8.51-7.98 9.32-10.48 19.82-7.49 31.49s10.49 19.17 22.5 22.5 22.35.66 31.01-8v.04c5.99-6.68 8.99-14.18 8.99-22.5s-3.16-15.66-9.5-22.02-13.84-9.7-22.5-10.02"
  4053. })
  4054. ]));
  4055. }
  4056. }), quartz_watch_default = _sfc_main210;
  4057. // src/components/question-filled.vue
  4058. var import_vue421 = __toESM(require_vue()), import_vue422 = __toESM(require_vue()), _sfc_main211 = /* @__PURE__ */ (0, import_vue421.defineComponent)({
  4059. name: "QuestionFilled",
  4060. __name: "question-filled",
  4061. setup(__props) {
  4062. return (_ctx, _cache) => ((0, import_vue422.openBlock)(), (0, import_vue422.createElementBlock)("svg", {
  4063. xmlns: "http://www.w3.org/2000/svg",
  4064. viewBox: "0 0 1024 1024"
  4065. }, [
  4066. (0, import_vue422.createElementVNode)("path", {
  4067. fill: "currentColor",
  4068. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m23.744 191.488c-52.096 0-92.928 14.784-123.2 44.352-30.976 29.568-45.76 70.4-45.76 122.496h80.256c0-29.568 5.632-52.8 17.6-68.992 13.376-19.712 35.2-28.864 66.176-28.864 23.936 0 42.944 6.336 56.32 19.712 12.672 13.376 19.712 31.68 19.712 54.912 0 17.6-6.336 34.496-19.008 49.984l-8.448 9.856c-45.76 40.832-73.216 70.4-82.368 89.408-9.856 19.008-14.08 42.24-14.08 68.992v9.856h80.96v-9.856c0-16.896 3.52-31.68 10.56-45.76 6.336-12.672 15.488-24.64 28.16-35.2 33.792-29.568 54.208-48.576 60.544-55.616 16.896-22.528 26.048-51.392 26.048-86.592q0-64.416-42.24-101.376c-28.16-25.344-65.472-37.312-111.232-37.312m-12.672 406.208a54.27 54.27 0 0 0-38.72 14.784 49.4 49.4 0 0 0-15.488 38.016c0 15.488 4.928 28.16 15.488 38.016A54.85 54.85 0 0 0 523.072 768c15.488 0 28.16-4.928 38.72-14.784a51.52 51.52 0 0 0 16.192-38.72 51.97 51.97 0 0 0-15.488-38.016 55.94 55.94 0 0 0-39.424-14.784"
  4069. })
  4070. ]));
  4071. }
  4072. }), question_filled_default = _sfc_main211;
  4073. // src/components/rank.vue
  4074. var import_vue423 = __toESM(require_vue()), import_vue424 = __toESM(require_vue()), _sfc_main212 = /* @__PURE__ */ (0, import_vue423.defineComponent)({
  4075. name: "Rank",
  4076. __name: "rank",
  4077. setup(__props) {
  4078. return (_ctx, _cache) => ((0, import_vue424.openBlock)(), (0, import_vue424.createElementBlock)("svg", {
  4079. xmlns: "http://www.w3.org/2000/svg",
  4080. viewBox: "0 0 1024 1024"
  4081. }, [
  4082. (0, import_vue424.createElementVNode)("path", {
  4083. fill: "currentColor",
  4084. d: "m186.496 544 41.408 41.344a32 32 0 1 1-45.248 45.312l-96-96a32 32 0 0 1 0-45.312l96-96a32 32 0 1 1 45.248 45.312L186.496 480h290.816V186.432l-41.472 41.472a32 32 0 1 1-45.248-45.184l96-96.128a32 32 0 0 1 45.312 0l96 96.064a32 32 0 0 1-45.248 45.184l-41.344-41.28V480H832l-41.344-41.344a32 32 0 0 1 45.248-45.312l96 96a32 32 0 0 1 0 45.312l-96 96a32 32 0 0 1-45.248-45.312L832 544H541.312v293.44l41.344-41.28a32 32 0 1 1 45.248 45.248l-96 96a32 32 0 0 1-45.312 0l-96-96a32 32 0 1 1 45.312-45.248l41.408 41.408V544z"
  4085. })
  4086. ]));
  4087. }
  4088. }), rank_default = _sfc_main212;
  4089. // src/components/reading-lamp.vue
  4090. var import_vue425 = __toESM(require_vue()), import_vue426 = __toESM(require_vue()), _sfc_main213 = /* @__PURE__ */ (0, import_vue425.defineComponent)({
  4091. name: "ReadingLamp",
  4092. __name: "reading-lamp",
  4093. setup(__props) {
  4094. return (_ctx, _cache) => ((0, import_vue426.openBlock)(), (0, import_vue426.createElementBlock)("svg", {
  4095. xmlns: "http://www.w3.org/2000/svg",
  4096. viewBox: "0 0 1024 1024"
  4097. }, [
  4098. (0, import_vue426.createElementVNode)("path", {
  4099. fill: "currentColor",
  4100. d: "M352 896h320q32 0 32 32t-32 32H352q-32 0-32-32t32-32m-44.672-768-99.52 448h608.384l-99.52-448zm-25.6-64h460.608a32 32 0 0 1 31.232 25.088l113.792 512A32 32 0 0 1 856.128 640H167.872a32 32 0 0 1-31.232-38.912l113.792-512A32 32 0 0 1 281.664 64z"
  4101. }),
  4102. (0, import_vue426.createElementVNode)("path", {
  4103. fill: "currentColor",
  4104. d: "M672 576q32 0 32 32v128q0 32-32 32t-32-32V608q0-32 32-32m-192-.064h64V960h-64z"
  4105. })
  4106. ]));
  4107. }
  4108. }), reading_lamp_default = _sfc_main213;
  4109. // src/components/reading.vue
  4110. var import_vue427 = __toESM(require_vue()), import_vue428 = __toESM(require_vue()), _sfc_main214 = /* @__PURE__ */ (0, import_vue427.defineComponent)({
  4111. name: "Reading",
  4112. __name: "reading",
  4113. setup(__props) {
  4114. return (_ctx, _cache) => ((0, import_vue428.openBlock)(), (0, import_vue428.createElementBlock)("svg", {
  4115. xmlns: "http://www.w3.org/2000/svg",
  4116. viewBox: "0 0 1024 1024"
  4117. }, [
  4118. (0, import_vue428.createElementVNode)("path", {
  4119. fill: "currentColor",
  4120. d: "m512 863.36 384-54.848v-638.72L525.568 222.72a96 96 0 0 1-27.136 0L128 169.792v638.72zM137.024 106.432l370.432 52.928a32 32 0 0 0 9.088 0l370.432-52.928A64 64 0 0 1 960 169.792v638.72a64 64 0 0 1-54.976 63.36l-388.48 55.488a32 32 0 0 1-9.088 0l-388.48-55.488A64 64 0 0 1 64 808.512v-638.72a64 64 0 0 1 73.024-63.36"
  4121. }),
  4122. (0, import_vue428.createElementVNode)("path", {
  4123. fill: "currentColor",
  4124. d: "M480 192h64v704h-64z"
  4125. })
  4126. ]));
  4127. }
  4128. }), reading_default = _sfc_main214;
  4129. // src/components/refresh-left.vue
  4130. var import_vue429 = __toESM(require_vue()), import_vue430 = __toESM(require_vue()), _sfc_main215 = /* @__PURE__ */ (0, import_vue429.defineComponent)({
  4131. name: "RefreshLeft",
  4132. __name: "refresh-left",
  4133. setup(__props) {
  4134. return (_ctx, _cache) => ((0, import_vue430.openBlock)(), (0, import_vue430.createElementBlock)("svg", {
  4135. xmlns: "http://www.w3.org/2000/svg",
  4136. viewBox: "0 0 1024 1024"
  4137. }, [
  4138. (0, import_vue430.createElementVNode)("path", {
  4139. fill: "currentColor",
  4140. d: "M289.088 296.704h92.992a32 32 0 0 1 0 64H232.96a32 32 0 0 1-32-32V179.712a32 32 0 0 1 64 0v50.56a384 384 0 0 1 643.84 282.88 384 384 0 0 1-383.936 384 384 384 0 0 1-384-384h64a320 320 0 1 0 640 0 320 320 0 0 0-555.712-216.448z"
  4141. })
  4142. ]));
  4143. }
  4144. }), refresh_left_default = _sfc_main215;
  4145. // src/components/refresh-right.vue
  4146. var import_vue431 = __toESM(require_vue()), import_vue432 = __toESM(require_vue()), _sfc_main216 = /* @__PURE__ */ (0, import_vue431.defineComponent)({
  4147. name: "RefreshRight",
  4148. __name: "refresh-right",
  4149. setup(__props) {
  4150. return (_ctx, _cache) => ((0, import_vue432.openBlock)(), (0, import_vue432.createElementBlock)("svg", {
  4151. xmlns: "http://www.w3.org/2000/svg",
  4152. viewBox: "0 0 1024 1024"
  4153. }, [
  4154. (0, import_vue432.createElementVNode)("path", {
  4155. fill: "currentColor",
  4156. d: "M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384 384 384 0 0 1-384-384 384 384 0 0 1 643.712-282.88"
  4157. })
  4158. ]));
  4159. }
  4160. }), refresh_right_default = _sfc_main216;
  4161. // src/components/refresh.vue
  4162. var import_vue433 = __toESM(require_vue()), import_vue434 = __toESM(require_vue()), _sfc_main217 = /* @__PURE__ */ (0, import_vue433.defineComponent)({
  4163. name: "Refresh",
  4164. __name: "refresh",
  4165. setup(__props) {
  4166. return (_ctx, _cache) => ((0, import_vue434.openBlock)(), (0, import_vue434.createElementBlock)("svg", {
  4167. xmlns: "http://www.w3.org/2000/svg",
  4168. viewBox: "0 0 1024 1024"
  4169. }, [
  4170. (0, import_vue434.createElementVNode)("path", {
  4171. fill: "currentColor",
  4172. d: "M771.776 794.88A384 384 0 0 1 128 512h64a320 320 0 0 0 555.712 216.448H654.72a32 32 0 1 1 0-64h149.056a32 32 0 0 1 32 32v148.928a32 32 0 1 1-64 0v-50.56zM276.288 295.616h92.992a32 32 0 0 1 0 64H220.16a32 32 0 0 1-32-32V178.56a32 32 0 0 1 64 0v50.56A384 384 0 0 1 896.128 512h-64a320 320 0 0 0-555.776-216.384z"
  4173. })
  4174. ]));
  4175. }
  4176. }), refresh_default = _sfc_main217;
  4177. // src/components/refrigerator.vue
  4178. var import_vue435 = __toESM(require_vue()), import_vue436 = __toESM(require_vue()), _sfc_main218 = /* @__PURE__ */ (0, import_vue435.defineComponent)({
  4179. name: "Refrigerator",
  4180. __name: "refrigerator",
  4181. setup(__props) {
  4182. return (_ctx, _cache) => ((0, import_vue436.openBlock)(), (0, import_vue436.createElementBlock)("svg", {
  4183. xmlns: "http://www.w3.org/2000/svg",
  4184. viewBox: "0 0 1024 1024"
  4185. }, [
  4186. (0, import_vue436.createElementVNode)("path", {
  4187. fill: "currentColor",
  4188. d: "M256 448h512V160a32 32 0 0 0-32-32H288a32 32 0 0 0-32 32zm0 64v352a32 32 0 0 0 32 32h448a32 32 0 0 0 32-32V512zm32-448h448a96 96 0 0 1 96 96v704a96 96 0 0 1-96 96H288a96 96 0 0 1-96-96V160a96 96 0 0 1 96-96m32 224h64v96h-64zm0 288h64v96h-64z"
  4189. })
  4190. ]));
  4191. }
  4192. }), refrigerator_default = _sfc_main218;
  4193. // src/components/remove-filled.vue
  4194. var import_vue437 = __toESM(require_vue()), import_vue438 = __toESM(require_vue()), _sfc_main219 = /* @__PURE__ */ (0, import_vue437.defineComponent)({
  4195. name: "RemoveFilled",
  4196. __name: "remove-filled",
  4197. setup(__props) {
  4198. return (_ctx, _cache) => ((0, import_vue438.openBlock)(), (0, import_vue438.createElementBlock)("svg", {
  4199. xmlns: "http://www.w3.org/2000/svg",
  4200. viewBox: "0 0 1024 1024"
  4201. }, [
  4202. (0, import_vue438.createElementVNode)("path", {
  4203. fill: "currentColor",
  4204. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896M288 512a38.4 38.4 0 0 0 38.4 38.4h371.2a38.4 38.4 0 0 0 0-76.8H326.4A38.4 38.4 0 0 0 288 512"
  4205. })
  4206. ]));
  4207. }
  4208. }), remove_filled_default = _sfc_main219;
  4209. // src/components/remove.vue
  4210. var import_vue439 = __toESM(require_vue()), import_vue440 = __toESM(require_vue()), _sfc_main220 = /* @__PURE__ */ (0, import_vue439.defineComponent)({
  4211. name: "Remove",
  4212. __name: "remove",
  4213. setup(__props) {
  4214. return (_ctx, _cache) => ((0, import_vue440.openBlock)(), (0, import_vue440.createElementBlock)("svg", {
  4215. xmlns: "http://www.w3.org/2000/svg",
  4216. viewBox: "0 0 1024 1024"
  4217. }, [
  4218. (0, import_vue440.createElementVNode)("path", {
  4219. fill: "currentColor",
  4220. d: "M352 480h320a32 32 0 1 1 0 64H352a32 32 0 0 1 0-64"
  4221. }),
  4222. (0, import_vue440.createElementVNode)("path", {
  4223. fill: "currentColor",
  4224. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  4225. })
  4226. ]));
  4227. }
  4228. }), remove_default = _sfc_main220;
  4229. // src/components/right.vue
  4230. var import_vue441 = __toESM(require_vue()), import_vue442 = __toESM(require_vue()), _sfc_main221 = /* @__PURE__ */ (0, import_vue441.defineComponent)({
  4231. name: "Right",
  4232. __name: "right",
  4233. setup(__props) {
  4234. return (_ctx, _cache) => ((0, import_vue442.openBlock)(), (0, import_vue442.createElementBlock)("svg", {
  4235. xmlns: "http://www.w3.org/2000/svg",
  4236. viewBox: "0 0 1024 1024"
  4237. }, [
  4238. (0, import_vue442.createElementVNode)("path", {
  4239. fill: "currentColor",
  4240. d: "M754.752 480H160a32 32 0 1 0 0 64h594.752L521.344 777.344a32 32 0 0 0 45.312 45.312l288-288a32 32 0 0 0 0-45.312l-288-288a32 32 0 1 0-45.312 45.312z"
  4241. })
  4242. ]));
  4243. }
  4244. }), right_default = _sfc_main221;
  4245. // src/components/scale-to-original.vue
  4246. var import_vue443 = __toESM(require_vue()), import_vue444 = __toESM(require_vue()), _sfc_main222 = /* @__PURE__ */ (0, import_vue443.defineComponent)({
  4247. name: "ScaleToOriginal",
  4248. __name: "scale-to-original",
  4249. setup(__props) {
  4250. return (_ctx, _cache) => ((0, import_vue444.openBlock)(), (0, import_vue444.createElementBlock)("svg", {
  4251. xmlns: "http://www.w3.org/2000/svg",
  4252. viewBox: "0 0 1024 1024"
  4253. }, [
  4254. (0, import_vue444.createElementVNode)("path", {
  4255. fill: "currentColor",
  4256. d: "M813.176 180.706a60.235 60.235 0 0 1 60.236 60.235v481.883a60.235 60.235 0 0 1-60.236 60.235H210.824a60.235 60.235 0 0 1-60.236-60.235V240.94a60.235 60.235 0 0 1 60.236-60.235h602.352zm0-60.235H210.824A120.47 120.47 0 0 0 90.353 240.94v481.883a120.47 120.47 0 0 0 120.47 120.47h602.353a120.47 120.47 0 0 0 120.471-120.47V240.94a120.47 120.47 0 0 0-120.47-120.47zm-120.47 180.705a30.12 30.12 0 0 0-30.118 30.118v301.177a30.118 30.118 0 0 0 60.236 0V331.294a30.12 30.12 0 0 0-30.118-30.118m-361.412 0a30.12 30.12 0 0 0-30.118 30.118v301.177a30.118 30.118 0 1 0 60.236 0V331.294a30.12 30.12 0 0 0-30.118-30.118M512 361.412a30.12 30.12 0 0 0-30.118 30.117v30.118a30.118 30.118 0 0 0 60.236 0V391.53A30.12 30.12 0 0 0 512 361.412M512 512a30.12 30.12 0 0 0-30.118 30.118v30.117a30.118 30.118 0 0 0 60.236 0v-30.117A30.12 30.12 0 0 0 512 512"
  4257. })
  4258. ]));
  4259. }
  4260. }), scale_to_original_default = _sfc_main222;
  4261. // src/components/school.vue
  4262. var import_vue445 = __toESM(require_vue()), import_vue446 = __toESM(require_vue()), _sfc_main223 = /* @__PURE__ */ (0, import_vue445.defineComponent)({
  4263. name: "School",
  4264. __name: "school",
  4265. setup(__props) {
  4266. return (_ctx, _cache) => ((0, import_vue446.openBlock)(), (0, import_vue446.createElementBlock)("svg", {
  4267. xmlns: "http://www.w3.org/2000/svg",
  4268. viewBox: "0 0 1024 1024"
  4269. }, [
  4270. (0, import_vue446.createElementVNode)("path", {
  4271. fill: "currentColor",
  4272. d: "M224 128v704h576V128zm-32-64h640a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H192a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32"
  4273. }),
  4274. (0, import_vue446.createElementVNode)("path", {
  4275. fill: "currentColor",
  4276. d: "M64 832h896v64H64zm256-640h128v96H320z"
  4277. }),
  4278. (0, import_vue446.createElementVNode)("path", {
  4279. fill: "currentColor",
  4280. d: "M384 832h256v-64a128 128 0 1 0-256 0zm128-256a192 192 0 0 1 192 192v128H320V768a192 192 0 0 1 192-192M320 384h128v96H320zm256-192h128v96H576zm0 192h128v96H576z"
  4281. })
  4282. ]));
  4283. }
  4284. }), school_default = _sfc_main223;
  4285. // src/components/scissor.vue
  4286. var import_vue447 = __toESM(require_vue()), import_vue448 = __toESM(require_vue()), _sfc_main224 = /* @__PURE__ */ (0, import_vue447.defineComponent)({
  4287. name: "Scissor",
  4288. __name: "scissor",
  4289. setup(__props) {
  4290. return (_ctx, _cache) => ((0, import_vue448.openBlock)(), (0, import_vue448.createElementBlock)("svg", {
  4291. xmlns: "http://www.w3.org/2000/svg",
  4292. viewBox: "0 0 1024 1024"
  4293. }, [
  4294. (0, import_vue448.createElementVNode)("path", {
  4295. fill: "currentColor",
  4296. d: "m512.064 578.368-106.88 152.768a160 160 0 1 1-23.36-78.208L472.96 522.56 196.864 128.256a32 32 0 1 1 52.48-36.736l393.024 561.344a160 160 0 1 1-23.36 78.208l-106.88-152.704zm54.4-189.248 208.384-297.6a32 32 0 0 1 52.48 36.736l-221.76 316.672-39.04-55.808zm-376.32 425.856a96 96 0 1 0 110.144-157.248 96 96 0 0 0-110.08 157.248zm643.84 0a96 96 0 1 0-110.08-157.248 96 96 0 0 0 110.08 157.248"
  4297. })
  4298. ]));
  4299. }
  4300. }), scissor_default = _sfc_main224;
  4301. // src/components/search.vue
  4302. var import_vue449 = __toESM(require_vue()), import_vue450 = __toESM(require_vue()), _sfc_main225 = /* @__PURE__ */ (0, import_vue449.defineComponent)({
  4303. name: "Search",
  4304. __name: "search",
  4305. setup(__props) {
  4306. return (_ctx, _cache) => ((0, import_vue450.openBlock)(), (0, import_vue450.createElementBlock)("svg", {
  4307. xmlns: "http://www.w3.org/2000/svg",
  4308. viewBox: "0 0 1024 1024"
  4309. }, [
  4310. (0, import_vue450.createElementVNode)("path", {
  4311. fill: "currentColor",
  4312. d: "m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704"
  4313. })
  4314. ]));
  4315. }
  4316. }), search_default = _sfc_main225;
  4317. // src/components/select.vue
  4318. var import_vue451 = __toESM(require_vue()), import_vue452 = __toESM(require_vue()), _sfc_main226 = /* @__PURE__ */ (0, import_vue451.defineComponent)({
  4319. name: "Select",
  4320. __name: "select",
  4321. setup(__props) {
  4322. return (_ctx, _cache) => ((0, import_vue452.openBlock)(), (0, import_vue452.createElementBlock)("svg", {
  4323. xmlns: "http://www.w3.org/2000/svg",
  4324. viewBox: "0 0 1024 1024"
  4325. }, [
  4326. (0, import_vue452.createElementVNode)("path", {
  4327. fill: "currentColor",
  4328. d: "M77.248 415.04a64 64 0 0 1 90.496 0l226.304 226.304L846.528 188.8a64 64 0 1 1 90.56 90.496l-543.04 543.04-316.8-316.8a64 64 0 0 1 0-90.496"
  4329. })
  4330. ]));
  4331. }
  4332. }), select_default = _sfc_main226;
  4333. // src/components/sell.vue
  4334. var import_vue453 = __toESM(require_vue()), import_vue454 = __toESM(require_vue()), _sfc_main227 = /* @__PURE__ */ (0, import_vue453.defineComponent)({
  4335. name: "Sell",
  4336. __name: "sell",
  4337. setup(__props) {
  4338. return (_ctx, _cache) => ((0, import_vue454.openBlock)(), (0, import_vue454.createElementBlock)("svg", {
  4339. xmlns: "http://www.w3.org/2000/svg",
  4340. viewBox: "0 0 1024 1024"
  4341. }, [
  4342. (0, import_vue454.createElementVNode)("path", {
  4343. fill: "currentColor",
  4344. d: "M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128s-128 61.248-128 137.664v22.4h256zm201.408 483.84L768 698.496V928a32 32 0 1 1-64 0V698.496l-73.344 73.344a32 32 0 1 1-45.248-45.248l128-128a32 32 0 0 1 45.248 0l128 128a32 32 0 1 1-45.248 45.248"
  4345. })
  4346. ]));
  4347. }
  4348. }), sell_default = _sfc_main227;
  4349. // src/components/semi-select.vue
  4350. var import_vue455 = __toESM(require_vue()), import_vue456 = __toESM(require_vue()), _sfc_main228 = /* @__PURE__ */ (0, import_vue455.defineComponent)({
  4351. name: "SemiSelect",
  4352. __name: "semi-select",
  4353. setup(__props) {
  4354. return (_ctx, _cache) => ((0, import_vue456.openBlock)(), (0, import_vue456.createElementBlock)("svg", {
  4355. xmlns: "http://www.w3.org/2000/svg",
  4356. viewBox: "0 0 1024 1024"
  4357. }, [
  4358. (0, import_vue456.createElementVNode)("path", {
  4359. fill: "currentColor",
  4360. d: "M128 448h768q64 0 64 64t-64 64H128q-64 0-64-64t64-64"
  4361. })
  4362. ]));
  4363. }
  4364. }), semi_select_default = _sfc_main228;
  4365. // src/components/service.vue
  4366. var import_vue457 = __toESM(require_vue()), import_vue458 = __toESM(require_vue()), _sfc_main229 = /* @__PURE__ */ (0, import_vue457.defineComponent)({
  4367. name: "Service",
  4368. __name: "service",
  4369. setup(__props) {
  4370. return (_ctx, _cache) => ((0, import_vue458.openBlock)(), (0, import_vue458.createElementBlock)("svg", {
  4371. xmlns: "http://www.w3.org/2000/svg",
  4372. viewBox: "0 0 1024 1024"
  4373. }, [
  4374. (0, import_vue458.createElementVNode)("path", {
  4375. fill: "currentColor",
  4376. d: "M864 409.6a192 192 0 0 1-37.888 349.44A256.064 256.064 0 0 1 576 960h-96a32 32 0 1 1 0-64h96a192.06 192.06 0 0 0 181.12-128H736a32 32 0 0 1-32-32V416a32 32 0 0 1 32-32h32c10.368 0 20.544.832 30.528 2.432a288 288 0 0 0-573.056 0A193 193 0 0 1 256 384h32a32 32 0 0 1 32 32v320a32 32 0 0 1-32 32h-32a192 192 0 0 1-96-358.4 352 352 0 0 1 704 0M256 448a128 128 0 1 0 0 256zm640 128a128 128 0 0 0-128-128v256a128 128 0 0 0 128-128"
  4377. })
  4378. ]));
  4379. }
  4380. }), service_default = _sfc_main229;
  4381. // src/components/set-up.vue
  4382. var import_vue459 = __toESM(require_vue()), import_vue460 = __toESM(require_vue()), _sfc_main230 = /* @__PURE__ */ (0, import_vue459.defineComponent)({
  4383. name: "SetUp",
  4384. __name: "set-up",
  4385. setup(__props) {
  4386. return (_ctx, _cache) => ((0, import_vue460.openBlock)(), (0, import_vue460.createElementBlock)("svg", {
  4387. xmlns: "http://www.w3.org/2000/svg",
  4388. viewBox: "0 0 1024 1024"
  4389. }, [
  4390. (0, import_vue460.createElementVNode)("path", {
  4391. fill: "currentColor",
  4392. d: "M224 160a64 64 0 0 0-64 64v576a64 64 0 0 0 64 64h576a64 64 0 0 0 64-64V224a64 64 0 0 0-64-64zm0-64h576a128 128 0 0 1 128 128v576a128 128 0 0 1-128 128H224A128 128 0 0 1 96 800V224A128 128 0 0 1 224 96"
  4393. }),
  4394. (0, import_vue460.createElementVNode)("path", {
  4395. fill: "currentColor",
  4396. d: "M384 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"
  4397. }),
  4398. (0, import_vue460.createElementVNode)("path", {
  4399. fill: "currentColor",
  4400. d: "M480 320h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32m160 416a64 64 0 1 0 0-128 64 64 0 0 0 0 128m0 64a128 128 0 1 1 0-256 128 128 0 0 1 0 256"
  4401. }),
  4402. (0, import_vue460.createElementVNode)("path", {
  4403. fill: "currentColor",
  4404. d: "M288 640h256q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  4405. })
  4406. ]));
  4407. }
  4408. }), set_up_default = _sfc_main230;
  4409. // src/components/setting.vue
  4410. var import_vue461 = __toESM(require_vue()), import_vue462 = __toESM(require_vue()), _sfc_main231 = /* @__PURE__ */ (0, import_vue461.defineComponent)({
  4411. name: "Setting",
  4412. __name: "setting",
  4413. setup(__props) {
  4414. return (_ctx, _cache) => ((0, import_vue462.openBlock)(), (0, import_vue462.createElementBlock)("svg", {
  4415. xmlns: "http://www.w3.org/2000/svg",
  4416. viewBox: "0 0 1024 1024"
  4417. }, [
  4418. (0, import_vue462.createElementVNode)("path", {
  4419. fill: "currentColor",
  4420. d: "M600.704 64a32 32 0 0 1 30.464 22.208l35.2 109.376c14.784 7.232 28.928 15.36 42.432 24.512l112.384-24.192a32 32 0 0 1 34.432 15.36L944.32 364.8a32 32 0 0 1-4.032 37.504l-77.12 85.12a357 357 0 0 1 0 49.024l77.12 85.248a32 32 0 0 1 4.032 37.504l-88.704 153.6a32 32 0 0 1-34.432 15.296L708.8 803.904c-13.44 9.088-27.648 17.28-42.368 24.512l-35.264 109.376A32 32 0 0 1 600.704 960H423.296a32 32 0 0 1-30.464-22.208L357.696 828.48a352 352 0 0 1-42.56-24.64l-112.32 24.256a32 32 0 0 1-34.432-15.36L79.68 659.2a32 32 0 0 1 4.032-37.504l77.12-85.248a357 357 0 0 1 0-48.896l-77.12-85.248A32 32 0 0 1 79.68 364.8l88.704-153.6a32 32 0 0 1 34.432-15.296l112.32 24.256c13.568-9.152 27.776-17.408 42.56-24.64l35.2-109.312A32 32 0 0 1 423.232 64H600.64zm-23.424 64H446.72l-36.352 113.088-24.512 11.968a294 294 0 0 0-34.816 20.096l-22.656 15.36-116.224-25.088-65.28 113.152 79.68 88.192-1.92 27.136a293 293 0 0 0 0 40.192l1.92 27.136-79.808 88.192 65.344 113.152 116.224-25.024 22.656 15.296a294 294 0 0 0 34.816 20.096l24.512 11.968L446.72 896h130.688l36.48-113.152 24.448-11.904a288 288 0 0 0 34.752-20.096l22.592-15.296 116.288 25.024 65.28-113.152-79.744-88.192 1.92-27.136a293 293 0 0 0 0-40.256l-1.92-27.136 79.808-88.128-65.344-113.152-116.288 24.96-22.592-15.232a288 288 0 0 0-34.752-20.096l-24.448-11.904L577.344 128zM512 320a192 192 0 1 1 0 384 192 192 0 0 1 0-384m0 64a128 128 0 1 0 0 256 128 128 0 0 0 0-256"
  4421. })
  4422. ]));
  4423. }
  4424. }), setting_default = _sfc_main231;
  4425. // src/components/share.vue
  4426. var import_vue463 = __toESM(require_vue()), import_vue464 = __toESM(require_vue()), _sfc_main232 = /* @__PURE__ */ (0, import_vue463.defineComponent)({
  4427. name: "Share",
  4428. __name: "share",
  4429. setup(__props) {
  4430. return (_ctx, _cache) => ((0, import_vue464.openBlock)(), (0, import_vue464.createElementBlock)("svg", {
  4431. xmlns: "http://www.w3.org/2000/svg",
  4432. viewBox: "0 0 1024 1024"
  4433. }, [
  4434. (0, import_vue464.createElementVNode)("path", {
  4435. fill: "currentColor",
  4436. d: "m679.872 348.8-301.76 188.608a127.8 127.8 0 0 1 5.12 52.16l279.936 104.96a128 128 0 1 1-22.464 59.904l-279.872-104.96a128 128 0 1 1-16.64-166.272l301.696-188.608a128 128 0 1 1 33.92 54.272z"
  4437. })
  4438. ]));
  4439. }
  4440. }), share_default = _sfc_main232;
  4441. // src/components/ship.vue
  4442. var import_vue465 = __toESM(require_vue()), import_vue466 = __toESM(require_vue()), _sfc_main233 = /* @__PURE__ */ (0, import_vue465.defineComponent)({
  4443. name: "Ship",
  4444. __name: "ship",
  4445. setup(__props) {
  4446. return (_ctx, _cache) => ((0, import_vue466.openBlock)(), (0, import_vue466.createElementBlock)("svg", {
  4447. xmlns: "http://www.w3.org/2000/svg",
  4448. viewBox: "0 0 1024 1024"
  4449. }, [
  4450. (0, import_vue466.createElementVNode)("path", {
  4451. fill: "currentColor",
  4452. d: "M512 386.88V448h405.568a32 32 0 0 1 30.72 40.768l-76.48 267.968A192 192 0 0 1 687.168 896H336.832a192 192 0 0 1-184.64-139.264L75.648 488.768A32 32 0 0 1 106.368 448H448V117.888a32 32 0 0 1 47.36-28.096l13.888 7.616L512 96v2.88l231.68 126.4a32 32 0 0 1-2.048 57.216zm0-70.272 144.768-65.792L512 171.84zM512 512H148.864l18.24 64H856.96l18.24-64zM185.408 640l28.352 99.2A128 128 0 0 0 336.832 832h350.336a128 128 0 0 0 123.072-92.8l28.352-99.2z"
  4453. })
  4454. ]));
  4455. }
  4456. }), ship_default = _sfc_main233;
  4457. // src/components/shop.vue
  4458. var import_vue467 = __toESM(require_vue()), import_vue468 = __toESM(require_vue()), _sfc_main234 = /* @__PURE__ */ (0, import_vue467.defineComponent)({
  4459. name: "Shop",
  4460. __name: "shop",
  4461. setup(__props) {
  4462. return (_ctx, _cache) => ((0, import_vue468.openBlock)(), (0, import_vue468.createElementBlock)("svg", {
  4463. xmlns: "http://www.w3.org/2000/svg",
  4464. viewBox: "0 0 1024 1024"
  4465. }, [
  4466. (0, import_vue468.createElementVNode)("path", {
  4467. fill: "currentColor",
  4468. d: "M704 704h64v192H256V704h64v64h384zm188.544-152.192C894.528 559.616 896 567.616 896 576a96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0 96 96 0 1 1-192 0c0-8.384 1.408-16.384 3.392-24.192L192 128h640z"
  4469. })
  4470. ]));
  4471. }
  4472. }), shop_default = _sfc_main234;
  4473. // src/components/shopping-bag.vue
  4474. var import_vue469 = __toESM(require_vue()), import_vue470 = __toESM(require_vue()), _sfc_main235 = /* @__PURE__ */ (0, import_vue469.defineComponent)({
  4475. name: "ShoppingBag",
  4476. __name: "shopping-bag",
  4477. setup(__props) {
  4478. return (_ctx, _cache) => ((0, import_vue470.openBlock)(), (0, import_vue470.createElementBlock)("svg", {
  4479. xmlns: "http://www.w3.org/2000/svg",
  4480. viewBox: "0 0 1024 1024"
  4481. }, [
  4482. (0, import_vue470.createElementVNode)("path", {
  4483. fill: "currentColor",
  4484. d: "M704 320v96a32 32 0 0 1-32 32h-32V320H384v128h-32a32 32 0 0 1-32-32v-96H192v576h640V320zm-384-64a192 192 0 1 1 384 0h160a32 32 0 0 1 32 32v640a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32zm64 0h256a128 128 0 1 0-256 0"
  4485. }),
  4486. (0, import_vue470.createElementVNode)("path", {
  4487. fill: "currentColor",
  4488. d: "M192 704h640v64H192z"
  4489. })
  4490. ]));
  4491. }
  4492. }), shopping_bag_default = _sfc_main235;
  4493. // src/components/shopping-cart-full.vue
  4494. var import_vue471 = __toESM(require_vue()), import_vue472 = __toESM(require_vue()), _sfc_main236 = /* @__PURE__ */ (0, import_vue471.defineComponent)({
  4495. name: "ShoppingCartFull",
  4496. __name: "shopping-cart-full",
  4497. setup(__props) {
  4498. return (_ctx, _cache) => ((0, import_vue472.openBlock)(), (0, import_vue472.createElementBlock)("svg", {
  4499. xmlns: "http://www.w3.org/2000/svg",
  4500. viewBox: "0 0 1024 1024"
  4501. }, [
  4502. (0, import_vue472.createElementVNode)("path", {
  4503. fill: "currentColor",
  4504. d: "M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96m320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96M96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128zm314.24 576h395.904l82.304-384H333.44z"
  4505. }),
  4506. (0, import_vue472.createElementVNode)("path", {
  4507. fill: "currentColor",
  4508. d: "M699.648 256 608 145.984 516.352 256zm-140.8-151.04a64 64 0 0 1 98.304 0L836.352 320H379.648z"
  4509. })
  4510. ]));
  4511. }
  4512. }), shopping_cart_full_default = _sfc_main236;
  4513. // src/components/shopping-cart.vue
  4514. var import_vue473 = __toESM(require_vue()), import_vue474 = __toESM(require_vue()), _sfc_main237 = /* @__PURE__ */ (0, import_vue473.defineComponent)({
  4515. name: "ShoppingCart",
  4516. __name: "shopping-cart",
  4517. setup(__props) {
  4518. return (_ctx, _cache) => ((0, import_vue474.openBlock)(), (0, import_vue474.createElementBlock)("svg", {
  4519. xmlns: "http://www.w3.org/2000/svg",
  4520. viewBox: "0 0 1024 1024"
  4521. }, [
  4522. (0, import_vue474.createElementVNode)("path", {
  4523. fill: "currentColor",
  4524. d: "M432 928a48 48 0 1 1 0-96 48 48 0 0 1 0 96m320 0a48 48 0 1 1 0-96 48 48 0 0 1 0 96M96 128a32 32 0 0 1 0-64h160a32 32 0 0 1 31.36 25.728L320.64 256H928a32 32 0 0 1 31.296 38.72l-96 448A32 32 0 0 1 832 768H384a32 32 0 0 1-31.36-25.728L229.76 128zm314.24 576h395.904l82.304-384H333.44z"
  4525. })
  4526. ]));
  4527. }
  4528. }), shopping_cart_default = _sfc_main237;
  4529. // src/components/shopping-trolley.vue
  4530. var import_vue475 = __toESM(require_vue()), import_vue476 = __toESM(require_vue()), _sfc_main238 = /* @__PURE__ */ (0, import_vue475.defineComponent)({
  4531. name: "ShoppingTrolley",
  4532. __name: "shopping-trolley",
  4533. setup(__props) {
  4534. return (_ctx, _cache) => ((0, import_vue476.openBlock)(), (0, import_vue476.createElementBlock)("svg", {
  4535. xmlns: "http://www.w3.org/2000/svg",
  4536. "xml:space": "preserve",
  4537. viewBox: "0 0 1024 1024"
  4538. }, [
  4539. (0, import_vue476.createElementVNode)("path", {
  4540. fill: "currentColor",
  4541. d: "M368 833c-13.3 0-24.5 4.5-33.5 13.5S321 866.7 321 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S415 893.3 415 880s-4.5-24.5-13.5-33.5S381.3 833 368 833m439-193c7.4 0 13.8-2.2 19.5-6.5S836 623.3 838 616l112-448c2-10-.2-19.2-6.5-27.5S929 128 919 128H96c-9.3 0-17 3-23 9s-9 13.7-9 23 3 17 9 23 13.7 9 23 9h96v576h672c9.3 0 17-3 23-9s9-13.7 9-23-3-17-9-23-13.7-9-23-9H256v-64zM256 192h622l-96 384H256zm432 641c-13.3 0-24.5 4.5-33.5 13.5S641 866.7 641 880s4.5 24.5 13.5 33.5 20.2 13.8 33.5 14.5c13.3-.7 24.5-5.5 33.5-14.5S735 893.3 735 880s-4.5-24.5-13.5-33.5S701.3 833 688 833"
  4542. })
  4543. ]));
  4544. }
  4545. }), shopping_trolley_default = _sfc_main238;
  4546. // src/components/smoking.vue
  4547. var import_vue477 = __toESM(require_vue()), import_vue478 = __toESM(require_vue()), _sfc_main239 = /* @__PURE__ */ (0, import_vue477.defineComponent)({
  4548. name: "Smoking",
  4549. __name: "smoking",
  4550. setup(__props) {
  4551. return (_ctx, _cache) => ((0, import_vue478.openBlock)(), (0, import_vue478.createElementBlock)("svg", {
  4552. xmlns: "http://www.w3.org/2000/svg",
  4553. viewBox: "0 0 1024 1024"
  4554. }, [
  4555. (0, import_vue478.createElementVNode)("path", {
  4556. fill: "currentColor",
  4557. d: "M256 576v128h640V576zm-32-64h704a32 32 0 0 1 32 32v192a32 32 0 0 1-32 32H224a32 32 0 0 1-32-32V544a32 32 0 0 1 32-32"
  4558. }),
  4559. (0, import_vue478.createElementVNode)("path", {
  4560. fill: "currentColor",
  4561. d: "M704 576h64v128h-64zM256 64h64v320h-64zM128 192h64v192h-64zM64 512h64v256H64z"
  4562. })
  4563. ]));
  4564. }
  4565. }), smoking_default = _sfc_main239;
  4566. // src/components/soccer.vue
  4567. var import_vue479 = __toESM(require_vue()), import_vue480 = __toESM(require_vue()), _sfc_main240 = /* @__PURE__ */ (0, import_vue479.defineComponent)({
  4568. name: "Soccer",
  4569. __name: "soccer",
  4570. setup(__props) {
  4571. return (_ctx, _cache) => ((0, import_vue480.openBlock)(), (0, import_vue480.createElementBlock)("svg", {
  4572. xmlns: "http://www.w3.org/2000/svg",
  4573. viewBox: "0 0 1024 1024"
  4574. }, [
  4575. (0, import_vue480.createElementVNode)("path", {
  4576. fill: "currentColor",
  4577. d: "M418.496 871.04 152.256 604.8c-16.512 94.016-2.368 178.624 42.944 224 44.928 44.928 129.344 58.752 223.296 42.24m72.32-18.176a573.06 573.06 0 0 0 224.832-137.216 573.1 573.1 0 0 0 137.216-224.832L533.888 171.84a578.56 578.56 0 0 0-227.52 138.496A567.7 567.7 0 0 0 170.432 532.48zM871.04 418.496c16.512-93.952 2.688-178.368-42.24-223.296-44.544-44.544-128.704-58.048-222.592-41.536zM149.952 874.048c-112.96-112.96-88.832-408.96 111.168-608.96C461.056 65.152 760.96 36.928 874.048 149.952c113.024 113.024 86.784 411.008-113.152 610.944s-497.92 226.112-610.944 113.152m452.544-497.792 22.656-22.656a32 32 0 0 1 45.248 45.248l-22.656 22.656 45.248 45.248A32 32 0 1 1 647.744 512l-45.248-45.248L557.248 512l45.248 45.248a32 32 0 1 1-45.248 45.248L512 557.248l-45.248 45.248L512 647.744a32 32 0 1 1-45.248 45.248l-45.248-45.248-22.656 22.656a32 32 0 1 1-45.248-45.248l22.656-22.656-45.248-45.248A32 32 0 1 1 376.256 512l45.248 45.248L466.752 512l-45.248-45.248a32 32 0 1 1 45.248-45.248L512 466.752l45.248-45.248L512 376.256a32 32 0 0 1 45.248-45.248z"
  4578. })
  4579. ]));
  4580. }
  4581. }), soccer_default = _sfc_main240;
  4582. // src/components/sold-out.vue
  4583. var import_vue481 = __toESM(require_vue()), import_vue482 = __toESM(require_vue()), _sfc_main241 = /* @__PURE__ */ (0, import_vue481.defineComponent)({
  4584. name: "SoldOut",
  4585. __name: "sold-out",
  4586. setup(__props) {
  4587. return (_ctx, _cache) => ((0, import_vue482.openBlock)(), (0, import_vue482.createElementBlock)("svg", {
  4588. xmlns: "http://www.w3.org/2000/svg",
  4589. viewBox: "0 0 1024 1024"
  4590. }, [
  4591. (0, import_vue482.createElementVNode)("path", {
  4592. fill: "currentColor",
  4593. d: "M704 288h131.072a32 32 0 0 1 31.808 28.8L886.4 512h-64.384l-16-160H704v96a32 32 0 1 1-64 0v-96H384v96a32 32 0 0 1-64 0v-96H217.92l-51.2 512H512v64H131.328a32 32 0 0 1-31.808-35.2l57.6-576a32 32 0 0 1 31.808-28.8H320v-22.336C320 154.688 405.504 64 512 64s192 90.688 192 201.664v22.4zm-64 0v-22.336C640 189.248 582.272 128 512 128s-128 61.248-128 137.664v22.4h256zm201.408 476.16a32 32 0 1 1 45.248 45.184l-128 128a32 32 0 0 1-45.248 0l-128-128a32 32 0 1 1 45.248-45.248L704 837.504V608a32 32 0 1 1 64 0v229.504l73.408-73.408z"
  4594. })
  4595. ]));
  4596. }
  4597. }), sold_out_default = _sfc_main241;
  4598. // src/components/sort-down.vue
  4599. var import_vue483 = __toESM(require_vue()), import_vue484 = __toESM(require_vue()), _sfc_main242 = /* @__PURE__ */ (0, import_vue483.defineComponent)({
  4600. name: "SortDown",
  4601. __name: "sort-down",
  4602. setup(__props) {
  4603. return (_ctx, _cache) => ((0, import_vue484.openBlock)(), (0, import_vue484.createElementBlock)("svg", {
  4604. xmlns: "http://www.w3.org/2000/svg",
  4605. viewBox: "0 0 1024 1024"
  4606. }, [
  4607. (0, import_vue484.createElementVNode)("path", {
  4608. fill: "currentColor",
  4609. d: "M576 96v709.568L333.312 562.816A32 32 0 1 0 288 608l297.408 297.344A32 32 0 0 0 640 882.688V96a32 32 0 0 0-64 0"
  4610. })
  4611. ]));
  4612. }
  4613. }), sort_down_default = _sfc_main242;
  4614. // src/components/sort-up.vue
  4615. var import_vue485 = __toESM(require_vue()), import_vue486 = __toESM(require_vue()), _sfc_main243 = /* @__PURE__ */ (0, import_vue485.defineComponent)({
  4616. name: "SortUp",
  4617. __name: "sort-up",
  4618. setup(__props) {
  4619. return (_ctx, _cache) => ((0, import_vue486.openBlock)(), (0, import_vue486.createElementBlock)("svg", {
  4620. xmlns: "http://www.w3.org/2000/svg",
  4621. viewBox: "0 0 1024 1024"
  4622. }, [
  4623. (0, import_vue486.createElementVNode)("path", {
  4624. fill: "currentColor",
  4625. d: "M384 141.248V928a32 32 0 1 0 64 0V218.56l242.688 242.688A32 32 0 1 0 736 416L438.592 118.656A32 32 0 0 0 384 141.248"
  4626. })
  4627. ]));
  4628. }
  4629. }), sort_up_default = _sfc_main243;
  4630. // src/components/sort.vue
  4631. var import_vue487 = __toESM(require_vue()), import_vue488 = __toESM(require_vue()), _sfc_main244 = /* @__PURE__ */ (0, import_vue487.defineComponent)({
  4632. name: "Sort",
  4633. __name: "sort",
  4634. setup(__props) {
  4635. return (_ctx, _cache) => ((0, import_vue488.openBlock)(), (0, import_vue488.createElementBlock)("svg", {
  4636. xmlns: "http://www.w3.org/2000/svg",
  4637. viewBox: "0 0 1024 1024"
  4638. }, [
  4639. (0, import_vue488.createElementVNode)("path", {
  4640. fill: "currentColor",
  4641. d: "M384 96a32 32 0 0 1 64 0v786.752a32 32 0 0 1-54.592 22.656L95.936 608a32 32 0 0 1 0-45.312h.128a32 32 0 0 1 45.184 0L384 805.632zm192 45.248a32 32 0 0 1 54.592-22.592L928.064 416a32 32 0 0 1 0 45.312h-.128a32 32 0 0 1-45.184 0L640 218.496V928a32 32 0 1 1-64 0z"
  4642. })
  4643. ]));
  4644. }
  4645. }), sort_default = _sfc_main244;
  4646. // src/components/stamp.vue
  4647. var import_vue489 = __toESM(require_vue()), import_vue490 = __toESM(require_vue()), _sfc_main245 = /* @__PURE__ */ (0, import_vue489.defineComponent)({
  4648. name: "Stamp",
  4649. __name: "stamp",
  4650. setup(__props) {
  4651. return (_ctx, _cache) => ((0, import_vue490.openBlock)(), (0, import_vue490.createElementBlock)("svg", {
  4652. xmlns: "http://www.w3.org/2000/svg",
  4653. viewBox: "0 0 1024 1024"
  4654. }, [
  4655. (0, import_vue490.createElementVNode)("path", {
  4656. fill: "currentColor",
  4657. d: "M624 475.968V640h144a128 128 0 0 1 128 128H128a128 128 0 0 1 128-128h144V475.968a192 192 0 1 1 224 0M128 896v-64h768v64z"
  4658. })
  4659. ]));
  4660. }
  4661. }), stamp_default = _sfc_main245;
  4662. // src/components/star-filled.vue
  4663. var import_vue491 = __toESM(require_vue()), import_vue492 = __toESM(require_vue()), _sfc_main246 = /* @__PURE__ */ (0, import_vue491.defineComponent)({
  4664. name: "StarFilled",
  4665. __name: "star-filled",
  4666. setup(__props) {
  4667. return (_ctx, _cache) => ((0, import_vue492.openBlock)(), (0, import_vue492.createElementBlock)("svg", {
  4668. xmlns: "http://www.w3.org/2000/svg",
  4669. viewBox: "0 0 1024 1024"
  4670. }, [
  4671. (0, import_vue492.createElementVNode)("path", {
  4672. fill: "currentColor",
  4673. d: "M313.6 924.48a70.4 70.4 0 0 1-74.152-5.365 70.4 70.4 0 0 1-27.992-68.875l37.888-220.928L88.96 472.96a70.4 70.4 0 0 1 3.788-104.225A70.4 70.4 0 0 1 128 352.896l221.76-32.256 99.2-200.96a70.4 70.4 0 0 1 100.246-28.595 70.4 70.4 0 0 1 25.962 28.595l99.2 200.96 221.824 32.256a70.4 70.4 0 0 1 39.04 120.064L774.72 629.376l37.888 220.928a70.4 70.4 0 0 1-102.144 74.24L512 820.096l-198.4 104.32z"
  4674. })
  4675. ]));
  4676. }
  4677. }), star_filled_default = _sfc_main246;
  4678. // src/components/star.vue
  4679. var import_vue493 = __toESM(require_vue()), import_vue494 = __toESM(require_vue()), _sfc_main247 = /* @__PURE__ */ (0, import_vue493.defineComponent)({
  4680. name: "Star",
  4681. __name: "star",
  4682. setup(__props) {
  4683. return (_ctx, _cache) => ((0, import_vue494.openBlock)(), (0, import_vue494.createElementBlock)("svg", {
  4684. xmlns: "http://www.w3.org/2000/svg",
  4685. viewBox: "0 0 1024 1024"
  4686. }, [
  4687. (0, import_vue494.createElementVNode)("path", {
  4688. fill: "currentColor",
  4689. d: "m512 747.84 228.16 119.936a6.4 6.4 0 0 0 9.28-6.72l-43.52-254.08 184.512-179.904a6.4 6.4 0 0 0-3.52-10.88l-255.104-37.12L517.76 147.904a6.4 6.4 0 0 0-11.52 0L392.192 379.072l-255.104 37.12a6.4 6.4 0 0 0-3.52 10.88L318.08 606.976l-43.584 254.08a6.4 6.4 0 0 0 9.28 6.72zM313.6 924.48a70.4 70.4 0 0 1-102.144-74.24l37.888-220.928L88.96 472.96A70.4 70.4 0 0 1 128 352.896l221.76-32.256 99.2-200.96a70.4 70.4 0 0 1 126.208 0l99.2 200.96 221.824 32.256a70.4 70.4 0 0 1 39.04 120.064L774.72 629.376l37.888 220.928a70.4 70.4 0 0 1-102.144 74.24L512 820.096l-198.4 104.32z"
  4690. })
  4691. ]));
  4692. }
  4693. }), star_default = _sfc_main247;
  4694. // src/components/stopwatch.vue
  4695. var import_vue495 = __toESM(require_vue()), import_vue496 = __toESM(require_vue()), _sfc_main248 = /* @__PURE__ */ (0, import_vue495.defineComponent)({
  4696. name: "Stopwatch",
  4697. __name: "stopwatch",
  4698. setup(__props) {
  4699. return (_ctx, _cache) => ((0, import_vue496.openBlock)(), (0, import_vue496.createElementBlock)("svg", {
  4700. xmlns: "http://www.w3.org/2000/svg",
  4701. viewBox: "0 0 1024 1024"
  4702. }, [
  4703. (0, import_vue496.createElementVNode)("path", {
  4704. fill: "currentColor",
  4705. d: "M512 896a384 384 0 1 0 0-768 384 384 0 0 0 0 768m0 64a448 448 0 1 1 0-896 448 448 0 0 1 0 896"
  4706. }),
  4707. (0, import_vue496.createElementVNode)("path", {
  4708. fill: "currentColor",
  4709. d: "M672 234.88c-39.168 174.464-80 298.624-122.688 372.48-64 110.848-202.624 30.848-138.624-80C453.376 453.44 540.48 355.968 672 234.816z"
  4710. })
  4711. ]));
  4712. }
  4713. }), stopwatch_default = _sfc_main248;
  4714. // src/components/success-filled.vue
  4715. var import_vue497 = __toESM(require_vue()), import_vue498 = __toESM(require_vue()), _sfc_main249 = /* @__PURE__ */ (0, import_vue497.defineComponent)({
  4716. name: "SuccessFilled",
  4717. __name: "success-filled",
  4718. setup(__props) {
  4719. return (_ctx, _cache) => ((0, import_vue498.openBlock)(), (0, import_vue498.createElementBlock)("svg", {
  4720. xmlns: "http://www.w3.org/2000/svg",
  4721. viewBox: "0 0 1024 1024"
  4722. }, [
  4723. (0, import_vue498.createElementVNode)("path", {
  4724. fill: "currentColor",
  4725. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m-55.808 536.384-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.27 38.27 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336z"
  4726. })
  4727. ]));
  4728. }
  4729. }), success_filled_default = _sfc_main249;
  4730. // src/components/sugar.vue
  4731. var import_vue499 = __toESM(require_vue()), import_vue500 = __toESM(require_vue()), _sfc_main250 = /* @__PURE__ */ (0, import_vue499.defineComponent)({
  4732. name: "Sugar",
  4733. __name: "sugar",
  4734. setup(__props) {
  4735. return (_ctx, _cache) => ((0, import_vue500.openBlock)(), (0, import_vue500.createElementBlock)("svg", {
  4736. xmlns: "http://www.w3.org/2000/svg",
  4737. viewBox: "0 0 1024 1024"
  4738. }, [
  4739. (0, import_vue500.createElementVNode)("path", {
  4740. fill: "currentColor",
  4741. d: "m801.728 349.184 4.48 4.48a128 128 0 0 1 0 180.992L534.656 806.144a128 128 0 0 1-181.056 0l-4.48-4.48-19.392 109.696a64 64 0 0 1-108.288 34.176L78.464 802.56a64 64 0 0 1 34.176-108.288l109.76-19.328-4.544-4.544a128 128 0 0 1 0-181.056l271.488-271.488a128 128 0 0 1 181.056 0l4.48 4.48 19.392-109.504a64 64 0 0 1 108.352-34.048l142.592 143.04a64 64 0 0 1-34.24 108.16zm-548.8 198.72h447.168v2.24l60.8-60.8a63.8 63.8 0 0 0 18.752-44.416h-426.88l-89.664 89.728a64 64 0 0 0-10.24 13.248zm0 64q4.128 7.104 10.176 13.248l135.744 135.744a64 64 0 0 0 90.496 0L638.4 611.904zm490.048-230.976L625.152 263.104a64 64 0 0 0-90.496 0L416.768 380.928zM123.712 757.312l142.976 142.976 24.32-137.6a25.6 25.6 0 0 0-29.696-29.632zm633.6-633.344-24.32 137.472a25.6 25.6 0 0 0 29.632 29.632l137.28-24.064-142.656-143.04z"
  4742. })
  4743. ]));
  4744. }
  4745. }), sugar_default = _sfc_main250;
  4746. // src/components/suitcase-line.vue
  4747. var import_vue501 = __toESM(require_vue()), import_vue502 = __toESM(require_vue()), _sfc_main251 = /* @__PURE__ */ (0, import_vue501.defineComponent)({
  4748. name: "SuitcaseLine",
  4749. __name: "suitcase-line",
  4750. setup(__props) {
  4751. return (_ctx, _cache) => ((0, import_vue502.openBlock)(), (0, import_vue502.createElementBlock)("svg", {
  4752. xmlns: "http://www.w3.org/2000/svg",
  4753. "xml:space": "preserve",
  4754. viewBox: "0 0 1024 1024"
  4755. }, [
  4756. (0, import_vue502.createElementVNode)("path", {
  4757. fill: "currentColor",
  4758. d: "M922.5 229.5c-24.32-24.34-54.49-36.84-90.5-37.5H704v-64c-.68-17.98-7.02-32.98-19.01-44.99S658.01 64.66 640 64H384c-17.98.68-32.98 7.02-44.99 19.01S320.66 110 320 128v64H192c-35.99.68-66.16 13.18-90.5 37.5S64.66 283.99 64 320v448c.68 35.99 13.18 66.16 37.5 90.5s54.49 36.84 90.5 37.5h640c35.99-.68 66.16-13.18 90.5-37.5s36.84-54.49 37.5-90.5V320c-.68-35.99-13.18-66.16-37.5-90.5M384 128h256v64H384zM256 832h-64c-17.98-.68-32.98-7.02-44.99-19.01S128.66 786.01 128 768V448h128zm448 0H320V448h384zm192-64c-.68 17.98-7.02 32.98-19.01 44.99S850.01 831.34 832 832h-64V448h128zm0-384H128v-64c.69-17.98 7.02-32.98 19.01-44.99S173.99 256.66 192 256h640c17.98.69 32.98 7.02 44.99 19.01S895.34 301.99 896 320z"
  4759. })
  4760. ]));
  4761. }
  4762. }), suitcase_line_default = _sfc_main251;
  4763. // src/components/suitcase.vue
  4764. var import_vue503 = __toESM(require_vue()), import_vue504 = __toESM(require_vue()), _sfc_main252 = /* @__PURE__ */ (0, import_vue503.defineComponent)({
  4765. name: "Suitcase",
  4766. __name: "suitcase",
  4767. setup(__props) {
  4768. return (_ctx, _cache) => ((0, import_vue504.openBlock)(), (0, import_vue504.createElementBlock)("svg", {
  4769. xmlns: "http://www.w3.org/2000/svg",
  4770. viewBox: "0 0 1024 1024"
  4771. }, [
  4772. (0, import_vue504.createElementVNode)("path", {
  4773. fill: "currentColor",
  4774. d: "M128 384h768v-64a64 64 0 0 0-64-64H192a64 64 0 0 0-64 64zm0 64v320a64 64 0 0 0 64 64h640a64 64 0 0 0 64-64V448zm64-256h640a128 128 0 0 1 128 128v448a128 128 0 0 1-128 128H192A128 128 0 0 1 64 768V320a128 128 0 0 1 128-128"
  4775. }),
  4776. (0, import_vue504.createElementVNode)("path", {
  4777. fill: "currentColor",
  4778. d: "M384 128v64h256v-64zm0-64h256a64 64 0 0 1 64 64v64a64 64 0 0 1-64 64H384a64 64 0 0 1-64-64v-64a64 64 0 0 1 64-64"
  4779. })
  4780. ]));
  4781. }
  4782. }), suitcase_default = _sfc_main252;
  4783. // src/components/sunny.vue
  4784. var import_vue505 = __toESM(require_vue()), import_vue506 = __toESM(require_vue()), _sfc_main253 = /* @__PURE__ */ (0, import_vue505.defineComponent)({
  4785. name: "Sunny",
  4786. __name: "sunny",
  4787. setup(__props) {
  4788. return (_ctx, _cache) => ((0, import_vue506.openBlock)(), (0, import_vue506.createElementBlock)("svg", {
  4789. xmlns: "http://www.w3.org/2000/svg",
  4790. viewBox: "0 0 1024 1024"
  4791. }, [
  4792. (0, import_vue506.createElementVNode)("path", {
  4793. fill: "currentColor",
  4794. d: "M512 704a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512m0-704a32 32 0 0 1 32 32v64a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32m0 768a32 32 0 0 1 32 32v64a32 32 0 1 1-64 0v-64a32 32 0 0 1 32-32M195.2 195.2a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 1 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248m543.104 543.104a32 32 0 0 1 45.248 0l45.248 45.248a32 32 0 0 1-45.248 45.248l-45.248-45.248a32 32 0 0 1 0-45.248M64 512a32 32 0 0 1 32-32h64a32 32 0 0 1 0 64H96a32 32 0 0 1-32-32m768 0a32 32 0 0 1 32-32h64a32 32 0 1 1 0 64h-64a32 32 0 0 1-32-32M195.2 828.8a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248L240.448 828.8a32 32 0 0 1-45.248 0m543.104-543.104a32 32 0 0 1 0-45.248l45.248-45.248a32 32 0 0 1 45.248 45.248l-45.248 45.248a32 32 0 0 1-45.248 0"
  4795. })
  4796. ]));
  4797. }
  4798. }), sunny_default = _sfc_main253;
  4799. // src/components/sunrise.vue
  4800. var import_vue507 = __toESM(require_vue()), import_vue508 = __toESM(require_vue()), _sfc_main254 = /* @__PURE__ */ (0, import_vue507.defineComponent)({
  4801. name: "Sunrise",
  4802. __name: "sunrise",
  4803. setup(__props) {
  4804. return (_ctx, _cache) => ((0, import_vue508.openBlock)(), (0, import_vue508.createElementBlock)("svg", {
  4805. xmlns: "http://www.w3.org/2000/svg",
  4806. viewBox: "0 0 1024 1024"
  4807. }, [
  4808. (0, import_vue508.createElementVNode)("path", {
  4809. fill: "currentColor",
  4810. d: "M32 768h960a32 32 0 1 1 0 64H32a32 32 0 1 1 0-64m129.408-96a352 352 0 0 1 701.184 0h-64.32a288 288 0 0 0-572.544 0zM512 128a32 32 0 0 1 32 32v96a32 32 0 0 1-64 0v-96a32 32 0 0 1 32-32m407.296 168.704a32 32 0 0 1 0 45.248l-67.84 67.84a32 32 0 1 1-45.248-45.248l67.84-67.84a32 32 0 0 1 45.248 0m-814.592 0a32 32 0 0 1 45.248 0l67.84 67.84a32 32 0 1 1-45.248 45.248l-67.84-67.84a32 32 0 0 1 0-45.248"
  4811. })
  4812. ]));
  4813. }
  4814. }), sunrise_default = _sfc_main254;
  4815. // src/components/sunset.vue
  4816. var import_vue509 = __toESM(require_vue()), import_vue510 = __toESM(require_vue()), _sfc_main255 = /* @__PURE__ */ (0, import_vue509.defineComponent)({
  4817. name: "Sunset",
  4818. __name: "sunset",
  4819. setup(__props) {
  4820. return (_ctx, _cache) => ((0, import_vue510.openBlock)(), (0, import_vue510.createElementBlock)("svg", {
  4821. xmlns: "http://www.w3.org/2000/svg",
  4822. viewBox: "0 0 1024 1024"
  4823. }, [
  4824. (0, import_vue510.createElementVNode)("path", {
  4825. fill: "currentColor",
  4826. d: "M82.56 640a448 448 0 1 1 858.88 0h-67.2a384 384 0 1 0-724.288 0zM32 704h960q32 0 32 32t-32 32H32q-32 0-32-32t32-32m256 128h448q32 0 32 32t-32 32H288q-32 0-32-32t32-32"
  4827. })
  4828. ]));
  4829. }
  4830. }), sunset_default = _sfc_main255;
  4831. // src/components/switch-button.vue
  4832. var import_vue511 = __toESM(require_vue()), import_vue512 = __toESM(require_vue()), _sfc_main256 = /* @__PURE__ */ (0, import_vue511.defineComponent)({
  4833. name: "SwitchButton",
  4834. __name: "switch-button",
  4835. setup(__props) {
  4836. return (_ctx, _cache) => ((0, import_vue512.openBlock)(), (0, import_vue512.createElementBlock)("svg", {
  4837. xmlns: "http://www.w3.org/2000/svg",
  4838. viewBox: "0 0 1024 1024"
  4839. }, [
  4840. (0, import_vue512.createElementVNode)("path", {
  4841. fill: "currentColor",
  4842. d: "M352 159.872V230.4a352 352 0 1 0 320 0v-70.528A416.128 416.128 0 0 1 512 960a416 416 0 0 1-160-800.128"
  4843. }),
  4844. (0, import_vue512.createElementVNode)("path", {
  4845. fill: "currentColor",
  4846. d: "M512 64q32 0 32 32v320q0 32-32 32t-32-32V96q0-32 32-32"
  4847. })
  4848. ]));
  4849. }
  4850. }), switch_button_default = _sfc_main256;
  4851. // src/components/switch-filled.vue
  4852. var import_vue513 = __toESM(require_vue()), import_vue514 = __toESM(require_vue()), _sfc_main257 = /* @__PURE__ */ (0, import_vue513.defineComponent)({
  4853. name: "SwitchFilled",
  4854. __name: "switch-filled",
  4855. setup(__props) {
  4856. return (_ctx, _cache) => ((0, import_vue514.openBlock)(), (0, import_vue514.createElementBlock)("svg", {
  4857. xmlns: "http://www.w3.org/2000/svg",
  4858. "xml:space": "preserve",
  4859. viewBox: "0 0 1024 1024"
  4860. }, [
  4861. (0, import_vue514.createElementVNode)("path", {
  4862. fill: "currentColor",
  4863. d: "M247.47 358.4v.04c.07 19.17 7.72 37.53 21.27 51.09s31.92 21.2 51.09 21.27c39.86 0 72.41-32.6 72.41-72.4s-32.6-72.36-72.41-72.36-72.36 32.55-72.36 72.36"
  4864. }),
  4865. (0, import_vue514.createElementVNode)("path", {
  4866. fill: "currentColor",
  4867. d: "M492.38 128H324.7c-52.16 0-102.19 20.73-139.08 57.61a196.66 196.66 0 0 0-57.61 139.08V698.7c-.01 25.84 5.08 51.42 14.96 75.29s24.36 45.56 42.63 63.83 39.95 32.76 63.82 42.65a196.7 196.7 0 0 0 75.28 14.98h167.68c3.03 0 5.46-2.43 5.46-5.42V133.42c.6-2.99-1.83-5.42-5.46-5.42m-56.11 705.88H324.7c-17.76.13-35.36-3.33-51.75-10.18s-31.22-16.94-43.61-29.67c-25.3-25.35-39.81-59.1-39.81-95.32V324.69c-.13-17.75 3.33-35.35 10.17-51.74a131.7 131.7 0 0 1 29.64-43.62c25.39-25.3 59.14-39.81 95.36-39.81h111.57zm402.12-647.67a196.66 196.66 0 0 0-139.08-57.61H580.48c-3.03 0-4.82 2.43-4.82 4.82v757.16c-.6 2.99 1.79 5.42 5.42 5.42h118.23a196.7 196.7 0 0 0 139.08-57.61A196.66 196.66 0 0 0 896 699.31V325.29a196.7 196.7 0 0 0-57.61-139.08m-111.3 441.92c-42.83 0-77.82-34.99-77.82-77.82s34.98-77.82 77.82-77.82c42.83 0 77.82 34.99 77.82 77.82s-34.99 77.82-77.82 77.82"
  4868. })
  4869. ]));
  4870. }
  4871. }), switch_filled_default = _sfc_main257;
  4872. // src/components/switch.vue
  4873. var import_vue515 = __toESM(require_vue()), import_vue516 = __toESM(require_vue()), _sfc_main258 = /* @__PURE__ */ (0, import_vue515.defineComponent)({
  4874. name: "Switch",
  4875. __name: "switch",
  4876. setup(__props) {
  4877. return (_ctx, _cache) => ((0, import_vue516.openBlock)(), (0, import_vue516.createElementBlock)("svg", {
  4878. xmlns: "http://www.w3.org/2000/svg",
  4879. viewBox: "0 0 1024 1024"
  4880. }, [
  4881. (0, import_vue516.createElementVNode)("path", {
  4882. fill: "currentColor",
  4883. d: "M118.656 438.656a32 32 0 0 1 0-45.248L416 96l4.48-3.776A32 32 0 0 1 461.248 96l3.712 4.48a32.064 32.064 0 0 1-3.712 40.832L218.56 384H928a32 32 0 1 1 0 64H141.248a32 32 0 0 1-22.592-9.344M64 608a32 32 0 0 1 32-32h786.752a32 32 0 0 1 22.656 54.592L608 928l-4.48 3.776a32.064 32.064 0 0 1-40.832-49.024L805.632 640H96a32 32 0 0 1-32-32"
  4884. })
  4885. ]));
  4886. }
  4887. }), switch_default = _sfc_main258;
  4888. // src/components/takeaway-box.vue
  4889. var import_vue517 = __toESM(require_vue()), import_vue518 = __toESM(require_vue()), _sfc_main259 = /* @__PURE__ */ (0, import_vue517.defineComponent)({
  4890. name: "TakeawayBox",
  4891. __name: "takeaway-box",
  4892. setup(__props) {
  4893. return (_ctx, _cache) => ((0, import_vue518.openBlock)(), (0, import_vue518.createElementBlock)("svg", {
  4894. xmlns: "http://www.w3.org/2000/svg",
  4895. viewBox: "0 0 1024 1024"
  4896. }, [
  4897. (0, import_vue518.createElementVNode)("path", {
  4898. fill: "currentColor",
  4899. d: "M832 384H192v448h640zM96 320h832V128H96zm800 64v480a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V384H64a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h896a32 32 0 0 1 32 32v256a32 32 0 0 1-32 32zM416 512h192a32 32 0 0 1 0 64H416a32 32 0 0 1 0-64"
  4900. })
  4901. ]));
  4902. }
  4903. }), takeaway_box_default = _sfc_main259;
  4904. // src/components/ticket.vue
  4905. var import_vue519 = __toESM(require_vue()), import_vue520 = __toESM(require_vue()), _sfc_main260 = /* @__PURE__ */ (0, import_vue519.defineComponent)({
  4906. name: "Ticket",
  4907. __name: "ticket",
  4908. setup(__props) {
  4909. return (_ctx, _cache) => ((0, import_vue520.openBlock)(), (0, import_vue520.createElementBlock)("svg", {
  4910. xmlns: "http://www.w3.org/2000/svg",
  4911. viewBox: "0 0 1024 1024"
  4912. }, [
  4913. (0, import_vue520.createElementVNode)("path", {
  4914. fill: "currentColor",
  4915. d: "M640 832H64V640a128 128 0 1 0 0-256V192h576v160h64V192h256v192a128 128 0 1 0 0 256v192H704V672h-64zm0-416v192h64V416z"
  4916. })
  4917. ]));
  4918. }
  4919. }), ticket_default = _sfc_main260;
  4920. // src/components/tickets.vue
  4921. var import_vue521 = __toESM(require_vue()), import_vue522 = __toESM(require_vue()), _sfc_main261 = /* @__PURE__ */ (0, import_vue521.defineComponent)({
  4922. name: "Tickets",
  4923. __name: "tickets",
  4924. setup(__props) {
  4925. return (_ctx, _cache) => ((0, import_vue522.openBlock)(), (0, import_vue522.createElementBlock)("svg", {
  4926. xmlns: "http://www.w3.org/2000/svg",
  4927. viewBox: "0 0 1024 1024"
  4928. }, [
  4929. (0, import_vue522.createElementVNode)("path", {
  4930. fill: "currentColor",
  4931. d: "M192 128v768h640V128zm-32-64h704a32 32 0 0 1 32 32v832a32 32 0 0 1-32 32H160a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32m160 448h384v64H320zm0-192h192v64H320zm0 384h384v64H320z"
  4932. })
  4933. ]));
  4934. }
  4935. }), tickets_default = _sfc_main261;
  4936. // src/components/timer.vue
  4937. var import_vue523 = __toESM(require_vue()), import_vue524 = __toESM(require_vue()), _sfc_main262 = /* @__PURE__ */ (0, import_vue523.defineComponent)({
  4938. name: "Timer",
  4939. __name: "timer",
  4940. setup(__props) {
  4941. return (_ctx, _cache) => ((0, import_vue524.openBlock)(), (0, import_vue524.createElementBlock)("svg", {
  4942. xmlns: "http://www.w3.org/2000/svg",
  4943. viewBox: "0 0 1024 1024"
  4944. }, [
  4945. (0, import_vue524.createElementVNode)("path", {
  4946. fill: "currentColor",
  4947. d: "M512 896a320 320 0 1 0 0-640 320 320 0 0 0 0 640m0 64a384 384 0 1 1 0-768 384 384 0 0 1 0 768"
  4948. }),
  4949. (0, import_vue524.createElementVNode)("path", {
  4950. fill: "currentColor",
  4951. d: "M512 320a32 32 0 0 1 32 32l-.512 224a32 32 0 1 1-64 0L480 352a32 32 0 0 1 32-32"
  4952. }),
  4953. (0, import_vue524.createElementVNode)("path", {
  4954. fill: "currentColor",
  4955. d: "M448 576a64 64 0 1 0 128 0 64 64 0 1 0-128 0m96-448v128h-64V128h-96a32 32 0 0 1 0-64h256a32 32 0 1 1 0 64z"
  4956. })
  4957. ]));
  4958. }
  4959. }), timer_default = _sfc_main262;
  4960. // src/components/toilet-paper.vue
  4961. var import_vue525 = __toESM(require_vue()), import_vue526 = __toESM(require_vue()), _sfc_main263 = /* @__PURE__ */ (0, import_vue525.defineComponent)({
  4962. name: "ToiletPaper",
  4963. __name: "toilet-paper",
  4964. setup(__props) {
  4965. return (_ctx, _cache) => ((0, import_vue526.openBlock)(), (0, import_vue526.createElementBlock)("svg", {
  4966. xmlns: "http://www.w3.org/2000/svg",
  4967. viewBox: "0 0 1024 1024"
  4968. }, [
  4969. (0, import_vue526.createElementVNode)("path", {
  4970. fill: "currentColor",
  4971. d: "M595.2 128H320a192 192 0 0 0-192 192v576h384V352c0-90.496 32.448-171.2 83.2-224M736 64c123.712 0 224 128.96 224 288S859.712 640 736 640H576v320H64V320A256 256 0 0 1 320 64zM576 352v224h160c84.352 0 160-97.28 160-224s-75.648-224-160-224-160 97.28-160 224"
  4972. }),
  4973. (0, import_vue526.createElementVNode)("path", {
  4974. fill: "currentColor",
  4975. d: "M736 448c-35.328 0-64-43.008-64-96s28.672-96 64-96 64 43.008 64 96-28.672 96-64 96"
  4976. })
  4977. ]));
  4978. }
  4979. }), toilet_paper_default = _sfc_main263;
  4980. // src/components/tools.vue
  4981. var import_vue527 = __toESM(require_vue()), import_vue528 = __toESM(require_vue()), _sfc_main264 = /* @__PURE__ */ (0, import_vue527.defineComponent)({
  4982. name: "Tools",
  4983. __name: "tools",
  4984. setup(__props) {
  4985. return (_ctx, _cache) => ((0, import_vue528.openBlock)(), (0, import_vue528.createElementBlock)("svg", {
  4986. xmlns: "http://www.w3.org/2000/svg",
  4987. viewBox: "0 0 1024 1024"
  4988. }, [
  4989. (0, import_vue528.createElementVNode)("path", {
  4990. fill: "currentColor",
  4991. d: "M764.416 254.72a351.7 351.7 0 0 1 86.336 149.184H960v192.064H850.752a351.7 351.7 0 0 1-86.336 149.312l54.72 94.72-166.272 96-54.592-94.72a352.64 352.64 0 0 1-172.48 0L371.136 936l-166.272-96 54.72-94.72a351.7 351.7 0 0 1-86.336-149.312H64v-192h109.248a351.7 351.7 0 0 1 86.336-149.312L204.8 160l166.208-96h.192l54.656 94.592a352.64 352.64 0 0 1 172.48 0L652.8 64h.128L819.2 160l-54.72 94.72zM704 499.968a192 192 0 1 0-384 0 192 192 0 0 0 384 0"
  4992. })
  4993. ]));
  4994. }
  4995. }), tools_default = _sfc_main264;
  4996. // src/components/top-left.vue
  4997. var import_vue529 = __toESM(require_vue()), import_vue530 = __toESM(require_vue()), _sfc_main265 = /* @__PURE__ */ (0, import_vue529.defineComponent)({
  4998. name: "TopLeft",
  4999. __name: "top-left",
  5000. setup(__props) {
  5001. return (_ctx, _cache) => ((0, import_vue530.openBlock)(), (0, import_vue530.createElementBlock)("svg", {
  5002. xmlns: "http://www.w3.org/2000/svg",
  5003. viewBox: "0 0 1024 1024"
  5004. }, [
  5005. (0, import_vue530.createElementVNode)("path", {
  5006. fill: "currentColor",
  5007. d: "M256 256h416a32 32 0 1 0 0-64H224a32 32 0 0 0-32 32v448a32 32 0 0 0 64 0z"
  5008. }),
  5009. (0, import_vue530.createElementVNode)("path", {
  5010. fill: "currentColor",
  5011. d: "M246.656 201.344a32 32 0 0 0-45.312 45.312l544 544a32 32 0 0 0 45.312-45.312z"
  5012. })
  5013. ]));
  5014. }
  5015. }), top_left_default = _sfc_main265;
  5016. // src/components/top-right.vue
  5017. var import_vue531 = __toESM(require_vue()), import_vue532 = __toESM(require_vue()), _sfc_main266 = /* @__PURE__ */ (0, import_vue531.defineComponent)({
  5018. name: "TopRight",
  5019. __name: "top-right",
  5020. setup(__props) {
  5021. return (_ctx, _cache) => ((0, import_vue532.openBlock)(), (0, import_vue532.createElementBlock)("svg", {
  5022. xmlns: "http://www.w3.org/2000/svg",
  5023. viewBox: "0 0 1024 1024"
  5024. }, [
  5025. (0, import_vue532.createElementVNode)("path", {
  5026. fill: "currentColor",
  5027. d: "M768 256H353.6a32 32 0 1 1 0-64H800a32 32 0 0 1 32 32v448a32 32 0 0 1-64 0z"
  5028. }),
  5029. (0, import_vue532.createElementVNode)("path", {
  5030. fill: "currentColor",
  5031. d: "M777.344 201.344a32 32 0 0 1 45.312 45.312l-544 544a32 32 0 0 1-45.312-45.312z"
  5032. })
  5033. ]));
  5034. }
  5035. }), top_right_default = _sfc_main266;
  5036. // src/components/top.vue
  5037. var import_vue533 = __toESM(require_vue()), import_vue534 = __toESM(require_vue()), _sfc_main267 = /* @__PURE__ */ (0, import_vue533.defineComponent)({
  5038. name: "Top",
  5039. __name: "top",
  5040. setup(__props) {
  5041. return (_ctx, _cache) => ((0, import_vue534.openBlock)(), (0, import_vue534.createElementBlock)("svg", {
  5042. xmlns: "http://www.w3.org/2000/svg",
  5043. viewBox: "0 0 1024 1024"
  5044. }, [
  5045. (0, import_vue534.createElementVNode)("path", {
  5046. fill: "currentColor",
  5047. d: "M572.235 205.282v600.365a30.118 30.118 0 1 1-60.235 0V205.282L292.382 438.633a28.913 28.913 0 0 1-42.646 0 33.43 33.43 0 0 1 0-45.236l271.058-288.045a28.913 28.913 0 0 1 42.647 0L834.5 393.397a33.43 33.43 0 0 1 0 45.176 28.913 28.913 0 0 1-42.647 0l-219.618-233.23z"
  5048. })
  5049. ]));
  5050. }
  5051. }), top_default = _sfc_main267;
  5052. // src/components/trend-charts.vue
  5053. var import_vue535 = __toESM(require_vue()), import_vue536 = __toESM(require_vue()), _sfc_main268 = /* @__PURE__ */ (0, import_vue535.defineComponent)({
  5054. name: "TrendCharts",
  5055. __name: "trend-charts",
  5056. setup(__props) {
  5057. return (_ctx, _cache) => ((0, import_vue536.openBlock)(), (0, import_vue536.createElementBlock)("svg", {
  5058. xmlns: "http://www.w3.org/2000/svg",
  5059. viewBox: "0 0 1024 1024"
  5060. }, [
  5061. (0, import_vue536.createElementVNode)("path", {
  5062. fill: "currentColor",
  5063. d: "M128 896V128h768v768zm291.712-327.296 128 102.4 180.16-201.792-47.744-42.624-139.84 156.608-128-102.4-180.16 201.792 47.744 42.624zM816 352a48 48 0 1 0-96 0 48 48 0 0 0 96 0"
  5064. })
  5065. ]));
  5066. }
  5067. }), trend_charts_default = _sfc_main268;
  5068. // src/components/trophy-base.vue
  5069. var import_vue537 = __toESM(require_vue()), import_vue538 = __toESM(require_vue()), _sfc_main269 = /* @__PURE__ */ (0, import_vue537.defineComponent)({
  5070. name: "TrophyBase",
  5071. __name: "trophy-base",
  5072. setup(__props) {
  5073. return (_ctx, _cache) => ((0, import_vue538.openBlock)(), (0, import_vue538.createElementBlock)("svg", {
  5074. xmlns: "http://www.w3.org/2000/svg",
  5075. "xml:space": "preserve",
  5076. viewBox: "0 0 1024 1024"
  5077. }, [
  5078. (0, import_vue538.createElementVNode)("path", {
  5079. fill: "currentColor",
  5080. d: "M918.4 201.6c-6.4-6.4-12.8-9.6-22.4-9.6H768V96c0-9.6-3.2-16-9.6-22.4S745.6 64 736 64H288c-9.6 0-16 3.2-22.4 9.6S256 86.4 256 96v96H128c-9.6 0-16 3.2-22.4 9.6S96 217.6 96 224c3.2 108.8 25.6 185.6 64 224 34.4 34.4 77.56 55.65 127.65 61.99 10.91 20.44 24.78 39.25 41.95 56.41 40.86 40.86 91 65.47 150.4 71.9V768h-96c-9.6 0-16 3.2-22.4 9.6S352 790.4 352 800s3.2 16 9.6 22.4 12.8 9.6 22.4 9.6h256c9.6 0 16-3.2 22.4-9.6s9.6-12.8 9.6-22.4-3.2-16-9.6-22.4-12.8-9.6-22.4-9.6h-96V637.26c59.4-7.71 109.54-30.01 150.4-70.86 17.2-17.2 31.51-36.06 42.81-56.55 48.93-6.51 90.02-27.7 126.79-61.85 38.4-38.4 60.8-112 64-224 0-6.4-3.2-16-9.6-22.4M256 438.4c-19.2-6.4-35.2-19.2-51.2-35.2-22.4-22.4-35.2-70.4-41.6-147.2H256zm390.4 80C608 553.6 566.4 576 512 576s-99.2-19.2-134.4-57.6S320 438.4 320 384V128h384v256q0 81.6-57.6 134.4m172.8-115.2c-16 16-32 25.6-51.2 35.2V256h92.8c-6.4 76.8-19.2 124.8-41.6 147.2M768 896H256c-9.6 0-16 3.2-22.4 9.6S224 918.4 224 928s3.2 16 9.6 22.4 12.8 9.6 22.4 9.6h512c9.6 0 16-3.2 22.4-9.6s9.6-12.8 9.6-22.4-3.2-16-9.6-22.4-12.8-9.6-22.4-9.6"
  5081. })
  5082. ]));
  5083. }
  5084. }), trophy_base_default = _sfc_main269;
  5085. // src/components/trophy.vue
  5086. var import_vue539 = __toESM(require_vue()), import_vue540 = __toESM(require_vue()), _sfc_main270 = /* @__PURE__ */ (0, import_vue539.defineComponent)({
  5087. name: "Trophy",
  5088. __name: "trophy",
  5089. setup(__props) {
  5090. return (_ctx, _cache) => ((0, import_vue540.openBlock)(), (0, import_vue540.createElementBlock)("svg", {
  5091. xmlns: "http://www.w3.org/2000/svg",
  5092. viewBox: "0 0 1024 1024"
  5093. }, [
  5094. (0, import_vue540.createElementVNode)("path", {
  5095. fill: "currentColor",
  5096. d: "M480 896V702.08A256.26 256.26 0 0 1 264.064 512h-32.64a96 96 0 0 1-91.968-68.416L93.632 290.88a76.8 76.8 0 0 1 73.6-98.88H256V96a32 32 0 0 1 32-32h448a32 32 0 0 1 32 32v96h88.768a76.8 76.8 0 0 1 73.6 98.88L884.48 443.52A96 96 0 0 1 792.576 512h-32.64A256.26 256.26 0 0 1 544 702.08V896h128a32 32 0 1 1 0 64H352a32 32 0 1 1 0-64zm224-448V128H320v320a192 192 0 1 0 384 0m64 0h24.576a32 32 0 0 0 30.656-22.784l45.824-152.768A12.8 12.8 0 0 0 856.768 256H768zm-512 0V256h-88.768a12.8 12.8 0 0 0-12.288 16.448l45.824 152.768A32 32 0 0 0 231.424 448z"
  5097. })
  5098. ]));
  5099. }
  5100. }), trophy_default = _sfc_main270;
  5101. // src/components/turn-off.vue
  5102. var import_vue541 = __toESM(require_vue()), import_vue542 = __toESM(require_vue()), _sfc_main271 = /* @__PURE__ */ (0, import_vue541.defineComponent)({
  5103. name: "TurnOff",
  5104. __name: "turn-off",
  5105. setup(__props) {
  5106. return (_ctx, _cache) => ((0, import_vue542.openBlock)(), (0, import_vue542.createElementBlock)("svg", {
  5107. xmlns: "http://www.w3.org/2000/svg",
  5108. viewBox: "0 0 1024 1024"
  5109. }, [
  5110. (0, import_vue542.createElementVNode)("path", {
  5111. fill: "currentColor",
  5112. d: "M329.956 257.138a254.862 254.862 0 0 0 0 509.724h364.088a254.862 254.862 0 0 0 0-509.724zm0-72.818h364.088a327.68 327.68 0 1 1 0 655.36H329.956a327.68 327.68 0 1 1 0-655.36"
  5113. }),
  5114. (0, import_vue542.createElementVNode)("path", {
  5115. fill: "currentColor",
  5116. d: "M329.956 621.227a109.227 109.227 0 1 0 0-218.454 109.227 109.227 0 0 0 0 218.454m0 72.817a182.044 182.044 0 1 1 0-364.088 182.044 182.044 0 0 1 0 364.088"
  5117. })
  5118. ]));
  5119. }
  5120. }), turn_off_default = _sfc_main271;
  5121. // src/components/umbrella.vue
  5122. var import_vue543 = __toESM(require_vue()), import_vue544 = __toESM(require_vue()), _sfc_main272 = /* @__PURE__ */ (0, import_vue543.defineComponent)({
  5123. name: "Umbrella",
  5124. __name: "umbrella",
  5125. setup(__props) {
  5126. return (_ctx, _cache) => ((0, import_vue544.openBlock)(), (0, import_vue544.createElementBlock)("svg", {
  5127. xmlns: "http://www.w3.org/2000/svg",
  5128. viewBox: "0 0 1024 1024"
  5129. }, [
  5130. (0, import_vue544.createElementVNode)("path", {
  5131. fill: "currentColor",
  5132. d: "M320 768a32 32 0 1 1 64 0 64 64 0 0 0 128 0V512H64a448 448 0 1 1 896 0H576v256a128 128 0 1 1-256 0m570.688-320a384.128 384.128 0 0 0-757.376 0z"
  5133. })
  5134. ]));
  5135. }
  5136. }), umbrella_default = _sfc_main272;
  5137. // src/components/unlock.vue
  5138. var import_vue545 = __toESM(require_vue()), import_vue546 = __toESM(require_vue()), _sfc_main273 = /* @__PURE__ */ (0, import_vue545.defineComponent)({
  5139. name: "Unlock",
  5140. __name: "unlock",
  5141. setup(__props) {
  5142. return (_ctx, _cache) => ((0, import_vue546.openBlock)(), (0, import_vue546.createElementBlock)("svg", {
  5143. xmlns: "http://www.w3.org/2000/svg",
  5144. viewBox: "0 0 1024 1024"
  5145. }, [
  5146. (0, import_vue546.createElementVNode)("path", {
  5147. fill: "currentColor",
  5148. d: "M224 448a32 32 0 0 0-32 32v384a32 32 0 0 0 32 32h576a32 32 0 0 0 32-32V480a32 32 0 0 0-32-32zm0-64h576a96 96 0 0 1 96 96v384a96 96 0 0 1-96 96H224a96 96 0 0 1-96-96V480a96 96 0 0 1 96-96"
  5149. }),
  5150. (0, import_vue546.createElementVNode)("path", {
  5151. fill: "currentColor",
  5152. d: "M512 544a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V576a32 32 0 0 1 32-32m178.304-295.296A192.064 192.064 0 0 0 320 320v64h352l96 38.4V448H256V320a256 256 0 0 1 493.76-95.104z"
  5153. })
  5154. ]));
  5155. }
  5156. }), unlock_default = _sfc_main273;
  5157. // src/components/upload-filled.vue
  5158. var import_vue547 = __toESM(require_vue()), import_vue548 = __toESM(require_vue()), _sfc_main274 = /* @__PURE__ */ (0, import_vue547.defineComponent)({
  5159. name: "UploadFilled",
  5160. __name: "upload-filled",
  5161. setup(__props) {
  5162. return (_ctx, _cache) => ((0, import_vue548.openBlock)(), (0, import_vue548.createElementBlock)("svg", {
  5163. xmlns: "http://www.w3.org/2000/svg",
  5164. viewBox: "0 0 1024 1024"
  5165. }, [
  5166. (0, import_vue548.createElementVNode)("path", {
  5167. fill: "currentColor",
  5168. d: "M544 864V672h128L512 480 352 672h128v192H320v-1.6c-5.376.32-10.496 1.6-16 1.6A240 240 0 0 1 64 624c0-123.136 93.12-223.488 212.608-237.248A239.81 239.81 0 0 1 512 192a239.87 239.87 0 0 1 235.456 194.752c119.488 13.76 212.48 114.112 212.48 237.248a240 240 0 0 1-240 240c-5.376 0-10.56-1.28-16-1.6v1.6z"
  5169. })
  5170. ]));
  5171. }
  5172. }), upload_filled_default = _sfc_main274;
  5173. // src/components/upload.vue
  5174. var import_vue549 = __toESM(require_vue()), import_vue550 = __toESM(require_vue()), _sfc_main275 = /* @__PURE__ */ (0, import_vue549.defineComponent)({
  5175. name: "Upload",
  5176. __name: "upload",
  5177. setup(__props) {
  5178. return (_ctx, _cache) => ((0, import_vue550.openBlock)(), (0, import_vue550.createElementBlock)("svg", {
  5179. xmlns: "http://www.w3.org/2000/svg",
  5180. viewBox: "0 0 1024 1024"
  5181. }, [
  5182. (0, import_vue550.createElementVNode)("path", {
  5183. fill: "currentColor",
  5184. d: "M160 832h704a32 32 0 1 1 0 64H160a32 32 0 1 1 0-64m384-578.304V704h-64V247.296L237.248 490.048 192 444.8 508.8 128l316.8 316.8-45.312 45.248z"
  5185. })
  5186. ]));
  5187. }
  5188. }), upload_default = _sfc_main275;
  5189. // src/components/user-filled.vue
  5190. var import_vue551 = __toESM(require_vue()), import_vue552 = __toESM(require_vue()), _sfc_main276 = /* @__PURE__ */ (0, import_vue551.defineComponent)({
  5191. name: "UserFilled",
  5192. __name: "user-filled",
  5193. setup(__props) {
  5194. return (_ctx, _cache) => ((0, import_vue552.openBlock)(), (0, import_vue552.createElementBlock)("svg", {
  5195. xmlns: "http://www.w3.org/2000/svg",
  5196. viewBox: "0 0 1024 1024"
  5197. }, [
  5198. (0, import_vue552.createElementVNode)("path", {
  5199. fill: "currentColor",
  5200. d: "M288 320a224 224 0 1 0 448 0 224 224 0 1 0-448 0m544 608H160a32 32 0 0 1-32-32v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 0 1-32 32z"
  5201. })
  5202. ]));
  5203. }
  5204. }), user_filled_default = _sfc_main276;
  5205. // src/components/user.vue
  5206. var import_vue553 = __toESM(require_vue()), import_vue554 = __toESM(require_vue()), _sfc_main277 = /* @__PURE__ */ (0, import_vue553.defineComponent)({
  5207. name: "User",
  5208. __name: "user",
  5209. setup(__props) {
  5210. return (_ctx, _cache) => ((0, import_vue554.openBlock)(), (0, import_vue554.createElementBlock)("svg", {
  5211. xmlns: "http://www.w3.org/2000/svg",
  5212. viewBox: "0 0 1024 1024"
  5213. }, [
  5214. (0, import_vue554.createElementVNode)("path", {
  5215. fill: "currentColor",
  5216. d: "M512 512a192 192 0 1 0 0-384 192 192 0 0 0 0 384m0 64a256 256 0 1 1 0-512 256 256 0 0 1 0 512m320 320v-96a96 96 0 0 0-96-96H288a96 96 0 0 0-96 96v96a32 32 0 1 1-64 0v-96a160 160 0 0 1 160-160h448a160 160 0 0 1 160 160v96a32 32 0 1 1-64 0"
  5217. })
  5218. ]));
  5219. }
  5220. }), user_default = _sfc_main277;
  5221. // src/components/van.vue
  5222. var import_vue555 = __toESM(require_vue()), import_vue556 = __toESM(require_vue()), _sfc_main278 = /* @__PURE__ */ (0, import_vue555.defineComponent)({
  5223. name: "Van",
  5224. __name: "van",
  5225. setup(__props) {
  5226. return (_ctx, _cache) => ((0, import_vue556.openBlock)(), (0, import_vue556.createElementBlock)("svg", {
  5227. xmlns: "http://www.w3.org/2000/svg",
  5228. viewBox: "0 0 1024 1024"
  5229. }, [
  5230. (0, import_vue556.createElementVNode)("path", {
  5231. fill: "currentColor",
  5232. d: "M128.896 736H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h576a32 32 0 0 1 32 32v96h164.544a32 32 0 0 1 31.616 27.136l54.144 352A32 32 0 0 1 922.688 736h-91.52a144 144 0 1 1-286.272 0H415.104a144 144 0 1 1-286.272 0zm23.36-64a143.872 143.872 0 0 1 239.488 0H568.32c17.088-25.6 42.24-45.376 71.744-55.808V256H128v416zm655.488 0h77.632l-19.648-128H704v64.896A144 144 0 0 1 807.744 672m48.128-192-14.72-96H704v96zM688 832a80 80 0 1 0 0-160 80 80 0 0 0 0 160m-416 0a80 80 0 1 0 0-160 80 80 0 0 0 0 160"
  5233. })
  5234. ]));
  5235. }
  5236. }), van_default = _sfc_main278;
  5237. // src/components/video-camera-filled.vue
  5238. var import_vue557 = __toESM(require_vue()), import_vue558 = __toESM(require_vue()), _sfc_main279 = /* @__PURE__ */ (0, import_vue557.defineComponent)({
  5239. name: "VideoCameraFilled",
  5240. __name: "video-camera-filled",
  5241. setup(__props) {
  5242. return (_ctx, _cache) => ((0, import_vue558.openBlock)(), (0, import_vue558.createElementBlock)("svg", {
  5243. xmlns: "http://www.w3.org/2000/svg",
  5244. viewBox: "0 0 1024 1024"
  5245. }, [
  5246. (0, import_vue558.createElementVNode)("path", {
  5247. fill: "currentColor",
  5248. d: "m768 576 192-64v320l-192-64v96a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V480a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zM192 768v64h384v-64zm192-480a160 160 0 0 1 320 0 160 160 0 0 1-320 0m64 0a96 96 0 1 0 192.064-.064A96 96 0 0 0 448 288m-320 32a128 128 0 1 1 256.064.064A128 128 0 0 1 128 320m64 0a64 64 0 1 0 128 0 64 64 0 0 0-128 0"
  5249. })
  5250. ]));
  5251. }
  5252. }), video_camera_filled_default = _sfc_main279;
  5253. // src/components/video-camera.vue
  5254. var import_vue559 = __toESM(require_vue()), import_vue560 = __toESM(require_vue()), _sfc_main280 = /* @__PURE__ */ (0, import_vue559.defineComponent)({
  5255. name: "VideoCamera",
  5256. __name: "video-camera",
  5257. setup(__props) {
  5258. return (_ctx, _cache) => ((0, import_vue560.openBlock)(), (0, import_vue560.createElementBlock)("svg", {
  5259. xmlns: "http://www.w3.org/2000/svg",
  5260. viewBox: "0 0 1024 1024"
  5261. }, [
  5262. (0, import_vue560.createElementVNode)("path", {
  5263. fill: "currentColor",
  5264. d: "M704 768V256H128v512zm64-416 192-96v512l-192-96v128a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V224a32 32 0 0 1 32-32h640a32 32 0 0 1 32 32zm0 71.552v176.896l128 64V359.552zM192 320h192v64H192z"
  5265. })
  5266. ]));
  5267. }
  5268. }), video_camera_default = _sfc_main280;
  5269. // src/components/video-pause.vue
  5270. var import_vue561 = __toESM(require_vue()), import_vue562 = __toESM(require_vue()), _sfc_main281 = /* @__PURE__ */ (0, import_vue561.defineComponent)({
  5271. name: "VideoPause",
  5272. __name: "video-pause",
  5273. setup(__props) {
  5274. return (_ctx, _cache) => ((0, import_vue562.openBlock)(), (0, import_vue562.createElementBlock)("svg", {
  5275. xmlns: "http://www.w3.org/2000/svg",
  5276. viewBox: "0 0 1024 1024"
  5277. }, [
  5278. (0, import_vue562.createElementVNode)("path", {
  5279. fill: "currentColor",
  5280. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m-96-544q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32m192 0q32 0 32 32v256q0 32-32 32t-32-32V384q0-32 32-32"
  5281. })
  5282. ]));
  5283. }
  5284. }), video_pause_default = _sfc_main281;
  5285. // src/components/video-play.vue
  5286. var import_vue563 = __toESM(require_vue()), import_vue564 = __toESM(require_vue()), _sfc_main282 = /* @__PURE__ */ (0, import_vue563.defineComponent)({
  5287. name: "VideoPlay",
  5288. __name: "video-play",
  5289. setup(__props) {
  5290. return (_ctx, _cache) => ((0, import_vue564.openBlock)(), (0, import_vue564.createElementBlock)("svg", {
  5291. xmlns: "http://www.w3.org/2000/svg",
  5292. viewBox: "0 0 1024 1024"
  5293. }, [
  5294. (0, import_vue564.createElementVNode)("path", {
  5295. fill: "currentColor",
  5296. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m-48-247.616L668.608 512 464 375.616zm10.624-342.656 249.472 166.336a48 48 0 0 1 0 79.872L474.624 718.272A48 48 0 0 1 400 678.336V345.6a48 48 0 0 1 74.624-39.936z"
  5297. })
  5298. ]));
  5299. }
  5300. }), video_play_default = _sfc_main282;
  5301. // src/components/view.vue
  5302. var import_vue565 = __toESM(require_vue()), import_vue566 = __toESM(require_vue()), _sfc_main283 = /* @__PURE__ */ (0, import_vue565.defineComponent)({
  5303. name: "View",
  5304. __name: "view",
  5305. setup(__props) {
  5306. return (_ctx, _cache) => ((0, import_vue566.openBlock)(), (0, import_vue566.createElementBlock)("svg", {
  5307. xmlns: "http://www.w3.org/2000/svg",
  5308. viewBox: "0 0 1024 1024"
  5309. }, [
  5310. (0, import_vue566.createElementVNode)("path", {
  5311. fill: "currentColor",
  5312. d: "M512 160c320 0 512 352 512 352S832 864 512 864 0 512 0 512s192-352 512-352m0 64c-225.28 0-384.128 208.064-436.8 288 52.608 79.872 211.456 288 436.8 288 225.28 0 384.128-208.064 436.8-288-52.608-79.872-211.456-288-436.8-288m0 64a224 224 0 1 1 0 448 224 224 0 0 1 0-448m0 64a160.19 160.19 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160-71.744-160-160-160"
  5313. })
  5314. ]));
  5315. }
  5316. }), view_default = _sfc_main283;
  5317. // src/components/wallet-filled.vue
  5318. var import_vue567 = __toESM(require_vue()), import_vue568 = __toESM(require_vue()), _sfc_main284 = /* @__PURE__ */ (0, import_vue567.defineComponent)({
  5319. name: "WalletFilled",
  5320. __name: "wallet-filled",
  5321. setup(__props) {
  5322. return (_ctx, _cache) => ((0, import_vue568.openBlock)(), (0, import_vue568.createElementBlock)("svg", {
  5323. xmlns: "http://www.w3.org/2000/svg",
  5324. viewBox: "0 0 1024 1024"
  5325. }, [
  5326. (0, import_vue568.createElementVNode)("path", {
  5327. fill: "currentColor",
  5328. d: "M688 512a112 112 0 1 0 0 224h208v160H128V352h768v160zm32 160h-32a48 48 0 0 1 0-96h32a48 48 0 0 1 0 96m-80-544 128 160H384z"
  5329. })
  5330. ]));
  5331. }
  5332. }), wallet_filled_default = _sfc_main284;
  5333. // src/components/wallet.vue
  5334. var import_vue569 = __toESM(require_vue()), import_vue570 = __toESM(require_vue()), _sfc_main285 = /* @__PURE__ */ (0, import_vue569.defineComponent)({
  5335. name: "Wallet",
  5336. __name: "wallet",
  5337. setup(__props) {
  5338. return (_ctx, _cache) => ((0, import_vue570.openBlock)(), (0, import_vue570.createElementBlock)("svg", {
  5339. xmlns: "http://www.w3.org/2000/svg",
  5340. viewBox: "0 0 1024 1024"
  5341. }, [
  5342. (0, import_vue570.createElementVNode)("path", {
  5343. fill: "currentColor",
  5344. d: "M640 288h-64V128H128v704h384v32a32 32 0 0 0 32 32H96a32 32 0 0 1-32-32V96a32 32 0 0 1 32-32h512a32 32 0 0 1 32 32z"
  5345. }),
  5346. (0, import_vue570.createElementVNode)("path", {
  5347. fill: "currentColor",
  5348. d: "M128 320v512h768V320zm-32-64h832a32 32 0 0 1 32 32v576a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V288a32 32 0 0 1 32-32"
  5349. }),
  5350. (0, import_vue570.createElementVNode)("path", {
  5351. fill: "currentColor",
  5352. d: "M704 640a64 64 0 1 1 0-128 64 64 0 0 1 0 128"
  5353. })
  5354. ]));
  5355. }
  5356. }), wallet_default = _sfc_main285;
  5357. // src/components/warn-triangle-filled.vue
  5358. var import_vue571 = __toESM(require_vue()), import_vue572 = __toESM(require_vue()), _sfc_main286 = /* @__PURE__ */ (0, import_vue571.defineComponent)({
  5359. name: "WarnTriangleFilled",
  5360. __name: "warn-triangle-filled",
  5361. setup(__props) {
  5362. return (_ctx, _cache) => ((0, import_vue572.openBlock)(), (0, import_vue572.createElementBlock)("svg", {
  5363. xmlns: "http://www.w3.org/2000/svg",
  5364. "xml:space": "preserve",
  5365. viewBox: "0 0 1024 1024"
  5366. }, [
  5367. (0, import_vue572.createElementVNode)("path", {
  5368. fill: "currentColor",
  5369. d: "M928.99 755.83 574.6 203.25c-12.89-20.16-36.76-32.58-62.6-32.58s-49.71 12.43-62.6 32.58L95.01 755.83c-12.91 20.12-12.9 44.91.01 65.03 12.92 20.12 36.78 32.51 62.59 32.49h708.78c25.82.01 49.68-12.37 62.59-32.49s12.92-44.91.01-65.03M554.67 768h-85.33v-85.33h85.33zm0-426.67v298.66h-85.33V341.32z"
  5370. })
  5371. ]));
  5372. }
  5373. }), warn_triangle_filled_default = _sfc_main286;
  5374. // src/components/warning-filled.vue
  5375. var import_vue573 = __toESM(require_vue()), import_vue574 = __toESM(require_vue()), _sfc_main287 = /* @__PURE__ */ (0, import_vue573.defineComponent)({
  5376. name: "WarningFilled",
  5377. __name: "warning-filled",
  5378. setup(__props) {
  5379. return (_ctx, _cache) => ((0, import_vue574.openBlock)(), (0, import_vue574.createElementBlock)("svg", {
  5380. xmlns: "http://www.w3.org/2000/svg",
  5381. viewBox: "0 0 1024 1024"
  5382. }, [
  5383. (0, import_vue574.createElementVNode)("path", {
  5384. fill: "currentColor",
  5385. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 192a58.43 58.43 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.43 58.43 0 0 0 512 256m0 512a51.2 51.2 0 1 0 0-102.4 51.2 51.2 0 0 0 0 102.4"
  5386. })
  5387. ]));
  5388. }
  5389. }), warning_filled_default = _sfc_main287;
  5390. // src/components/warning.vue
  5391. var import_vue575 = __toESM(require_vue()), import_vue576 = __toESM(require_vue()), _sfc_main288 = /* @__PURE__ */ (0, import_vue575.defineComponent)({
  5392. name: "Warning",
  5393. __name: "warning",
  5394. setup(__props) {
  5395. return (_ctx, _cache) => ((0, import_vue576.openBlock)(), (0, import_vue576.createElementBlock)("svg", {
  5396. xmlns: "http://www.w3.org/2000/svg",
  5397. viewBox: "0 0 1024 1024"
  5398. }, [
  5399. (0, import_vue576.createElementVNode)("path", {
  5400. fill: "currentColor",
  5401. d: "M512 64a448 448 0 1 1 0 896 448 448 0 0 1 0-896m0 832a384 384 0 0 0 0-768 384 384 0 0 0 0 768m48-176a48 48 0 1 1-96 0 48 48 0 0 1 96 0m-48-464a32 32 0 0 1 32 32v288a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32"
  5402. })
  5403. ]));
  5404. }
  5405. }), warning_default = _sfc_main288;
  5406. // src/components/watch.vue
  5407. var import_vue577 = __toESM(require_vue()), import_vue578 = __toESM(require_vue()), _sfc_main289 = /* @__PURE__ */ (0, import_vue577.defineComponent)({
  5408. name: "Watch",
  5409. __name: "watch",
  5410. setup(__props) {
  5411. return (_ctx, _cache) => ((0, import_vue578.openBlock)(), (0, import_vue578.createElementBlock)("svg", {
  5412. xmlns: "http://www.w3.org/2000/svg",
  5413. viewBox: "0 0 1024 1024"
  5414. }, [
  5415. (0, import_vue578.createElementVNode)("path", {
  5416. fill: "currentColor",
  5417. d: "M512 768a256 256 0 1 0 0-512 256 256 0 0 0 0 512m0 64a320 320 0 1 1 0-640 320 320 0 0 1 0 640"
  5418. }),
  5419. (0, import_vue578.createElementVNode)("path", {
  5420. fill: "currentColor",
  5421. d: "M480 352a32 32 0 0 1 32 32v160a32 32 0 0 1-64 0V384a32 32 0 0 1 32-32"
  5422. }),
  5423. (0, import_vue578.createElementVNode)("path", {
  5424. fill: "currentColor",
  5425. d: "M480 512h128q32 0 32 32t-32 32H480q-32 0-32-32t32-32m128-256V128H416v128h-64V64h320v192zM416 768v128h192V768h64v192H352V768z"
  5426. })
  5427. ]));
  5428. }
  5429. }), watch_default = _sfc_main289;
  5430. // src/components/watermelon.vue
  5431. var import_vue579 = __toESM(require_vue()), import_vue580 = __toESM(require_vue()), _sfc_main290 = /* @__PURE__ */ (0, import_vue579.defineComponent)({
  5432. name: "Watermelon",
  5433. __name: "watermelon",
  5434. setup(__props) {
  5435. return (_ctx, _cache) => ((0, import_vue580.openBlock)(), (0, import_vue580.createElementBlock)("svg", {
  5436. xmlns: "http://www.w3.org/2000/svg",
  5437. viewBox: "0 0 1024 1024"
  5438. }, [
  5439. (0, import_vue580.createElementVNode)("path", {
  5440. fill: "currentColor",
  5441. d: "m683.072 600.32-43.648 162.816-61.824-16.512 53.248-198.528L576 493.248l-158.4 158.4-45.248-45.248 158.4-158.4-55.616-55.616-198.528 53.248-16.512-61.824 162.816-43.648L282.752 200A384 384 0 0 0 824 741.248zm231.552 141.056a448 448 0 1 1-632-632z"
  5442. })
  5443. ]));
  5444. }
  5445. }), watermelon_default = _sfc_main290;
  5446. // src/components/wind-power.vue
  5447. var import_vue581 = __toESM(require_vue()), import_vue582 = __toESM(require_vue()), _sfc_main291 = /* @__PURE__ */ (0, import_vue581.defineComponent)({
  5448. name: "WindPower",
  5449. __name: "wind-power",
  5450. setup(__props) {
  5451. return (_ctx, _cache) => ((0, import_vue582.openBlock)(), (0, import_vue582.createElementBlock)("svg", {
  5452. xmlns: "http://www.w3.org/2000/svg",
  5453. viewBox: "0 0 1024 1024"
  5454. }, [
  5455. (0, import_vue582.createElementVNode)("path", {
  5456. fill: "currentColor",
  5457. d: "M160 64q32 0 32 32v832q0 32-32 32t-32-32V96q0-32 32-32m416 354.624 128-11.584V168.96l-128-11.52v261.12zm-64 5.824V151.552L320 134.08V160h-64V64l616.704 56.064A96 96 0 0 1 960 215.68v144.64a96 96 0 0 1-87.296 95.616L256 512V224h64v217.92zm256-23.232 98.88-8.96A32 32 0 0 0 896 360.32V215.68a32 32 0 0 0-29.12-31.872l-98.88-8.96z"
  5458. })
  5459. ]));
  5460. }
  5461. }), wind_power_default = _sfc_main291;
  5462. // src/components/zoom-in.vue
  5463. var import_vue583 = __toESM(require_vue()), import_vue584 = __toESM(require_vue()), _sfc_main292 = /* @__PURE__ */ (0, import_vue583.defineComponent)({
  5464. name: "ZoomIn",
  5465. __name: "zoom-in",
  5466. setup(__props) {
  5467. return (_ctx, _cache) => ((0, import_vue584.openBlock)(), (0, import_vue584.createElementBlock)("svg", {
  5468. xmlns: "http://www.w3.org/2000/svg",
  5469. viewBox: "0 0 1024 1024"
  5470. }, [
  5471. (0, import_vue584.createElementVNode)("path", {
  5472. fill: "currentColor",
  5473. d: "m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704m-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64z"
  5474. })
  5475. ]));
  5476. }
  5477. }), zoom_in_default = _sfc_main292;
  5478. // src/components/zoom-out.vue
  5479. var import_vue585 = __toESM(require_vue()), import_vue586 = __toESM(require_vue()), _sfc_main293 = /* @__PURE__ */ (0, import_vue585.defineComponent)({
  5480. name: "ZoomOut",
  5481. __name: "zoom-out",
  5482. setup(__props) {
  5483. return (_ctx, _cache) => ((0, import_vue586.openBlock)(), (0, import_vue586.createElementBlock)("svg", {
  5484. xmlns: "http://www.w3.org/2000/svg",
  5485. viewBox: "0 0 1024 1024"
  5486. }, [
  5487. (0, import_vue586.createElementVNode)("path", {
  5488. fill: "currentColor",
  5489. d: "m795.904 750.72 124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704 352 352 0 0 0 0 704M352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64"
  5490. })
  5491. ]));
  5492. }
  5493. }), zoom_out_default = _sfc_main293;
  5494. return __toCommonJS(index_exports);
  5495. })();