| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327 | lockfileVersion: '9.0'settings:  autoInstallPeers: true  excludeLinksFromLockfile: falseimporters:  .:    dependencies:      '@mdi/font':        specifier: 7.0.96        version: 7.0.96      pinia:        specifier: ^2.1.7        version: 2.1.7(vue@3.4.25)      roboto-fontface:        specifier: '*'        version: 0.10.0      vue:        specifier: ^3.4.0        version: 3.4.25      vue-router:        specifier: ^4.3.0        version: 4.3.2(vue@3.4.25)      vuetify:        specifier: ^3.5.0        version: 3.5.17(vite-plugin-vuetify@2.0.3)(vue@3.4.25)    devDependencies:      '@rushstack/eslint-patch':        specifier: ^1.8.0        version: 1.10.2      '@vitejs/plugin-vue':        specifier: ^5.0.4        version: 5.0.4(vite@5.2.10(sass@1.75.0))(vue@3.4.25)      '@vue/eslint-config-prettier':        specifier: ^9.0.0        version: 9.0.0(eslint@8.57.0)(prettier@3.2.5)      eslint:        specifier: ^8.57.0        version: 8.57.0      eslint-plugin-vue:        specifier: ^9.23.0        version: 9.25.0(eslint@8.57.0)      jsdom:        specifier: ^24.0.0        version: 24.0.0      prettier:        specifier: ^3.2.5        version: 3.2.5      sass:        specifier: ^1.71.1        version: 1.75.0      unplugin-fonts:        specifier: ^1.1.1        version: 1.1.1(vite@5.2.10(sass@1.75.0))      unplugin-vue-components:        specifier: ^0.26.0        version: 0.26.0(@babel/parser@7.24.4)(rollup@4.17.0)(vue@3.4.25)      vite:        specifier: ^5.1.5        version: 5.2.10(sass@1.75.0)      vite-plugin-vue-devtools:        specifier: ^7.0.25        version: 7.1.3(rollup@4.17.0)(vite@5.2.10(sass@1.75.0))(vue@3.4.25)      vite-plugin-vuetify:        specifier: ^2.0.3        version: 2.0.3(vite@5.2.10(sass@1.75.0))(vue@3.4.25)(vuetify@3.5.17)packages:  '@ampproject/remapping@2.3.0':    resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}    engines: {node: '>=6.0.0'}  '@antfu/utils@0.7.7':    resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==}  '@babel/code-frame@7.24.2':    resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==}    engines: {node: '>=6.9.0'}  '@babel/compat-data@7.24.4':    resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}    engines: {node: '>=6.9.0'}  '@babel/core@7.24.4':    resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==}    engines: {node: '>=6.9.0'}  '@babel/generator@7.24.4':    resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==}    engines: {node: '>=6.9.0'}  '@babel/helper-annotate-as-pure@7.22.5':    resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}    engines: {node: '>=6.9.0'}  '@babel/helper-compilation-targets@7.23.6':    resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}    engines: {node: '>=6.9.0'}  '@babel/helper-create-class-features-plugin@7.24.4':    resolution: {integrity: sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==}    engines: {node: '>=6.9.0'}    peerDependencies:      '@babel/core': ^7.0.0  '@babel/helper-environment-visitor@7.22.20':    resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}    engines: {node: '>=6.9.0'}  '@babel/helper-function-name@7.23.0':    resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}    engines: {node: '>=6.9.0'}  '@babel/helper-hoist-variables@7.22.5':    resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}    engines: {node: '>=6.9.0'}  '@babel/helper-member-expression-to-functions@7.23.0':    resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}    engines: {node: '>=6.9.0'}  '@babel/helper-module-imports@7.22.15':    resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}    engines: {node: '>=6.9.0'}  '@babel/helper-module-imports@7.24.3':    resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}    engines: {node: '>=6.9.0'}  '@babel/helper-module-transforms@7.23.3':    resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}    engines: {node: '>=6.9.0'}    peerDependencies:      '@babel/core': ^7.0.0  '@babel/helper-optimise-call-expression@7.22.5':    resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}    engines: {node: '>=6.9.0'}  '@babel/helper-plugin-utils@7.24.0':    resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}    engines: {node: '>=6.9.0'}  '@babel/helper-replace-supers@7.24.1':    resolution: {integrity: sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==}    engines: {node: '>=6.9.0'}    peerDependencies:      '@babel/core': ^7.0.0  '@babel/helper-simple-access@7.22.5':    resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}    engines: {node: '>=6.9.0'}  '@babel/helper-skip-transparent-expression-wrappers@7.22.5':    resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}    engines: {node: '>=6.9.0'}  '@babel/helper-split-export-declaration@7.22.6':    resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}    engines: {node: '>=6.9.0'}  '@babel/helper-string-parser@7.24.1':    resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}    engines: {node: '>=6.9.0'}  '@babel/helper-validator-identifier@7.22.20':    resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}    engines: {node: '>=6.9.0'}  '@babel/helper-validator-option@7.23.5':    resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}    engines: {node: '>=6.9.0'}  '@babel/helpers@7.24.4':    resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==}    engines: {node: '>=6.9.0'}  '@babel/highlight@7.24.2':    resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}    engines: {node: '>=6.9.0'}  '@babel/parser@7.24.4':    resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==}    engines: {node: '>=6.0.0'}    hasBin: true  '@babel/plugin-proposal-decorators@7.24.1':    resolution: {integrity: sha512-zPEvzFijn+hRvJuX2Vu3KbEBN39LN3f7tW3MQO2LsIs57B26KU+kUc82BdAktS1VCM6libzh45eKGI65lg0cpA==}    engines: {node: '>=6.9.0'}    peerDependencies:      '@babel/core': ^7.0.0-0  '@babel/plugin-syntax-decorators@7.24.1':    resolution: {integrity: sha512-05RJdO/cCrtVWuAaSn1tS3bH8jbsJa/Y1uD186u6J4C/1mnHFxseeuWpsqr9anvo7TUulev7tm7GDwRV+VuhDw==}    engines: {node: '>=6.9.0'}    peerDependencies:      '@babel/core': ^7.0.0-0  '@babel/plugin-syntax-import-attributes@7.24.1':    resolution: {integrity: sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==}    engines: {node: '>=6.9.0'}    peerDependencies:      '@babel/core': ^7.0.0-0  '@babel/plugin-syntax-import-meta@7.10.4':    resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}    peerDependencies:      '@babel/core': ^7.0.0-0  '@babel/plugin-syntax-jsx@7.24.1':    resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}    engines: {node: '>=6.9.0'}    peerDependencies:      '@babel/core': ^7.0.0-0  '@babel/plugin-syntax-typescript@7.24.1':    resolution: {integrity: sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==}    engines: {node: '>=6.9.0'}    peerDependencies:      '@babel/core': ^7.0.0-0  '@babel/plugin-transform-typescript@7.24.4':    resolution: {integrity: sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==}    engines: {node: '>=6.9.0'}    peerDependencies:      '@babel/core': ^7.0.0-0  '@babel/template@7.24.0':    resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}    engines: {node: '>=6.9.0'}  '@babel/traverse@7.24.1':    resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==}    engines: {node: '>=6.9.0'}  '@babel/types@7.24.0':    resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}    engines: {node: '>=6.9.0'}  '@esbuild/aix-ppc64@0.20.2':    resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}    engines: {node: '>=12'}    cpu: [ppc64]    os: [aix]  '@esbuild/android-arm64@0.20.2':    resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}    engines: {node: '>=12'}    cpu: [arm64]    os: [android]  '@esbuild/android-arm@0.20.2':    resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}    engines: {node: '>=12'}    cpu: [arm]    os: [android]  '@esbuild/android-x64@0.20.2':    resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}    engines: {node: '>=12'}    cpu: [x64]    os: [android]  '@esbuild/darwin-arm64@0.20.2':    resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}    engines: {node: '>=12'}    cpu: [arm64]    os: [darwin]  '@esbuild/darwin-x64@0.20.2':    resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}    engines: {node: '>=12'}    cpu: [x64]    os: [darwin]  '@esbuild/freebsd-arm64@0.20.2':    resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}    engines: {node: '>=12'}    cpu: [arm64]    os: [freebsd]  '@esbuild/freebsd-x64@0.20.2':    resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}    engines: {node: '>=12'}    cpu: [x64]    os: [freebsd]  '@esbuild/linux-arm64@0.20.2':    resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}    engines: {node: '>=12'}    cpu: [arm64]    os: [linux]  '@esbuild/linux-arm@0.20.2':    resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}    engines: {node: '>=12'}    cpu: [arm]    os: [linux]  '@esbuild/linux-ia32@0.20.2':    resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}    engines: {node: '>=12'}    cpu: [ia32]    os: [linux]  '@esbuild/linux-loong64@0.20.2':    resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}    engines: {node: '>=12'}    cpu: [loong64]    os: [linux]  '@esbuild/linux-mips64el@0.20.2':    resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}    engines: {node: '>=12'}    cpu: [mips64el]    os: [linux]  '@esbuild/linux-ppc64@0.20.2':    resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}    engines: {node: '>=12'}    cpu: [ppc64]    os: [linux]  '@esbuild/linux-riscv64@0.20.2':    resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}    engines: {node: '>=12'}    cpu: [riscv64]    os: [linux]  '@esbuild/linux-s390x@0.20.2':    resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}    engines: {node: '>=12'}    cpu: [s390x]    os: [linux]  '@esbuild/linux-x64@0.20.2':    resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}    engines: {node: '>=12'}    cpu: [x64]    os: [linux]  '@esbuild/netbsd-x64@0.20.2':    resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}    engines: {node: '>=12'}    cpu: [x64]    os: [netbsd]  '@esbuild/openbsd-x64@0.20.2':    resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}    engines: {node: '>=12'}    cpu: [x64]    os: [openbsd]  '@esbuild/sunos-x64@0.20.2':    resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}    engines: {node: '>=12'}    cpu: [x64]    os: [sunos]  '@esbuild/win32-arm64@0.20.2':    resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}    engines: {node: '>=12'}    cpu: [arm64]    os: [win32]  '@esbuild/win32-ia32@0.20.2':    resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}    engines: {node: '>=12'}    cpu: [ia32]    os: [win32]  '@esbuild/win32-x64@0.20.2':    resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}    engines: {node: '>=12'}    cpu: [x64]    os: [win32]  '@eslint-community/eslint-utils@4.4.0':    resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}    engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}    peerDependencies:      eslint: ^6.0.0 || ^7.0.0 || >=8.0.0  '@eslint-community/regexpp@4.10.0':    resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}    engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}  '@eslint/eslintrc@2.1.4':    resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}    engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}  '@eslint/js@8.57.0':    resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}    engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}  '@humanwhocodes/config-array@0.11.14':    resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==}    engines: {node: '>=10.10.0'}  '@humanwhocodes/module-importer@1.0.1':    resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}    engines: {node: '>=12.22'}  '@humanwhocodes/object-schema@2.0.3':    resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}  '@jridgewell/gen-mapping@0.3.5':    resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}    engines: {node: '>=6.0.0'}  '@jridgewell/resolve-uri@3.1.2':    resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}    engines: {node: '>=6.0.0'}  '@jridgewell/set-array@1.2.1':    resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}    engines: {node: '>=6.0.0'}  '@jridgewell/sourcemap-codec@1.4.15':    resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}  '@jridgewell/trace-mapping@0.3.25':    resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}  '@mdi/font@7.0.96':    resolution: {integrity: sha512-rzlxTfR64hqY8yiBzDjmANfcd8rv+T5C0Yedv/TWk2QyAQYdc66e0kaN1ipmnYU3RukHRTRcBARHzzm+tIhL7w==}  '@nodelib/fs.scandir@2.1.5':    resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}    engines: {node: '>= 8'}  '@nodelib/fs.stat@2.0.5':    resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}    engines: {node: '>= 8'}  '@nodelib/fs.walk@1.2.8':    resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}    engines: {node: '>= 8'}  '@pkgr/core@0.1.1':    resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}    engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}  '@polka/url@1.0.0-next.25':    resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}  '@rollup/pluginutils@5.1.0':    resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}    engines: {node: '>=14.0.0'}    peerDependencies:      rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0    peerDependenciesMeta:      rollup:        optional: true  '@rollup/rollup-android-arm-eabi@4.17.0':    resolution: {integrity: sha512-nNvLvC2fjC+3+bHYN9uaGF3gcyy7RHGZhtl8TB/kINj9hiOQza8kWJGZh47GRPMrqeseO8U+Z8ElDMCZlWBdHA==}    cpu: [arm]    os: [android]  '@rollup/rollup-android-arm64@4.17.0':    resolution: {integrity: sha512-+kjt6dvxnyTIAo7oHeYseYhDyZ7xRKTNl/FoQI96PHkJVxoChldJnne/LzYqpqidoK1/0kX0/q+5rrYqjpth6w==}    cpu: [arm64]    os: [android]  '@rollup/rollup-darwin-arm64@4.17.0':    resolution: {integrity: sha512-Oj6Tp0unMpGTBjvNwbSRv3DopMNLu+mjBzhKTt2zLbDJ/45fB1pltr/rqrO4bE95LzuYwhYn127pop+x/pzf5w==}    cpu: [arm64]    os: [darwin]  '@rollup/rollup-darwin-x64@4.17.0':    resolution: {integrity: sha512-3nJx0T+yptxMd+v93rBRxSPTAVCv8szu/fGZDJiKX7kvRe9sENj2ggXjCH/KK1xZEmJOhaNo0c9sGMgGdfkvEw==}    cpu: [x64]    os: [darwin]  '@rollup/rollup-linux-arm-gnueabihf@4.17.0':    resolution: {integrity: sha512-Vb2e8p9b2lxxgqyOlBHmp6hJMu/HSU6g//6Tbr7x5V1DlPCHWLOm37nSIVK314f+IHzORyAQSqL7+9tELxX3zQ==}    cpu: [arm]    os: [linux]  '@rollup/rollup-linux-arm-musleabihf@4.17.0':    resolution: {integrity: sha512-Md60KsmC5ZIaRq/bYYDloklgU+XLEZwS2EXXVcSpiUw+13/ZASvSWQ/P92rQ9YDCL6EIoXxuQ829JkReqdYbGg==}    cpu: [arm]    os: [linux]  '@rollup/rollup-linux-arm64-gnu@4.17.0':    resolution: {integrity: sha512-zL5rBFtJ+2EGnMRm2TqKjdjgFqlotSU+ZJEN37nV+fiD3I6Gy0dUh3jBWN0wSlcXVDEJYW7YBe+/2j0N9unb2w==}    cpu: [arm64]    os: [linux]  '@rollup/rollup-linux-arm64-musl@4.17.0':    resolution: {integrity: sha512-s2xAyNkJqUdtRVgNK4NK4P9QttS538JuX/kfVQOdZDI5FIKVAUVdLW7qhGfmaySJ1EvN/Bnj9oPm5go9u8navg==}    cpu: [arm64]    os: [linux]  '@rollup/rollup-linux-powerpc64le-gnu@4.17.0':    resolution: {integrity: sha512-7F99yzVT67B7IUNMjLD9QCFDCyHkyCJMS1dywZrGgVFJao4VJ9szrIEgH67cR+bXQgEaY01ur/WSL6B0jtcLyA==}    cpu: [ppc64]    os: [linux]  '@rollup/rollup-linux-riscv64-gnu@4.17.0':    resolution: {integrity: sha512-leFtyiXisfa3Sg9pgZJwRKITWnrQfhtqDjCamnZhkZuIsk1FXmYwKoTkp6lsCgimIcneFFkHKp/yGLxDesga4g==}    cpu: [riscv64]    os: [linux]  '@rollup/rollup-linux-s390x-gnu@4.17.0':    resolution: {integrity: sha512-FtOgui6qMJ4jbSXTxElsy/60LEe/3U0rXkkz2G5CJ9rbHPAvjMvI+3qF0A0fwLQ5hW+/ZC6PbnS2KfRW9JkgDQ==}    cpu: [s390x]    os: [linux]  '@rollup/rollup-linux-x64-gnu@4.17.0':    resolution: {integrity: sha512-v6eiam/1w3HUfU/ZjzIDodencqgrSqzlNuNtiwH7PFJHYSo1ezL0/UIzmS2lpSJF1ORNaplXeKHYmmdt81vV2g==}    cpu: [x64]    os: [linux]  '@rollup/rollup-linux-x64-musl@4.17.0':    resolution: {integrity: sha512-OUhkSdpM5ofVlVU2k4CwVubYwiwu1a4jYWPpubzN7Vzao73GoPBowHcCfaRSFRz1SszJ3HIsk3dZYk4kzbqjgw==}    cpu: [x64]    os: [linux]  '@rollup/rollup-win32-arm64-msvc@4.17.0':    resolution: {integrity: sha512-uL7UYO/MNJPGL/yflybI+HI+n6+4vlfZmQZOCb4I+z/zy1wisHT3exh7oNQsnL6Eso0EUTEfgQ/PaGzzXf6XyQ==}    cpu: [arm64]    os: [win32]  '@rollup/rollup-win32-ia32-msvc@4.17.0':    resolution: {integrity: sha512-4WnSgaUiUmXILwFqREdOcqvSj6GD/7FrvSjhaDjmwakX9w4Z2F8JwiSP1AZZbuRkPqzi444UI5FPv33VKOWYFQ==}    cpu: [ia32]    os: [win32]  '@rollup/rollup-win32-x64-msvc@4.17.0':    resolution: {integrity: sha512-ve+D8t1prRSRnF2S3pyDtTXDlvW1Pngbz76tjgYFQW1jxVSysmQCZfPoDAo4WP+Ano8zeYp85LsArZBI12HfwQ==}    cpu: [x64]    os: [win32]  '@rushstack/eslint-patch@1.10.2':    resolution: {integrity: sha512-hw437iINopmQuxWPSUEvqE56NCPsiU8N4AYtfHmJFckclktzK9YQJieD3XkDCDH4OjL+C7zgPUh73R/nrcHrqw==}  '@types/estree@1.0.5':    resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}  '@ungap/structured-clone@1.2.0':    resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}  '@vitejs/plugin-vue@5.0.4':    resolution: {integrity: sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==}    engines: {node: ^18.0.0 || >=20.0.0}    peerDependencies:      vite: ^5.0.0      vue: ^3.2.25  '@vue/babel-helper-vue-transform-on@1.2.2':    resolution: {integrity: sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==}  '@vue/babel-plugin-jsx@1.2.2':    resolution: {integrity: sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA==}    peerDependencies:      '@babel/core': ^7.0.0-0    peerDependenciesMeta:      '@babel/core':        optional: true  '@vue/babel-plugin-resolve-type@1.2.2':    resolution: {integrity: sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A==}    peerDependencies:      '@babel/core': ^7.0.0-0  '@vue/compiler-core@3.4.25':    resolution: {integrity: sha512-Y2pLLopaElgWnMNolgG8w3C5nNUVev80L7hdQ5iIKPtMJvhVpG0zhnBG/g3UajJmZdvW0fktyZTotEHD1Srhbg==}  '@vue/compiler-dom@3.4.25':    resolution: {integrity: sha512-Ugz5DusW57+HjllAugLci19NsDK+VyjGvmbB2TXaTcSlQxwL++2PETHx/+Qv6qFwNLzSt7HKepPe4DcTE3pBWg==}  '@vue/compiler-sfc@3.4.25':    resolution: {integrity: sha512-m7rryuqzIoQpOBZ18wKyq05IwL6qEpZxFZfRxlNYuIPDqywrXQxgUwLXIvoU72gs6cRdY6wHD0WVZIFE4OEaAQ==}  '@vue/compiler-ssr@3.4.25':    resolution: {integrity: sha512-H2ohvM/Pf6LelGxDBnfbbXFPyM4NE3hrw0e/EpwuSiYu8c819wx+SVGdJ65p/sFrYDd6OnSDxN1MB2mN07hRSQ==}  '@vue/devtools-api@6.6.1':    resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}  '@vue/devtools-core@7.1.3':    resolution: {integrity: sha512-pVbWi8pf2Z/fZPioYOIgu+cv9pQG55k4D8bL31ec+Wfe+pQR0ImFDu0OhHfch1Ra8uvLLrAZTF4IKeGAkmzD4A==}  '@vue/devtools-kit@7.1.3':    resolution: {integrity: sha512-NFskFSJMVCBXTkByuk2llzI3KD3Blcm7WqiRorWjD6nClHPgkH5BobDH08rfulqq5ocRt5xV+3qOT1Q9FXJrwQ==}    peerDependencies:      vue: ^3.0.0  '@vue/devtools-shared@7.1.3':    resolution: {integrity: sha512-KJ3AfgjTn3tJz/XKF+BlVShNPecim3G21oHRue+YQOsooW+0s+qXvm09U09aO7yBza5SivL1QgxSrzAbiKWjhQ==}  '@vue/eslint-config-prettier@9.0.0':    resolution: {integrity: sha512-z1ZIAAUS9pKzo/ANEfd2sO+v2IUalz7cM/cTLOZ7vRFOPk5/xuRKQteOu1DErFLAh/lYGXMVZ0IfYKlyInuDVg==}    peerDependencies:      eslint: '>= 8.0.0'      prettier: '>= 3.0.0'  '@vue/reactivity@3.4.25':    resolution: {integrity: sha512-mKbEtKr1iTxZkAG3vm3BtKHAOhuI4zzsVcN0epDldU/THsrvfXRKzq+lZnjczZGnTdh3ojd86/WrP+u9M51pWQ==}  '@vue/runtime-core@3.4.25':    resolution: {integrity: sha512-3qhsTqbEh8BMH3pXf009epCI5E7bKu28fJLi9O6W+ZGt/6xgSfMuGPqa5HRbUxLoehTNp5uWvzCr60KuiRIL0Q==}  '@vue/runtime-dom@3.4.25':    resolution: {integrity: sha512-ode0sj77kuwXwSc+2Yhk8JMHZh1sZp9F/51wdBiz3KGaWltbKtdihlJFhQG4H6AY+A06zzeMLkq6qu8uDSsaoA==}  '@vue/server-renderer@3.4.25':    resolution: {integrity: sha512-8VTwq0Zcu3K4dWV0jOwIVINESE/gha3ifYCOKEhxOj6MEl5K5y8J8clQncTcDhKF+9U765nRw4UdUEXvrGhyVQ==}    peerDependencies:      vue: 3.4.25  '@vue/shared@3.4.25':    resolution: {integrity: sha512-k0yappJ77g2+KNrIaF0FFnzwLvUBLUYr8VOwz+/6vLsmItFp51AcxLL7Ey3iPd7BIRyWPOcqUjMnm7OkahXllA==}  '@vuetify/loader-shared@2.0.3':    resolution: {integrity: sha512-Ss3GC7eJYkp2SF6xVzsT7FAruEmdihmn4OCk2+UocREerlXKWgOKKzTN5PN3ZVN5q05jHHrsNhTuWbhN61Bpdg==}    peerDependencies:      vue: ^3.0.0      vuetify: ^3.0.0  acorn-jsx@5.3.2:    resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}    peerDependencies:      acorn: ^6.0.0 || ^7.0.0 || ^8.0.0  acorn@8.11.3:    resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}    engines: {node: '>=0.4.0'}    hasBin: true  agent-base@7.1.1:    resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==}    engines: {node: '>= 14'}  ajv@6.12.6:    resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}  ansi-regex@5.0.1:    resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}    engines: {node: '>=8'}  ansi-styles@3.2.1:    resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}    engines: {node: '>=4'}  ansi-styles@4.3.0:    resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}    engines: {node: '>=8'}  anymatch@3.1.3:    resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}    engines: {node: '>= 8'}  argparse@2.0.1:    resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}  asynckit@0.4.0:    resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}  balanced-match@1.0.2:    resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}  binary-extensions@2.3.0:    resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}    engines: {node: '>=8'}  boolbase@1.0.0:    resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}  brace-expansion@1.1.11:    resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}  brace-expansion@2.0.1:    resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}  braces@3.0.2:    resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}    engines: {node: '>=8'}  browserslist@4.23.0:    resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}    engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}    hasBin: true  bundle-name@4.1.0:    resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}    engines: {node: '>=18'}  callsites@3.1.0:    resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}    engines: {node: '>=6'}  camelcase@6.3.0:    resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}    engines: {node: '>=10'}  caniuse-lite@1.0.30001614:    resolution: {integrity: sha512-jmZQ1VpmlRwHgdP1/uiKzgiAuGOfLEJsYFP4+GBou/QQ4U6IOJCB4NP1c+1p9RGLpwObcT94jA5/uO+F1vBbog==}  chalk@2.4.2:    resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}    engines: {node: '>=4'}  chalk@4.1.2:    resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}    engines: {node: '>=10'}  chokidar@3.6.0:    resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}    engines: {node: '>= 8.10.0'}  color-convert@1.9.3:    resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}  color-convert@2.0.1:    resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}    engines: {node: '>=7.0.0'}  color-name@1.1.3:    resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}  color-name@1.1.4:    resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}  combined-stream@1.0.8:    resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}    engines: {node: '>= 0.8'}  concat-map@0.0.1:    resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}  convert-source-map@2.0.0:    resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}  cross-spawn@7.0.3:    resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}    engines: {node: '>= 8'}  cssesc@3.0.0:    resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}    engines: {node: '>=4'}    hasBin: true  cssstyle@4.0.1:    resolution: {integrity: sha512-8ZYiJ3A/3OkDd093CBT/0UKDWry7ak4BdPTFP2+QEP7cmhouyq/Up709ASSj2cK02BbZiMgk7kYjZNS4QP5qrQ==}    engines: {node: '>=18'}  csstype@3.1.3:    resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}  data-urls@5.0.0:    resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}    engines: {node: '>=18'}  debug@4.3.4:    resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}    engines: {node: '>=6.0'}    peerDependencies:      supports-color: '*'    peerDependenciesMeta:      supports-color:        optional: true  decimal.js@10.4.3:    resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}  deep-is@0.1.4:    resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}  default-browser-id@5.0.0:    resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}    engines: {node: '>=18'}  default-browser@5.2.1:    resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}    engines: {node: '>=18'}  define-lazy-prop@3.0.0:    resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}    engines: {node: '>=12'}  delayed-stream@1.0.0:    resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}    engines: {node: '>=0.4.0'}  doctrine@3.0.0:    resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}    engines: {node: '>=6.0.0'}  electron-to-chromium@1.4.750:    resolution: {integrity: sha512-9ItEpeu15hW5m8jKdriL+BQrgwDTXEL9pn4SkillWFu73ZNNNQ2BKKLS+ZHv2vC9UkNhosAeyfxOf/5OSeTCPA==}  entities@4.5.0:    resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}    engines: {node: '>=0.12'}  error-stack-parser-es@0.1.1:    resolution: {integrity: sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==}  esbuild@0.20.2:    resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}    engines: {node: '>=12'}    hasBin: true  escalade@3.1.2:    resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}    engines: {node: '>=6'}  escape-string-regexp@1.0.5:    resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}    engines: {node: '>=0.8.0'}  escape-string-regexp@4.0.0:    resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}    engines: {node: '>=10'}  eslint-config-prettier@9.1.0:    resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}    hasBin: true    peerDependencies:      eslint: '>=7.0.0'  eslint-plugin-prettier@5.1.3:    resolution: {integrity: sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==}    engines: {node: ^14.18.0 || >=16.0.0}    peerDependencies:      '@types/eslint': '>=8.0.0'      eslint: '>=8.0.0'      eslint-config-prettier: '*'      prettier: '>=3.0.0'    peerDependenciesMeta:      '@types/eslint':        optional: true      eslint-config-prettier:        optional: true  eslint-plugin-vue@9.25.0:    resolution: {integrity: sha512-tDWlx14bVe6Bs+Nnh3IGrD+hb11kf2nukfm6jLsmJIhmiRQ1SUaksvwY9U5MvPB0pcrg0QK0xapQkfITs3RKOA==}    engines: {node: ^14.17.0 || >=16.0.0}    peerDependencies:      eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0  eslint-scope@7.2.2:    resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}    engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}  eslint-visitor-keys@3.4.3:    resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}    engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}  eslint@8.57.0:    resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}    engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}    hasBin: true  espree@9.6.1:    resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}    engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}  esquery@1.5.0:    resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}    engines: {node: '>=0.10'}  esrecurse@4.3.0:    resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}    engines: {node: '>=4.0'}  estraverse@5.3.0:    resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}    engines: {node: '>=4.0'}  estree-walker@2.0.2:    resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}  esutils@2.0.3:    resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}    engines: {node: '>=0.10.0'}  execa@8.0.1:    resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}    engines: {node: '>=16.17'}  fast-deep-equal@3.1.3:    resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}  fast-diff@1.3.0:    resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}  fast-glob@3.3.2:    resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}    engines: {node: '>=8.6.0'}  fast-json-stable-stringify@2.1.0:    resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}  fast-levenshtein@2.0.6:    resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}  fastq@1.17.1:    resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}  file-entry-cache@6.0.1:    resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}    engines: {node: ^10.12.0 || >=12.0.0}  fill-range@7.0.1:    resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}    engines: {node: '>=8'}  find-up@5.0.0:    resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}    engines: {node: '>=10'}  flat-cache@3.2.0:    resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}    engines: {node: ^10.12.0 || >=12.0.0}  flatted@3.3.1:    resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}  form-data@4.0.0:    resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}    engines: {node: '>= 6'}  fs-extra@11.2.0:    resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}    engines: {node: '>=14.14'}  fs.realpath@1.0.0:    resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}  fsevents@2.3.3:    resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}    engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}    os: [darwin]  function-bind@1.1.2:    resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}  gensync@1.0.0-beta.2:    resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}    engines: {node: '>=6.9.0'}  get-stream@8.0.1:    resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}    engines: {node: '>=16'}  glob-parent@5.1.2:    resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}    engines: {node: '>= 6'}  glob-parent@6.0.2:    resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}    engines: {node: '>=10.13.0'}  glob@7.2.3:    resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}  globals@11.12.0:    resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}    engines: {node: '>=4'}  globals@13.24.0:    resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}    engines: {node: '>=8'}  graceful-fs@4.2.11:    resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}  graphemer@1.4.0:    resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}  has-flag@3.0.0:    resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}    engines: {node: '>=4'}  has-flag@4.0.0:    resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}    engines: {node: '>=8'}  hasown@2.0.2:    resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}    engines: {node: '>= 0.4'}  hookable@5.5.3:    resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}  html-encoding-sniffer@4.0.0:    resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}    engines: {node: '>=18'}  html-tags@3.3.1:    resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}    engines: {node: '>=8'}  http-proxy-agent@7.0.2:    resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}    engines: {node: '>= 14'}  https-proxy-agent@7.0.4:    resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==}    engines: {node: '>= 14'}  human-signals@5.0.0:    resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}    engines: {node: '>=16.17.0'}  iconv-lite@0.6.3:    resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}    engines: {node: '>=0.10.0'}  ignore@5.3.1:    resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}    engines: {node: '>= 4'}  immutable@4.3.5:    resolution: {integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==}  import-fresh@3.3.0:    resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}    engines: {node: '>=6'}  imurmurhash@0.1.4:    resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}    engines: {node: '>=0.8.19'}  inflight@1.0.6:    resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}  inherits@2.0.4:    resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}  is-binary-path@2.1.0:    resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}    engines: {node: '>=8'}  is-core-module@2.13.1:    resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}  is-docker@3.0.0:    resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}    engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}    hasBin: true  is-extglob@2.1.1:    resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}    engines: {node: '>=0.10.0'}  is-glob@4.0.3:    resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}    engines: {node: '>=0.10.0'}  is-inside-container@1.0.0:    resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}    engines: {node: '>=14.16'}    hasBin: true  is-number@7.0.0:    resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}    engines: {node: '>=0.12.0'}  is-path-inside@3.0.3:    resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}    engines: {node: '>=8'}  is-potential-custom-element-name@1.0.1:    resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}  is-stream@3.0.0:    resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}    engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}  is-wsl@3.1.0:    resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}    engines: {node: '>=16'}  isexe@2.0.0:    resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}  js-tokens@4.0.0:    resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}  js-yaml@4.1.0:    resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}    hasBin: true  jsdom@24.0.0:    resolution: {integrity: sha512-UDS2NayCvmXSXVP6mpTj+73JnNQadZlr9N68189xib2tx5Mls7swlTNao26IoHv46BZJFvXygyRtyXd1feAk1A==}    engines: {node: '>=18'}    peerDependencies:      canvas: ^2.11.2    peerDependenciesMeta:      canvas:        optional: true  jsesc@2.5.2:    resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}    engines: {node: '>=4'}    hasBin: true  json-buffer@3.0.1:    resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}  json-schema-traverse@0.4.1:    resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}  json-stable-stringify-without-jsonify@1.0.1:    resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}  json5@2.2.3:    resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}    engines: {node: '>=6'}    hasBin: true  jsonfile@6.1.0:    resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}  keyv@4.5.4:    resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}  kolorist@1.8.0:    resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==}  levn@0.4.1:    resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}    engines: {node: '>= 0.8.0'}  local-pkg@0.4.3:    resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}    engines: {node: '>=14'}  locate-path@6.0.0:    resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}    engines: {node: '>=10'}  lodash.merge@4.6.2:    resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}  lodash@4.17.21:    resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}  lru-cache@5.1.1:    resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}  lru-cache@6.0.0:    resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}    engines: {node: '>=10'}  magic-string@0.30.10:    resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}  merge-stream@2.0.0:    resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}  merge2@1.4.1:    resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}    engines: {node: '>= 8'}  micromatch@4.0.5:    resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}    engines: {node: '>=8.6'}  mime-db@1.52.0:    resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}    engines: {node: '>= 0.6'}  mime-types@2.1.35:    resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}    engines: {node: '>= 0.6'}  mimic-fn@4.0.0:    resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}    engines: {node: '>=12'}  minimatch@3.1.2:    resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}  minimatch@9.0.4:    resolution: {integrity: sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==}    engines: {node: '>=16 || 14 >=14.17'}  mitt@3.0.1:    resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}  mrmime@2.0.0:    resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}    engines: {node: '>=10'}  ms@2.1.2:    resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}  nanoid@3.3.7:    resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}    engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}    hasBin: true  natural-compare@1.4.0:    resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}  node-releases@2.0.14:    resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}  normalize-path@3.0.0:    resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}    engines: {node: '>=0.10.0'}  npm-run-path@5.3.0:    resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}    engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}  nth-check@2.1.1:    resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}  nwsapi@2.2.9:    resolution: {integrity: sha512-2f3F0SEEer8bBu0dsNCFF50N0cTThV1nWFYcEYFZttdW0lDAoybv9cQoK7X7/68Z89S7FoRrVjP1LPX4XRf9vg==}  once@1.4.0:    resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}  onetime@6.0.0:    resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}    engines: {node: '>=12'}  open@10.1.0:    resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}    engines: {node: '>=18'}  optionator@0.9.4:    resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}    engines: {node: '>= 0.8.0'}  p-limit@3.1.0:    resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}    engines: {node: '>=10'}  p-locate@5.0.0:    resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}    engines: {node: '>=10'}  parent-module@1.0.1:    resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}    engines: {node: '>=6'}  parse5@7.1.2:    resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==}  path-exists@4.0.0:    resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}    engines: {node: '>=8'}  path-is-absolute@1.0.1:    resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}    engines: {node: '>=0.10.0'}  path-key@3.1.1:    resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}    engines: {node: '>=8'}  path-key@4.0.0:    resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}    engines: {node: '>=12'}  path-parse@1.0.7:    resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}  pathe@1.1.2:    resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}  perfect-debounce@1.0.0:    resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}  picocolors@1.0.0:    resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}  picomatch@2.3.1:    resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}    engines: {node: '>=8.6'}  pinia@2.1.7:    resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==}    peerDependencies:      '@vue/composition-api': ^1.4.0      typescript: '>=4.4.4'      vue: ^2.6.14 || ^3.3.0    peerDependenciesMeta:      '@vue/composition-api':        optional: true      typescript:        optional: true  postcss-selector-parser@6.0.16:    resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==}    engines: {node: '>=4'}  postcss@8.4.38:    resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}    engines: {node: ^10 || ^12 || >=14}  prelude-ls@1.2.1:    resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}    engines: {node: '>= 0.8.0'}  prettier-linter-helpers@1.0.0:    resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}    engines: {node: '>=6.0.0'}  prettier@3.2.5:    resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}    engines: {node: '>=14'}    hasBin: true  psl@1.9.0:    resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}  punycode@2.3.1:    resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}    engines: {node: '>=6'}  querystringify@2.2.0:    resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}  queue-microtask@1.2.3:    resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}  readdirp@3.6.0:    resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}    engines: {node: '>=8.10.0'}  requires-port@1.0.0:    resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}  resolve-from@4.0.0:    resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}    engines: {node: '>=4'}  resolve@1.22.8:    resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}    hasBin: true  reusify@1.0.4:    resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}    engines: {iojs: '>=1.0.0', node: '>=0.10.0'}  rfdc@1.3.1:    resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}  rimraf@3.0.2:    resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}    hasBin: true  roboto-fontface@0.10.0:    resolution: {integrity: sha512-OlwfYEgA2RdboZohpldlvJ1xngOins5d7ejqnIBWr9KaMxsnBqotpptRXTyfNRLnFpqzX6sTDt+X+a+6udnU8g==}  rollup@4.17.0:    resolution: {integrity: sha512-wZJSn0WMtWrxhYKQRt5Z6GIXlziOoMDFmbHmRfL3v+sBTAshx2DBq1AfMArB7eIjF63r4ocn2ZTAyUptg/7kmQ==}    engines: {node: '>=18.0.0', npm: '>=8.0.0'}    hasBin: true  rrweb-cssom@0.6.0:    resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==}  run-applescript@7.0.0:    resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}    engines: {node: '>=18'}  run-parallel@1.2.0:    resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}  safer-buffer@2.1.2:    resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}  sass@1.75.0:    resolution: {integrity: sha512-ShMYi3WkrDWxExyxSZPst4/okE9ts46xZmJDSawJQrnte7M1V9fScVB+uNXOVKRBt0PggHOwoZcn8mYX4trnBw==}    engines: {node: '>=14.0.0'}    hasBin: true  saxes@6.0.0:    resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}    engines: {node: '>=v12.22.7'}  semver@6.3.1:    resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}    hasBin: true  semver@7.6.0:    resolution: {integrity: sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==}    engines: {node: '>=10'}    hasBin: true  shebang-command@2.0.0:    resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}    engines: {node: '>=8'}  shebang-regex@3.0.0:    resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}    engines: {node: '>=8'}  signal-exit@4.1.0:    resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}    engines: {node: '>=14'}  sirv@2.0.4:    resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}    engines: {node: '>= 10'}  source-map-js@1.2.0:    resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}    engines: {node: '>=0.10.0'}  speakingurl@14.0.1:    resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}    engines: {node: '>=0.10.0'}  strip-ansi@6.0.1:    resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}    engines: {node: '>=8'}  strip-final-newline@3.0.0:    resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}    engines: {node: '>=12'}  strip-json-comments@3.1.1:    resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}    engines: {node: '>=8'}  supports-color@5.5.0:    resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}    engines: {node: '>=4'}  supports-color@7.2.0:    resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}    engines: {node: '>=8'}  supports-preserve-symlinks-flag@1.0.0:    resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}    engines: {node: '>= 0.4'}  svg-tags@1.0.0:    resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}  symbol-tree@3.2.4:    resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}  synckit@0.8.8:    resolution: {integrity: sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==}    engines: {node: ^14.18.0 || >=16.0.0}  text-table@0.2.0:    resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}  to-fast-properties@2.0.0:    resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}    engines: {node: '>=4'}  to-regex-range@5.0.1:    resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}    engines: {node: '>=8.0'}  totalist@3.0.1:    resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==}    engines: {node: '>=6'}  tough-cookie@4.1.3:    resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==}    engines: {node: '>=6'}  tr46@5.0.0:    resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}    engines: {node: '>=18'}  tslib@2.6.2:    resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}  type-check@0.4.0:    resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}    engines: {node: '>= 0.8.0'}  type-fest@0.20.2:    resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}    engines: {node: '>=10'}  universalify@0.2.0:    resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}    engines: {node: '>= 4.0.0'}  universalify@2.0.1:    resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}    engines: {node: '>= 10.0.0'}  unplugin-fonts@1.1.1:    resolution: {integrity: sha512-/Aw/rL9D2aslGGM0vi+2R2aG508RSwawLnnBuo+JDSqYc4cHJO1R1phllhN6GysEhBp/6a4B6+vSFPVapWyAAw==}    peerDependencies:      '@nuxt/kit': ^3.0.0      vite: ^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0    peerDependenciesMeta:      '@nuxt/kit':        optional: true  unplugin-vue-components@0.26.0:    resolution: {integrity: sha512-s7IdPDlnOvPamjunVxw8kNgKNK8A5KM1YpK5j/p97jEKTjlPNrA0nZBiSfAKKlK1gWZuyWXlKL5dk3EDw874LQ==}    engines: {node: '>=14'}    peerDependencies:      '@babel/parser': ^7.15.8      '@nuxt/kit': ^3.2.2      vue: 2 || 3    peerDependenciesMeta:      '@babel/parser':        optional: true      '@nuxt/kit':        optional: true  unplugin@1.10.1:    resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==}    engines: {node: '>=14.0.0'}  upath@2.0.1:    resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==}    engines: {node: '>=4'}  update-browserslist-db@1.0.13:    resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}    hasBin: true    peerDependencies:      browserslist: '>= 4.21.0'  uri-js@4.4.1:    resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}  url-parse@1.5.10:    resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}  util-deprecate@1.0.2:    resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}  vite-hot-client@0.2.3:    resolution: {integrity: sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==}    peerDependencies:      vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0  vite-plugin-inspect@0.8.4:    resolution: {integrity: sha512-G0N3rjfw+AiiwnGw50KlObIHYWfulVwaCBUBLh2xTW9G1eM9ocE5olXkEYUbwyTmX+azM8duubi+9w5awdCz+g==}    engines: {node: '>=14'}    peerDependencies:      '@nuxt/kit': '*'      vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0    peerDependenciesMeta:      '@nuxt/kit':        optional: true  vite-plugin-vue-devtools@7.1.3:    resolution: {integrity: sha512-qv8Z4yok9RYo6TEs89WnIAlmTHby/+XTim8tlSnMs3lAPcQqqcl/wGRY8gAeYrGCANngOqO+VuabW3Jb1HZtyw==}    engines: {node: '>=v14.21.3'}    peerDependencies:      vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0  vite-plugin-vue-inspector@5.0.1:    resolution: {integrity: sha512-R93P8iFa6BPODhc/aOtO04A8FFMMyFIfm8ZVSmN+8vU1TgwsHya734APGpX4fVHSPX2aVwYyiezXBUYQ0Opsqw==}    peerDependencies:      vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0  vite-plugin-vuetify@2.0.3:    resolution: {integrity: sha512-HbYajgGgb/noaVKNRhnnXIiQZrNXfNIeanUGAwXgOxL6h/KULS40Uf51Kyz8hNmdegF+DwjgXXI/8J1PNS83xw==}    engines: {node: ^18.0.0 || >=20.0.0}    peerDependencies:      vite: '>=5'      vue: ^3.0.0      vuetify: ^3.0.0  vite@5.2.10:    resolution: {integrity: sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw==}    engines: {node: ^18.0.0 || >=20.0.0}    hasBin: true    peerDependencies:      '@types/node': ^18.0.0 || >=20.0.0      less: '*'      lightningcss: ^1.21.0      sass: '*'      stylus: '*'      sugarss: '*'      terser: ^5.4.0    peerDependenciesMeta:      '@types/node':        optional: true      less:        optional: true      lightningcss:        optional: true      sass:        optional: true      stylus:        optional: true      sugarss:        optional: true      terser:        optional: true  vue-demi@0.14.7:    resolution: {integrity: sha512-EOG8KXDQNwkJILkx/gPcoL/7vH+hORoBaKgGe+6W7VFMvCYJfmF2dGbvgDroVnI8LU7/kTu8mbjRZGBU1z9NTA==}    engines: {node: '>=12'}    hasBin: true    peerDependencies:      '@vue/composition-api': ^1.0.0-rc.1      vue: ^3.0.0-0 || ^2.6.0    peerDependenciesMeta:      '@vue/composition-api':        optional: true  vue-eslint-parser@9.4.2:    resolution: {integrity: sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==}    engines: {node: ^14.17.0 || >=16.0.0}    peerDependencies:      eslint: '>=6.0.0'  vue-router@4.3.2:    resolution: {integrity: sha512-hKQJ1vDAZ5LVkKEnHhmm1f9pMiWIBNGF5AwU67PdH7TyXCj/a4hTccuUuYCAMgJK6rO/NVYtQIEN3yL8CECa7Q==}    peerDependencies:      vue: ^3.2.0  vue@3.4.25:    resolution: {integrity: sha512-HWyDqoBHMgav/OKiYA2ZQg+kjfMgLt/T0vg4cbIF7JbXAjDexRf5JRg+PWAfrAkSmTd2I8aPSXtooBFWHB98cg==}    peerDependencies:      typescript: '*'    peerDependenciesMeta:      typescript:        optional: true  vuetify@3.5.17:    resolution: {integrity: sha512-/Veklxxyu/l63q7QQOqJZeZukIKI2sBxY7FKMDcNup2KSGMjyjT+oYXy1DOdl7wlU3c3fKGQMFHqVWb0HDsyDw==}    engines: {node: ^12.20 || >=14.13}    peerDependencies:      typescript: '>=4.7'      vite-plugin-vuetify: '>=1.0.0'      vue: ^3.3.0      vue-i18n: ^9.0.0      webpack-plugin-vuetify: '>=2.0.0'    peerDependenciesMeta:      typescript:        optional: true      vite-plugin-vuetify:        optional: true      vue-i18n:        optional: true      webpack-plugin-vuetify:        optional: true  w3c-xmlserializer@5.0.0:    resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}    engines: {node: '>=18'}  webidl-conversions@7.0.0:    resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}    engines: {node: '>=12'}  webpack-sources@3.2.3:    resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}    engines: {node: '>=10.13.0'}  webpack-virtual-modules@0.6.1:    resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==}  whatwg-encoding@3.1.1:    resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}    engines: {node: '>=18'}  whatwg-mimetype@4.0.0:    resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}    engines: {node: '>=18'}  whatwg-url@14.0.0:    resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==}    engines: {node: '>=18'}  which@2.0.2:    resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}    engines: {node: '>= 8'}    hasBin: true  word-wrap@1.2.5:    resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}    engines: {node: '>=0.10.0'}  wrappy@1.0.2:    resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}  ws@8.17.0:    resolution: {integrity: sha512-uJq6108EgZMAl20KagGkzCKfMEjxmKvZHG7Tlq0Z6nOky7YF7aq4mOx6xK8TJ/i1LeK4Qus7INktacctDgY8Ow==}    engines: {node: '>=10.0.0'}    peerDependencies:      bufferutil: ^4.0.1      utf-8-validate: '>=5.0.2'    peerDependenciesMeta:      bufferutil:        optional: true      utf-8-validate:        optional: true  xml-name-validator@4.0.0:    resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==}    engines: {node: '>=12'}  xml-name-validator@5.0.0:    resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}    engines: {node: '>=18'}  xmlchars@2.2.0:    resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}  yallist@3.1.1:    resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}  yallist@4.0.0:    resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}  yocto-queue@0.1.0:    resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}    engines: {node: '>=10'}snapshots:  '@ampproject/remapping@2.3.0':    dependencies:      '@jridgewell/gen-mapping': 0.3.5      '@jridgewell/trace-mapping': 0.3.25  '@antfu/utils@0.7.7': {}  '@babel/code-frame@7.24.2':    dependencies:      '@babel/highlight': 7.24.2      picocolors: 1.0.0  '@babel/compat-data@7.24.4': {}  '@babel/core@7.24.4':    dependencies:      '@ampproject/remapping': 2.3.0      '@babel/code-frame': 7.24.2      '@babel/generator': 7.24.4      '@babel/helper-compilation-targets': 7.23.6      '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)      '@babel/helpers': 7.24.4      '@babel/parser': 7.24.4      '@babel/template': 7.24.0      '@babel/traverse': 7.24.1      '@babel/types': 7.24.0      convert-source-map: 2.0.0      debug: 4.3.4      gensync: 1.0.0-beta.2      json5: 2.2.3      semver: 6.3.1    transitivePeerDependencies:      - supports-color  '@babel/generator@7.24.4':    dependencies:      '@babel/types': 7.24.0      '@jridgewell/gen-mapping': 0.3.5      '@jridgewell/trace-mapping': 0.3.25      jsesc: 2.5.2  '@babel/helper-annotate-as-pure@7.22.5':    dependencies:      '@babel/types': 7.24.0  '@babel/helper-compilation-targets@7.23.6':    dependencies:      '@babel/compat-data': 7.24.4      '@babel/helper-validator-option': 7.23.5      browserslist: 4.23.0      lru-cache: 5.1.1      semver: 6.3.1  '@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.4)':    dependencies:      '@babel/core': 7.24.4      '@babel/helper-annotate-as-pure': 7.22.5      '@babel/helper-environment-visitor': 7.22.20      '@babel/helper-function-name': 7.23.0      '@babel/helper-member-expression-to-functions': 7.23.0      '@babel/helper-optimise-call-expression': 7.22.5      '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)      '@babel/helper-skip-transparent-expression-wrappers': 7.22.5      '@babel/helper-split-export-declaration': 7.22.6      semver: 6.3.1  '@babel/helper-environment-visitor@7.22.20': {}  '@babel/helper-function-name@7.23.0':    dependencies:      '@babel/template': 7.24.0      '@babel/types': 7.24.0  '@babel/helper-hoist-variables@7.22.5':    dependencies:      '@babel/types': 7.24.0  '@babel/helper-member-expression-to-functions@7.23.0':    dependencies:      '@babel/types': 7.24.0  '@babel/helper-module-imports@7.22.15':    dependencies:      '@babel/types': 7.24.0  '@babel/helper-module-imports@7.24.3':    dependencies:      '@babel/types': 7.24.0  '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4)':    dependencies:      '@babel/core': 7.24.4      '@babel/helper-environment-visitor': 7.22.20      '@babel/helper-module-imports': 7.24.3      '@babel/helper-simple-access': 7.22.5      '@babel/helper-split-export-declaration': 7.22.6      '@babel/helper-validator-identifier': 7.22.20  '@babel/helper-optimise-call-expression@7.22.5':    dependencies:      '@babel/types': 7.24.0  '@babel/helper-plugin-utils@7.24.0': {}  '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.4)':    dependencies:      '@babel/core': 7.24.4      '@babel/helper-environment-visitor': 7.22.20      '@babel/helper-member-expression-to-functions': 7.23.0      '@babel/helper-optimise-call-expression': 7.22.5  '@babel/helper-simple-access@7.22.5':    dependencies:      '@babel/types': 7.24.0  '@babel/helper-skip-transparent-expression-wrappers@7.22.5':    dependencies:      '@babel/types': 7.24.0  '@babel/helper-split-export-declaration@7.22.6':    dependencies:      '@babel/types': 7.24.0  '@babel/helper-string-parser@7.24.1': {}  '@babel/helper-validator-identifier@7.22.20': {}  '@babel/helper-validator-option@7.23.5': {}  '@babel/helpers@7.24.4':    dependencies:      '@babel/template': 7.24.0      '@babel/traverse': 7.24.1      '@babel/types': 7.24.0    transitivePeerDependencies:      - supports-color  '@babel/highlight@7.24.2':    dependencies:      '@babel/helper-validator-identifier': 7.22.20      chalk: 2.4.2      js-tokens: 4.0.0      picocolors: 1.0.0  '@babel/parser@7.24.4':    dependencies:      '@babel/types': 7.24.0  '@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.4)':    dependencies:      '@babel/core': 7.24.4      '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)      '@babel/helper-plugin-utils': 7.24.0      '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.4)  '@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.4)':    dependencies:      '@babel/core': 7.24.4      '@babel/helper-plugin-utils': 7.24.0  '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.4)':    dependencies:      '@babel/core': 7.24.4      '@babel/helper-plugin-utils': 7.24.0  '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4)':    dependencies:      '@babel/core': 7.24.4      '@babel/helper-plugin-utils': 7.24.0  '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.4)':    dependencies:      '@babel/core': 7.24.4      '@babel/helper-plugin-utils': 7.24.0  '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.4)':    dependencies:      '@babel/core': 7.24.4      '@babel/helper-plugin-utils': 7.24.0  '@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.4)':    dependencies:      '@babel/core': 7.24.4      '@babel/helper-annotate-as-pure': 7.22.5      '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)      '@babel/helper-plugin-utils': 7.24.0      '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)  '@babel/template@7.24.0':    dependencies:      '@babel/code-frame': 7.24.2      '@babel/parser': 7.24.4      '@babel/types': 7.24.0  '@babel/traverse@7.24.1':    dependencies:      '@babel/code-frame': 7.24.2      '@babel/generator': 7.24.4      '@babel/helper-environment-visitor': 7.22.20      '@babel/helper-function-name': 7.23.0      '@babel/helper-hoist-variables': 7.22.5      '@babel/helper-split-export-declaration': 7.22.6      '@babel/parser': 7.24.4      '@babel/types': 7.24.0      debug: 4.3.4      globals: 11.12.0    transitivePeerDependencies:      - supports-color  '@babel/types@7.24.0':    dependencies:      '@babel/helper-string-parser': 7.24.1      '@babel/helper-validator-identifier': 7.22.20      to-fast-properties: 2.0.0  '@esbuild/aix-ppc64@0.20.2':    optional: true  '@esbuild/android-arm64@0.20.2':    optional: true  '@esbuild/android-arm@0.20.2':    optional: true  '@esbuild/android-x64@0.20.2':    optional: true  '@esbuild/darwin-arm64@0.20.2':    optional: true  '@esbuild/darwin-x64@0.20.2':    optional: true  '@esbuild/freebsd-arm64@0.20.2':    optional: true  '@esbuild/freebsd-x64@0.20.2':    optional: true  '@esbuild/linux-arm64@0.20.2':    optional: true  '@esbuild/linux-arm@0.20.2':    optional: true  '@esbuild/linux-ia32@0.20.2':    optional: true  '@esbuild/linux-loong64@0.20.2':    optional: true  '@esbuild/linux-mips64el@0.20.2':    optional: true  '@esbuild/linux-ppc64@0.20.2':    optional: true  '@esbuild/linux-riscv64@0.20.2':    optional: true  '@esbuild/linux-s390x@0.20.2':    optional: true  '@esbuild/linux-x64@0.20.2':    optional: true  '@esbuild/netbsd-x64@0.20.2':    optional: true  '@esbuild/openbsd-x64@0.20.2':    optional: true  '@esbuild/sunos-x64@0.20.2':    optional: true  '@esbuild/win32-arm64@0.20.2':    optional: true  '@esbuild/win32-ia32@0.20.2':    optional: true  '@esbuild/win32-x64@0.20.2':    optional: true  '@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':    dependencies:      eslint: 8.57.0      eslint-visitor-keys: 3.4.3  '@eslint-community/regexpp@4.10.0': {}  '@eslint/eslintrc@2.1.4':    dependencies:      ajv: 6.12.6      debug: 4.3.4      espree: 9.6.1      globals: 13.24.0      ignore: 5.3.1      import-fresh: 3.3.0      js-yaml: 4.1.0      minimatch: 3.1.2      strip-json-comments: 3.1.1    transitivePeerDependencies:      - supports-color  '@eslint/js@8.57.0': {}  '@humanwhocodes/config-array@0.11.14':    dependencies:      '@humanwhocodes/object-schema': 2.0.3      debug: 4.3.4      minimatch: 3.1.2    transitivePeerDependencies:      - supports-color  '@humanwhocodes/module-importer@1.0.1': {}  '@humanwhocodes/object-schema@2.0.3': {}  '@jridgewell/gen-mapping@0.3.5':    dependencies:      '@jridgewell/set-array': 1.2.1      '@jridgewell/sourcemap-codec': 1.4.15      '@jridgewell/trace-mapping': 0.3.25  '@jridgewell/resolve-uri@3.1.2': {}  '@jridgewell/set-array@1.2.1': {}  '@jridgewell/sourcemap-codec@1.4.15': {}  '@jridgewell/trace-mapping@0.3.25':    dependencies:      '@jridgewell/resolve-uri': 3.1.2      '@jridgewell/sourcemap-codec': 1.4.15  '@mdi/font@7.0.96': {}  '@nodelib/fs.scandir@2.1.5':    dependencies:      '@nodelib/fs.stat': 2.0.5      run-parallel: 1.2.0  '@nodelib/fs.stat@2.0.5': {}  '@nodelib/fs.walk@1.2.8':    dependencies:      '@nodelib/fs.scandir': 2.1.5      fastq: 1.17.1  '@pkgr/core@0.1.1': {}  '@polka/url@1.0.0-next.25': {}  '@rollup/pluginutils@5.1.0(rollup@4.17.0)':    dependencies:      '@types/estree': 1.0.5      estree-walker: 2.0.2      picomatch: 2.3.1    optionalDependencies:      rollup: 4.17.0  '@rollup/rollup-android-arm-eabi@4.17.0':    optional: true  '@rollup/rollup-android-arm64@4.17.0':    optional: true  '@rollup/rollup-darwin-arm64@4.17.0':    optional: true  '@rollup/rollup-darwin-x64@4.17.0':    optional: true  '@rollup/rollup-linux-arm-gnueabihf@4.17.0':    optional: true  '@rollup/rollup-linux-arm-musleabihf@4.17.0':    optional: true  '@rollup/rollup-linux-arm64-gnu@4.17.0':    optional: true  '@rollup/rollup-linux-arm64-musl@4.17.0':    optional: true  '@rollup/rollup-linux-powerpc64le-gnu@4.17.0':    optional: true  '@rollup/rollup-linux-riscv64-gnu@4.17.0':    optional: true  '@rollup/rollup-linux-s390x-gnu@4.17.0':    optional: true  '@rollup/rollup-linux-x64-gnu@4.17.0':    optional: true  '@rollup/rollup-linux-x64-musl@4.17.0':    optional: true  '@rollup/rollup-win32-arm64-msvc@4.17.0':    optional: true  '@rollup/rollup-win32-ia32-msvc@4.17.0':    optional: true  '@rollup/rollup-win32-x64-msvc@4.17.0':    optional: true  '@rushstack/eslint-patch@1.10.2': {}  '@types/estree@1.0.5': {}  '@ungap/structured-clone@1.2.0': {}  '@vitejs/plugin-vue@5.0.4(vite@5.2.10(sass@1.75.0))(vue@3.4.25)':    dependencies:      vite: 5.2.10(sass@1.75.0)      vue: 3.4.25  '@vue/babel-helper-vue-transform-on@1.2.2': {}  '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.4)':    dependencies:      '@babel/helper-module-imports': 7.22.15      '@babel/helper-plugin-utils': 7.24.0      '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)      '@babel/template': 7.24.0      '@babel/traverse': 7.24.1      '@babel/types': 7.24.0      '@vue/babel-helper-vue-transform-on': 1.2.2      '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.24.4)      camelcase: 6.3.0      html-tags: 3.3.1      svg-tags: 1.0.0    optionalDependencies:      '@babel/core': 7.24.4    transitivePeerDependencies:      - supports-color  '@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.24.4)':    dependencies:      '@babel/code-frame': 7.24.2      '@babel/core': 7.24.4      '@babel/helper-module-imports': 7.22.15      '@babel/helper-plugin-utils': 7.24.0      '@babel/parser': 7.24.4      '@vue/compiler-sfc': 3.4.25  '@vue/compiler-core@3.4.25':    dependencies:      '@babel/parser': 7.24.4      '@vue/shared': 3.4.25      entities: 4.5.0      estree-walker: 2.0.2      source-map-js: 1.2.0  '@vue/compiler-dom@3.4.25':    dependencies:      '@vue/compiler-core': 3.4.25      '@vue/shared': 3.4.25  '@vue/compiler-sfc@3.4.25':    dependencies:      '@babel/parser': 7.24.4      '@vue/compiler-core': 3.4.25      '@vue/compiler-dom': 3.4.25      '@vue/compiler-ssr': 3.4.25      '@vue/shared': 3.4.25      estree-walker: 2.0.2      magic-string: 0.30.10      postcss: 8.4.38      source-map-js: 1.2.0  '@vue/compiler-ssr@3.4.25':    dependencies:      '@vue/compiler-dom': 3.4.25      '@vue/shared': 3.4.25  '@vue/devtools-api@6.6.1': {}  '@vue/devtools-core@7.1.3(vite@5.2.10(sass@1.75.0))(vue@3.4.25)':    dependencies:      '@vue/devtools-kit': 7.1.3(vue@3.4.25)      '@vue/devtools-shared': 7.1.3      mitt: 3.0.1      nanoid: 3.3.7      pathe: 1.1.2      vite-hot-client: 0.2.3(vite@5.2.10(sass@1.75.0))    transitivePeerDependencies:      - vite      - vue  '@vue/devtools-kit@7.1.3(vue@3.4.25)':    dependencies:      '@vue/devtools-shared': 7.1.3      hookable: 5.5.3      mitt: 3.0.1      perfect-debounce: 1.0.0      speakingurl: 14.0.1      vue: 3.4.25  '@vue/devtools-shared@7.1.3':    dependencies:      rfdc: 1.3.1  '@vue/eslint-config-prettier@9.0.0(eslint@8.57.0)(prettier@3.2.5)':    dependencies:      eslint: 8.57.0      eslint-config-prettier: 9.1.0(eslint@8.57.0)      eslint-plugin-prettier: 5.1.3(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.2.5)      prettier: 3.2.5    transitivePeerDependencies:      - '@types/eslint'  '@vue/reactivity@3.4.25':    dependencies:      '@vue/shared': 3.4.25  '@vue/runtime-core@3.4.25':    dependencies:      '@vue/reactivity': 3.4.25      '@vue/shared': 3.4.25  '@vue/runtime-dom@3.4.25':    dependencies:      '@vue/runtime-core': 3.4.25      '@vue/shared': 3.4.25      csstype: 3.1.3  '@vue/server-renderer@3.4.25(vue@3.4.25)':    dependencies:      '@vue/compiler-ssr': 3.4.25      '@vue/shared': 3.4.25      vue: 3.4.25  '@vue/shared@3.4.25': {}  '@vuetify/loader-shared@2.0.3(vue@3.4.25)(vuetify@3.5.17(vite-plugin-vuetify@2.0.3)(vue@3.4.25))':    dependencies:      upath: 2.0.1      vue: 3.4.25      vuetify: 3.5.17(vite-plugin-vuetify@2.0.3)(vue@3.4.25)  acorn-jsx@5.3.2(acorn@8.11.3):    dependencies:      acorn: 8.11.3  acorn@8.11.3: {}  agent-base@7.1.1:    dependencies:      debug: 4.3.4    transitivePeerDependencies:      - supports-color  ajv@6.12.6:    dependencies:      fast-deep-equal: 3.1.3      fast-json-stable-stringify: 2.1.0      json-schema-traverse: 0.4.1      uri-js: 4.4.1  ansi-regex@5.0.1: {}  ansi-styles@3.2.1:    dependencies:      color-convert: 1.9.3  ansi-styles@4.3.0:    dependencies:      color-convert: 2.0.1  anymatch@3.1.3:    dependencies:      normalize-path: 3.0.0      picomatch: 2.3.1  argparse@2.0.1: {}  asynckit@0.4.0: {}  balanced-match@1.0.2: {}  binary-extensions@2.3.0: {}  boolbase@1.0.0: {}  brace-expansion@1.1.11:    dependencies:      balanced-match: 1.0.2      concat-map: 0.0.1  brace-expansion@2.0.1:    dependencies:      balanced-match: 1.0.2  braces@3.0.2:    dependencies:      fill-range: 7.0.1  browserslist@4.23.0:    dependencies:      caniuse-lite: 1.0.30001614      electron-to-chromium: 1.4.750      node-releases: 2.0.14      update-browserslist-db: 1.0.13(browserslist@4.23.0)  bundle-name@4.1.0:    dependencies:      run-applescript: 7.0.0  callsites@3.1.0: {}  camelcase@6.3.0: {}  caniuse-lite@1.0.30001614: {}  chalk@2.4.2:    dependencies:      ansi-styles: 3.2.1      escape-string-regexp: 1.0.5      supports-color: 5.5.0  chalk@4.1.2:    dependencies:      ansi-styles: 4.3.0      supports-color: 7.2.0  chokidar@3.6.0:    dependencies:      anymatch: 3.1.3      braces: 3.0.2      glob-parent: 5.1.2      is-binary-path: 2.1.0      is-glob: 4.0.3      normalize-path: 3.0.0      readdirp: 3.6.0    optionalDependencies:      fsevents: 2.3.3  color-convert@1.9.3:    dependencies:      color-name: 1.1.3  color-convert@2.0.1:    dependencies:      color-name: 1.1.4  color-name@1.1.3: {}  color-name@1.1.4: {}  combined-stream@1.0.8:    dependencies:      delayed-stream: 1.0.0  concat-map@0.0.1: {}  convert-source-map@2.0.0: {}  cross-spawn@7.0.3:    dependencies:      path-key: 3.1.1      shebang-command: 2.0.0      which: 2.0.2  cssesc@3.0.0: {}  cssstyle@4.0.1:    dependencies:      rrweb-cssom: 0.6.0  csstype@3.1.3: {}  data-urls@5.0.0:    dependencies:      whatwg-mimetype: 4.0.0      whatwg-url: 14.0.0  debug@4.3.4:    dependencies:      ms: 2.1.2  decimal.js@10.4.3: {}  deep-is@0.1.4: {}  default-browser-id@5.0.0: {}  default-browser@5.2.1:    dependencies:      bundle-name: 4.1.0      default-browser-id: 5.0.0  define-lazy-prop@3.0.0: {}  delayed-stream@1.0.0: {}  doctrine@3.0.0:    dependencies:      esutils: 2.0.3  electron-to-chromium@1.4.750: {}  entities@4.5.0: {}  error-stack-parser-es@0.1.1: {}  esbuild@0.20.2:    optionalDependencies:      '@esbuild/aix-ppc64': 0.20.2      '@esbuild/android-arm': 0.20.2      '@esbuild/android-arm64': 0.20.2      '@esbuild/android-x64': 0.20.2      '@esbuild/darwin-arm64': 0.20.2      '@esbuild/darwin-x64': 0.20.2      '@esbuild/freebsd-arm64': 0.20.2      '@esbuild/freebsd-x64': 0.20.2      '@esbuild/linux-arm': 0.20.2      '@esbuild/linux-arm64': 0.20.2      '@esbuild/linux-ia32': 0.20.2      '@esbuild/linux-loong64': 0.20.2      '@esbuild/linux-mips64el': 0.20.2      '@esbuild/linux-ppc64': 0.20.2      '@esbuild/linux-riscv64': 0.20.2      '@esbuild/linux-s390x': 0.20.2      '@esbuild/linux-x64': 0.20.2      '@esbuild/netbsd-x64': 0.20.2      '@esbuild/openbsd-x64': 0.20.2      '@esbuild/sunos-x64': 0.20.2      '@esbuild/win32-arm64': 0.20.2      '@esbuild/win32-ia32': 0.20.2      '@esbuild/win32-x64': 0.20.2  escalade@3.1.2: {}  escape-string-regexp@1.0.5: {}  escape-string-regexp@4.0.0: {}  eslint-config-prettier@9.1.0(eslint@8.57.0):    dependencies:      eslint: 8.57.0  eslint-plugin-prettier@5.1.3(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(prettier@3.2.5):    dependencies:      eslint: 8.57.0      prettier: 3.2.5      prettier-linter-helpers: 1.0.0      synckit: 0.8.8    optionalDependencies:      eslint-config-prettier: 9.1.0(eslint@8.57.0)  eslint-plugin-vue@9.25.0(eslint@8.57.0):    dependencies:      '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)      eslint: 8.57.0      globals: 13.24.0      natural-compare: 1.4.0      nth-check: 2.1.1      postcss-selector-parser: 6.0.16      semver: 7.6.0      vue-eslint-parser: 9.4.2(eslint@8.57.0)      xml-name-validator: 4.0.0    transitivePeerDependencies:      - supports-color  eslint-scope@7.2.2:    dependencies:      esrecurse: 4.3.0      estraverse: 5.3.0  eslint-visitor-keys@3.4.3: {}  eslint@8.57.0:    dependencies:      '@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)      '@eslint-community/regexpp': 4.10.0      '@eslint/eslintrc': 2.1.4      '@eslint/js': 8.57.0      '@humanwhocodes/config-array': 0.11.14      '@humanwhocodes/module-importer': 1.0.1      '@nodelib/fs.walk': 1.2.8      '@ungap/structured-clone': 1.2.0      ajv: 6.12.6      chalk: 4.1.2      cross-spawn: 7.0.3      debug: 4.3.4      doctrine: 3.0.0      escape-string-regexp: 4.0.0      eslint-scope: 7.2.2      eslint-visitor-keys: 3.4.3      espree: 9.6.1      esquery: 1.5.0      esutils: 2.0.3      fast-deep-equal: 3.1.3      file-entry-cache: 6.0.1      find-up: 5.0.0      glob-parent: 6.0.2      globals: 13.24.0      graphemer: 1.4.0      ignore: 5.3.1      imurmurhash: 0.1.4      is-glob: 4.0.3      is-path-inside: 3.0.3      js-yaml: 4.1.0      json-stable-stringify-without-jsonify: 1.0.1      levn: 0.4.1      lodash.merge: 4.6.2      minimatch: 3.1.2      natural-compare: 1.4.0      optionator: 0.9.4      strip-ansi: 6.0.1      text-table: 0.2.0    transitivePeerDependencies:      - supports-color  espree@9.6.1:    dependencies:      acorn: 8.11.3      acorn-jsx: 5.3.2(acorn@8.11.3)      eslint-visitor-keys: 3.4.3  esquery@1.5.0:    dependencies:      estraverse: 5.3.0  esrecurse@4.3.0:    dependencies:      estraverse: 5.3.0  estraverse@5.3.0: {}  estree-walker@2.0.2: {}  esutils@2.0.3: {}  execa@8.0.1:    dependencies:      cross-spawn: 7.0.3      get-stream: 8.0.1      human-signals: 5.0.0      is-stream: 3.0.0      merge-stream: 2.0.0      npm-run-path: 5.3.0      onetime: 6.0.0      signal-exit: 4.1.0      strip-final-newline: 3.0.0  fast-deep-equal@3.1.3: {}  fast-diff@1.3.0: {}  fast-glob@3.3.2:    dependencies:      '@nodelib/fs.stat': 2.0.5      '@nodelib/fs.walk': 1.2.8      glob-parent: 5.1.2      merge2: 1.4.1      micromatch: 4.0.5  fast-json-stable-stringify@2.1.0: {}  fast-levenshtein@2.0.6: {}  fastq@1.17.1:    dependencies:      reusify: 1.0.4  file-entry-cache@6.0.1:    dependencies:      flat-cache: 3.2.0  fill-range@7.0.1:    dependencies:      to-regex-range: 5.0.1  find-up@5.0.0:    dependencies:      locate-path: 6.0.0      path-exists: 4.0.0  flat-cache@3.2.0:    dependencies:      flatted: 3.3.1      keyv: 4.5.4      rimraf: 3.0.2  flatted@3.3.1: {}  form-data@4.0.0:    dependencies:      asynckit: 0.4.0      combined-stream: 1.0.8      mime-types: 2.1.35  fs-extra@11.2.0:    dependencies:      graceful-fs: 4.2.11      jsonfile: 6.1.0      universalify: 2.0.1  fs.realpath@1.0.0: {}  fsevents@2.3.3:    optional: true  function-bind@1.1.2: {}  gensync@1.0.0-beta.2: {}  get-stream@8.0.1: {}  glob-parent@5.1.2:    dependencies:      is-glob: 4.0.3  glob-parent@6.0.2:    dependencies:      is-glob: 4.0.3  glob@7.2.3:    dependencies:      fs.realpath: 1.0.0      inflight: 1.0.6      inherits: 2.0.4      minimatch: 3.1.2      once: 1.4.0      path-is-absolute: 1.0.1  globals@11.12.0: {}  globals@13.24.0:    dependencies:      type-fest: 0.20.2  graceful-fs@4.2.11: {}  graphemer@1.4.0: {}  has-flag@3.0.0: {}  has-flag@4.0.0: {}  hasown@2.0.2:    dependencies:      function-bind: 1.1.2  hookable@5.5.3: {}  html-encoding-sniffer@4.0.0:    dependencies:      whatwg-encoding: 3.1.1  html-tags@3.3.1: {}  http-proxy-agent@7.0.2:    dependencies:      agent-base: 7.1.1      debug: 4.3.4    transitivePeerDependencies:      - supports-color  https-proxy-agent@7.0.4:    dependencies:      agent-base: 7.1.1      debug: 4.3.4    transitivePeerDependencies:      - supports-color  human-signals@5.0.0: {}  iconv-lite@0.6.3:    dependencies:      safer-buffer: 2.1.2  ignore@5.3.1: {}  immutable@4.3.5: {}  import-fresh@3.3.0:    dependencies:      parent-module: 1.0.1      resolve-from: 4.0.0  imurmurhash@0.1.4: {}  inflight@1.0.6:    dependencies:      once: 1.4.0      wrappy: 1.0.2  inherits@2.0.4: {}  is-binary-path@2.1.0:    dependencies:      binary-extensions: 2.3.0  is-core-module@2.13.1:    dependencies:      hasown: 2.0.2  is-docker@3.0.0: {}  is-extglob@2.1.1: {}  is-glob@4.0.3:    dependencies:      is-extglob: 2.1.1  is-inside-container@1.0.0:    dependencies:      is-docker: 3.0.0  is-number@7.0.0: {}  is-path-inside@3.0.3: {}  is-potential-custom-element-name@1.0.1: {}  is-stream@3.0.0: {}  is-wsl@3.1.0:    dependencies:      is-inside-container: 1.0.0  isexe@2.0.0: {}  js-tokens@4.0.0: {}  js-yaml@4.1.0:    dependencies:      argparse: 2.0.1  jsdom@24.0.0:    dependencies:      cssstyle: 4.0.1      data-urls: 5.0.0      decimal.js: 10.4.3      form-data: 4.0.0      html-encoding-sniffer: 4.0.0      http-proxy-agent: 7.0.2      https-proxy-agent: 7.0.4      is-potential-custom-element-name: 1.0.1      nwsapi: 2.2.9      parse5: 7.1.2      rrweb-cssom: 0.6.0      saxes: 6.0.0      symbol-tree: 3.2.4      tough-cookie: 4.1.3      w3c-xmlserializer: 5.0.0      webidl-conversions: 7.0.0      whatwg-encoding: 3.1.1      whatwg-mimetype: 4.0.0      whatwg-url: 14.0.0      ws: 8.17.0      xml-name-validator: 5.0.0    transitivePeerDependencies:      - bufferutil      - supports-color      - utf-8-validate  jsesc@2.5.2: {}  json-buffer@3.0.1: {}  json-schema-traverse@0.4.1: {}  json-stable-stringify-without-jsonify@1.0.1: {}  json5@2.2.3: {}  jsonfile@6.1.0:    dependencies:      universalify: 2.0.1    optionalDependencies:      graceful-fs: 4.2.11  keyv@4.5.4:    dependencies:      json-buffer: 3.0.1  kolorist@1.8.0: {}  levn@0.4.1:    dependencies:      prelude-ls: 1.2.1      type-check: 0.4.0  local-pkg@0.4.3: {}  locate-path@6.0.0:    dependencies:      p-locate: 5.0.0  lodash.merge@4.6.2: {}  lodash@4.17.21: {}  lru-cache@5.1.1:    dependencies:      yallist: 3.1.1  lru-cache@6.0.0:    dependencies:      yallist: 4.0.0  magic-string@0.30.10:    dependencies:      '@jridgewell/sourcemap-codec': 1.4.15  merge-stream@2.0.0: {}  merge2@1.4.1: {}  micromatch@4.0.5:    dependencies:      braces: 3.0.2      picomatch: 2.3.1  mime-db@1.52.0: {}  mime-types@2.1.35:    dependencies:      mime-db: 1.52.0  mimic-fn@4.0.0: {}  minimatch@3.1.2:    dependencies:      brace-expansion: 1.1.11  minimatch@9.0.4:    dependencies:      brace-expansion: 2.0.1  mitt@3.0.1: {}  mrmime@2.0.0: {}  ms@2.1.2: {}  nanoid@3.3.7: {}  natural-compare@1.4.0: {}  node-releases@2.0.14: {}  normalize-path@3.0.0: {}  npm-run-path@5.3.0:    dependencies:      path-key: 4.0.0  nth-check@2.1.1:    dependencies:      boolbase: 1.0.0  nwsapi@2.2.9: {}  once@1.4.0:    dependencies:      wrappy: 1.0.2  onetime@6.0.0:    dependencies:      mimic-fn: 4.0.0  open@10.1.0:    dependencies:      default-browser: 5.2.1      define-lazy-prop: 3.0.0      is-inside-container: 1.0.0      is-wsl: 3.1.0  optionator@0.9.4:    dependencies:      deep-is: 0.1.4      fast-levenshtein: 2.0.6      levn: 0.4.1      prelude-ls: 1.2.1      type-check: 0.4.0      word-wrap: 1.2.5  p-limit@3.1.0:    dependencies:      yocto-queue: 0.1.0  p-locate@5.0.0:    dependencies:      p-limit: 3.1.0  parent-module@1.0.1:    dependencies:      callsites: 3.1.0  parse5@7.1.2:    dependencies:      entities: 4.5.0  path-exists@4.0.0: {}  path-is-absolute@1.0.1: {}  path-key@3.1.1: {}  path-key@4.0.0: {}  path-parse@1.0.7: {}  pathe@1.1.2: {}  perfect-debounce@1.0.0: {}  picocolors@1.0.0: {}  picomatch@2.3.1: {}  pinia@2.1.7(vue@3.4.25):    dependencies:      '@vue/devtools-api': 6.6.1      vue: 3.4.25      vue-demi: 0.14.7(vue@3.4.25)  postcss-selector-parser@6.0.16:    dependencies:      cssesc: 3.0.0      util-deprecate: 1.0.2  postcss@8.4.38:    dependencies:      nanoid: 3.3.7      picocolors: 1.0.0      source-map-js: 1.2.0  prelude-ls@1.2.1: {}  prettier-linter-helpers@1.0.0:    dependencies:      fast-diff: 1.3.0  prettier@3.2.5: {}  psl@1.9.0: {}  punycode@2.3.1: {}  querystringify@2.2.0: {}  queue-microtask@1.2.3: {}  readdirp@3.6.0:    dependencies:      picomatch: 2.3.1  requires-port@1.0.0: {}  resolve-from@4.0.0: {}  resolve@1.22.8:    dependencies:      is-core-module: 2.13.1      path-parse: 1.0.7      supports-preserve-symlinks-flag: 1.0.0  reusify@1.0.4: {}  rfdc@1.3.1: {}  rimraf@3.0.2:    dependencies:      glob: 7.2.3  roboto-fontface@0.10.0: {}  rollup@4.17.0:    dependencies:      '@types/estree': 1.0.5    optionalDependencies:      '@rollup/rollup-android-arm-eabi': 4.17.0      '@rollup/rollup-android-arm64': 4.17.0      '@rollup/rollup-darwin-arm64': 4.17.0      '@rollup/rollup-darwin-x64': 4.17.0      '@rollup/rollup-linux-arm-gnueabihf': 4.17.0      '@rollup/rollup-linux-arm-musleabihf': 4.17.0      '@rollup/rollup-linux-arm64-gnu': 4.17.0      '@rollup/rollup-linux-arm64-musl': 4.17.0      '@rollup/rollup-linux-powerpc64le-gnu': 4.17.0      '@rollup/rollup-linux-riscv64-gnu': 4.17.0      '@rollup/rollup-linux-s390x-gnu': 4.17.0      '@rollup/rollup-linux-x64-gnu': 4.17.0      '@rollup/rollup-linux-x64-musl': 4.17.0      '@rollup/rollup-win32-arm64-msvc': 4.17.0      '@rollup/rollup-win32-ia32-msvc': 4.17.0      '@rollup/rollup-win32-x64-msvc': 4.17.0      fsevents: 2.3.3  rrweb-cssom@0.6.0: {}  run-applescript@7.0.0: {}  run-parallel@1.2.0:    dependencies:      queue-microtask: 1.2.3  safer-buffer@2.1.2: {}  sass@1.75.0:    dependencies:      chokidar: 3.6.0      immutable: 4.3.5      source-map-js: 1.2.0  saxes@6.0.0:    dependencies:      xmlchars: 2.2.0  semver@6.3.1: {}  semver@7.6.0:    dependencies:      lru-cache: 6.0.0  shebang-command@2.0.0:    dependencies:      shebang-regex: 3.0.0  shebang-regex@3.0.0: {}  signal-exit@4.1.0: {}  sirv@2.0.4:    dependencies:      '@polka/url': 1.0.0-next.25      mrmime: 2.0.0      totalist: 3.0.1  source-map-js@1.2.0: {}  speakingurl@14.0.1: {}  strip-ansi@6.0.1:    dependencies:      ansi-regex: 5.0.1  strip-final-newline@3.0.0: {}  strip-json-comments@3.1.1: {}  supports-color@5.5.0:    dependencies:      has-flag: 3.0.0  supports-color@7.2.0:    dependencies:      has-flag: 4.0.0  supports-preserve-symlinks-flag@1.0.0: {}  svg-tags@1.0.0: {}  symbol-tree@3.2.4: {}  synckit@0.8.8:    dependencies:      '@pkgr/core': 0.1.1      tslib: 2.6.2  text-table@0.2.0: {}  to-fast-properties@2.0.0: {}  to-regex-range@5.0.1:    dependencies:      is-number: 7.0.0  totalist@3.0.1: {}  tough-cookie@4.1.3:    dependencies:      psl: 1.9.0      punycode: 2.3.1      universalify: 0.2.0      url-parse: 1.5.10  tr46@5.0.0:    dependencies:      punycode: 2.3.1  tslib@2.6.2: {}  type-check@0.4.0:    dependencies:      prelude-ls: 1.2.1  type-fest@0.20.2: {}  universalify@0.2.0: {}  universalify@2.0.1: {}  unplugin-fonts@1.1.1(vite@5.2.10(sass@1.75.0)):    dependencies:      fast-glob: 3.3.2      unplugin: 1.10.1      vite: 5.2.10(sass@1.75.0)  unplugin-vue-components@0.26.0(@babel/parser@7.24.4)(rollup@4.17.0)(vue@3.4.25):    dependencies:      '@antfu/utils': 0.7.7      '@rollup/pluginutils': 5.1.0(rollup@4.17.0)      chokidar: 3.6.0      debug: 4.3.4      fast-glob: 3.3.2      local-pkg: 0.4.3      magic-string: 0.30.10      minimatch: 9.0.4      resolve: 1.22.8      unplugin: 1.10.1      vue: 3.4.25    optionalDependencies:      '@babel/parser': 7.24.4    transitivePeerDependencies:      - rollup      - supports-color  unplugin@1.10.1:    dependencies:      acorn: 8.11.3      chokidar: 3.6.0      webpack-sources: 3.2.3      webpack-virtual-modules: 0.6.1  upath@2.0.1: {}  update-browserslist-db@1.0.13(browserslist@4.23.0):    dependencies:      browserslist: 4.23.0      escalade: 3.1.2      picocolors: 1.0.0  uri-js@4.4.1:    dependencies:      punycode: 2.3.1  url-parse@1.5.10:    dependencies:      querystringify: 2.2.0      requires-port: 1.0.0  util-deprecate@1.0.2: {}  vite-hot-client@0.2.3(vite@5.2.10(sass@1.75.0)):    dependencies:      vite: 5.2.10(sass@1.75.0)  vite-plugin-inspect@0.8.4(rollup@4.17.0)(vite@5.2.10(sass@1.75.0)):    dependencies:      '@antfu/utils': 0.7.7      '@rollup/pluginutils': 5.1.0(rollup@4.17.0)      debug: 4.3.4      error-stack-parser-es: 0.1.1      fs-extra: 11.2.0      open: 10.1.0      perfect-debounce: 1.0.0      picocolors: 1.0.0      sirv: 2.0.4      vite: 5.2.10(sass@1.75.0)    transitivePeerDependencies:      - rollup      - supports-color  vite-plugin-vue-devtools@7.1.3(rollup@4.17.0)(vite@5.2.10(sass@1.75.0))(vue@3.4.25):    dependencies:      '@vue/devtools-core': 7.1.3(vite@5.2.10(sass@1.75.0))(vue@3.4.25)      '@vue/devtools-kit': 7.1.3(vue@3.4.25)      '@vue/devtools-shared': 7.1.3      execa: 8.0.1      sirv: 2.0.4      vite: 5.2.10(sass@1.75.0)      vite-plugin-inspect: 0.8.4(rollup@4.17.0)(vite@5.2.10(sass@1.75.0))      vite-plugin-vue-inspector: 5.0.1(vite@5.2.10(sass@1.75.0))    transitivePeerDependencies:      - '@nuxt/kit'      - rollup      - supports-color      - vue  vite-plugin-vue-inspector@5.0.1(vite@5.2.10(sass@1.75.0)):    dependencies:      '@babel/core': 7.24.4      '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.4)      '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.4)      '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4)      '@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.4)      '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.4)      '@vue/compiler-dom': 3.4.25      kolorist: 1.8.0      magic-string: 0.30.10      vite: 5.2.10(sass@1.75.0)    transitivePeerDependencies:      - supports-color  vite-plugin-vuetify@2.0.3(vite@5.2.10(sass@1.75.0))(vue@3.4.25)(vuetify@3.5.17):    dependencies:      '@vuetify/loader-shared': 2.0.3(vue@3.4.25)(vuetify@3.5.17(vite-plugin-vuetify@2.0.3)(vue@3.4.25))      debug: 4.3.4      upath: 2.0.1      vite: 5.2.10(sass@1.75.0)      vue: 3.4.25      vuetify: 3.5.17(vite-plugin-vuetify@2.0.3)(vue@3.4.25)    transitivePeerDependencies:      - supports-color  vite@5.2.10(sass@1.75.0):    dependencies:      esbuild: 0.20.2      postcss: 8.4.38      rollup: 4.17.0    optionalDependencies:      fsevents: 2.3.3      sass: 1.75.0  vue-demi@0.14.7(vue@3.4.25):    dependencies:      vue: 3.4.25  vue-eslint-parser@9.4.2(eslint@8.57.0):    dependencies:      debug: 4.3.4      eslint: 8.57.0      eslint-scope: 7.2.2      eslint-visitor-keys: 3.4.3      espree: 9.6.1      esquery: 1.5.0      lodash: 4.17.21      semver: 7.6.0    transitivePeerDependencies:      - supports-color  vue-router@4.3.2(vue@3.4.25):    dependencies:      '@vue/devtools-api': 6.6.1      vue: 3.4.25  vue@3.4.25:    dependencies:      '@vue/compiler-dom': 3.4.25      '@vue/compiler-sfc': 3.4.25      '@vue/runtime-dom': 3.4.25      '@vue/server-renderer': 3.4.25(vue@3.4.25)      '@vue/shared': 3.4.25  vuetify@3.5.17(vite-plugin-vuetify@2.0.3)(vue@3.4.25):    dependencies:      vue: 3.4.25    optionalDependencies:      vite-plugin-vuetify: 2.0.3(vite@5.2.10(sass@1.75.0))(vue@3.4.25)(vuetify@3.5.17)  w3c-xmlserializer@5.0.0:    dependencies:      xml-name-validator: 5.0.0  webidl-conversions@7.0.0: {}  webpack-sources@3.2.3: {}  webpack-virtual-modules@0.6.1: {}  whatwg-encoding@3.1.1:    dependencies:      iconv-lite: 0.6.3  whatwg-mimetype@4.0.0: {}  whatwg-url@14.0.0:    dependencies:      tr46: 5.0.0      webidl-conversions: 7.0.0  which@2.0.2:    dependencies:      isexe: 2.0.0  word-wrap@1.2.5: {}  wrappy@1.0.2: {}  ws@8.17.0: {}  xml-name-validator@4.0.0: {}  xml-name-validator@5.0.0: {}  xmlchars@2.2.0: {}  yallist@3.1.1: {}  yallist@4.0.0: {}  yocto-queue@0.1.0: {}
 |