pnpm-lock.yaml 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152
  1. lockfileVersion: "6.0"
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. dependencies:
  6. "@dnd-kit/core":
  7. specifier: ^6.1.0
  8. version: 6.1.0(react-dom@18.2.0)(react@18.2.0)
  9. "@dnd-kit/sortable":
  10. specifier: ^8.0.0
  11. version: 8.0.0(@dnd-kit/core@6.1.0)(react@18.2.0)
  12. "@dnd-kit/utilities":
  13. specifier: ^3.2.2
  14. version: 3.2.2(react@18.2.0)
  15. "@emotion/react":
  16. specifier: ^11.11.3
  17. version: 11.11.3(@types/react@18.2.48)(react@18.2.0)
  18. "@emotion/styled":
  19. specifier: ^11.11.0
  20. version: 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0)
  21. "@juggle/resize-observer":
  22. specifier: ^3.4.0
  23. version: 3.4.0
  24. "@mui/icons-material":
  25. specifier: ^5.15.5
  26. version: 5.15.5(@mui/material@5.15.5)(@types/react@18.2.48)(react@18.2.0)
  27. "@mui/lab":
  28. specifier: 5.0.0-alpha.149
  29. version: 5.0.0-alpha.149(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@mui/material@5.15.5)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  30. "@mui/material":
  31. specifier: ^5.15.5
  32. version: 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  33. "@mui/x-data-grid":
  34. specifier: ^6.18.7
  35. version: 6.18.7(@mui/material@5.15.5)(@mui/system@5.15.5)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  36. "@tauri-apps/api":
  37. specifier: ^1.5.3
  38. version: 1.5.3
  39. ahooks:
  40. specifier: ^3.7.8
  41. version: 3.7.8(react@18.2.0)
  42. axios:
  43. specifier: ^1.6.5
  44. version: 1.6.5
  45. dayjs:
  46. specifier: 1.11.5
  47. version: 1.11.5
  48. i18next:
  49. specifier: ^23.7.16
  50. version: 23.7.16
  51. lodash-es:
  52. specifier: ^4.17.21
  53. version: 4.17.21
  54. monaco-editor:
  55. specifier: ^0.34.1
  56. version: 0.34.1
  57. nanoid:
  58. specifier: ^5.0.4
  59. version: 5.0.4
  60. react:
  61. specifier: ^18.2.0
  62. version: 18.2.0
  63. react-dom:
  64. specifier: ^18.2.0
  65. version: 18.2.0(react@18.2.0)
  66. react-error-boundary:
  67. specifier: ^3.1.4
  68. version: 3.1.4(react@18.2.0)
  69. react-hook-form:
  70. specifier: ^7.49.3
  71. version: 7.49.3(react@18.2.0)
  72. react-i18next:
  73. specifier: ^13.5.0
  74. version: 13.5.0(i18next@23.7.16)(react-dom@18.2.0)(react@18.2.0)
  75. react-router-dom:
  76. specifier: ^6.21.2
  77. version: 6.21.2(react-dom@18.2.0)(react@18.2.0)
  78. react-transition-group:
  79. specifier: ^4.4.5
  80. version: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  81. react-virtuoso:
  82. specifier: ^4.6.2
  83. version: 4.6.2(react-dom@18.2.0)(react@18.2.0)
  84. recoil:
  85. specifier: ^0.7.7
  86. version: 0.7.7(react-dom@18.2.0)(react@18.2.0)
  87. snarkdown:
  88. specifier: ^2.0.0
  89. version: 2.0.0
  90. swr:
  91. specifier: ^1.3.0
  92. version: 1.3.0(react@18.2.0)
  93. tar:
  94. specifier: ^6.2.0
  95. version: 6.2.0
  96. devDependencies:
  97. "@actions/github":
  98. specifier: ^5.1.1
  99. version: 5.1.1
  100. "@tauri-apps/cli":
  101. specifier: ^1.5.9
  102. version: 1.5.9
  103. "@types/fs-extra":
  104. specifier: ^9.0.13
  105. version: 9.0.13
  106. "@types/js-cookie":
  107. specifier: ^3.0.6
  108. version: 3.0.6
  109. "@types/lodash-es":
  110. specifier: ^4.17.12
  111. version: 4.17.12
  112. "@types/react":
  113. specifier: ^18.2.48
  114. version: 18.2.48
  115. "@types/react-dom":
  116. specifier: ^18.2.18
  117. version: 18.2.18
  118. "@types/react-transition-group":
  119. specifier: ^4.4.10
  120. version: 4.4.10
  121. "@vitejs/plugin-react":
  122. specifier: ^4.2.1
  123. version: 4.2.1(vite@5.0.11)
  124. adm-zip:
  125. specifier: ^0.5.10
  126. version: 0.5.10
  127. cross-env:
  128. specifier: ^7.0.3
  129. version: 7.0.3
  130. fs-extra:
  131. specifier: ^11.2.0
  132. version: 11.2.0
  133. https-proxy-agent:
  134. specifier: ^5.0.1
  135. version: 5.0.1
  136. husky:
  137. specifier: ^7.0.4
  138. version: 7.0.4
  139. node-fetch:
  140. specifier: ^3.3.2
  141. version: 3.3.2
  142. prettier:
  143. specifier: ^2.8.8
  144. version: 2.8.8
  145. pretty-quick:
  146. specifier: ^3.3.1
  147. version: 3.3.1(prettier@2.8.8)
  148. sass:
  149. specifier: ^1.70.0
  150. version: 1.70.0
  151. typescript:
  152. specifier: ^5.3.3
  153. version: 5.3.3
  154. vite:
  155. specifier: ^5.0.11
  156. version: 5.0.11(sass@1.70.0)
  157. vite-plugin-monaco-editor:
  158. specifier: ^1.1.0
  159. version: 1.1.0(monaco-editor@0.34.1)
  160. vite-plugin-svgr:
  161. specifier: ^4.2.0
  162. version: 4.2.0(typescript@5.3.3)(vite@5.0.11)
  163. packages:
  164. /@actions/github@5.1.1:
  165. resolution:
  166. {
  167. integrity: sha512-Nk59rMDoJaV+mHCOJPXuvB1zIbomlKS0dmSIqPGxd0enAXBnOfn4VWF+CGtRCwXZG9Epa54tZA7VIRlJDS8A6g==,
  168. }
  169. dependencies:
  170. "@actions/http-client": 2.2.0
  171. "@octokit/core": 3.6.0
  172. "@octokit/plugin-paginate-rest": 2.21.3(@octokit/core@3.6.0)
  173. "@octokit/plugin-rest-endpoint-methods": 5.16.2(@octokit/core@3.6.0)
  174. transitivePeerDependencies:
  175. - encoding
  176. dev: true
  177. /@actions/http-client@2.2.0:
  178. resolution:
  179. {
  180. integrity: sha512-q+epW0trjVUUHboliPb4UF9g2msf+w61b32tAkFEwL/IwP0DQWgbCMM0Hbe3e3WXSKz5VcUXbzJQgy8Hkra/Lg==,
  181. }
  182. dependencies:
  183. tunnel: 0.0.6
  184. undici: 5.28.2
  185. dev: true
  186. /@ampproject/remapping@2.2.1:
  187. resolution:
  188. {
  189. integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==,
  190. }
  191. engines: { node: ">=6.0.0" }
  192. dependencies:
  193. "@jridgewell/gen-mapping": 0.3.3
  194. "@jridgewell/trace-mapping": 0.3.21
  195. dev: true
  196. /@babel/code-frame@7.23.5:
  197. resolution:
  198. {
  199. integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==,
  200. }
  201. engines: { node: ">=6.9.0" }
  202. dependencies:
  203. "@babel/highlight": 7.23.4
  204. chalk: 2.4.2
  205. /@babel/compat-data@7.23.5:
  206. resolution:
  207. {
  208. integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==,
  209. }
  210. engines: { node: ">=6.9.0" }
  211. dev: true
  212. /@babel/core@7.23.7:
  213. resolution:
  214. {
  215. integrity: sha512-+UpDgowcmqe36d4NwqvKsyPMlOLNGMsfMmQ5WGCu+siCe3t3dfe9njrzGfdN4qq+bcNUt0+Vw6haRxBOycs4dw==,
  216. }
  217. engines: { node: ">=6.9.0" }
  218. dependencies:
  219. "@ampproject/remapping": 2.2.1
  220. "@babel/code-frame": 7.23.5
  221. "@babel/generator": 7.23.6
  222. "@babel/helper-compilation-targets": 7.23.6
  223. "@babel/helper-module-transforms": 7.23.3(@babel/core@7.23.7)
  224. "@babel/helpers": 7.23.8
  225. "@babel/parser": 7.23.6
  226. "@babel/template": 7.22.15
  227. "@babel/traverse": 7.23.7
  228. "@babel/types": 7.23.6
  229. convert-source-map: 2.0.0
  230. debug: 4.3.4
  231. gensync: 1.0.0-beta.2
  232. json5: 2.2.3
  233. semver: 6.3.1
  234. transitivePeerDependencies:
  235. - supports-color
  236. dev: true
  237. /@babel/generator@7.23.6:
  238. resolution:
  239. {
  240. integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==,
  241. }
  242. engines: { node: ">=6.9.0" }
  243. dependencies:
  244. "@babel/types": 7.23.6
  245. "@jridgewell/gen-mapping": 0.3.3
  246. "@jridgewell/trace-mapping": 0.3.21
  247. jsesc: 2.5.2
  248. dev: true
  249. /@babel/helper-compilation-targets@7.23.6:
  250. resolution:
  251. {
  252. integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==,
  253. }
  254. engines: { node: ">=6.9.0" }
  255. dependencies:
  256. "@babel/compat-data": 7.23.5
  257. "@babel/helper-validator-option": 7.23.5
  258. browserslist: 4.22.2
  259. lru-cache: 5.1.1
  260. semver: 6.3.1
  261. dev: true
  262. /@babel/helper-environment-visitor@7.22.20:
  263. resolution:
  264. {
  265. integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==,
  266. }
  267. engines: { node: ">=6.9.0" }
  268. dev: true
  269. /@babel/helper-function-name@7.23.0:
  270. resolution:
  271. {
  272. integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==,
  273. }
  274. engines: { node: ">=6.9.0" }
  275. dependencies:
  276. "@babel/template": 7.22.15
  277. "@babel/types": 7.23.6
  278. dev: true
  279. /@babel/helper-hoist-variables@7.22.5:
  280. resolution:
  281. {
  282. integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==,
  283. }
  284. engines: { node: ">=6.9.0" }
  285. dependencies:
  286. "@babel/types": 7.23.6
  287. dev: true
  288. /@babel/helper-module-imports@7.22.15:
  289. resolution:
  290. {
  291. integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==,
  292. }
  293. engines: { node: ">=6.9.0" }
  294. dependencies:
  295. "@babel/types": 7.23.6
  296. /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.7):
  297. resolution:
  298. {
  299. integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==,
  300. }
  301. engines: { node: ">=6.9.0" }
  302. peerDependencies:
  303. "@babel/core": ^7.0.0
  304. dependencies:
  305. "@babel/core": 7.23.7
  306. "@babel/helper-environment-visitor": 7.22.20
  307. "@babel/helper-module-imports": 7.22.15
  308. "@babel/helper-simple-access": 7.22.5
  309. "@babel/helper-split-export-declaration": 7.22.6
  310. "@babel/helper-validator-identifier": 7.22.20
  311. dev: true
  312. /@babel/helper-plugin-utils@7.22.5:
  313. resolution:
  314. {
  315. integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==,
  316. }
  317. engines: { node: ">=6.9.0" }
  318. dev: true
  319. /@babel/helper-simple-access@7.22.5:
  320. resolution:
  321. {
  322. integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==,
  323. }
  324. engines: { node: ">=6.9.0" }
  325. dependencies:
  326. "@babel/types": 7.23.6
  327. dev: true
  328. /@babel/helper-split-export-declaration@7.22.6:
  329. resolution:
  330. {
  331. integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==,
  332. }
  333. engines: { node: ">=6.9.0" }
  334. dependencies:
  335. "@babel/types": 7.23.6
  336. dev: true
  337. /@babel/helper-string-parser@7.23.4:
  338. resolution:
  339. {
  340. integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==,
  341. }
  342. engines: { node: ">=6.9.0" }
  343. /@babel/helper-validator-identifier@7.22.20:
  344. resolution:
  345. {
  346. integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==,
  347. }
  348. engines: { node: ">=6.9.0" }
  349. /@babel/helper-validator-option@7.23.5:
  350. resolution:
  351. {
  352. integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==,
  353. }
  354. engines: { node: ">=6.9.0" }
  355. dev: true
  356. /@babel/helpers@7.23.8:
  357. resolution:
  358. {
  359. integrity: sha512-KDqYz4PiOWvDFrdHLPhKtCThtIcKVy6avWD2oG4GEvyQ+XDZwHD4YQd+H2vNMnq2rkdxsDkU82T+Vk8U/WXHRQ==,
  360. }
  361. engines: { node: ">=6.9.0" }
  362. dependencies:
  363. "@babel/template": 7.22.15
  364. "@babel/traverse": 7.23.7
  365. "@babel/types": 7.23.6
  366. transitivePeerDependencies:
  367. - supports-color
  368. dev: true
  369. /@babel/highlight@7.23.4:
  370. resolution:
  371. {
  372. integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==,
  373. }
  374. engines: { node: ">=6.9.0" }
  375. dependencies:
  376. "@babel/helper-validator-identifier": 7.22.20
  377. chalk: 2.4.2
  378. js-tokens: 4.0.0
  379. /@babel/parser@7.23.6:
  380. resolution:
  381. {
  382. integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==,
  383. }
  384. engines: { node: ">=6.0.0" }
  385. hasBin: true
  386. dependencies:
  387. "@babel/types": 7.23.6
  388. dev: true
  389. /@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.7):
  390. resolution:
  391. {
  392. integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==,
  393. }
  394. engines: { node: ">=6.9.0" }
  395. peerDependencies:
  396. "@babel/core": ^7.0.0-0
  397. dependencies:
  398. "@babel/core": 7.23.7
  399. "@babel/helper-plugin-utils": 7.22.5
  400. dev: true
  401. /@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.7):
  402. resolution:
  403. {
  404. integrity: sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g==,
  405. }
  406. engines: { node: ">=6.9.0" }
  407. peerDependencies:
  408. "@babel/core": ^7.0.0-0
  409. dependencies:
  410. "@babel/core": 7.23.7
  411. "@babel/helper-plugin-utils": 7.22.5
  412. dev: true
  413. /@babel/runtime@7.23.8:
  414. resolution:
  415. {
  416. integrity: sha512-Y7KbAP984rn1VGMbGqKmBLio9V7y5Je9GvU4rQPCPinCyNfUcToxIXl06d59URp/F3LwinvODxab5N/G6qggkw==,
  417. }
  418. engines: { node: ">=6.9.0" }
  419. dependencies:
  420. regenerator-runtime: 0.14.1
  421. dev: false
  422. /@babel/template@7.22.15:
  423. resolution:
  424. {
  425. integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==,
  426. }
  427. engines: { node: ">=6.9.0" }
  428. dependencies:
  429. "@babel/code-frame": 7.23.5
  430. "@babel/parser": 7.23.6
  431. "@babel/types": 7.23.6
  432. dev: true
  433. /@babel/traverse@7.23.7:
  434. resolution:
  435. {
  436. integrity: sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg==,
  437. }
  438. engines: { node: ">=6.9.0" }
  439. dependencies:
  440. "@babel/code-frame": 7.23.5
  441. "@babel/generator": 7.23.6
  442. "@babel/helper-environment-visitor": 7.22.20
  443. "@babel/helper-function-name": 7.23.0
  444. "@babel/helper-hoist-variables": 7.22.5
  445. "@babel/helper-split-export-declaration": 7.22.6
  446. "@babel/parser": 7.23.6
  447. "@babel/types": 7.23.6
  448. debug: 4.3.4
  449. globals: 11.12.0
  450. transitivePeerDependencies:
  451. - supports-color
  452. dev: true
  453. /@babel/types@7.23.6:
  454. resolution:
  455. {
  456. integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==,
  457. }
  458. engines: { node: ">=6.9.0" }
  459. dependencies:
  460. "@babel/helper-string-parser": 7.23.4
  461. "@babel/helper-validator-identifier": 7.22.20
  462. to-fast-properties: 2.0.0
  463. /@dnd-kit/accessibility@3.1.0(react@18.2.0):
  464. resolution:
  465. {
  466. integrity: sha512-ea7IkhKvlJUv9iSHJOnxinBcoOI3ppGnnL+VDJ75O45Nss6HtZd8IdN8touXPDtASfeI2T2LImb8VOZcL47wjQ==,
  467. }
  468. peerDependencies:
  469. react: ">=16.8.0"
  470. dependencies:
  471. react: 18.2.0
  472. tslib: 2.6.2
  473. dev: false
  474. /@dnd-kit/core@6.1.0(react-dom@18.2.0)(react@18.2.0):
  475. resolution:
  476. {
  477. integrity: sha512-J3cQBClB4TVxwGo3KEjssGEXNJqGVWx17aRTZ1ob0FliR5IjYgTxl5YJbKTzA6IzrtelotH19v6y7uoIRUZPSg==,
  478. }
  479. peerDependencies:
  480. react: ">=16.8.0"
  481. react-dom: ">=16.8.0"
  482. dependencies:
  483. "@dnd-kit/accessibility": 3.1.0(react@18.2.0)
  484. "@dnd-kit/utilities": 3.2.2(react@18.2.0)
  485. react: 18.2.0
  486. react-dom: 18.2.0(react@18.2.0)
  487. tslib: 2.6.2
  488. dev: false
  489. /@dnd-kit/sortable@8.0.0(@dnd-kit/core@6.1.0)(react@18.2.0):
  490. resolution:
  491. {
  492. integrity: sha512-U3jk5ebVXe1Lr7c2wU7SBZjcWdQP+j7peHJfCspnA81enlu88Mgd7CC8Q+pub9ubP7eKVETzJW+IBAhsqbSu/g==,
  493. }
  494. peerDependencies:
  495. "@dnd-kit/core": ^6.1.0
  496. react: ">=16.8.0"
  497. dependencies:
  498. "@dnd-kit/core": 6.1.0(react-dom@18.2.0)(react@18.2.0)
  499. "@dnd-kit/utilities": 3.2.2(react@18.2.0)
  500. react: 18.2.0
  501. tslib: 2.6.2
  502. dev: false
  503. /@dnd-kit/utilities@3.2.2(react@18.2.0):
  504. resolution:
  505. {
  506. integrity: sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==,
  507. }
  508. peerDependencies:
  509. react: ">=16.8.0"
  510. dependencies:
  511. react: 18.2.0
  512. tslib: 2.6.2
  513. dev: false
  514. /@emotion/babel-plugin@11.11.0:
  515. resolution:
  516. {
  517. integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==,
  518. }
  519. dependencies:
  520. "@babel/helper-module-imports": 7.22.15
  521. "@babel/runtime": 7.23.8
  522. "@emotion/hash": 0.9.1
  523. "@emotion/memoize": 0.8.1
  524. "@emotion/serialize": 1.1.3
  525. babel-plugin-macros: 3.1.0
  526. convert-source-map: 1.9.0
  527. escape-string-regexp: 4.0.0
  528. find-root: 1.1.0
  529. source-map: 0.5.7
  530. stylis: 4.2.0
  531. dev: false
  532. /@emotion/cache@11.11.0:
  533. resolution:
  534. {
  535. integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==,
  536. }
  537. dependencies:
  538. "@emotion/memoize": 0.8.1
  539. "@emotion/sheet": 1.2.2
  540. "@emotion/utils": 1.2.1
  541. "@emotion/weak-memoize": 0.3.1
  542. stylis: 4.2.0
  543. dev: false
  544. /@emotion/hash@0.9.1:
  545. resolution:
  546. {
  547. integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==,
  548. }
  549. dev: false
  550. /@emotion/is-prop-valid@1.2.1:
  551. resolution:
  552. {
  553. integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==,
  554. }
  555. dependencies:
  556. "@emotion/memoize": 0.8.1
  557. dev: false
  558. /@emotion/memoize@0.8.1:
  559. resolution:
  560. {
  561. integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==,
  562. }
  563. dev: false
  564. /@emotion/react@11.11.3(@types/react@18.2.48)(react@18.2.0):
  565. resolution:
  566. {
  567. integrity: sha512-Cnn0kuq4DoONOMcnoVsTOR8E+AdnKFf//6kUWc4LCdnxj31pZWn7rIULd6Y7/Js1PiPHzn7SKCM9vB/jBni8eA==,
  568. }
  569. peerDependencies:
  570. "@types/react": "*"
  571. react: ">=16.8.0"
  572. peerDependenciesMeta:
  573. "@types/react":
  574. optional: true
  575. dependencies:
  576. "@babel/runtime": 7.23.8
  577. "@emotion/babel-plugin": 11.11.0
  578. "@emotion/cache": 11.11.0
  579. "@emotion/serialize": 1.1.3
  580. "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0)
  581. "@emotion/utils": 1.2.1
  582. "@emotion/weak-memoize": 0.3.1
  583. "@types/react": 18.2.48
  584. hoist-non-react-statics: 3.3.2
  585. react: 18.2.0
  586. dev: false
  587. /@emotion/serialize@1.1.3:
  588. resolution:
  589. {
  590. integrity: sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==,
  591. }
  592. dependencies:
  593. "@emotion/hash": 0.9.1
  594. "@emotion/memoize": 0.8.1
  595. "@emotion/unitless": 0.8.1
  596. "@emotion/utils": 1.2.1
  597. csstype: 3.1.3
  598. dev: false
  599. /@emotion/sheet@1.2.2:
  600. resolution:
  601. {
  602. integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==,
  603. }
  604. dev: false
  605. /@emotion/styled@11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0):
  606. resolution:
  607. {
  608. integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==,
  609. }
  610. peerDependencies:
  611. "@emotion/react": ^11.0.0-rc.0
  612. "@types/react": "*"
  613. react: ">=16.8.0"
  614. peerDependenciesMeta:
  615. "@types/react":
  616. optional: true
  617. dependencies:
  618. "@babel/runtime": 7.23.8
  619. "@emotion/babel-plugin": 11.11.0
  620. "@emotion/is-prop-valid": 1.2.1
  621. "@emotion/react": 11.11.3(@types/react@18.2.48)(react@18.2.0)
  622. "@emotion/serialize": 1.1.3
  623. "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0)
  624. "@emotion/utils": 1.2.1
  625. "@types/react": 18.2.48
  626. react: 18.2.0
  627. dev: false
  628. /@emotion/unitless@0.8.1:
  629. resolution:
  630. {
  631. integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==,
  632. }
  633. dev: false
  634. /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0):
  635. resolution:
  636. {
  637. integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==,
  638. }
  639. peerDependencies:
  640. react: ">=16.8.0"
  641. dependencies:
  642. react: 18.2.0
  643. dev: false
  644. /@emotion/utils@1.2.1:
  645. resolution:
  646. {
  647. integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==,
  648. }
  649. dev: false
  650. /@emotion/weak-memoize@0.3.1:
  651. resolution:
  652. {
  653. integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==,
  654. }
  655. dev: false
  656. /@esbuild/aix-ppc64@0.19.11:
  657. resolution:
  658. {
  659. integrity: sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==,
  660. }
  661. engines: { node: ">=12" }
  662. cpu: [ppc64]
  663. os: [aix]
  664. requiresBuild: true
  665. dev: true
  666. optional: true
  667. /@esbuild/android-arm64@0.19.11:
  668. resolution:
  669. {
  670. integrity: sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==,
  671. }
  672. engines: { node: ">=12" }
  673. cpu: [arm64]
  674. os: [android]
  675. requiresBuild: true
  676. dev: true
  677. optional: true
  678. /@esbuild/android-arm@0.19.11:
  679. resolution:
  680. {
  681. integrity: sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==,
  682. }
  683. engines: { node: ">=12" }
  684. cpu: [arm]
  685. os: [android]
  686. requiresBuild: true
  687. dev: true
  688. optional: true
  689. /@esbuild/android-x64@0.19.11:
  690. resolution:
  691. {
  692. integrity: sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==,
  693. }
  694. engines: { node: ">=12" }
  695. cpu: [x64]
  696. os: [android]
  697. requiresBuild: true
  698. dev: true
  699. optional: true
  700. /@esbuild/darwin-arm64@0.19.11:
  701. resolution:
  702. {
  703. integrity: sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==,
  704. }
  705. engines: { node: ">=12" }
  706. cpu: [arm64]
  707. os: [darwin]
  708. requiresBuild: true
  709. dev: true
  710. optional: true
  711. /@esbuild/darwin-x64@0.19.11:
  712. resolution:
  713. {
  714. integrity: sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==,
  715. }
  716. engines: { node: ">=12" }
  717. cpu: [x64]
  718. os: [darwin]
  719. requiresBuild: true
  720. dev: true
  721. optional: true
  722. /@esbuild/freebsd-arm64@0.19.11:
  723. resolution:
  724. {
  725. integrity: sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==,
  726. }
  727. engines: { node: ">=12" }
  728. cpu: [arm64]
  729. os: [freebsd]
  730. requiresBuild: true
  731. dev: true
  732. optional: true
  733. /@esbuild/freebsd-x64@0.19.11:
  734. resolution:
  735. {
  736. integrity: sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==,
  737. }
  738. engines: { node: ">=12" }
  739. cpu: [x64]
  740. os: [freebsd]
  741. requiresBuild: true
  742. dev: true
  743. optional: true
  744. /@esbuild/linux-arm64@0.19.11:
  745. resolution:
  746. {
  747. integrity: sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==,
  748. }
  749. engines: { node: ">=12" }
  750. cpu: [arm64]
  751. os: [linux]
  752. requiresBuild: true
  753. dev: true
  754. optional: true
  755. /@esbuild/linux-arm@0.19.11:
  756. resolution:
  757. {
  758. integrity: sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==,
  759. }
  760. engines: { node: ">=12" }
  761. cpu: [arm]
  762. os: [linux]
  763. requiresBuild: true
  764. dev: true
  765. optional: true
  766. /@esbuild/linux-ia32@0.19.11:
  767. resolution:
  768. {
  769. integrity: sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==,
  770. }
  771. engines: { node: ">=12" }
  772. cpu: [ia32]
  773. os: [linux]
  774. requiresBuild: true
  775. dev: true
  776. optional: true
  777. /@esbuild/linux-loong64@0.19.11:
  778. resolution:
  779. {
  780. integrity: sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==,
  781. }
  782. engines: { node: ">=12" }
  783. cpu: [loong64]
  784. os: [linux]
  785. requiresBuild: true
  786. dev: true
  787. optional: true
  788. /@esbuild/linux-mips64el@0.19.11:
  789. resolution:
  790. {
  791. integrity: sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==,
  792. }
  793. engines: { node: ">=12" }
  794. cpu: [mips64el]
  795. os: [linux]
  796. requiresBuild: true
  797. dev: true
  798. optional: true
  799. /@esbuild/linux-ppc64@0.19.11:
  800. resolution:
  801. {
  802. integrity: sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==,
  803. }
  804. engines: { node: ">=12" }
  805. cpu: [ppc64]
  806. os: [linux]
  807. requiresBuild: true
  808. dev: true
  809. optional: true
  810. /@esbuild/linux-riscv64@0.19.11:
  811. resolution:
  812. {
  813. integrity: sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==,
  814. }
  815. engines: { node: ">=12" }
  816. cpu: [riscv64]
  817. os: [linux]
  818. requiresBuild: true
  819. dev: true
  820. optional: true
  821. /@esbuild/linux-s390x@0.19.11:
  822. resolution:
  823. {
  824. integrity: sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==,
  825. }
  826. engines: { node: ">=12" }
  827. cpu: [s390x]
  828. os: [linux]
  829. requiresBuild: true
  830. dev: true
  831. optional: true
  832. /@esbuild/linux-x64@0.19.11:
  833. resolution:
  834. {
  835. integrity: sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==,
  836. }
  837. engines: { node: ">=12" }
  838. cpu: [x64]
  839. os: [linux]
  840. requiresBuild: true
  841. dev: true
  842. optional: true
  843. /@esbuild/netbsd-x64@0.19.11:
  844. resolution:
  845. {
  846. integrity: sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==,
  847. }
  848. engines: { node: ">=12" }
  849. cpu: [x64]
  850. os: [netbsd]
  851. requiresBuild: true
  852. dev: true
  853. optional: true
  854. /@esbuild/openbsd-x64@0.19.11:
  855. resolution:
  856. {
  857. integrity: sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==,
  858. }
  859. engines: { node: ">=12" }
  860. cpu: [x64]
  861. os: [openbsd]
  862. requiresBuild: true
  863. dev: true
  864. optional: true
  865. /@esbuild/sunos-x64@0.19.11:
  866. resolution:
  867. {
  868. integrity: sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==,
  869. }
  870. engines: { node: ">=12" }
  871. cpu: [x64]
  872. os: [sunos]
  873. requiresBuild: true
  874. dev: true
  875. optional: true
  876. /@esbuild/win32-arm64@0.19.11:
  877. resolution:
  878. {
  879. integrity: sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==,
  880. }
  881. engines: { node: ">=12" }
  882. cpu: [arm64]
  883. os: [win32]
  884. requiresBuild: true
  885. dev: true
  886. optional: true
  887. /@esbuild/win32-ia32@0.19.11:
  888. resolution:
  889. {
  890. integrity: sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==,
  891. }
  892. engines: { node: ">=12" }
  893. cpu: [ia32]
  894. os: [win32]
  895. requiresBuild: true
  896. dev: true
  897. optional: true
  898. /@esbuild/win32-x64@0.19.11:
  899. resolution:
  900. {
  901. integrity: sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==,
  902. }
  903. engines: { node: ">=12" }
  904. cpu: [x64]
  905. os: [win32]
  906. requiresBuild: true
  907. dev: true
  908. optional: true
  909. /@fastify/busboy@2.1.0:
  910. resolution:
  911. {
  912. integrity: sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==,
  913. }
  914. engines: { node: ">=14" }
  915. dev: true
  916. /@floating-ui/core@1.5.3:
  917. resolution:
  918. {
  919. integrity: sha512-O0WKDOo0yhJuugCx6trZQj5jVJ9yR0ystG2JaNAemYUWce+pmM6WUEFIibnWyEJKdrDxhm75NoSRME35FNaM/Q==,
  920. }
  921. dependencies:
  922. "@floating-ui/utils": 0.2.1
  923. dev: false
  924. /@floating-ui/dom@1.5.4:
  925. resolution:
  926. {
  927. integrity: sha512-jByEsHIY+eEdCjnTVu+E3ephzTOzkQ8hgUfGwos+bg7NlH33Zc5uO+QHz1mrQUOgIKKDD1RtS201P9NvAfq3XQ==,
  928. }
  929. dependencies:
  930. "@floating-ui/core": 1.5.3
  931. "@floating-ui/utils": 0.2.1
  932. dev: false
  933. /@floating-ui/react-dom@2.0.6(react-dom@18.2.0)(react@18.2.0):
  934. resolution:
  935. {
  936. integrity: sha512-IB8aCRFxr8nFkdYZgH+Otd9EVQPJoynxeFRGTB8voPoZMRWo8XjYuCRgpI1btvuKY69XMiLnW+ym7zoBHM90Rw==,
  937. }
  938. peerDependencies:
  939. react: ">=16.8.0"
  940. react-dom: ">=16.8.0"
  941. dependencies:
  942. "@floating-ui/dom": 1.5.4
  943. react: 18.2.0
  944. react-dom: 18.2.0(react@18.2.0)
  945. dev: false
  946. /@floating-ui/utils@0.2.1:
  947. resolution:
  948. {
  949. integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==,
  950. }
  951. dev: false
  952. /@jridgewell/gen-mapping@0.3.3:
  953. resolution:
  954. {
  955. integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==,
  956. }
  957. engines: { node: ">=6.0.0" }
  958. dependencies:
  959. "@jridgewell/set-array": 1.1.2
  960. "@jridgewell/sourcemap-codec": 1.4.15
  961. "@jridgewell/trace-mapping": 0.3.21
  962. dev: true
  963. /@jridgewell/resolve-uri@3.1.1:
  964. resolution:
  965. {
  966. integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==,
  967. }
  968. engines: { node: ">=6.0.0" }
  969. dev: true
  970. /@jridgewell/set-array@1.1.2:
  971. resolution:
  972. {
  973. integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==,
  974. }
  975. engines: { node: ">=6.0.0" }
  976. dev: true
  977. /@jridgewell/sourcemap-codec@1.4.15:
  978. resolution:
  979. {
  980. integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==,
  981. }
  982. dev: true
  983. /@jridgewell/trace-mapping@0.3.21:
  984. resolution:
  985. {
  986. integrity: sha512-SRfKmRe1KvYnxjEMtxEr+J4HIeMX5YBg/qhRHpxEIGjhX1rshcHlnFUE9K0GazhVKWM7B+nARSkV8LuvJdJ5/g==,
  987. }
  988. dependencies:
  989. "@jridgewell/resolve-uri": 3.1.1
  990. "@jridgewell/sourcemap-codec": 1.4.15
  991. dev: true
  992. /@juggle/resize-observer@3.4.0:
  993. resolution:
  994. {
  995. integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==,
  996. }
  997. dev: false
  998. /@mui/base@5.0.0-beta.20(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
  999. resolution:
  1000. {
  1001. integrity: sha512-CS2pUuqxST7ch9VNDCklRYDbJ3rru20Tx7na92QvVVKfu3RL4z/QLuVIc8jYGsdCnauMaeUSlFNLAJNb0yXe6w==,
  1002. }
  1003. engines: { node: ">=12.0.0" }
  1004. peerDependencies:
  1005. "@types/react": ^17.0.0 || ^18.0.0
  1006. react: ^17.0.0 || ^18.0.0
  1007. react-dom: ^17.0.0 || ^18.0.0
  1008. peerDependenciesMeta:
  1009. "@types/react":
  1010. optional: true
  1011. dependencies:
  1012. "@babel/runtime": 7.23.8
  1013. "@floating-ui/react-dom": 2.0.6(react-dom@18.2.0)(react@18.2.0)
  1014. "@mui/types": 7.2.13(@types/react@18.2.48)
  1015. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1016. "@popperjs/core": 2.11.8
  1017. "@types/react": 18.2.48
  1018. clsx: 2.1.0
  1019. prop-types: 15.8.1
  1020. react: 18.2.0
  1021. react-dom: 18.2.0(react@18.2.0)
  1022. dev: false
  1023. /@mui/base@5.0.0-beta.32(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
  1024. resolution:
  1025. {
  1026. integrity: sha512-4VptvYeLUYMJhZapWBkD50GmKfOc0XT381KJcTK3ncZYIl8MdBhpR6l8jOyeP5cixUPBJhstjrnmQEAHjCLriw==,
  1027. }
  1028. engines: { node: ">=12.0.0" }
  1029. peerDependencies:
  1030. "@types/react": ^17.0.0 || ^18.0.0
  1031. react: ^17.0.0 || ^18.0.0
  1032. react-dom: ^17.0.0 || ^18.0.0
  1033. peerDependenciesMeta:
  1034. "@types/react":
  1035. optional: true
  1036. dependencies:
  1037. "@babel/runtime": 7.23.8
  1038. "@floating-ui/react-dom": 2.0.6(react-dom@18.2.0)(react@18.2.0)
  1039. "@mui/types": 7.2.13(@types/react@18.2.48)
  1040. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1041. "@popperjs/core": 2.11.8
  1042. "@types/react": 18.2.48
  1043. clsx: 2.1.0
  1044. prop-types: 15.8.1
  1045. react: 18.2.0
  1046. react-dom: 18.2.0(react@18.2.0)
  1047. dev: false
  1048. /@mui/core-downloads-tracker@5.15.5:
  1049. resolution:
  1050. {
  1051. integrity: sha512-VhT8klyXy8GrWrARqLMoM6Nzz809Jc3Wn5wd7WOZfre2vFO1rBV1dBANAPBhBqpaQI0HCMRTWEYoSyOFgRnz4A==,
  1052. }
  1053. dev: false
  1054. /@mui/icons-material@5.15.5(@mui/material@5.15.5)(@types/react@18.2.48)(react@18.2.0):
  1055. resolution:
  1056. {
  1057. integrity: sha512-qiql0fd1JY7TZ1wm1RldvU7sL8QUatE9OC12i/qm5rnm/caTFyAfOyTIR7qqxorsJvoZGyrzwoMkal6Ij9kM0A==,
  1058. }
  1059. engines: { node: ">=12.0.0" }
  1060. peerDependencies:
  1061. "@mui/material": ^5.0.0
  1062. "@types/react": ^17.0.0 || ^18.0.0
  1063. react: ^17.0.0 || ^18.0.0
  1064. peerDependenciesMeta:
  1065. "@types/react":
  1066. optional: true
  1067. dependencies:
  1068. "@babel/runtime": 7.23.8
  1069. "@mui/material": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1070. "@types/react": 18.2.48
  1071. react: 18.2.0
  1072. dev: false
  1073. /@mui/lab@5.0.0-alpha.149(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@mui/material@5.15.5)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
  1074. resolution:
  1075. {
  1076. integrity: sha512-azOkKcyVX4KBZAqSp7eRD4OfKrUrvQXo7x2BjFJil+UeAJiMpB6I5lALo2PDZz3vjtJnHqlURnZtxZOHs1zfEA==,
  1077. }
  1078. engines: { node: ">=12.0.0" }
  1079. peerDependencies:
  1080. "@emotion/react": ^11.5.0
  1081. "@emotion/styled": ^11.3.0
  1082. "@mui/material": ^5.0.0
  1083. "@types/react": ^17.0.0 || ^18.0.0
  1084. react: ^17.0.0 || ^18.0.0
  1085. react-dom: ^17.0.0 || ^18.0.0
  1086. peerDependenciesMeta:
  1087. "@emotion/react":
  1088. optional: true
  1089. "@emotion/styled":
  1090. optional: true
  1091. "@types/react":
  1092. optional: true
  1093. dependencies:
  1094. "@babel/runtime": 7.23.8
  1095. "@emotion/react": 11.11.3(@types/react@18.2.48)(react@18.2.0)
  1096. "@emotion/styled": 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0)
  1097. "@mui/base": 5.0.0-beta.20(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1098. "@mui/material": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1099. "@mui/system": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react@18.2.0)
  1100. "@mui/types": 7.2.13(@types/react@18.2.48)
  1101. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1102. "@mui/x-tree-view": 6.0.0-alpha.1(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.20)(@mui/material@5.15.5)(@mui/system@5.15.5)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1103. "@types/react": 18.2.48
  1104. clsx: 2.1.0
  1105. prop-types: 15.8.1
  1106. react: 18.2.0
  1107. react-dom: 18.2.0(react@18.2.0)
  1108. dev: false
  1109. /@mui/material@5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
  1110. resolution:
  1111. {
  1112. integrity: sha512-2KfA39f/UWeQl0O22UJs3x1nG3chYlyu9wnux5vTnxUTLzkgYIzQIHaH+ZOGpv5JiZBMKktAPNfhqyhSaQ49qQ==,
  1113. }
  1114. engines: { node: ">=12.0.0" }
  1115. peerDependencies:
  1116. "@emotion/react": ^11.5.0
  1117. "@emotion/styled": ^11.3.0
  1118. "@types/react": ^17.0.0 || ^18.0.0
  1119. react: ^17.0.0 || ^18.0.0
  1120. react-dom: ^17.0.0 || ^18.0.0
  1121. peerDependenciesMeta:
  1122. "@emotion/react":
  1123. optional: true
  1124. "@emotion/styled":
  1125. optional: true
  1126. "@types/react":
  1127. optional: true
  1128. dependencies:
  1129. "@babel/runtime": 7.23.8
  1130. "@emotion/react": 11.11.3(@types/react@18.2.48)(react@18.2.0)
  1131. "@emotion/styled": 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0)
  1132. "@mui/base": 5.0.0-beta.32(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1133. "@mui/core-downloads-tracker": 5.15.5
  1134. "@mui/system": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react@18.2.0)
  1135. "@mui/types": 7.2.13(@types/react@18.2.48)
  1136. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1137. "@types/react": 18.2.48
  1138. "@types/react-transition-group": 4.4.10
  1139. clsx: 2.1.0
  1140. csstype: 3.1.3
  1141. prop-types: 15.8.1
  1142. react: 18.2.0
  1143. react-dom: 18.2.0(react@18.2.0)
  1144. react-is: 18.2.0
  1145. react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  1146. dev: false
  1147. /@mui/private-theming@5.15.5(@types/react@18.2.48)(react@18.2.0):
  1148. resolution:
  1149. {
  1150. integrity: sha512-HU1KCyGNcJFsUamTbOM539ZDZJNI/XU7sZFdsN29glktUf+T6hNvDuO2ISinBiLTZy7Ab3R6DSSoYXRrLc4uwQ==,
  1151. }
  1152. engines: { node: ">=12.0.0" }
  1153. peerDependencies:
  1154. "@types/react": ^17.0.0 || ^18.0.0
  1155. react: ^17.0.0 || ^18.0.0
  1156. peerDependenciesMeta:
  1157. "@types/react":
  1158. optional: true
  1159. dependencies:
  1160. "@babel/runtime": 7.23.8
  1161. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1162. "@types/react": 18.2.48
  1163. prop-types: 15.8.1
  1164. react: 18.2.0
  1165. dev: false
  1166. /@mui/styled-engine@5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(react@18.2.0):
  1167. resolution:
  1168. {
  1169. integrity: sha512-xoMUd8h270thNL7ZsOzmlluIAMsQg/HT7SCdRjPBVle+XHgTKaiWiRy1ekDOsrrF0rhjME3T7xeeUq2G269UUw==,
  1170. }
  1171. engines: { node: ">=12.0.0" }
  1172. peerDependencies:
  1173. "@emotion/react": ^11.4.1
  1174. "@emotion/styled": ^11.3.0
  1175. react: ^17.0.0 || ^18.0.0
  1176. peerDependenciesMeta:
  1177. "@emotion/react":
  1178. optional: true
  1179. "@emotion/styled":
  1180. optional: true
  1181. dependencies:
  1182. "@babel/runtime": 7.23.8
  1183. "@emotion/cache": 11.11.0
  1184. "@emotion/react": 11.11.3(@types/react@18.2.48)(react@18.2.0)
  1185. "@emotion/styled": 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0)
  1186. csstype: 3.1.3
  1187. prop-types: 15.8.1
  1188. react: 18.2.0
  1189. dev: false
  1190. /@mui/system@5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react@18.2.0):
  1191. resolution:
  1192. {
  1193. integrity: sha512-DMv2vGjUKaDt/m0RlzvLjpKiS5V0LoBhiMUHf5pWdj6uoNlN4FuKUe4pFeYmQMIO5DnVZKybmpPepfkdfEH+Og==,
  1194. }
  1195. engines: { node: ">=12.0.0" }
  1196. peerDependencies:
  1197. "@emotion/react": ^11.5.0
  1198. "@emotion/styled": ^11.3.0
  1199. "@types/react": ^17.0.0 || ^18.0.0
  1200. react: ^17.0.0 || ^18.0.0
  1201. peerDependenciesMeta:
  1202. "@emotion/react":
  1203. optional: true
  1204. "@emotion/styled":
  1205. optional: true
  1206. "@types/react":
  1207. optional: true
  1208. dependencies:
  1209. "@babel/runtime": 7.23.8
  1210. "@emotion/react": 11.11.3(@types/react@18.2.48)(react@18.2.0)
  1211. "@emotion/styled": 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0)
  1212. "@mui/private-theming": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1213. "@mui/styled-engine": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(react@18.2.0)
  1214. "@mui/types": 7.2.13(@types/react@18.2.48)
  1215. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1216. "@types/react": 18.2.48
  1217. clsx: 2.1.0
  1218. csstype: 3.1.3
  1219. prop-types: 15.8.1
  1220. react: 18.2.0
  1221. dev: false
  1222. /@mui/types@7.2.13(@types/react@18.2.48):
  1223. resolution:
  1224. {
  1225. integrity: sha512-qP9OgacN62s+l8rdDhSFRe05HWtLLJ5TGclC9I1+tQngbssu0m2dmFZs+Px53AcOs9fD7TbYd4gc9AXzVqO/+g==,
  1226. }
  1227. peerDependencies:
  1228. "@types/react": ^17.0.0 || ^18.0.0
  1229. peerDependenciesMeta:
  1230. "@types/react":
  1231. optional: true
  1232. dependencies:
  1233. "@types/react": 18.2.48
  1234. dev: false
  1235. /@mui/utils@5.15.5(@types/react@18.2.48)(react@18.2.0):
  1236. resolution:
  1237. {
  1238. integrity: sha512-jEywgaMGZWPSlVFO7ZZAyXxNeLmq5XBp5At9Ne/sGohRJdesUcdxvyi8TP3odJxwQuL5L6PJV+JQ4DyIDM849A==,
  1239. }
  1240. engines: { node: ">=12.0.0" }
  1241. peerDependencies:
  1242. "@types/react": ^17.0.0 || ^18.0.0
  1243. react: ^17.0.0 || ^18.0.0
  1244. peerDependenciesMeta:
  1245. "@types/react":
  1246. optional: true
  1247. dependencies:
  1248. "@babel/runtime": 7.23.8
  1249. "@types/prop-types": 15.7.11
  1250. "@types/react": 18.2.48
  1251. prop-types: 15.8.1
  1252. react: 18.2.0
  1253. react-is: 18.2.0
  1254. dev: false
  1255. /@mui/x-data-grid@6.18.7(@mui/material@5.15.5)(@mui/system@5.15.5)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
  1256. resolution:
  1257. {
  1258. integrity: sha512-K1A3pMUPxI4/Mt5A4vrK45fBBQK5rZvBVqRMrB5n8zX++Bj+WLWKvLTtfCmlriUtzuadr/Hl7Z+FDRXUJAx6qg==,
  1259. }
  1260. engines: { node: ">=14.0.0" }
  1261. peerDependencies:
  1262. "@mui/material": ^5.4.1
  1263. "@mui/system": ^5.4.1
  1264. react: ^17.0.0 || ^18.0.0
  1265. react-dom: ^17.0.0 || ^18.0.0
  1266. dependencies:
  1267. "@babel/runtime": 7.23.8
  1268. "@mui/material": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1269. "@mui/system": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react@18.2.0)
  1270. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1271. clsx: 2.1.0
  1272. prop-types: 15.8.1
  1273. react: 18.2.0
  1274. react-dom: 18.2.0(react@18.2.0)
  1275. reselect: 4.1.8
  1276. transitivePeerDependencies:
  1277. - "@types/react"
  1278. dev: false
  1279. /@mui/x-tree-view@6.0.0-alpha.1(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@mui/base@5.0.0-beta.20)(@mui/material@5.15.5)(@mui/system@5.15.5)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0):
  1280. resolution:
  1281. {
  1282. integrity: sha512-JUG3HmBrmGEALbCFg1b+i7h726e1dWYZs4db3syO1j+Q++E3nbvE4Lehp5yGTFm+8esH0Tny50tuJaa4WX6VSA==,
  1283. }
  1284. engines: { node: ">=14.0.0" }
  1285. peerDependencies:
  1286. "@emotion/react": ^11.9.0
  1287. "@emotion/styled": ^11.8.1
  1288. "@mui/base": ^5.0.0-alpha.87
  1289. "@mui/material": ^5.8.6
  1290. "@mui/system": ^5.8.0
  1291. react: ^17.0.0 || ^18.0.0
  1292. react-dom: ^17.0.0 || ^18.0.0
  1293. dependencies:
  1294. "@babel/runtime": 7.23.8
  1295. "@emotion/react": 11.11.3(@types/react@18.2.48)(react@18.2.0)
  1296. "@emotion/styled": 11.11.0(@emotion/react@11.11.3)(@types/react@18.2.48)(react@18.2.0)
  1297. "@mui/base": 5.0.0-beta.20(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1298. "@mui/material": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react-dom@18.2.0)(react@18.2.0)
  1299. "@mui/system": 5.15.5(@emotion/react@11.11.3)(@emotion/styled@11.11.0)(@types/react@18.2.48)(react@18.2.0)
  1300. "@mui/utils": 5.15.5(@types/react@18.2.48)(react@18.2.0)
  1301. "@types/react-transition-group": 4.4.10
  1302. clsx: 2.1.0
  1303. prop-types: 15.8.1
  1304. react: 18.2.0
  1305. react-dom: 18.2.0(react@18.2.0)
  1306. react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
  1307. transitivePeerDependencies:
  1308. - "@types/react"
  1309. dev: false
  1310. /@octokit/auth-token@2.5.0:
  1311. resolution:
  1312. {
  1313. integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==,
  1314. }
  1315. dependencies:
  1316. "@octokit/types": 6.41.0
  1317. dev: true
  1318. /@octokit/core@3.6.0:
  1319. resolution:
  1320. {
  1321. integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==,
  1322. }
  1323. dependencies:
  1324. "@octokit/auth-token": 2.5.0
  1325. "@octokit/graphql": 4.8.0
  1326. "@octokit/request": 5.6.3
  1327. "@octokit/request-error": 2.1.0
  1328. "@octokit/types": 6.41.0
  1329. before-after-hook: 2.2.3
  1330. universal-user-agent: 6.0.1
  1331. transitivePeerDependencies:
  1332. - encoding
  1333. dev: true
  1334. /@octokit/endpoint@6.0.12:
  1335. resolution:
  1336. {
  1337. integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==,
  1338. }
  1339. dependencies:
  1340. "@octokit/types": 6.41.0
  1341. is-plain-object: 5.0.0
  1342. universal-user-agent: 6.0.1
  1343. dev: true
  1344. /@octokit/graphql@4.8.0:
  1345. resolution:
  1346. {
  1347. integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==,
  1348. }
  1349. dependencies:
  1350. "@octokit/request": 5.6.3
  1351. "@octokit/types": 6.41.0
  1352. universal-user-agent: 6.0.1
  1353. transitivePeerDependencies:
  1354. - encoding
  1355. dev: true
  1356. /@octokit/openapi-types@12.11.0:
  1357. resolution:
  1358. {
  1359. integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==,
  1360. }
  1361. dev: true
  1362. /@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0):
  1363. resolution:
  1364. {
  1365. integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==,
  1366. }
  1367. peerDependencies:
  1368. "@octokit/core": ">=2"
  1369. dependencies:
  1370. "@octokit/core": 3.6.0
  1371. "@octokit/types": 6.41.0
  1372. dev: true
  1373. /@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0):
  1374. resolution:
  1375. {
  1376. integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==,
  1377. }
  1378. peerDependencies:
  1379. "@octokit/core": ">=3"
  1380. dependencies:
  1381. "@octokit/core": 3.6.0
  1382. "@octokit/types": 6.41.0
  1383. deprecation: 2.3.1
  1384. dev: true
  1385. /@octokit/request-error@2.1.0:
  1386. resolution:
  1387. {
  1388. integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==,
  1389. }
  1390. dependencies:
  1391. "@octokit/types": 6.41.0
  1392. deprecation: 2.3.1
  1393. once: 1.4.0
  1394. dev: true
  1395. /@octokit/request@5.6.3:
  1396. resolution:
  1397. {
  1398. integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==,
  1399. }
  1400. dependencies:
  1401. "@octokit/endpoint": 6.0.12
  1402. "@octokit/request-error": 2.1.0
  1403. "@octokit/types": 6.41.0
  1404. is-plain-object: 5.0.0
  1405. node-fetch: 2.7.0
  1406. universal-user-agent: 6.0.1
  1407. transitivePeerDependencies:
  1408. - encoding
  1409. dev: true
  1410. /@octokit/types@6.41.0:
  1411. resolution:
  1412. {
  1413. integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==,
  1414. }
  1415. dependencies:
  1416. "@octokit/openapi-types": 12.11.0
  1417. dev: true
  1418. /@popperjs/core@2.11.8:
  1419. resolution:
  1420. {
  1421. integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==,
  1422. }
  1423. dev: false
  1424. /@remix-run/router@1.14.2:
  1425. resolution:
  1426. {
  1427. integrity: sha512-ACXpdMM9hmKZww21yEqWwiLws/UPLhNKvimN8RrYSqPSvB3ov7sLvAcfvaxePeLvccTQKGdkDIhLYApZVDFuKg==,
  1428. }
  1429. engines: { node: ">=14.0.0" }
  1430. dev: false
  1431. /@rollup/pluginutils@5.1.0:
  1432. resolution:
  1433. {
  1434. integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==,
  1435. }
  1436. engines: { node: ">=14.0.0" }
  1437. peerDependencies:
  1438. rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
  1439. peerDependenciesMeta:
  1440. rollup:
  1441. optional: true
  1442. dependencies:
  1443. "@types/estree": 1.0.5
  1444. estree-walker: 2.0.2
  1445. picomatch: 2.3.1
  1446. dev: true
  1447. /@rollup/rollup-android-arm-eabi@4.9.5:
  1448. resolution:
  1449. {
  1450. integrity: sha512-idWaG8xeSRCfRq9KpRysDHJ/rEHBEXcHuJ82XY0yYFIWnLMjZv9vF/7DOq8djQ2n3Lk6+3qfSH8AqlmHlmi1MA==,
  1451. }
  1452. cpu: [arm]
  1453. os: [android]
  1454. requiresBuild: true
  1455. dev: true
  1456. optional: true
  1457. /@rollup/rollup-android-arm64@4.9.5:
  1458. resolution:
  1459. {
  1460. integrity: sha512-f14d7uhAMtsCGjAYwZGv6TwuS3IFaM4ZnGMUn3aCBgkcHAYErhV1Ad97WzBvS2o0aaDv4mVz+syiN0ElMyfBPg==,
  1461. }
  1462. cpu: [arm64]
  1463. os: [android]
  1464. requiresBuild: true
  1465. dev: true
  1466. optional: true
  1467. /@rollup/rollup-darwin-arm64@4.9.5:
  1468. resolution:
  1469. {
  1470. integrity: sha512-ndoXeLx455FffL68OIUrVr89Xu1WLzAG4n65R8roDlCoYiQcGGg6MALvs2Ap9zs7AHg8mpHtMpwC8jBBjZrT/w==,
  1471. }
  1472. cpu: [arm64]
  1473. os: [darwin]
  1474. requiresBuild: true
  1475. dev: true
  1476. optional: true
  1477. /@rollup/rollup-darwin-x64@4.9.5:
  1478. resolution:
  1479. {
  1480. integrity: sha512-UmElV1OY2m/1KEEqTlIjieKfVwRg0Zwg4PLgNf0s3glAHXBN99KLpw5A5lrSYCa1Kp63czTpVll2MAqbZYIHoA==,
  1481. }
  1482. cpu: [x64]
  1483. os: [darwin]
  1484. requiresBuild: true
  1485. dev: true
  1486. optional: true
  1487. /@rollup/rollup-linux-arm-gnueabihf@4.9.5:
  1488. resolution:
  1489. {
  1490. integrity: sha512-Q0LcU61v92tQB6ae+udZvOyZ0wfpGojtAKrrpAaIqmJ7+psq4cMIhT/9lfV6UQIpeItnq/2QDROhNLo00lOD1g==,
  1491. }
  1492. cpu: [arm]
  1493. os: [linux]
  1494. requiresBuild: true
  1495. dev: true
  1496. optional: true
  1497. /@rollup/rollup-linux-arm64-gnu@4.9.5:
  1498. resolution:
  1499. {
  1500. integrity: sha512-dkRscpM+RrR2Ee3eOQmRWFjmV/payHEOrjyq1VZegRUa5OrZJ2MAxBNs05bZuY0YCtpqETDy1Ix4i/hRqX98cA==,
  1501. }
  1502. cpu: [arm64]
  1503. os: [linux]
  1504. libc: [glibc]
  1505. requiresBuild: true
  1506. dev: true
  1507. optional: true
  1508. /@rollup/rollup-linux-arm64-musl@4.9.5:
  1509. resolution:
  1510. {
  1511. integrity: sha512-QaKFVOzzST2xzY4MAmiDmURagWLFh+zZtttuEnuNn19AiZ0T3fhPyjPPGwLNdiDT82ZE91hnfJsUiDwF9DClIQ==,
  1512. }
  1513. cpu: [arm64]
  1514. os: [linux]
  1515. libc: [musl]
  1516. requiresBuild: true
  1517. dev: true
  1518. optional: true
  1519. /@rollup/rollup-linux-riscv64-gnu@4.9.5:
  1520. resolution:
  1521. {
  1522. integrity: sha512-HeGqmRJuyVg6/X6MpE2ur7GbymBPS8Np0S/vQFHDmocfORT+Zt76qu+69NUoxXzGqVP1pzaY6QIi0FJWLC3OPA==,
  1523. }
  1524. cpu: [riscv64]
  1525. os: [linux]
  1526. libc: [glibc]
  1527. requiresBuild: true
  1528. dev: true
  1529. optional: true
  1530. /@rollup/rollup-linux-x64-gnu@4.9.5:
  1531. resolution:
  1532. {
  1533. integrity: sha512-Dq1bqBdLaZ1Gb/l2e5/+o3B18+8TI9ANlA1SkejZqDgdU/jK/ThYaMPMJpVMMXy2uRHvGKbkz9vheVGdq3cJfA==,
  1534. }
  1535. cpu: [x64]
  1536. os: [linux]
  1537. libc: [glibc]
  1538. requiresBuild: true
  1539. dev: true
  1540. optional: true
  1541. /@rollup/rollup-linux-x64-musl@4.9.5:
  1542. resolution:
  1543. {
  1544. integrity: sha512-ezyFUOwldYpj7AbkwyW9AJ203peub81CaAIVvckdkyH8EvhEIoKzaMFJj0G4qYJ5sw3BpqhFrsCc30t54HV8vg==,
  1545. }
  1546. cpu: [x64]
  1547. os: [linux]
  1548. libc: [musl]
  1549. requiresBuild: true
  1550. dev: true
  1551. optional: true
  1552. /@rollup/rollup-win32-arm64-msvc@4.9.5:
  1553. resolution:
  1554. {
  1555. integrity: sha512-aHSsMnUw+0UETB0Hlv7B/ZHOGY5bQdwMKJSzGfDfvyhnpmVxLMGnQPGNE9wgqkLUs3+gbG1Qx02S2LLfJ5GaRQ==,
  1556. }
  1557. cpu: [arm64]
  1558. os: [win32]
  1559. requiresBuild: true
  1560. dev: true
  1561. optional: true
  1562. /@rollup/rollup-win32-ia32-msvc@4.9.5:
  1563. resolution:
  1564. {
  1565. integrity: sha512-AiqiLkb9KSf7Lj/o1U3SEP9Zn+5NuVKgFdRIZkvd4N0+bYrTOovVd0+LmYCPQGbocT4kvFyK+LXCDiXPBF3fyA==,
  1566. }
  1567. cpu: [ia32]
  1568. os: [win32]
  1569. requiresBuild: true
  1570. dev: true
  1571. optional: true
  1572. /@rollup/rollup-win32-x64-msvc@4.9.5:
  1573. resolution:
  1574. {
  1575. integrity: sha512-1q+mykKE3Vot1kaFJIDoUFv5TuW+QQVaf2FmTT9krg86pQrGStOSJJ0Zil7CFagyxDuouTepzt5Y5TVzyajOdQ==,
  1576. }
  1577. cpu: [x64]
  1578. os: [win32]
  1579. requiresBuild: true
  1580. dev: true
  1581. optional: true
  1582. /@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.23.7):
  1583. resolution:
  1584. {
  1585. integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==,
  1586. }
  1587. engines: { node: ">=14" }
  1588. peerDependencies:
  1589. "@babel/core": ^7.0.0-0
  1590. dependencies:
  1591. "@babel/core": 7.23.7
  1592. dev: true
  1593. /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.7):
  1594. resolution:
  1595. {
  1596. integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==,
  1597. }
  1598. engines: { node: ">=14" }
  1599. peerDependencies:
  1600. "@babel/core": ^7.0.0-0
  1601. dependencies:
  1602. "@babel/core": 7.23.7
  1603. dev: true
  1604. /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.7):
  1605. resolution:
  1606. {
  1607. integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==,
  1608. }
  1609. engines: { node: ">=14" }
  1610. peerDependencies:
  1611. "@babel/core": ^7.0.0-0
  1612. dependencies:
  1613. "@babel/core": 7.23.7
  1614. dev: true
  1615. /@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.23.7):
  1616. resolution:
  1617. {
  1618. integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==,
  1619. }
  1620. engines: { node: ">=14" }
  1621. peerDependencies:
  1622. "@babel/core": ^7.0.0-0
  1623. dependencies:
  1624. "@babel/core": 7.23.7
  1625. dev: true
  1626. /@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.23.7):
  1627. resolution:
  1628. {
  1629. integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==,
  1630. }
  1631. engines: { node: ">=14" }
  1632. peerDependencies:
  1633. "@babel/core": ^7.0.0-0
  1634. dependencies:
  1635. "@babel/core": 7.23.7
  1636. dev: true
  1637. /@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.23.7):
  1638. resolution:
  1639. {
  1640. integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==,
  1641. }
  1642. engines: { node: ">=14" }
  1643. peerDependencies:
  1644. "@babel/core": ^7.0.0-0
  1645. dependencies:
  1646. "@babel/core": 7.23.7
  1647. dev: true
  1648. /@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.23.7):
  1649. resolution:
  1650. {
  1651. integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==,
  1652. }
  1653. engines: { node: ">=14" }
  1654. peerDependencies:
  1655. "@babel/core": ^7.0.0-0
  1656. dependencies:
  1657. "@babel/core": 7.23.7
  1658. dev: true
  1659. /@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.23.7):
  1660. resolution:
  1661. {
  1662. integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==,
  1663. }
  1664. engines: { node: ">=12" }
  1665. peerDependencies:
  1666. "@babel/core": ^7.0.0-0
  1667. dependencies:
  1668. "@babel/core": 7.23.7
  1669. dev: true
  1670. /@svgr/babel-preset@8.1.0(@babel/core@7.23.7):
  1671. resolution:
  1672. {
  1673. integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==,
  1674. }
  1675. engines: { node: ">=14" }
  1676. peerDependencies:
  1677. "@babel/core": ^7.0.0-0
  1678. dependencies:
  1679. "@babel/core": 7.23.7
  1680. "@svgr/babel-plugin-add-jsx-attribute": 8.0.0(@babel/core@7.23.7)
  1681. "@svgr/babel-plugin-remove-jsx-attribute": 8.0.0(@babel/core@7.23.7)
  1682. "@svgr/babel-plugin-remove-jsx-empty-expression": 8.0.0(@babel/core@7.23.7)
  1683. "@svgr/babel-plugin-replace-jsx-attribute-value": 8.0.0(@babel/core@7.23.7)
  1684. "@svgr/babel-plugin-svg-dynamic-title": 8.0.0(@babel/core@7.23.7)
  1685. "@svgr/babel-plugin-svg-em-dimensions": 8.0.0(@babel/core@7.23.7)
  1686. "@svgr/babel-plugin-transform-react-native-svg": 8.1.0(@babel/core@7.23.7)
  1687. "@svgr/babel-plugin-transform-svg-component": 8.0.0(@babel/core@7.23.7)
  1688. dev: true
  1689. /@svgr/core@8.1.0(typescript@5.3.3):
  1690. resolution:
  1691. {
  1692. integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==,
  1693. }
  1694. engines: { node: ">=14" }
  1695. dependencies:
  1696. "@babel/core": 7.23.7
  1697. "@svgr/babel-preset": 8.1.0(@babel/core@7.23.7)
  1698. camelcase: 6.3.0
  1699. cosmiconfig: 8.3.6(typescript@5.3.3)
  1700. snake-case: 3.0.4
  1701. transitivePeerDependencies:
  1702. - supports-color
  1703. - typescript
  1704. dev: true
  1705. /@svgr/hast-util-to-babel-ast@8.0.0:
  1706. resolution:
  1707. {
  1708. integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==,
  1709. }
  1710. engines: { node: ">=14" }
  1711. dependencies:
  1712. "@babel/types": 7.23.6
  1713. entities: 4.5.0
  1714. dev: true
  1715. /@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0):
  1716. resolution:
  1717. {
  1718. integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==,
  1719. }
  1720. engines: { node: ">=14" }
  1721. peerDependencies:
  1722. "@svgr/core": "*"
  1723. dependencies:
  1724. "@babel/core": 7.23.7
  1725. "@svgr/babel-preset": 8.1.0(@babel/core@7.23.7)
  1726. "@svgr/core": 8.1.0(typescript@5.3.3)
  1727. "@svgr/hast-util-to-babel-ast": 8.0.0
  1728. svg-parser: 2.0.4
  1729. transitivePeerDependencies:
  1730. - supports-color
  1731. dev: true
  1732. /@tauri-apps/api@1.5.3:
  1733. resolution:
  1734. {
  1735. integrity: sha512-zxnDjHHKjOsrIzZm6nO5Xapb/BxqUq1tc7cGkFXsFkGTsSWgCPH1D8mm0XS9weJY2OaR73I3k3S+b7eSzJDfqA==,
  1736. }
  1737. engines: { node: ">= 14.6.0", npm: ">= 6.6.0", yarn: ">= 1.19.1" }
  1738. dev: false
  1739. /@tauri-apps/cli-darwin-arm64@1.5.9:
  1740. resolution:
  1741. {
  1742. integrity: sha512-7C2Jf8f0gzv778mLYb7Eszqqv1bm9Wzews81MRTqKrUIcC+eZEtDXLex+JaEkEzFEUrgIafdOvMBVEavF030IA==,
  1743. }
  1744. engines: { node: ">= 10" }
  1745. cpu: [arm64]
  1746. os: [darwin]
  1747. requiresBuild: true
  1748. dev: true
  1749. optional: true
  1750. /@tauri-apps/cli-darwin-x64@1.5.9:
  1751. resolution:
  1752. {
  1753. integrity: sha512-LHKytpkofPYgH8RShWvwDa3hD1ws131x7g7zNasJPfOiCWLqYVQFUuQVmjEUt8+dpHe/P/err5h4z+YZru2d0A==,
  1754. }
  1755. engines: { node: ">= 10" }
  1756. cpu: [x64]
  1757. os: [darwin]
  1758. requiresBuild: true
  1759. dev: true
  1760. optional: true
  1761. /@tauri-apps/cli-linux-arm-gnueabihf@1.5.9:
  1762. resolution:
  1763. {
  1764. integrity: sha512-teGK20IYKx+dVn8wFq/Lg57Q9ce7foq1KHSfyHi464LVt1T0V1rsmULSgZpQPPj/NYPF5BG78PcWYv64yH86jw==,
  1765. }
  1766. engines: { node: ">= 10" }
  1767. cpu: [arm]
  1768. os: [linux]
  1769. requiresBuild: true
  1770. dev: true
  1771. optional: true
  1772. /@tauri-apps/cli-linux-arm64-gnu@1.5.9:
  1773. resolution:
  1774. {
  1775. integrity: sha512-onJ/DW5Crw38qVx+wquY4uBbfCxVhzhdJmlCYqnYyXsZZmSiPUfSyhV58y+5TYB0q1hG8eYdB5x8VAwzByhGzw==,
  1776. }
  1777. engines: { node: ">= 10" }
  1778. cpu: [arm64]
  1779. os: [linux]
  1780. libc: [glibc]
  1781. requiresBuild: true
  1782. dev: true
  1783. optional: true
  1784. /@tauri-apps/cli-linux-arm64-musl@1.5.9:
  1785. resolution:
  1786. {
  1787. integrity: sha512-23AYoLD3acakLp9NtheKQDJl8F66eTOflxoPzdJNRy13hUSxb+W9qpz4rRA+CIzkjICFvO2i3UWjeV9QwDVpsQ==,
  1788. }
  1789. engines: { node: ">= 10" }
  1790. cpu: [arm64]
  1791. os: [linux]
  1792. libc: [musl]
  1793. requiresBuild: true
  1794. dev: true
  1795. optional: true
  1796. /@tauri-apps/cli-linux-x64-gnu@1.5.9:
  1797. resolution:
  1798. {
  1799. integrity: sha512-9PQA1rE7gh41W2ylyKd5qOGOds55ymaYPml9KOpM0g+cxmCXa+8Wf9K5NKvACnJldJJ6cekWzIyB4eN6o5T+yQ==,
  1800. }
  1801. engines: { node: ">= 10" }
  1802. cpu: [x64]
  1803. os: [linux]
  1804. libc: [glibc]
  1805. requiresBuild: true
  1806. dev: true
  1807. optional: true
  1808. /@tauri-apps/cli-linux-x64-musl@1.5.9:
  1809. resolution:
  1810. {
  1811. integrity: sha512-5hdbNFeDsrJ/pXZ4cSQV4bJwUXPPxXxN3/pAtNUqIph7q+vLcBXOXIMoS64iuyaluJC59lhEwlWZFz+EPv0Hqg==,
  1812. }
  1813. engines: { node: ">= 10" }
  1814. cpu: [x64]
  1815. os: [linux]
  1816. libc: [musl]
  1817. requiresBuild: true
  1818. dev: true
  1819. optional: true
  1820. /@tauri-apps/cli-win32-arm64-msvc@1.5.9:
  1821. resolution:
  1822. {
  1823. integrity: sha512-O18JufjSB3hSJYu5WWByONouGeX7DraLAtXLErsG1r/VS3zHd/zyuzycrVUaObNXk5bfGlIP0Ypt+RvZJILN2w==,
  1824. }
  1825. engines: { node: ">= 10" }
  1826. cpu: [arm64]
  1827. os: [win32]
  1828. requiresBuild: true
  1829. dev: true
  1830. optional: true
  1831. /@tauri-apps/cli-win32-ia32-msvc@1.5.9:
  1832. resolution:
  1833. {
  1834. integrity: sha512-FQxtxTZu0JVBihfd/lmpxo7jyMOesjWQehfyVUqtgMfm5+Pvvw0Y+ZioeDi1TZkFVrT3QDYy8R4LqDLSZVMQRA==,
  1835. }
  1836. engines: { node: ">= 10" }
  1837. cpu: [ia32]
  1838. os: [win32]
  1839. requiresBuild: true
  1840. dev: true
  1841. optional: true
  1842. /@tauri-apps/cli-win32-x64-msvc@1.5.9:
  1843. resolution:
  1844. {
  1845. integrity: sha512-EeI1+L518cIBLKw0qUFwnLIySBeSmPQjPLIlNwSukHSro4tAQPHycEVGgKrdToiCWgaZJBA0e5aRSds0Du2TWg==,
  1846. }
  1847. engines: { node: ">= 10" }
  1848. cpu: [x64]
  1849. os: [win32]
  1850. requiresBuild: true
  1851. dev: true
  1852. optional: true
  1853. /@tauri-apps/cli@1.5.9:
  1854. resolution:
  1855. {
  1856. integrity: sha512-knSt/9AvCTeyfC6wkyeouF9hBW/0Mzuw+5vBKEvzaGPQsfFJo1ZCp5FkdiZpGBBfnm09BhugasGRTGofzatfqQ==,
  1857. }
  1858. engines: { node: ">= 10" }
  1859. hasBin: true
  1860. optionalDependencies:
  1861. "@tauri-apps/cli-darwin-arm64": 1.5.9
  1862. "@tauri-apps/cli-darwin-x64": 1.5.9
  1863. "@tauri-apps/cli-linux-arm-gnueabihf": 1.5.9
  1864. "@tauri-apps/cli-linux-arm64-gnu": 1.5.9
  1865. "@tauri-apps/cli-linux-arm64-musl": 1.5.9
  1866. "@tauri-apps/cli-linux-x64-gnu": 1.5.9
  1867. "@tauri-apps/cli-linux-x64-musl": 1.5.9
  1868. "@tauri-apps/cli-win32-arm64-msvc": 1.5.9
  1869. "@tauri-apps/cli-win32-ia32-msvc": 1.5.9
  1870. "@tauri-apps/cli-win32-x64-msvc": 1.5.9
  1871. dev: true
  1872. /@types/babel__core@7.20.5:
  1873. resolution:
  1874. {
  1875. integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==,
  1876. }
  1877. dependencies:
  1878. "@babel/parser": 7.23.6
  1879. "@babel/types": 7.23.6
  1880. "@types/babel__generator": 7.6.8
  1881. "@types/babel__template": 7.4.4
  1882. "@types/babel__traverse": 7.20.5
  1883. dev: true
  1884. /@types/babel__generator@7.6.8:
  1885. resolution:
  1886. {
  1887. integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==,
  1888. }
  1889. dependencies:
  1890. "@babel/types": 7.23.6
  1891. dev: true
  1892. /@types/babel__template@7.4.4:
  1893. resolution:
  1894. {
  1895. integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==,
  1896. }
  1897. dependencies:
  1898. "@babel/parser": 7.23.6
  1899. "@babel/types": 7.23.6
  1900. dev: true
  1901. /@types/babel__traverse@7.20.5:
  1902. resolution:
  1903. {
  1904. integrity: sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==,
  1905. }
  1906. dependencies:
  1907. "@babel/types": 7.23.6
  1908. dev: true
  1909. /@types/estree@1.0.5:
  1910. resolution:
  1911. {
  1912. integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==,
  1913. }
  1914. dev: true
  1915. /@types/fs-extra@9.0.13:
  1916. resolution:
  1917. {
  1918. integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==,
  1919. }
  1920. dependencies:
  1921. "@types/node": 20.11.5
  1922. dev: true
  1923. /@types/js-cookie@2.2.7:
  1924. resolution:
  1925. {
  1926. integrity: sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==,
  1927. }
  1928. dev: false
  1929. /@types/js-cookie@3.0.6:
  1930. resolution:
  1931. {
  1932. integrity: sha512-wkw9yd1kEXOPnvEeEV1Go1MmxtBJL0RR79aOTAApecWFVu7w0NNXNqhcWgvw2YgZDYadliXkl14pa3WXw5jlCQ==,
  1933. }
  1934. dev: true
  1935. /@types/lodash-es@4.17.12:
  1936. resolution:
  1937. {
  1938. integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==,
  1939. }
  1940. dependencies:
  1941. "@types/lodash": 4.14.202
  1942. dev: true
  1943. /@types/lodash@4.14.202:
  1944. resolution:
  1945. {
  1946. integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==,
  1947. }
  1948. dev: true
  1949. /@types/node@20.11.5:
  1950. resolution:
  1951. {
  1952. integrity: sha512-g557vgQjUUfN76MZAN/dt1z3dzcUsimuysco0KeluHgrPdJXkP/XdAURgyO2W9fZWHRtRBiVKzKn8vyOAwlG+w==,
  1953. }
  1954. dependencies:
  1955. undici-types: 5.26.5
  1956. dev: true
  1957. /@types/parse-json@4.0.2:
  1958. resolution:
  1959. {
  1960. integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==,
  1961. }
  1962. dev: false
  1963. /@types/prop-types@15.7.11:
  1964. resolution:
  1965. {
  1966. integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==,
  1967. }
  1968. /@types/react-dom@18.2.18:
  1969. resolution:
  1970. {
  1971. integrity: sha512-TJxDm6OfAX2KJWJdMEVTwWke5Sc/E/RlnPGvGfS0W7+6ocy2xhDVQVh/KvC2Uf7kACs+gDytdusDSdWfWkaNzw==,
  1972. }
  1973. dependencies:
  1974. "@types/react": 18.2.48
  1975. dev: true
  1976. /@types/react-transition-group@4.4.10:
  1977. resolution:
  1978. {
  1979. integrity: sha512-hT/+s0VQs2ojCX823m60m5f0sL5idt9SO6Tj6Dg+rdphGPIeJbJ6CxvBYkgkGKrYeDjvIpKTR38UzmtHJOGW3Q==,
  1980. }
  1981. dependencies:
  1982. "@types/react": 18.2.48
  1983. /@types/react@18.2.48:
  1984. resolution:
  1985. {
  1986. integrity: sha512-qboRCl6Ie70DQQG9hhNREz81jqC1cs9EVNcjQ1AU+jH6NFfSAhVVbrrY/+nSF+Bsk4AOwm9Qa61InvMCyV+H3w==,
  1987. }
  1988. dependencies:
  1989. "@types/prop-types": 15.7.11
  1990. "@types/scheduler": 0.16.8
  1991. csstype: 3.1.3
  1992. /@types/scheduler@0.16.8:
  1993. resolution:
  1994. {
  1995. integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==,
  1996. }
  1997. /@vitejs/plugin-react@4.2.1(vite@5.0.11):
  1998. resolution:
  1999. {
  2000. integrity: sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==,
  2001. }
  2002. engines: { node: ^14.18.0 || >=16.0.0 }
  2003. peerDependencies:
  2004. vite: ^4.2.0 || ^5.0.0
  2005. dependencies:
  2006. "@babel/core": 7.23.7
  2007. "@babel/plugin-transform-react-jsx-self": 7.23.3(@babel/core@7.23.7)
  2008. "@babel/plugin-transform-react-jsx-source": 7.23.3(@babel/core@7.23.7)
  2009. "@types/babel__core": 7.20.5
  2010. react-refresh: 0.14.0
  2011. vite: 5.0.11(sass@1.70.0)
  2012. transitivePeerDependencies:
  2013. - supports-color
  2014. dev: true
  2015. /adm-zip@0.5.10:
  2016. resolution:
  2017. {
  2018. integrity: sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==,
  2019. }
  2020. engines: { node: ">=6.0" }
  2021. dev: true
  2022. /agent-base@6.0.2:
  2023. resolution:
  2024. {
  2025. integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==,
  2026. }
  2027. engines: { node: ">= 6.0.0" }
  2028. dependencies:
  2029. debug: 4.3.4
  2030. transitivePeerDependencies:
  2031. - supports-color
  2032. dev: true
  2033. /ahooks-v3-count@1.0.0:
  2034. resolution:
  2035. {
  2036. integrity: sha512-V7uUvAwnimu6eh/PED4mCDjE7tokeZQLKlxg9lCTMPhN+NjsSbtdacByVlR1oluXQzD3MOw55wylDmQo4+S9ZQ==,
  2037. }
  2038. dev: false
  2039. /ahooks@3.7.8(react@18.2.0):
  2040. resolution:
  2041. {
  2042. integrity: sha512-e/NMlQWoCjaUtncNFIZk3FG1ImSkV/JhScQSkTqnftakRwdfZWSw6zzoWSG9OMYqPNs2MguDYBUFFC6THelWXA==,
  2043. }
  2044. engines: { node: ">=8.0.0" }
  2045. peerDependencies:
  2046. react: ^16.8.0 || ^17.0.0 || ^18.0.0
  2047. dependencies:
  2048. "@babel/runtime": 7.23.8
  2049. "@types/js-cookie": 2.2.7
  2050. ahooks-v3-count: 1.0.0
  2051. dayjs: 1.11.5
  2052. intersection-observer: 0.12.2
  2053. js-cookie: 2.2.1
  2054. lodash: 4.17.21
  2055. react: 18.2.0
  2056. resize-observer-polyfill: 1.5.1
  2057. screenfull: 5.2.0
  2058. tslib: 2.6.2
  2059. dev: false
  2060. /ansi-styles@3.2.1:
  2061. resolution:
  2062. {
  2063. integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==,
  2064. }
  2065. engines: { node: ">=4" }
  2066. dependencies:
  2067. color-convert: 1.9.3
  2068. /anymatch@3.1.3:
  2069. resolution:
  2070. {
  2071. integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==,
  2072. }
  2073. engines: { node: ">= 8" }
  2074. dependencies:
  2075. normalize-path: 3.0.0
  2076. picomatch: 2.3.1
  2077. dev: true
  2078. /argparse@2.0.1:
  2079. resolution:
  2080. {
  2081. integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==,
  2082. }
  2083. dev: true
  2084. /asynckit@0.4.0:
  2085. resolution:
  2086. {
  2087. integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==,
  2088. }
  2089. dev: false
  2090. /axios@1.6.5:
  2091. resolution:
  2092. {
  2093. integrity: sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==,
  2094. }
  2095. dependencies:
  2096. follow-redirects: 1.15.5
  2097. form-data: 4.0.0
  2098. proxy-from-env: 1.1.0
  2099. transitivePeerDependencies:
  2100. - debug
  2101. dev: false
  2102. /babel-plugin-macros@3.1.0:
  2103. resolution:
  2104. {
  2105. integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==,
  2106. }
  2107. engines: { node: ">=10", npm: ">=6" }
  2108. dependencies:
  2109. "@babel/runtime": 7.23.8
  2110. cosmiconfig: 7.1.0
  2111. resolve: 1.22.8
  2112. dev: false
  2113. /before-after-hook@2.2.3:
  2114. resolution:
  2115. {
  2116. integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==,
  2117. }
  2118. dev: true
  2119. /binary-extensions@2.2.0:
  2120. resolution:
  2121. {
  2122. integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==,
  2123. }
  2124. engines: { node: ">=8" }
  2125. dev: true
  2126. /braces@3.0.2:
  2127. resolution:
  2128. {
  2129. integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==,
  2130. }
  2131. engines: { node: ">=8" }
  2132. dependencies:
  2133. fill-range: 7.0.1
  2134. dev: true
  2135. /browserslist@4.22.2:
  2136. resolution:
  2137. {
  2138. integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==,
  2139. }
  2140. engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
  2141. hasBin: true
  2142. dependencies:
  2143. caniuse-lite: 1.0.30001579
  2144. electron-to-chromium: 1.4.637
  2145. node-releases: 2.0.14
  2146. update-browserslist-db: 1.0.13(browserslist@4.22.2)
  2147. dev: true
  2148. /callsites@3.1.0:
  2149. resolution:
  2150. {
  2151. integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==,
  2152. }
  2153. engines: { node: ">=6" }
  2154. /camelcase@6.3.0:
  2155. resolution:
  2156. {
  2157. integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==,
  2158. }
  2159. engines: { node: ">=10" }
  2160. dev: true
  2161. /caniuse-lite@1.0.30001579:
  2162. resolution:
  2163. {
  2164. integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==,
  2165. }
  2166. dev: true
  2167. /chalk@2.4.2:
  2168. resolution:
  2169. {
  2170. integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==,
  2171. }
  2172. engines: { node: ">=4" }
  2173. dependencies:
  2174. ansi-styles: 3.2.1
  2175. escape-string-regexp: 1.0.5
  2176. supports-color: 5.5.0
  2177. /chokidar@3.5.3:
  2178. resolution:
  2179. {
  2180. integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==,
  2181. }
  2182. engines: { node: ">= 8.10.0" }
  2183. dependencies:
  2184. anymatch: 3.1.3
  2185. braces: 3.0.2
  2186. glob-parent: 5.1.2
  2187. is-binary-path: 2.1.0
  2188. is-glob: 4.0.3
  2189. normalize-path: 3.0.0
  2190. readdirp: 3.6.0
  2191. optionalDependencies:
  2192. fsevents: 2.3.3
  2193. dev: true
  2194. /chownr@2.0.0:
  2195. resolution:
  2196. {
  2197. integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==,
  2198. }
  2199. engines: { node: ">=10" }
  2200. dev: false
  2201. /clsx@2.1.0:
  2202. resolution:
  2203. {
  2204. integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==,
  2205. }
  2206. engines: { node: ">=6" }
  2207. dev: false
  2208. /color-convert@1.9.3:
  2209. resolution:
  2210. {
  2211. integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==,
  2212. }
  2213. dependencies:
  2214. color-name: 1.1.3
  2215. /color-name@1.1.3:
  2216. resolution:
  2217. {
  2218. integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==,
  2219. }
  2220. /combined-stream@1.0.8:
  2221. resolution:
  2222. {
  2223. integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==,
  2224. }
  2225. engines: { node: ">= 0.8" }
  2226. dependencies:
  2227. delayed-stream: 1.0.0
  2228. dev: false
  2229. /convert-source-map@1.9.0:
  2230. resolution:
  2231. {
  2232. integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==,
  2233. }
  2234. dev: false
  2235. /convert-source-map@2.0.0:
  2236. resolution:
  2237. {
  2238. integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==,
  2239. }
  2240. dev: true
  2241. /cosmiconfig@7.1.0:
  2242. resolution:
  2243. {
  2244. integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==,
  2245. }
  2246. engines: { node: ">=10" }
  2247. dependencies:
  2248. "@types/parse-json": 4.0.2
  2249. import-fresh: 3.3.0
  2250. parse-json: 5.2.0
  2251. path-type: 4.0.0
  2252. yaml: 1.10.2
  2253. dev: false
  2254. /cosmiconfig@8.3.6(typescript@5.3.3):
  2255. resolution:
  2256. {
  2257. integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==,
  2258. }
  2259. engines: { node: ">=14" }
  2260. peerDependencies:
  2261. typescript: ">=4.9.5"
  2262. peerDependenciesMeta:
  2263. typescript:
  2264. optional: true
  2265. dependencies:
  2266. import-fresh: 3.3.0
  2267. js-yaml: 4.1.0
  2268. parse-json: 5.2.0
  2269. path-type: 4.0.0
  2270. typescript: 5.3.3
  2271. dev: true
  2272. /cross-env@7.0.3:
  2273. resolution:
  2274. {
  2275. integrity: sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==,
  2276. }
  2277. engines: { node: ">=10.14", npm: ">=6", yarn: ">=1" }
  2278. hasBin: true
  2279. dependencies:
  2280. cross-spawn: 7.0.3
  2281. dev: true
  2282. /cross-spawn@7.0.3:
  2283. resolution:
  2284. {
  2285. integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==,
  2286. }
  2287. engines: { node: ">= 8" }
  2288. dependencies:
  2289. path-key: 3.1.1
  2290. shebang-command: 2.0.0
  2291. which: 2.0.2
  2292. dev: true
  2293. /csstype@3.1.3:
  2294. resolution:
  2295. {
  2296. integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==,
  2297. }
  2298. /data-uri-to-buffer@4.0.1:
  2299. resolution:
  2300. {
  2301. integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==,
  2302. }
  2303. engines: { node: ">= 12" }
  2304. dev: true
  2305. /dayjs@1.11.5:
  2306. resolution:
  2307. {
  2308. integrity: sha512-CAdX5Q3YW3Gclyo5Vpqkgpj8fSdLQcRuzfX6mC6Phy0nfJ0eGYOeS7m4mt2plDWLAtA4TqTakvbboHvUxfe4iA==,
  2309. }
  2310. dev: false
  2311. /debug@4.3.4:
  2312. resolution:
  2313. {
  2314. integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==,
  2315. }
  2316. engines: { node: ">=6.0" }
  2317. peerDependencies:
  2318. supports-color: "*"
  2319. peerDependenciesMeta:
  2320. supports-color:
  2321. optional: true
  2322. dependencies:
  2323. ms: 2.1.2
  2324. dev: true
  2325. /delayed-stream@1.0.0:
  2326. resolution:
  2327. {
  2328. integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==,
  2329. }
  2330. engines: { node: ">=0.4.0" }
  2331. dev: false
  2332. /deprecation@2.3.1:
  2333. resolution:
  2334. {
  2335. integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==,
  2336. }
  2337. dev: true
  2338. /dom-helpers@5.2.1:
  2339. resolution:
  2340. {
  2341. integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==,
  2342. }
  2343. dependencies:
  2344. "@babel/runtime": 7.23.8
  2345. csstype: 3.1.3
  2346. dev: false
  2347. /dot-case@3.0.4:
  2348. resolution:
  2349. {
  2350. integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==,
  2351. }
  2352. dependencies:
  2353. no-case: 3.0.4
  2354. tslib: 2.6.2
  2355. dev: true
  2356. /electron-to-chromium@1.4.637:
  2357. resolution:
  2358. {
  2359. integrity: sha512-G7j3UCOukFtxVO1vWrPQUoDk3kL70mtvjc/DC/k2o7lE0wAdq+Vwp1ipagOow+BH0uVztFysLWbkM/RTIrbK3w==,
  2360. }
  2361. dev: true
  2362. /end-of-stream@1.4.4:
  2363. resolution:
  2364. {
  2365. integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==,
  2366. }
  2367. dependencies:
  2368. once: 1.4.0
  2369. dev: true
  2370. /entities@4.5.0:
  2371. resolution:
  2372. {
  2373. integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==,
  2374. }
  2375. engines: { node: ">=0.12" }
  2376. dev: true
  2377. /error-ex@1.3.2:
  2378. resolution:
  2379. {
  2380. integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==,
  2381. }
  2382. dependencies:
  2383. is-arrayish: 0.2.1
  2384. /esbuild@0.19.11:
  2385. resolution:
  2386. {
  2387. integrity: sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==,
  2388. }
  2389. engines: { node: ">=12" }
  2390. hasBin: true
  2391. requiresBuild: true
  2392. optionalDependencies:
  2393. "@esbuild/aix-ppc64": 0.19.11
  2394. "@esbuild/android-arm": 0.19.11
  2395. "@esbuild/android-arm64": 0.19.11
  2396. "@esbuild/android-x64": 0.19.11
  2397. "@esbuild/darwin-arm64": 0.19.11
  2398. "@esbuild/darwin-x64": 0.19.11
  2399. "@esbuild/freebsd-arm64": 0.19.11
  2400. "@esbuild/freebsd-x64": 0.19.11
  2401. "@esbuild/linux-arm": 0.19.11
  2402. "@esbuild/linux-arm64": 0.19.11
  2403. "@esbuild/linux-ia32": 0.19.11
  2404. "@esbuild/linux-loong64": 0.19.11
  2405. "@esbuild/linux-mips64el": 0.19.11
  2406. "@esbuild/linux-ppc64": 0.19.11
  2407. "@esbuild/linux-riscv64": 0.19.11
  2408. "@esbuild/linux-s390x": 0.19.11
  2409. "@esbuild/linux-x64": 0.19.11
  2410. "@esbuild/netbsd-x64": 0.19.11
  2411. "@esbuild/openbsd-x64": 0.19.11
  2412. "@esbuild/sunos-x64": 0.19.11
  2413. "@esbuild/win32-arm64": 0.19.11
  2414. "@esbuild/win32-ia32": 0.19.11
  2415. "@esbuild/win32-x64": 0.19.11
  2416. dev: true
  2417. /escalade@3.1.1:
  2418. resolution:
  2419. {
  2420. integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==,
  2421. }
  2422. engines: { node: ">=6" }
  2423. dev: true
  2424. /escape-string-regexp@1.0.5:
  2425. resolution:
  2426. {
  2427. integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==,
  2428. }
  2429. engines: { node: ">=0.8.0" }
  2430. /escape-string-regexp@4.0.0:
  2431. resolution:
  2432. {
  2433. integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==,
  2434. }
  2435. engines: { node: ">=10" }
  2436. dev: false
  2437. /estree-walker@2.0.2:
  2438. resolution:
  2439. {
  2440. integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==,
  2441. }
  2442. dev: true
  2443. /execa@4.1.0:
  2444. resolution:
  2445. {
  2446. integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==,
  2447. }
  2448. engines: { node: ">=10" }
  2449. dependencies:
  2450. cross-spawn: 7.0.3
  2451. get-stream: 5.2.0
  2452. human-signals: 1.1.1
  2453. is-stream: 2.0.1
  2454. merge-stream: 2.0.0
  2455. npm-run-path: 4.0.1
  2456. onetime: 5.1.2
  2457. signal-exit: 3.0.7
  2458. strip-final-newline: 2.0.0
  2459. dev: true
  2460. /fetch-blob@3.2.0:
  2461. resolution:
  2462. {
  2463. integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==,
  2464. }
  2465. engines: { node: ^12.20 || >= 14.13 }
  2466. dependencies:
  2467. node-domexception: 1.0.0
  2468. web-streams-polyfill: 3.3.2
  2469. dev: true
  2470. /fill-range@7.0.1:
  2471. resolution:
  2472. {
  2473. integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==,
  2474. }
  2475. engines: { node: ">=8" }
  2476. dependencies:
  2477. to-regex-range: 5.0.1
  2478. dev: true
  2479. /find-root@1.1.0:
  2480. resolution:
  2481. {
  2482. integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==,
  2483. }
  2484. dev: false
  2485. /find-up@4.1.0:
  2486. resolution:
  2487. {
  2488. integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==,
  2489. }
  2490. engines: { node: ">=8" }
  2491. dependencies:
  2492. locate-path: 5.0.0
  2493. path-exists: 4.0.0
  2494. dev: true
  2495. /follow-redirects@1.15.5:
  2496. resolution:
  2497. {
  2498. integrity: sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==,
  2499. }
  2500. engines: { node: ">=4.0" }
  2501. peerDependencies:
  2502. debug: "*"
  2503. peerDependenciesMeta:
  2504. debug:
  2505. optional: true
  2506. dev: false
  2507. /form-data@4.0.0:
  2508. resolution:
  2509. {
  2510. integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==,
  2511. }
  2512. engines: { node: ">= 6" }
  2513. dependencies:
  2514. asynckit: 0.4.0
  2515. combined-stream: 1.0.8
  2516. mime-types: 2.1.35
  2517. dev: false
  2518. /formdata-polyfill@4.0.10:
  2519. resolution:
  2520. {
  2521. integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==,
  2522. }
  2523. engines: { node: ">=12.20.0" }
  2524. dependencies:
  2525. fetch-blob: 3.2.0
  2526. dev: true
  2527. /fs-extra@11.2.0:
  2528. resolution:
  2529. {
  2530. integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==,
  2531. }
  2532. engines: { node: ">=14.14" }
  2533. dependencies:
  2534. graceful-fs: 4.2.11
  2535. jsonfile: 6.1.0
  2536. universalify: 2.0.1
  2537. dev: true
  2538. /fs-minipass@2.1.0:
  2539. resolution:
  2540. {
  2541. integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==,
  2542. }
  2543. engines: { node: ">= 8" }
  2544. dependencies:
  2545. minipass: 3.3.6
  2546. dev: false
  2547. /fsevents@2.3.3:
  2548. resolution:
  2549. {
  2550. integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==,
  2551. }
  2552. engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 }
  2553. os: [darwin]
  2554. requiresBuild: true
  2555. dev: true
  2556. optional: true
  2557. /function-bind@1.1.2:
  2558. resolution:
  2559. {
  2560. integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==,
  2561. }
  2562. dev: false
  2563. /gensync@1.0.0-beta.2:
  2564. resolution:
  2565. {
  2566. integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==,
  2567. }
  2568. engines: { node: ">=6.9.0" }
  2569. dev: true
  2570. /get-stream@5.2.0:
  2571. resolution:
  2572. {
  2573. integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==,
  2574. }
  2575. engines: { node: ">=8" }
  2576. dependencies:
  2577. pump: 3.0.0
  2578. dev: true
  2579. /glob-parent@5.1.2:
  2580. resolution:
  2581. {
  2582. integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==,
  2583. }
  2584. engines: { node: ">= 6" }
  2585. dependencies:
  2586. is-glob: 4.0.3
  2587. dev: true
  2588. /globals@11.12.0:
  2589. resolution:
  2590. {
  2591. integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==,
  2592. }
  2593. engines: { node: ">=4" }
  2594. dev: true
  2595. /graceful-fs@4.2.11:
  2596. resolution:
  2597. {
  2598. integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==,
  2599. }
  2600. dev: true
  2601. /hamt_plus@1.0.2:
  2602. resolution:
  2603. {
  2604. integrity: sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA==,
  2605. }
  2606. dev: false
  2607. /has-flag@3.0.0:
  2608. resolution:
  2609. {
  2610. integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==,
  2611. }
  2612. engines: { node: ">=4" }
  2613. /hasown@2.0.0:
  2614. resolution:
  2615. {
  2616. integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==,
  2617. }
  2618. engines: { node: ">= 0.4" }
  2619. dependencies:
  2620. function-bind: 1.1.2
  2621. dev: false
  2622. /hoist-non-react-statics@3.3.2:
  2623. resolution:
  2624. {
  2625. integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==,
  2626. }
  2627. dependencies:
  2628. react-is: 16.13.1
  2629. dev: false
  2630. /html-parse-stringify@3.0.1:
  2631. resolution:
  2632. {
  2633. integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==,
  2634. }
  2635. dependencies:
  2636. void-elements: 3.1.0
  2637. dev: false
  2638. /https-proxy-agent@5.0.1:
  2639. resolution:
  2640. {
  2641. integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==,
  2642. }
  2643. engines: { node: ">= 6" }
  2644. dependencies:
  2645. agent-base: 6.0.2
  2646. debug: 4.3.4
  2647. transitivePeerDependencies:
  2648. - supports-color
  2649. dev: true
  2650. /human-signals@1.1.1:
  2651. resolution:
  2652. {
  2653. integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==,
  2654. }
  2655. engines: { node: ">=8.12.0" }
  2656. dev: true
  2657. /husky@7.0.4:
  2658. resolution:
  2659. {
  2660. integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ==,
  2661. }
  2662. engines: { node: ">=12" }
  2663. hasBin: true
  2664. dev: true
  2665. /i18next@23.7.16:
  2666. resolution:
  2667. {
  2668. integrity: sha512-SrqFkMn9W6Wb43ZJ9qrO6U2U4S80RsFMA7VYFSqp7oc7RllQOYDCdRfsse6A7Cq/V8MnpxKvJCYgM8++27n4Fw==,
  2669. }
  2670. dependencies:
  2671. "@babel/runtime": 7.23.8
  2672. dev: false
  2673. /ignore@5.3.0:
  2674. resolution:
  2675. {
  2676. integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==,
  2677. }
  2678. engines: { node: ">= 4" }
  2679. dev: true
  2680. /immutable@4.3.4:
  2681. resolution:
  2682. {
  2683. integrity: sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==,
  2684. }
  2685. dev: true
  2686. /import-fresh@3.3.0:
  2687. resolution:
  2688. {
  2689. integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==,
  2690. }
  2691. engines: { node: ">=6" }
  2692. dependencies:
  2693. parent-module: 1.0.1
  2694. resolve-from: 4.0.0
  2695. /intersection-observer@0.12.2:
  2696. resolution:
  2697. {
  2698. integrity: sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==,
  2699. }
  2700. dev: false
  2701. /is-arrayish@0.2.1:
  2702. resolution:
  2703. {
  2704. integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==,
  2705. }
  2706. /is-binary-path@2.1.0:
  2707. resolution:
  2708. {
  2709. integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==,
  2710. }
  2711. engines: { node: ">=8" }
  2712. dependencies:
  2713. binary-extensions: 2.2.0
  2714. dev: true
  2715. /is-core-module@2.13.1:
  2716. resolution:
  2717. {
  2718. integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==,
  2719. }
  2720. dependencies:
  2721. hasown: 2.0.0
  2722. dev: false
  2723. /is-extglob@2.1.1:
  2724. resolution:
  2725. {
  2726. integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==,
  2727. }
  2728. engines: { node: ">=0.10.0" }
  2729. dev: true
  2730. /is-glob@4.0.3:
  2731. resolution:
  2732. {
  2733. integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==,
  2734. }
  2735. engines: { node: ">=0.10.0" }
  2736. dependencies:
  2737. is-extglob: 2.1.1
  2738. dev: true
  2739. /is-number@7.0.0:
  2740. resolution:
  2741. {
  2742. integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==,
  2743. }
  2744. engines: { node: ">=0.12.0" }
  2745. dev: true
  2746. /is-plain-object@5.0.0:
  2747. resolution:
  2748. {
  2749. integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==,
  2750. }
  2751. engines: { node: ">=0.10.0" }
  2752. dev: true
  2753. /is-stream@2.0.1:
  2754. resolution:
  2755. {
  2756. integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==,
  2757. }
  2758. engines: { node: ">=8" }
  2759. dev: true
  2760. /isexe@2.0.0:
  2761. resolution:
  2762. {
  2763. integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==,
  2764. }
  2765. dev: true
  2766. /js-cookie@2.2.1:
  2767. resolution:
  2768. {
  2769. integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==,
  2770. }
  2771. dev: false
  2772. /js-tokens@4.0.0:
  2773. resolution:
  2774. {
  2775. integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==,
  2776. }
  2777. /js-yaml@4.1.0:
  2778. resolution:
  2779. {
  2780. integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==,
  2781. }
  2782. hasBin: true
  2783. dependencies:
  2784. argparse: 2.0.1
  2785. dev: true
  2786. /jsesc@2.5.2:
  2787. resolution:
  2788. {
  2789. integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==,
  2790. }
  2791. engines: { node: ">=4" }
  2792. hasBin: true
  2793. dev: true
  2794. /json-parse-even-better-errors@2.3.1:
  2795. resolution:
  2796. {
  2797. integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==,
  2798. }
  2799. /json5@2.2.3:
  2800. resolution:
  2801. {
  2802. integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==,
  2803. }
  2804. engines: { node: ">=6" }
  2805. hasBin: true
  2806. dev: true
  2807. /jsonfile@6.1.0:
  2808. resolution:
  2809. {
  2810. integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==,
  2811. }
  2812. dependencies:
  2813. universalify: 2.0.1
  2814. optionalDependencies:
  2815. graceful-fs: 4.2.11
  2816. dev: true
  2817. /lines-and-columns@1.2.4:
  2818. resolution:
  2819. {
  2820. integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==,
  2821. }
  2822. /locate-path@5.0.0:
  2823. resolution:
  2824. {
  2825. integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==,
  2826. }
  2827. engines: { node: ">=8" }
  2828. dependencies:
  2829. p-locate: 4.1.0
  2830. dev: true
  2831. /lodash-es@4.17.21:
  2832. resolution:
  2833. {
  2834. integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==,
  2835. }
  2836. dev: false
  2837. /lodash@4.17.21:
  2838. resolution:
  2839. {
  2840. integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==,
  2841. }
  2842. dev: false
  2843. /loose-envify@1.4.0:
  2844. resolution:
  2845. {
  2846. integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==,
  2847. }
  2848. hasBin: true
  2849. dependencies:
  2850. js-tokens: 4.0.0
  2851. dev: false
  2852. /lower-case@2.0.2:
  2853. resolution:
  2854. {
  2855. integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==,
  2856. }
  2857. dependencies:
  2858. tslib: 2.6.2
  2859. dev: true
  2860. /lru-cache@5.1.1:
  2861. resolution:
  2862. {
  2863. integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==,
  2864. }
  2865. dependencies:
  2866. yallist: 3.1.1
  2867. dev: true
  2868. /merge-stream@2.0.0:
  2869. resolution:
  2870. {
  2871. integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==,
  2872. }
  2873. dev: true
  2874. /mime-db@1.52.0:
  2875. resolution:
  2876. {
  2877. integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==,
  2878. }
  2879. engines: { node: ">= 0.6" }
  2880. dev: false
  2881. /mime-types@2.1.35:
  2882. resolution:
  2883. {
  2884. integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==,
  2885. }
  2886. engines: { node: ">= 0.6" }
  2887. dependencies:
  2888. mime-db: 1.52.0
  2889. dev: false
  2890. /mimic-fn@2.1.0:
  2891. resolution:
  2892. {
  2893. integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==,
  2894. }
  2895. engines: { node: ">=6" }
  2896. dev: true
  2897. /minipass@3.3.6:
  2898. resolution:
  2899. {
  2900. integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==,
  2901. }
  2902. engines: { node: ">=8" }
  2903. dependencies:
  2904. yallist: 4.0.0
  2905. dev: false
  2906. /minipass@5.0.0:
  2907. resolution:
  2908. {
  2909. integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==,
  2910. }
  2911. engines: { node: ">=8" }
  2912. dev: false
  2913. /minizlib@2.1.2:
  2914. resolution:
  2915. {
  2916. integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==,
  2917. }
  2918. engines: { node: ">= 8" }
  2919. dependencies:
  2920. minipass: 3.3.6
  2921. yallist: 4.0.0
  2922. dev: false
  2923. /mkdirp@1.0.4:
  2924. resolution:
  2925. {
  2926. integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==,
  2927. }
  2928. engines: { node: ">=10" }
  2929. hasBin: true
  2930. dev: false
  2931. /monaco-editor@0.34.1:
  2932. resolution:
  2933. {
  2934. integrity: sha512-FKc80TyiMaruhJKKPz5SpJPIjL+dflGvz4CpuThaPMc94AyN7SeC9HQ8hrvaxX7EyHdJcUY5i4D0gNyJj1vSZQ==,
  2935. }
  2936. /mri@1.2.0:
  2937. resolution:
  2938. {
  2939. integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==,
  2940. }
  2941. engines: { node: ">=4" }
  2942. dev: true
  2943. /ms@2.1.2:
  2944. resolution:
  2945. {
  2946. integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==,
  2947. }
  2948. dev: true
  2949. /nanoid@3.3.7:
  2950. resolution:
  2951. {
  2952. integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==,
  2953. }
  2954. engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
  2955. hasBin: true
  2956. dev: true
  2957. /nanoid@5.0.4:
  2958. resolution:
  2959. {
  2960. integrity: sha512-vAjmBf13gsmhXSgBrtIclinISzFFy22WwCYoyilZlsrRXNIHSwgFQ1bEdjRwMT3aoadeIF6HMuDRlOxzfXV8ig==,
  2961. }
  2962. engines: { node: ^18 || >=20 }
  2963. hasBin: true
  2964. dev: false
  2965. /no-case@3.0.4:
  2966. resolution:
  2967. {
  2968. integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==,
  2969. }
  2970. dependencies:
  2971. lower-case: 2.0.2
  2972. tslib: 2.6.2
  2973. dev: true
  2974. /node-domexception@1.0.0:
  2975. resolution:
  2976. {
  2977. integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==,
  2978. }
  2979. engines: { node: ">=10.5.0" }
  2980. dev: true
  2981. /node-fetch@2.7.0:
  2982. resolution:
  2983. {
  2984. integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==,
  2985. }
  2986. engines: { node: 4.x || >=6.0.0 }
  2987. peerDependencies:
  2988. encoding: ^0.1.0
  2989. peerDependenciesMeta:
  2990. encoding:
  2991. optional: true
  2992. dependencies:
  2993. whatwg-url: 5.0.0
  2994. dev: true
  2995. /node-fetch@3.3.2:
  2996. resolution:
  2997. {
  2998. integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==,
  2999. }
  3000. engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
  3001. dependencies:
  3002. data-uri-to-buffer: 4.0.1
  3003. fetch-blob: 3.2.0
  3004. formdata-polyfill: 4.0.10
  3005. dev: true
  3006. /node-releases@2.0.14:
  3007. resolution:
  3008. {
  3009. integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==,
  3010. }
  3011. dev: true
  3012. /normalize-path@3.0.0:
  3013. resolution:
  3014. {
  3015. integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==,
  3016. }
  3017. engines: { node: ">=0.10.0" }
  3018. dev: true
  3019. /npm-run-path@4.0.1:
  3020. resolution:
  3021. {
  3022. integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==,
  3023. }
  3024. engines: { node: ">=8" }
  3025. dependencies:
  3026. path-key: 3.1.1
  3027. dev: true
  3028. /object-assign@4.1.1:
  3029. resolution:
  3030. {
  3031. integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==,
  3032. }
  3033. engines: { node: ">=0.10.0" }
  3034. dev: false
  3035. /once@1.4.0:
  3036. resolution:
  3037. {
  3038. integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==,
  3039. }
  3040. dependencies:
  3041. wrappy: 1.0.2
  3042. dev: true
  3043. /onetime@5.1.2:
  3044. resolution:
  3045. {
  3046. integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==,
  3047. }
  3048. engines: { node: ">=6" }
  3049. dependencies:
  3050. mimic-fn: 2.1.0
  3051. dev: true
  3052. /p-limit@2.3.0:
  3053. resolution:
  3054. {
  3055. integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==,
  3056. }
  3057. engines: { node: ">=6" }
  3058. dependencies:
  3059. p-try: 2.2.0
  3060. dev: true
  3061. /p-locate@4.1.0:
  3062. resolution:
  3063. {
  3064. integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==,
  3065. }
  3066. engines: { node: ">=8" }
  3067. dependencies:
  3068. p-limit: 2.3.0
  3069. dev: true
  3070. /p-try@2.2.0:
  3071. resolution:
  3072. {
  3073. integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==,
  3074. }
  3075. engines: { node: ">=6" }
  3076. dev: true
  3077. /parent-module@1.0.1:
  3078. resolution:
  3079. {
  3080. integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==,
  3081. }
  3082. engines: { node: ">=6" }
  3083. dependencies:
  3084. callsites: 3.1.0
  3085. /parse-json@5.2.0:
  3086. resolution:
  3087. {
  3088. integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==,
  3089. }
  3090. engines: { node: ">=8" }
  3091. dependencies:
  3092. "@babel/code-frame": 7.23.5
  3093. error-ex: 1.3.2
  3094. json-parse-even-better-errors: 2.3.1
  3095. lines-and-columns: 1.2.4
  3096. /path-exists@4.0.0:
  3097. resolution:
  3098. {
  3099. integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==,
  3100. }
  3101. engines: { node: ">=8" }
  3102. dev: true
  3103. /path-key@3.1.1:
  3104. resolution:
  3105. {
  3106. integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==,
  3107. }
  3108. engines: { node: ">=8" }
  3109. dev: true
  3110. /path-parse@1.0.7:
  3111. resolution:
  3112. {
  3113. integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==,
  3114. }
  3115. dev: false
  3116. /path-type@4.0.0:
  3117. resolution:
  3118. {
  3119. integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==,
  3120. }
  3121. engines: { node: ">=8" }
  3122. /picocolors@1.0.0:
  3123. resolution:
  3124. {
  3125. integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==,
  3126. }
  3127. dev: true
  3128. /picomatch@2.3.1:
  3129. resolution:
  3130. {
  3131. integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==,
  3132. }
  3133. engines: { node: ">=8.6" }
  3134. dev: true
  3135. /picomatch@3.0.1:
  3136. resolution:
  3137. {
  3138. integrity: sha512-I3EurrIQMlRc9IaAZnqRR044Phh2DXY+55o7uJ0V+hYZAcQYSuFWsc9q5PvyDHUSCe1Qxn/iBz+78s86zWnGag==,
  3139. }
  3140. engines: { node: ">=10" }
  3141. dev: true
  3142. /postcss@8.4.33:
  3143. resolution:
  3144. {
  3145. integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==,
  3146. }
  3147. engines: { node: ^10 || ^12 || >=14 }
  3148. dependencies:
  3149. nanoid: 3.3.7
  3150. picocolors: 1.0.0
  3151. source-map-js: 1.0.2
  3152. dev: true
  3153. /prettier@2.8.8:
  3154. resolution:
  3155. {
  3156. integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==,
  3157. }
  3158. engines: { node: ">=10.13.0" }
  3159. hasBin: true
  3160. dev: true
  3161. /pretty-quick@3.3.1(prettier@2.8.8):
  3162. resolution:
  3163. {
  3164. integrity: sha512-3b36UXfYQ+IXXqex6mCca89jC8u0mYLqFAN5eTQKoXO6oCQYcIVYZEB/5AlBHI7JPYygReM2Vv6Vom/Gln7fBg==,
  3165. }
  3166. engines: { node: ">=10.13" }
  3167. hasBin: true
  3168. peerDependencies:
  3169. prettier: ^2.0.0
  3170. dependencies:
  3171. execa: 4.1.0
  3172. find-up: 4.1.0
  3173. ignore: 5.3.0
  3174. mri: 1.2.0
  3175. picocolors: 1.0.0
  3176. picomatch: 3.0.1
  3177. prettier: 2.8.8
  3178. tslib: 2.6.2
  3179. dev: true
  3180. /prop-types@15.8.1:
  3181. resolution:
  3182. {
  3183. integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==,
  3184. }
  3185. dependencies:
  3186. loose-envify: 1.4.0
  3187. object-assign: 4.1.1
  3188. react-is: 16.13.1
  3189. dev: false
  3190. /proxy-from-env@1.1.0:
  3191. resolution:
  3192. {
  3193. integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==,
  3194. }
  3195. dev: false
  3196. /pump@3.0.0:
  3197. resolution:
  3198. {
  3199. integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==,
  3200. }
  3201. dependencies:
  3202. end-of-stream: 1.4.4
  3203. once: 1.4.0
  3204. dev: true
  3205. /react-dom@18.2.0(react@18.2.0):
  3206. resolution:
  3207. {
  3208. integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==,
  3209. }
  3210. peerDependencies:
  3211. react: ^18.2.0
  3212. dependencies:
  3213. loose-envify: 1.4.0
  3214. react: 18.2.0
  3215. scheduler: 0.23.0
  3216. dev: false
  3217. /react-error-boundary@3.1.4(react@18.2.0):
  3218. resolution:
  3219. {
  3220. integrity: sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==,
  3221. }
  3222. engines: { node: ">=10", npm: ">=6" }
  3223. peerDependencies:
  3224. react: ">=16.13.1"
  3225. dependencies:
  3226. "@babel/runtime": 7.23.8
  3227. react: 18.2.0
  3228. dev: false
  3229. /react-hook-form@7.49.3(react@18.2.0):
  3230. resolution:
  3231. {
  3232. integrity: sha512-foD6r3juidAT1cOZzpmD/gOKt7fRsDhXXZ0y28+Al1CHgX+AY1qIN9VSIIItXRq1dN68QrRwl1ORFlwjBaAqeQ==,
  3233. }
  3234. engines: { node: ">=18", pnpm: "8" }
  3235. peerDependencies:
  3236. react: ^16.8.0 || ^17 || ^18
  3237. dependencies:
  3238. react: 18.2.0
  3239. dev: false
  3240. /react-i18next@13.5.0(i18next@23.7.16)(react-dom@18.2.0)(react@18.2.0):
  3241. resolution:
  3242. {
  3243. integrity: sha512-CFJ5NDGJ2MUyBohEHxljOq/39NQ972rh1ajnadG9BjTk+UXbHLq4z5DKEbEQBDoIhUmmbuS/fIMJKo6VOax1HA==,
  3244. }
  3245. peerDependencies:
  3246. i18next: ">= 23.2.3"
  3247. react: ">= 16.8.0"
  3248. react-dom: "*"
  3249. react-native: "*"
  3250. peerDependenciesMeta:
  3251. react-dom:
  3252. optional: true
  3253. react-native:
  3254. optional: true
  3255. dependencies:
  3256. "@babel/runtime": 7.23.8
  3257. html-parse-stringify: 3.0.1
  3258. i18next: 23.7.16
  3259. react: 18.2.0
  3260. react-dom: 18.2.0(react@18.2.0)
  3261. dev: false
  3262. /react-is@16.13.1:
  3263. resolution:
  3264. {
  3265. integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==,
  3266. }
  3267. dev: false
  3268. /react-is@18.2.0:
  3269. resolution:
  3270. {
  3271. integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==,
  3272. }
  3273. dev: false
  3274. /react-refresh@0.14.0:
  3275. resolution:
  3276. {
  3277. integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==,
  3278. }
  3279. engines: { node: ">=0.10.0" }
  3280. dev: true
  3281. /react-router-dom@6.21.2(react-dom@18.2.0)(react@18.2.0):
  3282. resolution:
  3283. {
  3284. integrity: sha512-tE13UukgUOh2/sqYr6jPzZTzmzc70aGRP4pAjG2if0IP3aUT+sBtAKUJh0qMh0zylJHGLmzS+XWVaON4UklHeg==,
  3285. }
  3286. engines: { node: ">=14.0.0" }
  3287. peerDependencies:
  3288. react: ">=16.8"
  3289. react-dom: ">=16.8"
  3290. dependencies:
  3291. "@remix-run/router": 1.14.2
  3292. react: 18.2.0
  3293. react-dom: 18.2.0(react@18.2.0)
  3294. react-router: 6.21.2(react@18.2.0)
  3295. dev: false
  3296. /react-router@6.21.2(react@18.2.0):
  3297. resolution:
  3298. {
  3299. integrity: sha512-jJcgiwDsnaHIeC+IN7atO0XiSRCrOsQAHHbChtJxmgqG2IaYQXSnhqGb5vk2CU/wBQA12Zt+TkbuJjIn65gzbA==,
  3300. }
  3301. engines: { node: ">=14.0.0" }
  3302. peerDependencies:
  3303. react: ">=16.8"
  3304. dependencies:
  3305. "@remix-run/router": 1.14.2
  3306. react: 18.2.0
  3307. dev: false
  3308. /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0):
  3309. resolution:
  3310. {
  3311. integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==,
  3312. }
  3313. peerDependencies:
  3314. react: ">=16.6.0"
  3315. react-dom: ">=16.6.0"
  3316. dependencies:
  3317. "@babel/runtime": 7.23.8
  3318. dom-helpers: 5.2.1
  3319. loose-envify: 1.4.0
  3320. prop-types: 15.8.1
  3321. react: 18.2.0
  3322. react-dom: 18.2.0(react@18.2.0)
  3323. dev: false
  3324. /react-virtuoso@4.6.2(react-dom@18.2.0)(react@18.2.0):
  3325. resolution:
  3326. {
  3327. integrity: sha512-vvlqvzPif+MvBrJ09+hJJrVY0xJK9yran+A+/1iwY78k0YCVKsyoNPqoLxOxzYPggspNBNXqUXEcvckN29OxyQ==,
  3328. }
  3329. engines: { node: ">=10" }
  3330. peerDependencies:
  3331. react: ">=16 || >=17 || >= 18"
  3332. react-dom: ">=16 || >=17 || >= 18"
  3333. dependencies:
  3334. react: 18.2.0
  3335. react-dom: 18.2.0(react@18.2.0)
  3336. dev: false
  3337. /react@18.2.0:
  3338. resolution:
  3339. {
  3340. integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==,
  3341. }
  3342. engines: { node: ">=0.10.0" }
  3343. dependencies:
  3344. loose-envify: 1.4.0
  3345. dev: false
  3346. /readdirp@3.6.0:
  3347. resolution:
  3348. {
  3349. integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==,
  3350. }
  3351. engines: { node: ">=8.10.0" }
  3352. dependencies:
  3353. picomatch: 2.3.1
  3354. dev: true
  3355. /recoil@0.7.7(react-dom@18.2.0)(react@18.2.0):
  3356. resolution:
  3357. {
  3358. integrity: sha512-8Og5KPQW9LwC577Vc7Ug2P0vQshkv1y3zG3tSSkWMqkWSwHmE+by06L8JtnGocjW6gcCvfwB3YtrJG6/tWivNQ==,
  3359. }
  3360. peerDependencies:
  3361. react: ">=16.13.1"
  3362. react-dom: "*"
  3363. react-native: "*"
  3364. peerDependenciesMeta:
  3365. react-dom:
  3366. optional: true
  3367. react-native:
  3368. optional: true
  3369. dependencies:
  3370. hamt_plus: 1.0.2
  3371. react: 18.2.0
  3372. react-dom: 18.2.0(react@18.2.0)
  3373. dev: false
  3374. /regenerator-runtime@0.14.1:
  3375. resolution:
  3376. {
  3377. integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==,
  3378. }
  3379. dev: false
  3380. /reselect@4.1.8:
  3381. resolution:
  3382. {
  3383. integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==,
  3384. }
  3385. dev: false
  3386. /resize-observer-polyfill@1.5.1:
  3387. resolution:
  3388. {
  3389. integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==,
  3390. }
  3391. dev: false
  3392. /resolve-from@4.0.0:
  3393. resolution:
  3394. {
  3395. integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==,
  3396. }
  3397. engines: { node: ">=4" }
  3398. /resolve@1.22.8:
  3399. resolution:
  3400. {
  3401. integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==,
  3402. }
  3403. hasBin: true
  3404. dependencies:
  3405. is-core-module: 2.13.1
  3406. path-parse: 1.0.7
  3407. supports-preserve-symlinks-flag: 1.0.0
  3408. dev: false
  3409. /rollup@4.9.5:
  3410. resolution:
  3411. {
  3412. integrity: sha512-E4vQW0H/mbNMw2yLSqJyjtkHY9dslf/p0zuT1xehNRqUTBOFMqEjguDvqhXr7N7r/4ttb2jr4T41d3dncmIgbQ==,
  3413. }
  3414. engines: { node: ">=18.0.0", npm: ">=8.0.0" }
  3415. hasBin: true
  3416. dependencies:
  3417. "@types/estree": 1.0.5
  3418. optionalDependencies:
  3419. "@rollup/rollup-android-arm-eabi": 4.9.5
  3420. "@rollup/rollup-android-arm64": 4.9.5
  3421. "@rollup/rollup-darwin-arm64": 4.9.5
  3422. "@rollup/rollup-darwin-x64": 4.9.5
  3423. "@rollup/rollup-linux-arm-gnueabihf": 4.9.5
  3424. "@rollup/rollup-linux-arm64-gnu": 4.9.5
  3425. "@rollup/rollup-linux-arm64-musl": 4.9.5
  3426. "@rollup/rollup-linux-riscv64-gnu": 4.9.5
  3427. "@rollup/rollup-linux-x64-gnu": 4.9.5
  3428. "@rollup/rollup-linux-x64-musl": 4.9.5
  3429. "@rollup/rollup-win32-arm64-msvc": 4.9.5
  3430. "@rollup/rollup-win32-ia32-msvc": 4.9.5
  3431. "@rollup/rollup-win32-x64-msvc": 4.9.5
  3432. fsevents: 2.3.3
  3433. dev: true
  3434. /sass@1.70.0:
  3435. resolution:
  3436. {
  3437. integrity: sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==,
  3438. }
  3439. engines: { node: ">=14.0.0" }
  3440. hasBin: true
  3441. dependencies:
  3442. chokidar: 3.5.3
  3443. immutable: 4.3.4
  3444. source-map-js: 1.0.2
  3445. dev: true
  3446. /scheduler@0.23.0:
  3447. resolution:
  3448. {
  3449. integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==,
  3450. }
  3451. dependencies:
  3452. loose-envify: 1.4.0
  3453. dev: false
  3454. /screenfull@5.2.0:
  3455. resolution:
  3456. {
  3457. integrity: sha512-9BakfsO2aUQN2K9Fdbj87RJIEZ82Q9IGim7FqM5OsebfoFC6ZHXgDq/KvniuLTPdeM8wY2o6Dj3WQ7KeQCj3cA==,
  3458. }
  3459. engines: { node: ">=0.10.0" }
  3460. dev: false
  3461. /semver@6.3.1:
  3462. resolution:
  3463. {
  3464. integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==,
  3465. }
  3466. hasBin: true
  3467. dev: true
  3468. /shebang-command@2.0.0:
  3469. resolution:
  3470. {
  3471. integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==,
  3472. }
  3473. engines: { node: ">=8" }
  3474. dependencies:
  3475. shebang-regex: 3.0.0
  3476. dev: true
  3477. /shebang-regex@3.0.0:
  3478. resolution:
  3479. {
  3480. integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==,
  3481. }
  3482. engines: { node: ">=8" }
  3483. dev: true
  3484. /signal-exit@3.0.7:
  3485. resolution:
  3486. {
  3487. integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==,
  3488. }
  3489. dev: true
  3490. /snake-case@3.0.4:
  3491. resolution:
  3492. {
  3493. integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==,
  3494. }
  3495. dependencies:
  3496. dot-case: 3.0.4
  3497. tslib: 2.6.2
  3498. dev: true
  3499. /snarkdown@2.0.0:
  3500. resolution:
  3501. {
  3502. integrity: sha512-MgL/7k/AZdXCTJiNgrO7chgDqaB9FGM/1Tvlcenenb7div6obaDATzs16JhFyHHBGodHT3B7RzRc5qk8pFhg3A==,
  3503. }
  3504. dev: false
  3505. /source-map-js@1.0.2:
  3506. resolution:
  3507. {
  3508. integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==,
  3509. }
  3510. engines: { node: ">=0.10.0" }
  3511. dev: true
  3512. /source-map@0.5.7:
  3513. resolution:
  3514. {
  3515. integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==,
  3516. }
  3517. engines: { node: ">=0.10.0" }
  3518. dev: false
  3519. /strip-final-newline@2.0.0:
  3520. resolution:
  3521. {
  3522. integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==,
  3523. }
  3524. engines: { node: ">=6" }
  3525. dev: true
  3526. /stylis@4.2.0:
  3527. resolution:
  3528. {
  3529. integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==,
  3530. }
  3531. dev: false
  3532. /supports-color@5.5.0:
  3533. resolution:
  3534. {
  3535. integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==,
  3536. }
  3537. engines: { node: ">=4" }
  3538. dependencies:
  3539. has-flag: 3.0.0
  3540. /supports-preserve-symlinks-flag@1.0.0:
  3541. resolution:
  3542. {
  3543. integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==,
  3544. }
  3545. engines: { node: ">= 0.4" }
  3546. dev: false
  3547. /svg-parser@2.0.4:
  3548. resolution:
  3549. {
  3550. integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==,
  3551. }
  3552. dev: true
  3553. /swr@1.3.0(react@18.2.0):
  3554. resolution:
  3555. {
  3556. integrity: sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==,
  3557. }
  3558. peerDependencies:
  3559. react: ^16.11.0 || ^17.0.0 || ^18.0.0
  3560. dependencies:
  3561. react: 18.2.0
  3562. dev: false
  3563. /tar@6.2.0:
  3564. resolution:
  3565. {
  3566. integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==,
  3567. }
  3568. engines: { node: ">=10" }
  3569. dependencies:
  3570. chownr: 2.0.0
  3571. fs-minipass: 2.1.0
  3572. minipass: 5.0.0
  3573. minizlib: 2.1.2
  3574. mkdirp: 1.0.4
  3575. yallist: 4.0.0
  3576. dev: false
  3577. /to-fast-properties@2.0.0:
  3578. resolution:
  3579. {
  3580. integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==,
  3581. }
  3582. engines: { node: ">=4" }
  3583. /to-regex-range@5.0.1:
  3584. resolution:
  3585. {
  3586. integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==,
  3587. }
  3588. engines: { node: ">=8.0" }
  3589. dependencies:
  3590. is-number: 7.0.0
  3591. dev: true
  3592. /tr46@0.0.3:
  3593. resolution:
  3594. {
  3595. integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==,
  3596. }
  3597. dev: true
  3598. /tslib@2.6.2:
  3599. resolution:
  3600. {
  3601. integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==,
  3602. }
  3603. /tunnel@0.0.6:
  3604. resolution:
  3605. {
  3606. integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==,
  3607. }
  3608. engines: { node: ">=0.6.11 <=0.7.0 || >=0.7.3" }
  3609. dev: true
  3610. /typescript@5.3.3:
  3611. resolution:
  3612. {
  3613. integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==,
  3614. }
  3615. engines: { node: ">=14.17" }
  3616. hasBin: true
  3617. dev: true
  3618. /undici-types@5.26.5:
  3619. resolution:
  3620. {
  3621. integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==,
  3622. }
  3623. dev: true
  3624. /undici@5.28.2:
  3625. resolution:
  3626. {
  3627. integrity: sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==,
  3628. }
  3629. engines: { node: ">=14.0" }
  3630. dependencies:
  3631. "@fastify/busboy": 2.1.0
  3632. dev: true
  3633. /universal-user-agent@6.0.1:
  3634. resolution:
  3635. {
  3636. integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==,
  3637. }
  3638. dev: true
  3639. /universalify@2.0.1:
  3640. resolution:
  3641. {
  3642. integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==,
  3643. }
  3644. engines: { node: ">= 10.0.0" }
  3645. dev: true
  3646. /update-browserslist-db@1.0.13(browserslist@4.22.2):
  3647. resolution:
  3648. {
  3649. integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==,
  3650. }
  3651. hasBin: true
  3652. peerDependencies:
  3653. browserslist: ">= 4.21.0"
  3654. dependencies:
  3655. browserslist: 4.22.2
  3656. escalade: 3.1.1
  3657. picocolors: 1.0.0
  3658. dev: true
  3659. /vite-plugin-monaco-editor@1.1.0(monaco-editor@0.34.1):
  3660. resolution:
  3661. {
  3662. integrity: sha512-IvtUqZotrRoVqwT0PBBDIZPNraya3BxN/bfcNfnxZ5rkJiGcNtO5eAOWWSgT7zullIAEqQwxMU83yL9J5k7gww==,
  3663. }
  3664. peerDependencies:
  3665. monaco-editor: ">=0.33.0"
  3666. dependencies:
  3667. monaco-editor: 0.34.1
  3668. dev: true
  3669. /vite-plugin-svgr@4.2.0(typescript@5.3.3)(vite@5.0.11):
  3670. resolution:
  3671. {
  3672. integrity: sha512-SC7+FfVtNQk7So0XMjrrtLAbEC8qjFPifyD7+fs/E6aaNdVde6umlVVh0QuwDLdOMu7vp5RiGFsB70nj5yo0XA==,
  3673. }
  3674. peerDependencies:
  3675. vite: ^2.6.0 || 3 || 4 || 5
  3676. dependencies:
  3677. "@rollup/pluginutils": 5.1.0
  3678. "@svgr/core": 8.1.0(typescript@5.3.3)
  3679. "@svgr/plugin-jsx": 8.1.0(@svgr/core@8.1.0)
  3680. vite: 5.0.11(sass@1.70.0)
  3681. transitivePeerDependencies:
  3682. - rollup
  3683. - supports-color
  3684. - typescript
  3685. dev: true
  3686. /vite@5.0.11(sass@1.70.0):
  3687. resolution:
  3688. {
  3689. integrity: sha512-XBMnDjZcNAw/G1gEiskiM1v6yzM4GE5aMGvhWTlHAYYhxb7S3/V1s3m2LDHa8Vh6yIWYYB0iJwsEaS523c4oYA==,
  3690. }
  3691. engines: { node: ^18.0.0 || >=20.0.0 }
  3692. hasBin: true
  3693. peerDependencies:
  3694. "@types/node": ^18.0.0 || >=20.0.0
  3695. less: "*"
  3696. lightningcss: ^1.21.0
  3697. sass: "*"
  3698. stylus: "*"
  3699. sugarss: "*"
  3700. terser: ^5.4.0
  3701. peerDependenciesMeta:
  3702. "@types/node":
  3703. optional: true
  3704. less:
  3705. optional: true
  3706. lightningcss:
  3707. optional: true
  3708. sass:
  3709. optional: true
  3710. stylus:
  3711. optional: true
  3712. sugarss:
  3713. optional: true
  3714. terser:
  3715. optional: true
  3716. dependencies:
  3717. esbuild: 0.19.11
  3718. postcss: 8.4.33
  3719. rollup: 4.9.5
  3720. sass: 1.70.0
  3721. optionalDependencies:
  3722. fsevents: 2.3.3
  3723. dev: true
  3724. /void-elements@3.1.0:
  3725. resolution:
  3726. {
  3727. integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==,
  3728. }
  3729. engines: { node: ">=0.10.0" }
  3730. dev: false
  3731. /web-streams-polyfill@3.3.2:
  3732. resolution:
  3733. {
  3734. integrity: sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==,
  3735. }
  3736. engines: { node: ">= 8" }
  3737. dev: true
  3738. /webidl-conversions@3.0.1:
  3739. resolution:
  3740. {
  3741. integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==,
  3742. }
  3743. dev: true
  3744. /whatwg-url@5.0.0:
  3745. resolution:
  3746. {
  3747. integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==,
  3748. }
  3749. dependencies:
  3750. tr46: 0.0.3
  3751. webidl-conversions: 3.0.1
  3752. dev: true
  3753. /which@2.0.2:
  3754. resolution:
  3755. {
  3756. integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==,
  3757. }
  3758. engines: { node: ">= 8" }
  3759. hasBin: true
  3760. dependencies:
  3761. isexe: 2.0.0
  3762. dev: true
  3763. /wrappy@1.0.2:
  3764. resolution:
  3765. {
  3766. integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==,
  3767. }
  3768. dev: true
  3769. /yallist@3.1.1:
  3770. resolution:
  3771. {
  3772. integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==,
  3773. }
  3774. dev: true
  3775. /yallist@4.0.0:
  3776. resolution:
  3777. {
  3778. integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==,
  3779. }
  3780. dev: false
  3781. /yaml@1.10.2:
  3782. resolution:
  3783. {
  3784. integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==,
  3785. }
  3786. engines: { node: ">= 6" }
  3787. dev: false