pnpm-lock.yaml 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543
  1. lockfileVersion: '6.0'
  2. settings:
  3. autoInstallPeers: true
  4. excludeLinksFromLockfile: false
  5. dependencies:
  6. '@handsontable/vue':
  7. specifier: ^15.2.0
  8. version: 15.2.0(handsontable@11.1.0)(vue@2.7.16)
  9. '@lifetech-inc/x-data-spreadsheet':
  10. specifier: ^1.0.17
  11. version: 1.0.17
  12. axios:
  13. specifier: ^1.8.4
  14. version: 1.8.4
  15. docx-preview:
  16. specifier: ^0.3.5
  17. version: 0.3.5
  18. element-ui:
  19. specifier: ^2.15.13
  20. version: 2.15.14(vue@2.7.16)
  21. exceljs:
  22. specifier: ^4.4.0
  23. version: 4.4.0
  24. file-saver:
  25. specifier: ^2.0.5
  26. version: 2.0.5
  27. handsontable:
  28. specifier: ^11.1.0
  29. version: 11.1.0
  30. html2canvas:
  31. specifier: ^1.4.1
  32. version: 1.4.1
  33. js-cookie:
  34. specifier: ^3.0.5
  35. version: 3.0.5
  36. jszip:
  37. specifier: ^3.10.1
  38. version: 3.10.1
  39. lodash:
  40. specifier: ^4.17.21
  41. version: 4.17.21
  42. lodash-es:
  43. specifier: ^4.17.21
  44. version: 4.17.21
  45. pdfjs-dist:
  46. specifier: 2.4.456
  47. version: 2.4.456
  48. pptxtojson:
  49. specifier: ^1.3.1
  50. version: 1.3.1
  51. tinycolor2:
  52. specifier: ^1.6.0
  53. version: 1.6.0
  54. txml:
  55. specifier: ^5.1.1
  56. version: 5.1.1
  57. vue:
  58. specifier: 2.7.16
  59. version: 2.7.16
  60. vue-router:
  61. specifier: ^3.5.1
  62. version: 3.6.5(vue@2.7.16)
  63. vuex:
  64. specifier: ^3.0.1
  65. version: 3.6.2(vue@2.7.16)
  66. wisdom-ui:
  67. specifier: ^1.0.4-beta.5
  68. version: 1.0.4-beta.6
  69. x-data-spreadsheet:
  70. specifier: ^1.1.9
  71. version: 1.1.9
  72. xlsx:
  73. specifier: ^0.18.5
  74. version: 0.18.5
  75. devDependencies:
  76. '@babel/types':
  77. specifier: ^7.27.0
  78. version: 7.27.0
  79. '@originjs/vite-plugin-require-context':
  80. specifier: ^1.0.9
  81. version: 1.0.9
  82. less:
  83. specifier: ^4.3.0
  84. version: 4.3.0
  85. typescript:
  86. specifier: ~5.7.2
  87. version: 5.7.3
  88. vite:
  89. specifier: ^2.8.6
  90. version: 2.9.18(less@4.3.0)
  91. vite-plugin-vue2:
  92. specifier: ^2.0.3
  93. version: 2.0.3(lodash@4.17.21)(vite@2.9.18)(vue-template-compiler@2.7.16)(vue@2.7.16)
  94. vue-template-compiler:
  95. specifier: ^2.7.16
  96. version: 2.7.16
  97. packages:
  98. /@ampproject/remapping@2.3.0:
  99. resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
  100. engines: {node: '>=6.0.0'}
  101. dependencies:
  102. '@jridgewell/gen-mapping': 0.3.8
  103. '@jridgewell/trace-mapping': 0.3.25
  104. dev: true
  105. /@babel/code-frame@7.26.2:
  106. resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
  107. engines: {node: '>=6.9.0'}
  108. dependencies:
  109. '@babel/helper-validator-identifier': 7.25.9
  110. js-tokens: 4.0.0
  111. picocolors: 1.1.1
  112. dev: true
  113. /@babel/compat-data@7.26.8:
  114. resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
  115. engines: {node: '>=6.9.0'}
  116. dev: true
  117. /@babel/core@7.26.10:
  118. resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
  119. engines: {node: '>=6.9.0'}
  120. dependencies:
  121. '@ampproject/remapping': 2.3.0
  122. '@babel/code-frame': 7.26.2
  123. '@babel/generator': 7.27.0
  124. '@babel/helper-compilation-targets': 7.27.0
  125. '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
  126. '@babel/helpers': 7.27.0
  127. '@babel/parser': 7.27.0
  128. '@babel/template': 7.27.0
  129. '@babel/traverse': 7.27.0
  130. '@babel/types': 7.27.0
  131. convert-source-map: 2.0.0
  132. debug: 4.4.0
  133. gensync: 1.0.0-beta.2
  134. json5: 2.2.3
  135. semver: 6.3.1
  136. transitivePeerDependencies:
  137. - supports-color
  138. dev: true
  139. /@babel/generator@7.27.0:
  140. resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==}
  141. engines: {node: '>=6.9.0'}
  142. dependencies:
  143. '@babel/parser': 7.27.0
  144. '@babel/types': 7.27.0
  145. '@jridgewell/gen-mapping': 0.3.8
  146. '@jridgewell/trace-mapping': 0.3.25
  147. jsesc: 3.1.0
  148. dev: true
  149. /@babel/helper-annotate-as-pure@7.25.9:
  150. resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
  151. engines: {node: '>=6.9.0'}
  152. dependencies:
  153. '@babel/types': 7.27.0
  154. dev: true
  155. /@babel/helper-compilation-targets@7.27.0:
  156. resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==}
  157. engines: {node: '>=6.9.0'}
  158. dependencies:
  159. '@babel/compat-data': 7.26.8
  160. '@babel/helper-validator-option': 7.25.9
  161. browserslist: 4.24.4
  162. lru-cache: 5.1.1
  163. semver: 6.3.1
  164. dev: true
  165. /@babel/helper-create-class-features-plugin@7.27.0(@babel/core@7.26.10):
  166. resolution: {integrity: sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==}
  167. engines: {node: '>=6.9.0'}
  168. peerDependencies:
  169. '@babel/core': ^7.0.0
  170. dependencies:
  171. '@babel/core': 7.26.10
  172. '@babel/helper-annotate-as-pure': 7.25.9
  173. '@babel/helper-member-expression-to-functions': 7.25.9
  174. '@babel/helper-optimise-call-expression': 7.25.9
  175. '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.10)
  176. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  177. '@babel/traverse': 7.27.0
  178. semver: 6.3.1
  179. transitivePeerDependencies:
  180. - supports-color
  181. dev: true
  182. /@babel/helper-member-expression-to-functions@7.25.9:
  183. resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
  184. engines: {node: '>=6.9.0'}
  185. dependencies:
  186. '@babel/traverse': 7.27.0
  187. '@babel/types': 7.27.0
  188. transitivePeerDependencies:
  189. - supports-color
  190. dev: true
  191. /@babel/helper-module-imports@7.25.9:
  192. resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
  193. engines: {node: '>=6.9.0'}
  194. dependencies:
  195. '@babel/traverse': 7.27.0
  196. '@babel/types': 7.27.0
  197. transitivePeerDependencies:
  198. - supports-color
  199. dev: true
  200. /@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10):
  201. resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
  202. engines: {node: '>=6.9.0'}
  203. peerDependencies:
  204. '@babel/core': ^7.0.0
  205. dependencies:
  206. '@babel/core': 7.26.10
  207. '@babel/helper-module-imports': 7.25.9
  208. '@babel/helper-validator-identifier': 7.25.9
  209. '@babel/traverse': 7.27.0
  210. transitivePeerDependencies:
  211. - supports-color
  212. dev: true
  213. /@babel/helper-optimise-call-expression@7.25.9:
  214. resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
  215. engines: {node: '>=6.9.0'}
  216. dependencies:
  217. '@babel/types': 7.27.0
  218. dev: true
  219. /@babel/helper-plugin-utils@7.26.5:
  220. resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
  221. engines: {node: '>=6.9.0'}
  222. dev: true
  223. /@babel/helper-replace-supers@7.26.5(@babel/core@7.26.10):
  224. resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==}
  225. engines: {node: '>=6.9.0'}
  226. peerDependencies:
  227. '@babel/core': ^7.0.0
  228. dependencies:
  229. '@babel/core': 7.26.10
  230. '@babel/helper-member-expression-to-functions': 7.25.9
  231. '@babel/helper-optimise-call-expression': 7.25.9
  232. '@babel/traverse': 7.27.0
  233. transitivePeerDependencies:
  234. - supports-color
  235. dev: true
  236. /@babel/helper-skip-transparent-expression-wrappers@7.25.9:
  237. resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
  238. engines: {node: '>=6.9.0'}
  239. dependencies:
  240. '@babel/traverse': 7.27.0
  241. '@babel/types': 7.27.0
  242. transitivePeerDependencies:
  243. - supports-color
  244. dev: true
  245. /@babel/helper-string-parser@7.25.9:
  246. resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
  247. engines: {node: '>=6.9.0'}
  248. /@babel/helper-validator-identifier@7.25.9:
  249. resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
  250. engines: {node: '>=6.9.0'}
  251. /@babel/helper-validator-option@7.25.9:
  252. resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
  253. engines: {node: '>=6.9.0'}
  254. dev: true
  255. /@babel/helpers@7.27.0:
  256. resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
  257. engines: {node: '>=6.9.0'}
  258. dependencies:
  259. '@babel/template': 7.27.0
  260. '@babel/types': 7.27.0
  261. dev: true
  262. /@babel/parser@7.27.0:
  263. resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
  264. engines: {node: '>=6.0.0'}
  265. hasBin: true
  266. dependencies:
  267. '@babel/types': 7.27.0
  268. /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.10):
  269. resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
  270. engines: {node: '>=6.9.0'}
  271. deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
  272. peerDependencies:
  273. '@babel/core': ^7.0.0-0
  274. dependencies:
  275. '@babel/core': 7.26.10
  276. '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
  277. '@babel/helper-plugin-utils': 7.26.5
  278. transitivePeerDependencies:
  279. - supports-color
  280. dev: true
  281. /@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.10):
  282. resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
  283. engines: {node: '>=6.9.0'}
  284. peerDependencies:
  285. '@babel/core': ^7.0.0-0
  286. dependencies:
  287. '@babel/core': 7.26.10
  288. '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
  289. '@babel/helper-plugin-utils': 7.26.5
  290. '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.10)
  291. transitivePeerDependencies:
  292. - supports-color
  293. dev: true
  294. /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.26.10):
  295. resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
  296. engines: {node: '>=6.9.0'}
  297. deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
  298. peerDependencies:
  299. '@babel/core': ^7.0.0-0
  300. dependencies:
  301. '@babel/core': 7.26.10
  302. '@babel/helper-plugin-utils': 7.26.5
  303. '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.10)
  304. dev: true
  305. /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.26.10):
  306. resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==}
  307. engines: {node: '>=6.9.0'}
  308. deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead.
  309. peerDependencies:
  310. '@babel/core': ^7.0.0-0
  311. dependencies:
  312. '@babel/compat-data': 7.26.8
  313. '@babel/core': 7.26.10
  314. '@babel/helper-compilation-targets': 7.27.0
  315. '@babel/helper-plugin-utils': 7.26.5
  316. '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.10)
  317. '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
  318. dev: true
  319. /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.26.10):
  320. resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
  321. engines: {node: '>=6.9.0'}
  322. deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
  323. peerDependencies:
  324. '@babel/core': ^7.0.0-0
  325. dependencies:
  326. '@babel/core': 7.26.10
  327. '@babel/helper-plugin-utils': 7.26.5
  328. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  329. '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.10)
  330. transitivePeerDependencies:
  331. - supports-color
  332. dev: true
  333. /@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.10):
  334. resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
  335. engines: {node: '>=6.9.0'}
  336. peerDependencies:
  337. '@babel/core': ^7.0.0-0
  338. dependencies:
  339. '@babel/core': 7.26.10
  340. '@babel/helper-plugin-utils': 7.26.5
  341. dev: true
  342. /@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.10):
  343. resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
  344. engines: {node: '>=6.9.0'}
  345. peerDependencies:
  346. '@babel/core': ^7.0.0-0
  347. dependencies:
  348. '@babel/core': 7.26.10
  349. '@babel/helper-plugin-utils': 7.26.5
  350. dev: true
  351. /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.10):
  352. resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
  353. peerDependencies:
  354. '@babel/core': ^7.0.0-0
  355. dependencies:
  356. '@babel/core': 7.26.10
  357. '@babel/helper-plugin-utils': 7.26.5
  358. dev: true
  359. /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.10):
  360. resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
  361. peerDependencies:
  362. '@babel/core': ^7.0.0-0
  363. dependencies:
  364. '@babel/core': 7.26.10
  365. '@babel/helper-plugin-utils': 7.26.5
  366. dev: true
  367. /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.10):
  368. resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
  369. peerDependencies:
  370. '@babel/core': ^7.0.0-0
  371. dependencies:
  372. '@babel/core': 7.26.10
  373. '@babel/helper-plugin-utils': 7.26.5
  374. dev: true
  375. /@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.10):
  376. resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
  377. engines: {node: '>=6.9.0'}
  378. peerDependencies:
  379. '@babel/core': ^7.0.0-0
  380. dependencies:
  381. '@babel/core': 7.26.10
  382. '@babel/helper-plugin-utils': 7.26.5
  383. dev: true
  384. /@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.10):
  385. resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
  386. engines: {node: '>=6.9.0'}
  387. peerDependencies:
  388. '@babel/core': ^7.0.0-0
  389. dependencies:
  390. '@babel/core': 7.26.10
  391. '@babel/helper-plugin-utils': 7.26.5
  392. dev: true
  393. /@babel/plugin-transform-block-scoping@7.27.0(@babel/core@7.26.10):
  394. resolution: {integrity: sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ==}
  395. engines: {node: '>=6.9.0'}
  396. peerDependencies:
  397. '@babel/core': ^7.0.0-0
  398. dependencies:
  399. '@babel/core': 7.26.10
  400. '@babel/helper-plugin-utils': 7.26.5
  401. dev: true
  402. /@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.10):
  403. resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
  404. engines: {node: '>=6.9.0'}
  405. peerDependencies:
  406. '@babel/core': ^7.0.0-0
  407. dependencies:
  408. '@babel/core': 7.26.10
  409. '@babel/helper-plugin-utils': 7.26.5
  410. '@babel/template': 7.27.0
  411. dev: true
  412. /@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.10):
  413. resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
  414. engines: {node: '>=6.9.0'}
  415. peerDependencies:
  416. '@babel/core': ^7.0.0-0
  417. dependencies:
  418. '@babel/core': 7.26.10
  419. '@babel/helper-plugin-utils': 7.26.5
  420. dev: true
  421. /@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.10):
  422. resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
  423. engines: {node: '>=6.9.0'}
  424. peerDependencies:
  425. '@babel/core': ^7.0.0-0
  426. dependencies:
  427. '@babel/core': 7.26.10
  428. '@babel/helper-plugin-utils': 7.26.5
  429. dev: true
  430. /@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.10):
  431. resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
  432. engines: {node: '>=6.9.0'}
  433. peerDependencies:
  434. '@babel/core': ^7.0.0-0
  435. dependencies:
  436. '@babel/core': 7.26.10
  437. '@babel/helper-plugin-utils': 7.26.5
  438. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  439. transitivePeerDependencies:
  440. - supports-color
  441. dev: true
  442. /@babel/plugin-transform-typescript@7.27.0(@babel/core@7.26.10):
  443. resolution: {integrity: sha512-fRGGjO2UEGPjvEcyAZXRXAS8AfdaQoq7HnxAbJoAoW10B9xOKesmmndJv+Sym2a+9FHWZ9KbyyLCe9s0Sn5jtg==}
  444. engines: {node: '>=6.9.0'}
  445. peerDependencies:
  446. '@babel/core': ^7.0.0-0
  447. dependencies:
  448. '@babel/core': 7.26.10
  449. '@babel/helper-annotate-as-pure': 7.25.9
  450. '@babel/helper-create-class-features-plugin': 7.27.0(@babel/core@7.26.10)
  451. '@babel/helper-plugin-utils': 7.26.5
  452. '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
  453. '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.10)
  454. transitivePeerDependencies:
  455. - supports-color
  456. dev: true
  457. /@babel/runtime@7.27.0:
  458. resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==}
  459. engines: {node: '>=6.9.0'}
  460. dependencies:
  461. regenerator-runtime: 0.14.1
  462. dev: false
  463. /@babel/template@7.27.0:
  464. resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==}
  465. engines: {node: '>=6.9.0'}
  466. dependencies:
  467. '@babel/code-frame': 7.26.2
  468. '@babel/parser': 7.27.0
  469. '@babel/types': 7.27.0
  470. dev: true
  471. /@babel/traverse@7.27.0:
  472. resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==}
  473. engines: {node: '>=6.9.0'}
  474. dependencies:
  475. '@babel/code-frame': 7.26.2
  476. '@babel/generator': 7.27.0
  477. '@babel/parser': 7.27.0
  478. '@babel/template': 7.27.0
  479. '@babel/types': 7.27.0
  480. debug: 4.4.0
  481. globals: 11.12.0
  482. transitivePeerDependencies:
  483. - supports-color
  484. dev: true
  485. /@babel/types@7.27.0:
  486. resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
  487. engines: {node: '>=6.9.0'}
  488. dependencies:
  489. '@babel/helper-string-parser': 7.25.9
  490. '@babel/helper-validator-identifier': 7.25.9
  491. /@esbuild/linux-loong64@0.14.54:
  492. resolution: {integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw==}
  493. engines: {node: '>=12'}
  494. cpu: [loong64]
  495. os: [linux]
  496. requiresBuild: true
  497. dev: true
  498. optional: true
  499. /@fast-csv/format@4.3.5:
  500. resolution: {integrity: sha512-8iRn6QF3I8Ak78lNAa+Gdl5MJJBM5vRHivFtMRUWINdevNo00K7OXxS2PshawLKTejVwieIlPmK5YlLu6w4u8A==}
  501. dependencies:
  502. '@types/node': 14.18.63
  503. lodash.escaperegexp: 4.1.2
  504. lodash.isboolean: 3.0.3
  505. lodash.isequal: 4.5.0
  506. lodash.isfunction: 3.0.9
  507. lodash.isnil: 4.0.0
  508. dev: false
  509. /@fast-csv/parse@4.3.6:
  510. resolution: {integrity: sha512-uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA==}
  511. dependencies:
  512. '@types/node': 14.18.63
  513. lodash.escaperegexp: 4.1.2
  514. lodash.groupby: 4.6.0
  515. lodash.isfunction: 3.0.9
  516. lodash.isnil: 4.0.0
  517. lodash.isundefined: 3.0.1
  518. lodash.uniq: 4.5.0
  519. dev: false
  520. /@handsontable/vue@15.2.0(handsontable@11.1.0)(vue@2.7.16):
  521. resolution: {integrity: sha512-N7OrfGNMwm+uhbU0Kg7zrrSJVrkWFdrT9xR2Wha6XWTXfJoduFKmkHgw6PIBb4nCb7+tM3jAr8ZAR/oFaGH0KA==}
  522. peerDependencies:
  523. handsontable: '>=15.0.0'
  524. vue: ^2.5.0
  525. dependencies:
  526. handsontable: 11.1.0
  527. vue: 2.7.16
  528. dev: false
  529. /@jest/types@26.6.2:
  530. resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
  531. engines: {node: '>= 10.14.2'}
  532. dependencies:
  533. '@types/istanbul-lib-coverage': 2.0.6
  534. '@types/istanbul-reports': 3.0.4
  535. '@types/node': 22.14.1
  536. '@types/yargs': 15.0.19
  537. chalk: 4.1.2
  538. dev: true
  539. /@jridgewell/gen-mapping@0.3.8:
  540. resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
  541. engines: {node: '>=6.0.0'}
  542. dependencies:
  543. '@jridgewell/set-array': 1.2.1
  544. '@jridgewell/sourcemap-codec': 1.5.0
  545. '@jridgewell/trace-mapping': 0.3.25
  546. dev: true
  547. /@jridgewell/resolve-uri@3.1.2:
  548. resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
  549. engines: {node: '>=6.0.0'}
  550. dev: true
  551. /@jridgewell/set-array@1.2.1:
  552. resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
  553. engines: {node: '>=6.0.0'}
  554. dev: true
  555. /@jridgewell/sourcemap-codec@1.5.0:
  556. resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
  557. dev: true
  558. /@jridgewell/trace-mapping@0.3.25:
  559. resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
  560. dependencies:
  561. '@jridgewell/resolve-uri': 3.1.2
  562. '@jridgewell/sourcemap-codec': 1.5.0
  563. dev: true
  564. /@lifetech-inc/x-data-spreadsheet@1.0.17:
  565. resolution: {integrity: sha512-pgWAUia9gOH0xJ3GYRatufZ7tQ4kbGBHIQo6nGDppgisrqbDQaWl9NLN6WecTv18vV4g9DgdLMK27u4+NZR2OQ==}
  566. requiresBuild: true
  567. dependencies:
  568. opencollective: 1.0.3
  569. opencollective-postinstall: 2.0.3
  570. dev: false
  571. /@originjs/vite-plugin-require-context@1.0.9:
  572. resolution: {integrity: sha512-xBC7XGm6HkniQ9x+P0yTS4uUua5bWKjnN0/FfHreCV22QrQ+zXIZVdCFDr0PPXuawXfPzqSzdljqffcpSCFNcA==}
  573. dependencies:
  574. '@types/jest': 26.0.24
  575. node-dir: 0.1.17
  576. dev: true
  577. /@riophae/vue-treeselect@0.4.0(vue@2.6.11):
  578. resolution: {integrity: sha512-J4atYmBqXQmiPFK/0B5sXKjtnGc21mBJEiyKIDZwk0Q9XuynVFX6IJ4EpaLmUgL5Tve7HAS7wkiGGSti6Uaxcg==}
  579. peerDependencies:
  580. vue: ^2.2.0
  581. dependencies:
  582. '@babel/runtime': 7.27.0
  583. babel-helper-vue-jsx-merge-props: 2.0.3
  584. easings-css: 1.0.0
  585. fuzzysearch: 1.0.3
  586. is-promise: 2.2.2
  587. lodash: 4.17.21
  588. material-colors: 1.2.6
  589. vue: 2.6.11
  590. watch-size: 2.0.0
  591. dev: false
  592. /@rollup/pluginutils@4.2.1:
  593. resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
  594. engines: {node: '>= 8.0.0'}
  595. dependencies:
  596. estree-walker: 2.0.2
  597. picomatch: 2.3.1
  598. dev: true
  599. /@types/istanbul-lib-coverage@2.0.6:
  600. resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
  601. dev: true
  602. /@types/istanbul-lib-report@3.0.3:
  603. resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
  604. dependencies:
  605. '@types/istanbul-lib-coverage': 2.0.6
  606. dev: true
  607. /@types/istanbul-reports@3.0.4:
  608. resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
  609. dependencies:
  610. '@types/istanbul-lib-report': 3.0.3
  611. dev: true
  612. /@types/jest@26.0.24:
  613. resolution: {integrity: sha512-E/X5Vib8BWqZNRlDxj9vYXhsDwPYbPINqKF9BsnSoon4RQ0D9moEuLD8txgyypFLH7J4+Lho9Nr/c8H0Fi+17w==}
  614. dependencies:
  615. jest-diff: 26.6.2
  616. pretty-format: 26.6.2
  617. dev: true
  618. /@types/node@14.18.63:
  619. resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==}
  620. dev: false
  621. /@types/node@22.14.1:
  622. resolution: {integrity: sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==}
  623. dependencies:
  624. undici-types: 6.21.0
  625. dev: true
  626. /@types/pikaday@1.7.4:
  627. resolution: {integrity: sha512-0KsHVyw5pTG829nqG4IRu7m+BFQlFEBdbE/1i3S5182HeKUKv1uEW0gyEmkJVp5i4IV+9pyh23O83+KpRkSQbw==}
  628. dependencies:
  629. moment: 2.24.0
  630. dev: false
  631. /@types/yargs-parser@21.0.3:
  632. resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
  633. dev: true
  634. /@types/yargs@15.0.19:
  635. resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==}
  636. dependencies:
  637. '@types/yargs-parser': 21.0.3
  638. dev: true
  639. /@vue/babel-helper-vue-jsx-merge-props@1.4.0:
  640. resolution: {integrity: sha512-JkqXfCkUDp4PIlFdDQ0TdXoIejMtTHP67/pvxlgeY+u5k3LEdKuWZ3LK6xkxo52uDoABIVyRwqVkfLQJhk7VBA==}
  641. dev: true
  642. /@vue/babel-plugin-transform-vue-jsx@1.4.0(@babel/core@7.26.10):
  643. resolution: {integrity: sha512-Fmastxw4MMx0vlgLS4XBX0XiBbUFzoMGeVXuMV08wyOfXdikAFqBTuYPR0tlk+XskL19EzHc39SgjrPGY23JnA==}
  644. peerDependencies:
  645. '@babel/core': ^7.0.0-0
  646. dependencies:
  647. '@babel/core': 7.26.10
  648. '@babel/helper-module-imports': 7.25.9
  649. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  650. '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
  651. html-tags: 2.0.0
  652. lodash.kebabcase: 4.1.1
  653. svg-tags: 1.0.0
  654. transitivePeerDependencies:
  655. - supports-color
  656. dev: true
  657. /@vue/babel-preset-jsx@1.4.0(@babel/core@7.26.10)(vue@2.7.16):
  658. resolution: {integrity: sha512-QmfRpssBOPZWL5xw7fOuHNifCQcNQC1PrOo/4fu6xlhlKJJKSA3HqX92Nvgyx8fqHZTUGMPHmFA+IDqwXlqkSA==}
  659. peerDependencies:
  660. '@babel/core': ^7.0.0-0
  661. vue: '*'
  662. peerDependenciesMeta:
  663. vue:
  664. optional: true
  665. dependencies:
  666. '@babel/core': 7.26.10
  667. '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
  668. '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.26.10)
  669. '@vue/babel-sugar-composition-api-inject-h': 1.4.0(@babel/core@7.26.10)
  670. '@vue/babel-sugar-composition-api-render-instance': 1.4.0(@babel/core@7.26.10)
  671. '@vue/babel-sugar-functional-vue': 1.4.0(@babel/core@7.26.10)
  672. '@vue/babel-sugar-inject-h': 1.4.0(@babel/core@7.26.10)
  673. '@vue/babel-sugar-v-model': 1.4.0(@babel/core@7.26.10)
  674. '@vue/babel-sugar-v-on': 1.4.0(@babel/core@7.26.10)
  675. vue: 2.7.16
  676. transitivePeerDependencies:
  677. - supports-color
  678. dev: true
  679. /@vue/babel-sugar-composition-api-inject-h@1.4.0(@babel/core@7.26.10):
  680. resolution: {integrity: sha512-VQq6zEddJHctnG4w3TfmlVp5FzDavUSut/DwR0xVoe/mJKXyMcsIibL42wPntozITEoY90aBV0/1d2KjxHU52g==}
  681. peerDependencies:
  682. '@babel/core': ^7.0.0-0
  683. dependencies:
  684. '@babel/core': 7.26.10
  685. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  686. dev: true
  687. /@vue/babel-sugar-composition-api-render-instance@1.4.0(@babel/core@7.26.10):
  688. resolution: {integrity: sha512-6ZDAzcxvy7VcnCjNdHJ59mwK02ZFuP5CnucloidqlZwVQv5CQLijc3lGpR7MD3TWFi78J7+a8J56YxbCtHgT9Q==}
  689. peerDependencies:
  690. '@babel/core': ^7.0.0-0
  691. dependencies:
  692. '@babel/core': 7.26.10
  693. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  694. dev: true
  695. /@vue/babel-sugar-functional-vue@1.4.0(@babel/core@7.26.10):
  696. resolution: {integrity: sha512-lTEB4WUFNzYt2In6JsoF9sAYVTo84wC4e+PoZWSgM6FUtqRJz7wMylaEhSRgG71YF+wfLD6cc9nqVeXN2rwBvw==}
  697. peerDependencies:
  698. '@babel/core': ^7.0.0-0
  699. dependencies:
  700. '@babel/core': 7.26.10
  701. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  702. dev: true
  703. /@vue/babel-sugar-inject-h@1.4.0(@babel/core@7.26.10):
  704. resolution: {integrity: sha512-muwWrPKli77uO2fFM7eA3G1lAGnERuSz2NgAxuOLzrsTlQl8W4G+wwbM4nB6iewlKbwKRae3nL03UaF5ffAPMA==}
  705. peerDependencies:
  706. '@babel/core': ^7.0.0-0
  707. dependencies:
  708. '@babel/core': 7.26.10
  709. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  710. dev: true
  711. /@vue/babel-sugar-v-model@1.4.0(@babel/core@7.26.10):
  712. resolution: {integrity: sha512-0t4HGgXb7WHYLBciZzN5s0Hzqan4Ue+p/3FdQdcaHAb7s5D9WZFGoSxEZHrR1TFVZlAPu1bejTKGeAzaaG3NCQ==}
  713. peerDependencies:
  714. '@babel/core': ^7.0.0-0
  715. dependencies:
  716. '@babel/core': 7.26.10
  717. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  718. '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
  719. '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.26.10)
  720. camelcase: 5.3.1
  721. html-tags: 2.0.0
  722. svg-tags: 1.0.0
  723. transitivePeerDependencies:
  724. - supports-color
  725. dev: true
  726. /@vue/babel-sugar-v-on@1.4.0(@babel/core@7.26.10):
  727. resolution: {integrity: sha512-m+zud4wKLzSKgQrWwhqRObWzmTuyzl6vOP7024lrpeJM4x2UhQtRDLgYjXAw9xBXjCwS0pP9kXjg91F9ZNo9JA==}
  728. peerDependencies:
  729. '@babel/core': ^7.0.0-0
  730. dependencies:
  731. '@babel/core': 7.26.10
  732. '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.10)
  733. '@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.26.10)
  734. camelcase: 5.3.1
  735. transitivePeerDependencies:
  736. - supports-color
  737. dev: true
  738. /@vue/compiler-sfc@2.7.16:
  739. resolution: {integrity: sha512-KWhJ9k5nXuNtygPU7+t1rX6baZeqOYLEforUPjgNDBnLicfHCoi48H87Q8XyLZOrNNsmhuwKqtpDQWjEFe6Ekg==}
  740. dependencies:
  741. '@babel/parser': 7.27.0
  742. postcss: 8.5.3
  743. source-map: 0.6.1
  744. optionalDependencies:
  745. prettier: 2.8.8
  746. /@vue/component-compiler-utils@3.3.0(lodash@4.17.21):
  747. resolution: {integrity: sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==}
  748. dependencies:
  749. consolidate: 0.15.1(lodash@4.17.21)
  750. hash-sum: 1.0.2
  751. lru-cache: 4.1.5
  752. merge-source-map: 1.1.0
  753. postcss: 7.0.39
  754. postcss-selector-parser: 6.1.2
  755. source-map: 0.6.1
  756. vue-template-es2015-compiler: 1.9.1
  757. optionalDependencies:
  758. prettier: 2.8.8
  759. transitivePeerDependencies:
  760. - arc-templates
  761. - atpl
  762. - babel-core
  763. - bracket-template
  764. - coffee-script
  765. - dot
  766. - dust
  767. - dustjs-helpers
  768. - dustjs-linkedin
  769. - eco
  770. - ect
  771. - ejs
  772. - haml-coffee
  773. - hamlet
  774. - hamljs
  775. - handlebars
  776. - hogan.js
  777. - htmling
  778. - jade
  779. - jazz
  780. - jqtpl
  781. - just
  782. - liquid-node
  783. - liquor
  784. - lodash
  785. - marko
  786. - mote
  787. - mustache
  788. - nunjucks
  789. - plates
  790. - pug
  791. - qejs
  792. - ractive
  793. - razor-tmpl
  794. - react
  795. - react-dom
  796. - slm
  797. - squirrelly
  798. - swig
  799. - swig-templates
  800. - teacup
  801. - templayed
  802. - then-jade
  803. - then-pug
  804. - tinyliquid
  805. - toffee
  806. - twig
  807. - twing
  808. - underscore
  809. - vash
  810. - velocityjs
  811. - walrus
  812. - whiskers
  813. dev: true
  814. /adler-32@1.3.1:
  815. resolution: {integrity: sha512-ynZ4w/nUUv5rrsR8UUGoe1VC9hZj6V5hU9Qw1HlMDJGEJw5S7TfTErWTjMys6M7vr0YWcPqs3qAr4ss0nDfP+A==}
  816. engines: {node: '>=0.8'}
  817. dev: false
  818. /ansi-escapes@1.4.0:
  819. resolution: {integrity: sha512-wiXutNjDUlNEDWHcYH3jtZUhd3c4/VojassD8zHdHCY13xbZy2XbW+NKQwA0tWGBVzDA9qEzYwfoSsWmviidhw==}
  820. engines: {node: '>=0.10.0'}
  821. dev: false
  822. /ansi-regex@2.1.1:
  823. resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
  824. engines: {node: '>=0.10.0'}
  825. dev: false
  826. /ansi-regex@3.0.1:
  827. resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
  828. engines: {node: '>=4'}
  829. dev: false
  830. /ansi-regex@5.0.1:
  831. resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
  832. engines: {node: '>=8'}
  833. dev: true
  834. /ansi-styles@2.2.1:
  835. resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
  836. engines: {node: '>=0.10.0'}
  837. dev: false
  838. /ansi-styles@4.3.0:
  839. resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
  840. engines: {node: '>=8'}
  841. dependencies:
  842. color-convert: 2.0.1
  843. dev: true
  844. /archiver-utils@2.1.0:
  845. resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==}
  846. engines: {node: '>= 6'}
  847. dependencies:
  848. glob: 7.2.3
  849. graceful-fs: 4.2.11
  850. lazystream: 1.0.1
  851. lodash.defaults: 4.2.0
  852. lodash.difference: 4.5.0
  853. lodash.flatten: 4.4.0
  854. lodash.isplainobject: 4.0.6
  855. lodash.union: 4.6.0
  856. normalize-path: 3.0.0
  857. readable-stream: 2.3.8
  858. dev: false
  859. /archiver-utils@3.0.4:
  860. resolution: {integrity: sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==}
  861. engines: {node: '>= 10'}
  862. dependencies:
  863. glob: 7.2.3
  864. graceful-fs: 4.2.11
  865. lazystream: 1.0.1
  866. lodash.defaults: 4.2.0
  867. lodash.difference: 4.5.0
  868. lodash.flatten: 4.4.0
  869. lodash.isplainobject: 4.0.6
  870. lodash.union: 4.6.0
  871. normalize-path: 3.0.0
  872. readable-stream: 3.6.2
  873. dev: false
  874. /archiver@5.3.2:
  875. resolution: {integrity: sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==}
  876. engines: {node: '>= 10'}
  877. dependencies:
  878. archiver-utils: 2.1.0
  879. async: 3.2.6
  880. buffer-crc32: 0.2.13
  881. readable-stream: 3.6.2
  882. readdir-glob: 1.1.3
  883. tar-stream: 2.2.0
  884. zip-stream: 4.1.1
  885. dev: false
  886. /argparse@1.0.10:
  887. resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
  888. dependencies:
  889. sprintf-js: 1.0.3
  890. dev: false
  891. /async-validator@1.8.5:
  892. resolution: {integrity: sha512-tXBM+1m056MAX0E8TL2iCjg8WvSyXu0Zc8LNtYqrVeyoL3+esHRZ4SieE9fKQyyU09uONjnMEjrNBMqT0mbvmA==}
  893. dependencies:
  894. babel-runtime: 6.26.0
  895. dev: false
  896. /async@3.2.6:
  897. resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
  898. dev: false
  899. /asynckit@0.4.0:
  900. resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
  901. dev: false
  902. /axios@1.8.4:
  903. resolution: {integrity: sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==}
  904. dependencies:
  905. follow-redirects: 1.15.9
  906. form-data: 4.0.2
  907. proxy-from-env: 1.1.0
  908. transitivePeerDependencies:
  909. - debug
  910. dev: false
  911. /babel-helper-vue-jsx-merge-props@2.0.3:
  912. resolution: {integrity: sha512-gsLiKK7Qrb7zYJNgiXKpXblxbV5ffSwR0f5whkPAaBAR4fhi6bwRZxX9wBlIc5M/v8CCkXUbXZL4N/nSE97cqg==}
  913. dev: false
  914. /babel-polyfill@6.23.0:
  915. resolution: {integrity: sha512-0l7mVU+LrQ2X/ZTUq63T5i3VyR2aTgcRTFmBcD6djQ/Fek6q1A9t5u0F4jZVYHzp78jwWAzGfLpAY1b4/I3lfg==}
  916. dependencies:
  917. babel-runtime: 6.26.0
  918. core-js: 2.6.12
  919. regenerator-runtime: 0.10.5
  920. dev: false
  921. /babel-runtime@6.26.0:
  922. resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
  923. dependencies:
  924. core-js: 2.6.12
  925. regenerator-runtime: 0.11.1
  926. dev: false
  927. /balanced-match@1.0.2:
  928. resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
  929. /base64-arraybuffer@1.0.2:
  930. resolution: {integrity: sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==}
  931. engines: {node: '>= 0.6.0'}
  932. dev: false
  933. /base64-js@1.5.1:
  934. resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
  935. dev: false
  936. /big-integer@1.6.52:
  937. resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
  938. engines: {node: '>=0.6'}
  939. dev: false
  940. /bignumber.js@8.1.1:
  941. resolution: {integrity: sha512-QD46ppGintwPGuL1KqmwhR0O+N2cZUg8JG/VzwI2e28sM9TqHjQB10lI4QAaMHVbLzwVLLAwEglpKPViWX+5NQ==}
  942. dev: false
  943. /binary@0.3.0:
  944. resolution: {integrity: sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==}
  945. dependencies:
  946. buffers: 0.1.1
  947. chainsaw: 0.1.0
  948. dev: false
  949. /bl@4.1.0:
  950. resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
  951. dependencies:
  952. buffer: 5.7.1
  953. inherits: 2.0.4
  954. readable-stream: 3.6.2
  955. dev: false
  956. /bluebird@3.4.7:
  957. resolution: {integrity: sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==}
  958. dev: false
  959. /bluebird@3.7.2:
  960. resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
  961. dev: true
  962. /bmaplib.curveline@1.0.0:
  963. resolution: {integrity: sha512-9wcFMVhiYxNPqpvsLDAADn3qDhNzXp2mA6VyHSHg2XOAgSooC7ZiujdFhy0sp+0QYjTfJ/MjmLuNoUg2HHxH4Q==}
  964. dev: false
  965. /bmaplib.heatmap@1.0.4:
  966. resolution: {integrity: sha512-rmhqUARBpUSJ9jXzUI2j7dIOqnc38bqubkx/8a349U2qtw/ulLUwyzRD535OrA8G7w5cz4aPKm6/rNvUAarg/Q==}
  967. dev: false
  968. /bmaplib.lushu@1.0.7:
  969. resolution: {integrity: sha512-LVvgpESPii6xGxyjnQjq8u+ic4NjvhdCPV/RiSS/PGTUdZKeTDS7prSpleJLZH3ES0+oc0gYn8bw0LtPYUSz2w==}
  970. dev: false
  971. /bmaplib.markerclusterer@1.0.13:
  972. resolution: {integrity: sha512-VrLyWSiuDEVNi0yUfwOhFQ6z1oEEHS4w36GNu3iASu6p52QIx9uAXMUkuSCHReNR0bj2Cp9SA1dSx5RpojXajQ==}
  973. dependencies:
  974. bmaplib.texticonoverlay: 1.0.2
  975. dev: false
  976. /bmaplib.texticonoverlay@1.0.2:
  977. resolution: {integrity: sha512-4ZTWr4ZP3B6qEWput5Tut16CfZgII38YwM3bpyb4gFTQyORlKYryFp9WHWrwZZaHlOyYDAXG9SX0hka43jTADg==}
  978. dev: false
  979. /brace-expansion@1.1.11:
  980. resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
  981. dependencies:
  982. balanced-match: 1.0.2
  983. concat-map: 0.0.1
  984. /brace-expansion@2.0.1:
  985. resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
  986. dependencies:
  987. balanced-match: 1.0.2
  988. dev: false
  989. /browserslist@4.24.4:
  990. resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
  991. engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
  992. hasBin: true
  993. dependencies:
  994. caniuse-lite: 1.0.30001715
  995. electron-to-chromium: 1.5.139
  996. node-releases: 2.0.19
  997. update-browserslist-db: 1.1.3(browserslist@4.24.4)
  998. dev: true
  999. /buffer-crc32@0.2.13:
  1000. resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
  1001. dev: false
  1002. /buffer-indexof-polyfill@1.0.2:
  1003. resolution: {integrity: sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==}
  1004. engines: {node: '>=0.10'}
  1005. dev: false
  1006. /buffer@5.7.1:
  1007. resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
  1008. dependencies:
  1009. base64-js: 1.5.1
  1010. ieee754: 1.2.1
  1011. dev: false
  1012. /buffers@0.1.1:
  1013. resolution: {integrity: sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==}
  1014. engines: {node: '>=0.2.0'}
  1015. dev: false
  1016. /call-bind-apply-helpers@1.0.2:
  1017. resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
  1018. engines: {node: '>= 0.4'}
  1019. dependencies:
  1020. es-errors: 1.3.0
  1021. function-bind: 1.1.2
  1022. dev: false
  1023. /camelcase@5.3.1:
  1024. resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==}
  1025. engines: {node: '>=6'}
  1026. dev: true
  1027. /caniuse-lite@1.0.30001715:
  1028. resolution: {integrity: sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw==}
  1029. dev: true
  1030. /cfb@1.2.2:
  1031. resolution: {integrity: sha512-KfdUZsSOw19/ObEWasvBP/Ac4reZvAGauZhs6S/gqNhXhI7cKwvlH7ulj+dOEYnca4bm4SGo8C1bTAQvnTjgQA==}
  1032. engines: {node: '>=0.8'}
  1033. dependencies:
  1034. adler-32: 1.3.1
  1035. crc-32: 1.2.2
  1036. dev: false
  1037. /chainsaw@0.1.0:
  1038. resolution: {integrity: sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==}
  1039. dependencies:
  1040. traverse: 0.3.9
  1041. dev: false
  1042. /chalk@1.1.3:
  1043. resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
  1044. engines: {node: '>=0.10.0'}
  1045. dependencies:
  1046. ansi-styles: 2.2.1
  1047. escape-string-regexp: 1.0.5
  1048. has-ansi: 2.0.0
  1049. strip-ansi: 3.0.1
  1050. supports-color: 2.0.0
  1051. dev: false
  1052. /chalk@4.1.2:
  1053. resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
  1054. engines: {node: '>=10'}
  1055. dependencies:
  1056. ansi-styles: 4.3.0
  1057. supports-color: 7.2.0
  1058. dev: true
  1059. /chardet@0.4.2:
  1060. resolution: {integrity: sha512-j/Toj7f1z98Hh2cYo2BVr85EpIRWqUi7rtRSGxh/cqUjqrnJe9l9UE7IUGd2vQ2p+kSHLkSzObQPZPLUC6TQwg==}
  1061. dev: false
  1062. /chevrotain@6.5.0:
  1063. resolution: {integrity: sha512-BwqQ/AgmKJ8jcMEjaSnfMybnKMgGTrtDKowfTP3pX4jwVy0kNjRsT/AP6h+wC3+3NC+X8X15VWBnTCQlX+wQFg==}
  1064. requiresBuild: true
  1065. dependencies:
  1066. regexp-to-ast: 0.4.0
  1067. dev: false
  1068. optional: true
  1069. /cli-cursor@2.1.0:
  1070. resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
  1071. engines: {node: '>=4'}
  1072. dependencies:
  1073. restore-cursor: 2.0.0
  1074. dev: false
  1075. /cli-width@2.2.1:
  1076. resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==}
  1077. dev: false
  1078. /codepage@1.15.0:
  1079. resolution: {integrity: sha512-3g6NUTPd/YtuuGrhMnOMRjFc+LJw/bnMp3+0r/Wcz3IXUuCosKRJvMphm5+Q+bvTVGcJJuRvVLuYba+WojaFaA==}
  1080. engines: {node: '>=0.8'}
  1081. dev: false
  1082. /color-convert@2.0.1:
  1083. resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
  1084. engines: {node: '>=7.0.0'}
  1085. dependencies:
  1086. color-name: 1.1.4
  1087. dev: true
  1088. /color-name@1.1.4:
  1089. resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
  1090. dev: true
  1091. /combined-stream@1.0.8:
  1092. resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
  1093. engines: {node: '>= 0.8'}
  1094. dependencies:
  1095. delayed-stream: 1.0.0
  1096. dev: false
  1097. /compress-commons@4.1.2:
  1098. resolution: {integrity: sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==}
  1099. engines: {node: '>= 10'}
  1100. dependencies:
  1101. buffer-crc32: 0.2.13
  1102. crc32-stream: 4.0.3
  1103. normalize-path: 3.0.0
  1104. readable-stream: 3.6.2
  1105. dev: false
  1106. /concat-map@0.0.1:
  1107. resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
  1108. /consolidate@0.15.1(lodash@4.17.21):
  1109. resolution: {integrity: sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==}
  1110. engines: {node: '>= 0.10.0'}
  1111. deprecated: Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog
  1112. peerDependencies:
  1113. arc-templates: ^0.5.3
  1114. atpl: '>=0.7.6'
  1115. babel-core: ^6.26.3
  1116. bracket-template: ^1.1.5
  1117. coffee-script: ^1.12.7
  1118. dot: ^1.1.3
  1119. dust: ^0.3.0
  1120. dustjs-helpers: ^1.7.4
  1121. dustjs-linkedin: ^2.7.5
  1122. eco: ^1.1.0-rc-3
  1123. ect: ^0.5.9
  1124. ejs: ^3.1.5
  1125. haml-coffee: ^1.14.1
  1126. hamlet: ^0.3.3
  1127. hamljs: ^0.6.2
  1128. handlebars: ^4.7.6
  1129. hogan.js: ^3.0.2
  1130. htmling: ^0.0.8
  1131. jade: ^1.11.0
  1132. jazz: ^0.0.18
  1133. jqtpl: ~1.1.0
  1134. just: ^0.1.8
  1135. liquid-node: ^3.0.1
  1136. liquor: ^0.0.5
  1137. lodash: ^4.17.20
  1138. marko: ^3.14.4
  1139. mote: ^0.2.0
  1140. mustache: ^3.0.0
  1141. nunjucks: ^3.2.2
  1142. plates: ~0.4.11
  1143. pug: ^3.0.0
  1144. qejs: ^3.0.5
  1145. ractive: ^1.3.12
  1146. razor-tmpl: ^1.3.1
  1147. react: ^16.13.1
  1148. react-dom: ^16.13.1
  1149. slm: ^2.0.0
  1150. squirrelly: ^5.1.0
  1151. swig: ^1.4.2
  1152. swig-templates: ^2.0.3
  1153. teacup: ^2.0.0
  1154. templayed: '>=0.2.3'
  1155. then-jade: '*'
  1156. then-pug: '*'
  1157. tinyliquid: ^0.2.34
  1158. toffee: ^0.3.6
  1159. twig: ^1.15.2
  1160. twing: ^5.0.2
  1161. underscore: ^1.11.0
  1162. vash: ^0.13.0
  1163. velocityjs: ^2.0.1
  1164. walrus: ^0.10.1
  1165. whiskers: ^0.4.0
  1166. peerDependenciesMeta:
  1167. arc-templates:
  1168. optional: true
  1169. atpl:
  1170. optional: true
  1171. babel-core:
  1172. optional: true
  1173. bracket-template:
  1174. optional: true
  1175. coffee-script:
  1176. optional: true
  1177. dot:
  1178. optional: true
  1179. dust:
  1180. optional: true
  1181. dustjs-helpers:
  1182. optional: true
  1183. dustjs-linkedin:
  1184. optional: true
  1185. eco:
  1186. optional: true
  1187. ect:
  1188. optional: true
  1189. ejs:
  1190. optional: true
  1191. haml-coffee:
  1192. optional: true
  1193. hamlet:
  1194. optional: true
  1195. hamljs:
  1196. optional: true
  1197. handlebars:
  1198. optional: true
  1199. hogan.js:
  1200. optional: true
  1201. htmling:
  1202. optional: true
  1203. jade:
  1204. optional: true
  1205. jazz:
  1206. optional: true
  1207. jqtpl:
  1208. optional: true
  1209. just:
  1210. optional: true
  1211. liquid-node:
  1212. optional: true
  1213. liquor:
  1214. optional: true
  1215. lodash:
  1216. optional: true
  1217. marko:
  1218. optional: true
  1219. mote:
  1220. optional: true
  1221. mustache:
  1222. optional: true
  1223. nunjucks:
  1224. optional: true
  1225. plates:
  1226. optional: true
  1227. pug:
  1228. optional: true
  1229. qejs:
  1230. optional: true
  1231. ractive:
  1232. optional: true
  1233. razor-tmpl:
  1234. optional: true
  1235. react:
  1236. optional: true
  1237. react-dom:
  1238. optional: true
  1239. slm:
  1240. optional: true
  1241. squirrelly:
  1242. optional: true
  1243. swig:
  1244. optional: true
  1245. swig-templates:
  1246. optional: true
  1247. teacup:
  1248. optional: true
  1249. templayed:
  1250. optional: true
  1251. then-jade:
  1252. optional: true
  1253. then-pug:
  1254. optional: true
  1255. tinyliquid:
  1256. optional: true
  1257. toffee:
  1258. optional: true
  1259. twig:
  1260. optional: true
  1261. twing:
  1262. optional: true
  1263. underscore:
  1264. optional: true
  1265. vash:
  1266. optional: true
  1267. velocityjs:
  1268. optional: true
  1269. walrus:
  1270. optional: true
  1271. whiskers:
  1272. optional: true
  1273. dependencies:
  1274. bluebird: 3.7.2
  1275. lodash: 4.17.21
  1276. dev: true
  1277. /consolidate@0.16.0(lodash@4.17.21):
  1278. resolution: {integrity: sha512-Nhl1wzCslqXYTJVDyJCu3ODohy9OfBMB5uD2BiBTzd7w+QY0lBzafkR8y8755yMYHAaMD4NuzbAw03/xzfw+eQ==}
  1279. engines: {node: '>= 0.10.0'}
  1280. deprecated: Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog
  1281. peerDependencies:
  1282. arc-templates: ^0.5.3
  1283. atpl: '>=0.7.6'
  1284. babel-core: ^6.26.3
  1285. bracket-template: ^1.1.5
  1286. coffee-script: ^1.12.7
  1287. dot: ^1.1.3
  1288. dust: ^0.3.0
  1289. dustjs-helpers: ^1.7.4
  1290. dustjs-linkedin: ^2.7.5
  1291. eco: ^1.1.0-rc-3
  1292. ect: ^0.5.9
  1293. ejs: ^3.1.5
  1294. haml-coffee: ^1.14.1
  1295. hamlet: ^0.3.3
  1296. hamljs: ^0.6.2
  1297. handlebars: ^4.7.6
  1298. hogan.js: ^3.0.2
  1299. htmling: ^0.0.8
  1300. jade: ^1.11.0
  1301. jazz: ^0.0.18
  1302. jqtpl: ~1.1.0
  1303. just: ^0.1.8
  1304. liquid-node: ^3.0.1
  1305. liquor: ^0.0.5
  1306. lodash: ^4.17.20
  1307. marko: ^3.14.4
  1308. mote: ^0.2.0
  1309. mustache: ^4.0.1
  1310. nunjucks: ^3.2.2
  1311. plates: ~0.4.11
  1312. pug: ^3.0.0
  1313. qejs: ^3.0.5
  1314. ractive: ^1.3.12
  1315. razor-tmpl: ^1.3.1
  1316. react: ^16.13.1
  1317. react-dom: ^16.13.1
  1318. slm: ^2.0.0
  1319. squirrelly: ^5.1.0
  1320. swig: ^1.4.2
  1321. swig-templates: ^2.0.3
  1322. teacup: ^2.0.0
  1323. templayed: '>=0.2.3'
  1324. then-jade: '*'
  1325. then-pug: '*'
  1326. tinyliquid: ^0.2.34
  1327. toffee: ^0.3.6
  1328. twig: ^1.15.2
  1329. twing: ^5.0.2
  1330. underscore: ^1.11.0
  1331. vash: ^0.13.0
  1332. velocityjs: ^2.0.1
  1333. walrus: ^0.10.1
  1334. whiskers: ^0.4.0
  1335. peerDependenciesMeta:
  1336. arc-templates:
  1337. optional: true
  1338. atpl:
  1339. optional: true
  1340. babel-core:
  1341. optional: true
  1342. bracket-template:
  1343. optional: true
  1344. coffee-script:
  1345. optional: true
  1346. dot:
  1347. optional: true
  1348. dust:
  1349. optional: true
  1350. dustjs-helpers:
  1351. optional: true
  1352. dustjs-linkedin:
  1353. optional: true
  1354. eco:
  1355. optional: true
  1356. ect:
  1357. optional: true
  1358. ejs:
  1359. optional: true
  1360. haml-coffee:
  1361. optional: true
  1362. hamlet:
  1363. optional: true
  1364. hamljs:
  1365. optional: true
  1366. handlebars:
  1367. optional: true
  1368. hogan.js:
  1369. optional: true
  1370. htmling:
  1371. optional: true
  1372. jade:
  1373. optional: true
  1374. jazz:
  1375. optional: true
  1376. jqtpl:
  1377. optional: true
  1378. just:
  1379. optional: true
  1380. liquid-node:
  1381. optional: true
  1382. liquor:
  1383. optional: true
  1384. lodash:
  1385. optional: true
  1386. marko:
  1387. optional: true
  1388. mote:
  1389. optional: true
  1390. mustache:
  1391. optional: true
  1392. nunjucks:
  1393. optional: true
  1394. plates:
  1395. optional: true
  1396. pug:
  1397. optional: true
  1398. qejs:
  1399. optional: true
  1400. ractive:
  1401. optional: true
  1402. razor-tmpl:
  1403. optional: true
  1404. react:
  1405. optional: true
  1406. react-dom:
  1407. optional: true
  1408. slm:
  1409. optional: true
  1410. squirrelly:
  1411. optional: true
  1412. swig:
  1413. optional: true
  1414. swig-templates:
  1415. optional: true
  1416. teacup:
  1417. optional: true
  1418. templayed:
  1419. optional: true
  1420. then-jade:
  1421. optional: true
  1422. then-pug:
  1423. optional: true
  1424. tinyliquid:
  1425. optional: true
  1426. toffee:
  1427. optional: true
  1428. twig:
  1429. optional: true
  1430. twing:
  1431. optional: true
  1432. underscore:
  1433. optional: true
  1434. vash:
  1435. optional: true
  1436. velocityjs:
  1437. optional: true
  1438. walrus:
  1439. optional: true
  1440. whiskers:
  1441. optional: true
  1442. dependencies:
  1443. bluebird: 3.7.2
  1444. lodash: 4.17.21
  1445. dev: true
  1446. /convert-source-map@2.0.0:
  1447. resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
  1448. dev: true
  1449. /copy-anything@2.0.6:
  1450. resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
  1451. dependencies:
  1452. is-what: 3.14.1
  1453. dev: true
  1454. /core-js@2.6.12:
  1455. resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
  1456. deprecated: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.
  1457. requiresBuild: true
  1458. dev: false
  1459. /core-js@3.41.0:
  1460. resolution: {integrity: sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==}
  1461. requiresBuild: true
  1462. dev: false
  1463. /core-util-is@1.0.3:
  1464. resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
  1465. dev: false
  1466. /crc-32@1.2.2:
  1467. resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==}
  1468. engines: {node: '>=0.8'}
  1469. hasBin: true
  1470. dev: false
  1471. /crc32-stream@4.0.3:
  1472. resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==}
  1473. engines: {node: '>= 10'}
  1474. dependencies:
  1475. crc-32: 1.2.2
  1476. readable-stream: 3.6.2
  1477. dev: false
  1478. /css-line-break@2.1.0:
  1479. resolution: {integrity: sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==}
  1480. dependencies:
  1481. utrie: 1.0.2
  1482. dev: false
  1483. /cssesc@3.0.0:
  1484. resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
  1485. engines: {node: '>=4'}
  1486. hasBin: true
  1487. dev: true
  1488. /csstype@3.1.3:
  1489. resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
  1490. /dayjs@1.11.13:
  1491. resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
  1492. dev: false
  1493. /de-indent@1.0.2:
  1494. resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
  1495. dev: true
  1496. /debug@4.4.0:
  1497. resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
  1498. engines: {node: '>=6.0'}
  1499. peerDependencies:
  1500. supports-color: '*'
  1501. peerDependenciesMeta:
  1502. supports-color:
  1503. optional: true
  1504. dependencies:
  1505. ms: 2.1.3
  1506. dev: true
  1507. /deepmerge@1.5.2:
  1508. resolution: {integrity: sha512-95k0GDqvBjZavkuvzx/YqVLv/6YYa17fz6ILMSf7neqQITCPbnfEnQvEgMPNjH4kgobe7+WIL0yJEHku+H3qtQ==}
  1509. engines: {node: '>=0.10.0'}
  1510. dev: false
  1511. /deepmerge@4.3.1:
  1512. resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
  1513. engines: {node: '>=0.10.0'}
  1514. dev: true
  1515. /delayed-stream@1.0.0:
  1516. resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
  1517. engines: {node: '>=0.4.0'}
  1518. dev: false
  1519. /diff-sequences@26.6.2:
  1520. resolution: {integrity: sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==}
  1521. engines: {node: '>= 10.14.2'}
  1522. dev: true
  1523. /docx-preview@0.3.5:
  1524. resolution: {integrity: sha512-nod1jG5PkvzDIiZAcgAY4gSFQzgmAAChcuZH4Hj9dj7oCzscY3Hn8NfbUv7X7Jk4xL1lfKO113JLDhWKOt6fYw==}
  1525. dependencies:
  1526. jszip: 3.10.1
  1527. dev: false
  1528. /dompurify@2.5.8:
  1529. resolution: {integrity: sha512-o1vSNgrmYMQObbSSvF/1brBYEQPHhV1+gsmrusO7/GXtp1T9rCS8cXFqVxK/9crT1jA6Ccv+5MTSjBNqr7Sovw==}
  1530. dev: false
  1531. /dunder-proto@1.0.1:
  1532. resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
  1533. engines: {node: '>= 0.4'}
  1534. dependencies:
  1535. call-bind-apply-helpers: 1.0.2
  1536. es-errors: 1.3.0
  1537. gopd: 1.2.0
  1538. dev: false
  1539. /duplexer2@0.1.4:
  1540. resolution: {integrity: sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==}
  1541. dependencies:
  1542. readable-stream: 2.3.8
  1543. dev: false
  1544. /easings-css@1.0.0:
  1545. resolution: {integrity: sha512-7Uq7NdazNfVtr0RNmPAys8it0zKCuaqxJStYKEl72D3j4gbvXhhaM7iWNbqhA4C94ygCye6VuyhzBRQC4szeBg==}
  1546. dev: false
  1547. /electron-to-chromium@1.5.139:
  1548. resolution: {integrity: sha512-GGnRYOTdN5LYpwbIr0rwP/ZHOQSvAF6TG0LSzp28uCBb9JiXHJGmaaKw29qjNJc5bGnnp6kXJqRnGMQoELwi5w==}
  1549. dev: true
  1550. /element-ui@2.15.14(vue@2.6.11):
  1551. resolution: {integrity: sha512-2v9fHL0ZGINotOlRIAJD5YuVB8V7WKxrE9Qy7dXhRipa035+kF7WuU/z+tEmLVPBcJ0zt8mOu1DKpWcVzBK8IA==}
  1552. peerDependencies:
  1553. vue: ^2.5.17
  1554. dependencies:
  1555. async-validator: 1.8.5
  1556. babel-helper-vue-jsx-merge-props: 2.0.3
  1557. deepmerge: 1.5.2
  1558. normalize-wheel: 1.0.1
  1559. resize-observer-polyfill: 1.5.1
  1560. throttle-debounce: 1.1.0
  1561. vue: 2.6.11
  1562. dev: false
  1563. /element-ui@2.15.14(vue@2.7.16):
  1564. resolution: {integrity: sha512-2v9fHL0ZGINotOlRIAJD5YuVB8V7WKxrE9Qy7dXhRipa035+kF7WuU/z+tEmLVPBcJ0zt8mOu1DKpWcVzBK8IA==}
  1565. peerDependencies:
  1566. vue: ^2.5.17
  1567. dependencies:
  1568. async-validator: 1.8.5
  1569. babel-helper-vue-jsx-merge-props: 2.0.3
  1570. deepmerge: 1.5.2
  1571. normalize-wheel: 1.0.1
  1572. resize-observer-polyfill: 1.5.1
  1573. throttle-debounce: 1.1.0
  1574. vue: 2.7.16
  1575. dev: false
  1576. /encoding@0.1.13:
  1577. resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
  1578. dependencies:
  1579. iconv-lite: 0.6.3
  1580. dev: false
  1581. /end-of-stream@1.4.4:
  1582. resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
  1583. dependencies:
  1584. once: 1.4.0
  1585. dev: false
  1586. /entities@1.1.2:
  1587. resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==}
  1588. dev: false
  1589. /errno@0.1.8:
  1590. resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
  1591. hasBin: true
  1592. requiresBuild: true
  1593. dependencies:
  1594. prr: 1.0.1
  1595. dev: true
  1596. optional: true
  1597. /es-define-property@1.0.1:
  1598. resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
  1599. engines: {node: '>= 0.4'}
  1600. dev: false
  1601. /es-errors@1.3.0:
  1602. resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
  1603. engines: {node: '>= 0.4'}
  1604. dev: false
  1605. /es-object-atoms@1.1.1:
  1606. resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
  1607. engines: {node: '>= 0.4'}
  1608. dependencies:
  1609. es-errors: 1.3.0
  1610. dev: false
  1611. /es-set-tostringtag@2.1.0:
  1612. resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
  1613. engines: {node: '>= 0.4'}
  1614. dependencies:
  1615. es-errors: 1.3.0
  1616. get-intrinsic: 1.3.0
  1617. has-tostringtag: 1.0.2
  1618. hasown: 2.0.2
  1619. dev: false
  1620. /esbuild-android-64@0.14.54:
  1621. resolution: {integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ==}
  1622. engines: {node: '>=12'}
  1623. cpu: [x64]
  1624. os: [android]
  1625. requiresBuild: true
  1626. dev: true
  1627. optional: true
  1628. /esbuild-android-arm64@0.14.54:
  1629. resolution: {integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg==}
  1630. engines: {node: '>=12'}
  1631. cpu: [arm64]
  1632. os: [android]
  1633. requiresBuild: true
  1634. dev: true
  1635. optional: true
  1636. /esbuild-darwin-64@0.14.54:
  1637. resolution: {integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug==}
  1638. engines: {node: '>=12'}
  1639. cpu: [x64]
  1640. os: [darwin]
  1641. requiresBuild: true
  1642. dev: true
  1643. optional: true
  1644. /esbuild-darwin-arm64@0.14.54:
  1645. resolution: {integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw==}
  1646. engines: {node: '>=12'}
  1647. cpu: [arm64]
  1648. os: [darwin]
  1649. requiresBuild: true
  1650. dev: true
  1651. optional: true
  1652. /esbuild-freebsd-64@0.14.54:
  1653. resolution: {integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg==}
  1654. engines: {node: '>=12'}
  1655. cpu: [x64]
  1656. os: [freebsd]
  1657. requiresBuild: true
  1658. dev: true
  1659. optional: true
  1660. /esbuild-freebsd-arm64@0.14.54:
  1661. resolution: {integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q==}
  1662. engines: {node: '>=12'}
  1663. cpu: [arm64]
  1664. os: [freebsd]
  1665. requiresBuild: true
  1666. dev: true
  1667. optional: true
  1668. /esbuild-linux-32@0.14.54:
  1669. resolution: {integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw==}
  1670. engines: {node: '>=12'}
  1671. cpu: [ia32]
  1672. os: [linux]
  1673. requiresBuild: true
  1674. dev: true
  1675. optional: true
  1676. /esbuild-linux-64@0.14.54:
  1677. resolution: {integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg==}
  1678. engines: {node: '>=12'}
  1679. cpu: [x64]
  1680. os: [linux]
  1681. requiresBuild: true
  1682. dev: true
  1683. optional: true
  1684. /esbuild-linux-arm64@0.14.54:
  1685. resolution: {integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig==}
  1686. engines: {node: '>=12'}
  1687. cpu: [arm64]
  1688. os: [linux]
  1689. requiresBuild: true
  1690. dev: true
  1691. optional: true
  1692. /esbuild-linux-arm@0.14.54:
  1693. resolution: {integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw==}
  1694. engines: {node: '>=12'}
  1695. cpu: [arm]
  1696. os: [linux]
  1697. requiresBuild: true
  1698. dev: true
  1699. optional: true
  1700. /esbuild-linux-mips64le@0.14.54:
  1701. resolution: {integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw==}
  1702. engines: {node: '>=12'}
  1703. cpu: [mips64el]
  1704. os: [linux]
  1705. requiresBuild: true
  1706. dev: true
  1707. optional: true
  1708. /esbuild-linux-ppc64le@0.14.54:
  1709. resolution: {integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ==}
  1710. engines: {node: '>=12'}
  1711. cpu: [ppc64]
  1712. os: [linux]
  1713. requiresBuild: true
  1714. dev: true
  1715. optional: true
  1716. /esbuild-linux-riscv64@0.14.54:
  1717. resolution: {integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg==}
  1718. engines: {node: '>=12'}
  1719. cpu: [riscv64]
  1720. os: [linux]
  1721. requiresBuild: true
  1722. dev: true
  1723. optional: true
  1724. /esbuild-linux-s390x@0.14.54:
  1725. resolution: {integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA==}
  1726. engines: {node: '>=12'}
  1727. cpu: [s390x]
  1728. os: [linux]
  1729. requiresBuild: true
  1730. dev: true
  1731. optional: true
  1732. /esbuild-netbsd-64@0.14.54:
  1733. resolution: {integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w==}
  1734. engines: {node: '>=12'}
  1735. cpu: [x64]
  1736. os: [netbsd]
  1737. requiresBuild: true
  1738. dev: true
  1739. optional: true
  1740. /esbuild-openbsd-64@0.14.54:
  1741. resolution: {integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw==}
  1742. engines: {node: '>=12'}
  1743. cpu: [x64]
  1744. os: [openbsd]
  1745. requiresBuild: true
  1746. dev: true
  1747. optional: true
  1748. /esbuild-sunos-64@0.14.54:
  1749. resolution: {integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw==}
  1750. engines: {node: '>=12'}
  1751. cpu: [x64]
  1752. os: [sunos]
  1753. requiresBuild: true
  1754. dev: true
  1755. optional: true
  1756. /esbuild-windows-32@0.14.54:
  1757. resolution: {integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w==}
  1758. engines: {node: '>=12'}
  1759. cpu: [ia32]
  1760. os: [win32]
  1761. requiresBuild: true
  1762. dev: true
  1763. optional: true
  1764. /esbuild-windows-64@0.14.54:
  1765. resolution: {integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ==}
  1766. engines: {node: '>=12'}
  1767. cpu: [x64]
  1768. os: [win32]
  1769. requiresBuild: true
  1770. dev: true
  1771. optional: true
  1772. /esbuild-windows-arm64@0.14.54:
  1773. resolution: {integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg==}
  1774. engines: {node: '>=12'}
  1775. cpu: [arm64]
  1776. os: [win32]
  1777. requiresBuild: true
  1778. dev: true
  1779. optional: true
  1780. /esbuild@0.14.54:
  1781. resolution: {integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA==}
  1782. engines: {node: '>=12'}
  1783. hasBin: true
  1784. requiresBuild: true
  1785. optionalDependencies:
  1786. '@esbuild/linux-loong64': 0.14.54
  1787. esbuild-android-64: 0.14.54
  1788. esbuild-android-arm64: 0.14.54
  1789. esbuild-darwin-64: 0.14.54
  1790. esbuild-darwin-arm64: 0.14.54
  1791. esbuild-freebsd-64: 0.14.54
  1792. esbuild-freebsd-arm64: 0.14.54
  1793. esbuild-linux-32: 0.14.54
  1794. esbuild-linux-64: 0.14.54
  1795. esbuild-linux-arm: 0.14.54
  1796. esbuild-linux-arm64: 0.14.54
  1797. esbuild-linux-mips64le: 0.14.54
  1798. esbuild-linux-ppc64le: 0.14.54
  1799. esbuild-linux-riscv64: 0.14.54
  1800. esbuild-linux-s390x: 0.14.54
  1801. esbuild-netbsd-64: 0.14.54
  1802. esbuild-openbsd-64: 0.14.54
  1803. esbuild-sunos-64: 0.14.54
  1804. esbuild-windows-32: 0.14.54
  1805. esbuild-windows-64: 0.14.54
  1806. esbuild-windows-arm64: 0.14.54
  1807. dev: true
  1808. /escalade@3.2.0:
  1809. resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
  1810. engines: {node: '>=6'}
  1811. dev: true
  1812. /escape-string-regexp@1.0.5:
  1813. resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
  1814. engines: {node: '>=0.8.0'}
  1815. dev: false
  1816. /estree-walker@2.0.2:
  1817. resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
  1818. dev: true
  1819. /exceljs@4.4.0:
  1820. resolution: {integrity: sha512-XctvKaEMaj1Ii9oDOqbW/6e1gXknSY4g/aLCDicOXqBE4M0nRWkUu0PTp++UPNzoFY12BNHMfs/VadKIS6llvg==}
  1821. engines: {node: '>=8.3.0'}
  1822. dependencies:
  1823. archiver: 5.3.2
  1824. dayjs: 1.11.13
  1825. fast-csv: 4.3.6
  1826. jszip: 3.10.1
  1827. readable-stream: 3.6.2
  1828. saxes: 5.0.1
  1829. tmp: 0.2.3
  1830. unzipper: 0.10.14
  1831. uuid: 8.3.2
  1832. dev: false
  1833. /external-editor@2.2.0:
  1834. resolution: {integrity: sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==}
  1835. engines: {node: '>=0.12'}
  1836. dependencies:
  1837. chardet: 0.4.2
  1838. iconv-lite: 0.4.24
  1839. tmp: 0.0.33
  1840. dev: false
  1841. /fast-csv@4.3.6:
  1842. resolution: {integrity: sha512-2RNSpuwwsJGP0frGsOmTb9oUF+VkFSM4SyLTDgwf2ciHWTarN0lQTC+F2f/t5J9QjW+c65VFIAAu85GsvMIusw==}
  1843. engines: {node: '>=10.0.0'}
  1844. dependencies:
  1845. '@fast-csv/format': 4.3.5
  1846. '@fast-csv/parse': 4.3.6
  1847. dev: false
  1848. /figures@2.0.0:
  1849. resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==}
  1850. engines: {node: '>=4'}
  1851. dependencies:
  1852. escape-string-regexp: 1.0.5
  1853. dev: false
  1854. /file-saver@2.0.5:
  1855. resolution: {integrity: sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA==}
  1856. dev: false
  1857. /follow-redirects@1.15.9:
  1858. resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
  1859. engines: {node: '>=4.0'}
  1860. peerDependencies:
  1861. debug: '*'
  1862. peerDependenciesMeta:
  1863. debug:
  1864. optional: true
  1865. dev: false
  1866. /form-data@4.0.2:
  1867. resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
  1868. engines: {node: '>= 6'}
  1869. dependencies:
  1870. asynckit: 0.4.0
  1871. combined-stream: 1.0.8
  1872. es-set-tostringtag: 2.1.0
  1873. mime-types: 2.1.35
  1874. dev: false
  1875. /frac@1.1.2:
  1876. resolution: {integrity: sha512-w/XBfkibaTl3YDqASwfDUqkna4Z2p9cFSr1aHDt0WoMTECnRfBOv2WArlZILlqgWlmdIlALXGpM2AOhEk5W3IA==}
  1877. engines: {node: '>=0.8'}
  1878. dev: false
  1879. /fs-constants@1.0.0:
  1880. resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==}
  1881. dev: false
  1882. /fs-extra@10.1.0:
  1883. resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
  1884. engines: {node: '>=12'}
  1885. dependencies:
  1886. graceful-fs: 4.2.11
  1887. jsonfile: 6.1.0
  1888. universalify: 2.0.1
  1889. dev: true
  1890. /fs.realpath@1.0.0:
  1891. resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
  1892. dev: false
  1893. /fsevents@2.3.3:
  1894. resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
  1895. engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
  1896. os: [darwin]
  1897. requiresBuild: true
  1898. dev: true
  1899. optional: true
  1900. /fstream@1.0.12:
  1901. resolution: {integrity: sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==}
  1902. engines: {node: '>=0.6'}
  1903. deprecated: This package is no longer supported.
  1904. dependencies:
  1905. graceful-fs: 4.2.11
  1906. inherits: 2.0.4
  1907. mkdirp: 0.5.6
  1908. rimraf: 2.7.1
  1909. dev: false
  1910. /function-bind@1.1.2:
  1911. resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
  1912. /fuzzysearch@1.0.3:
  1913. resolution: {integrity: sha512-s+kNWQuI3mo9OALw0HJ6YGmMbLqEufCh2nX/zzV5CrICQ/y4AwPxM+6TIiF9ItFCHXFCyM/BfCCmN57NTIJuPg==}
  1914. dev: false
  1915. /gensync@1.0.0-beta.2:
  1916. resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
  1917. engines: {node: '>=6.9.0'}
  1918. dev: true
  1919. /get-intrinsic@1.3.0:
  1920. resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
  1921. engines: {node: '>= 0.4'}
  1922. dependencies:
  1923. call-bind-apply-helpers: 1.0.2
  1924. es-define-property: 1.0.1
  1925. es-errors: 1.3.0
  1926. es-object-atoms: 1.1.1
  1927. function-bind: 1.1.2
  1928. get-proto: 1.0.1
  1929. gopd: 1.2.0
  1930. has-symbols: 1.1.0
  1931. hasown: 2.0.2
  1932. math-intrinsics: 1.1.0
  1933. dev: false
  1934. /get-proto@1.0.1:
  1935. resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
  1936. engines: {node: '>= 0.4'}
  1937. dependencies:
  1938. dunder-proto: 1.0.1
  1939. es-object-atoms: 1.1.1
  1940. dev: false
  1941. /glob@7.2.3:
  1942. resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
  1943. deprecated: Glob versions prior to v9 are no longer supported
  1944. dependencies:
  1945. fs.realpath: 1.0.0
  1946. inflight: 1.0.6
  1947. inherits: 2.0.4
  1948. minimatch: 3.1.2
  1949. once: 1.4.0
  1950. path-is-absolute: 1.0.1
  1951. dev: false
  1952. /globals@11.12.0:
  1953. resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
  1954. engines: {node: '>=4'}
  1955. dev: true
  1956. /gopd@1.2.0:
  1957. resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
  1958. engines: {node: '>= 0.4'}
  1959. dev: false
  1960. /graceful-fs@4.2.11:
  1961. resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
  1962. /handsontable@11.1.0:
  1963. resolution: {integrity: sha512-Ph0avovpqLy+1U0+U+ptvfPDMLYWkxfBXwJU5mT+ql475tAM1CuwhFlY8MH6iRAxrqWJdCDOzytIgIrbGrfjMQ==}
  1964. dependencies:
  1965. '@types/pikaday': 1.7.4
  1966. core-js: 3.41.0
  1967. dompurify: 2.5.8
  1968. moment: 2.24.0
  1969. numbro: 2.1.2
  1970. pikaday: 1.8.0
  1971. optionalDependencies:
  1972. hyperformula: 1.3.1
  1973. dev: false
  1974. /has-ansi@2.0.0:
  1975. resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
  1976. engines: {node: '>=0.10.0'}
  1977. dependencies:
  1978. ansi-regex: 2.1.1
  1979. dev: false
  1980. /has-flag@4.0.0:
  1981. resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
  1982. engines: {node: '>=8'}
  1983. dev: true
  1984. /has-symbols@1.1.0:
  1985. resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
  1986. engines: {node: '>= 0.4'}
  1987. dev: false
  1988. /has-tostringtag@1.0.2:
  1989. resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
  1990. engines: {node: '>= 0.4'}
  1991. dependencies:
  1992. has-symbols: 1.1.0
  1993. dev: false
  1994. /hash-sum@1.0.2:
  1995. resolution: {integrity: sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==}
  1996. dev: true
  1997. /hash-sum@2.0.0:
  1998. resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
  1999. dev: true
  2000. /hasown@2.0.2:
  2001. resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
  2002. engines: {node: '>= 0.4'}
  2003. dependencies:
  2004. function-bind: 1.1.2
  2005. /he@1.2.0:
  2006. resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
  2007. hasBin: true
  2008. dev: true
  2009. /html-tags@2.0.0:
  2010. resolution: {integrity: sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==}
  2011. engines: {node: '>=4'}
  2012. dev: true
  2013. /html2canvas@1.4.1:
  2014. resolution: {integrity: sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==}
  2015. engines: {node: '>=8.0.0'}
  2016. dependencies:
  2017. css-line-break: 2.1.0
  2018. text-segmentation: 1.0.3
  2019. dev: false
  2020. /hyperformula@1.3.1:
  2021. resolution: {integrity: sha512-9CdvkJSAy74PLaLQZf6mnvJGncE+ur2tmuZ6wB86E8M+A1hM9HeAJbl+6X3WjeZyvHle6UMV8b0uSNkjGxecKQ==}
  2022. requiresBuild: true
  2023. dependencies:
  2024. chevrotain: 6.5.0
  2025. core-js: 3.41.0
  2026. regenerator-runtime: 0.13.11
  2027. tiny-emitter: 2.1.0
  2028. unorm: 1.6.0
  2029. dev: false
  2030. optional: true
  2031. /iconv-lite@0.4.24:
  2032. resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
  2033. engines: {node: '>=0.10.0'}
  2034. dependencies:
  2035. safer-buffer: 2.1.2
  2036. dev: false
  2037. /iconv-lite@0.6.3:
  2038. resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
  2039. engines: {node: '>=0.10.0'}
  2040. dependencies:
  2041. safer-buffer: 2.1.2
  2042. /ieee754@1.2.1:
  2043. resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
  2044. dev: false
  2045. /image-size@0.5.5:
  2046. resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==}
  2047. engines: {node: '>=0.10.0'}
  2048. hasBin: true
  2049. requiresBuild: true
  2050. dev: true
  2051. optional: true
  2052. /immediate@3.0.6:
  2053. resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
  2054. dev: false
  2055. /inflight@1.0.6:
  2056. resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
  2057. deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
  2058. dependencies:
  2059. once: 1.4.0
  2060. wrappy: 1.0.2
  2061. dev: false
  2062. /inherits@2.0.4:
  2063. resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
  2064. dev: false
  2065. /inquirer@3.0.6:
  2066. resolution: {integrity: sha512-thluxTGBXUGb8DuQcvH9/CM/CrcGyB5xUpWc9x6Slqcq1z/hRr2a6KxUpX4ddRfmbe0hg3E4jTvo5833aWz3BA==}
  2067. dependencies:
  2068. ansi-escapes: 1.4.0
  2069. chalk: 1.1.3
  2070. cli-cursor: 2.1.0
  2071. cli-width: 2.2.1
  2072. external-editor: 2.2.0
  2073. figures: 2.0.0
  2074. lodash: 4.17.21
  2075. mute-stream: 0.0.7
  2076. run-async: 2.4.1
  2077. rx: 4.1.0
  2078. string-width: 2.1.1
  2079. strip-ansi: 3.0.1
  2080. through: 2.3.8
  2081. dev: false
  2082. /is-core-module@2.16.1:
  2083. resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
  2084. engines: {node: '>= 0.4'}
  2085. dependencies:
  2086. hasown: 2.0.2
  2087. dev: true
  2088. /is-fullwidth-code-point@2.0.0:
  2089. resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
  2090. engines: {node: '>=4'}
  2091. dev: false
  2092. /is-promise@2.2.2:
  2093. resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==}
  2094. dev: false
  2095. /is-stream@1.1.0:
  2096. resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
  2097. engines: {node: '>=0.10.0'}
  2098. dev: false
  2099. /is-what@3.14.1:
  2100. resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
  2101. dev: true
  2102. /isarray@1.0.0:
  2103. resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==}
  2104. dev: false
  2105. /jest-diff@26.6.2:
  2106. resolution: {integrity: sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==}
  2107. engines: {node: '>= 10.14.2'}
  2108. dependencies:
  2109. chalk: 4.1.2
  2110. diff-sequences: 26.6.2
  2111. jest-get-type: 26.3.0
  2112. pretty-format: 26.6.2
  2113. dev: true
  2114. /jest-get-type@26.3.0:
  2115. resolution: {integrity: sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==}
  2116. engines: {node: '>= 10.14.2'}
  2117. dev: true
  2118. /js-cookie@3.0.5:
  2119. resolution: {integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==}
  2120. engines: {node: '>=14'}
  2121. dev: false
  2122. /js-tokens@4.0.0:
  2123. resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
  2124. dev: true
  2125. /jsesc@3.1.0:
  2126. resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
  2127. engines: {node: '>=6'}
  2128. hasBin: true
  2129. dev: true
  2130. /json5@2.2.3:
  2131. resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
  2132. engines: {node: '>=6'}
  2133. hasBin: true
  2134. dev: true
  2135. /jsonfile@6.1.0:
  2136. resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
  2137. dependencies:
  2138. universalify: 2.0.1
  2139. optionalDependencies:
  2140. graceful-fs: 4.2.11
  2141. dev: true
  2142. /jszip@3.10.1:
  2143. resolution: {integrity: sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==}
  2144. dependencies:
  2145. lie: 3.3.0
  2146. pako: 1.0.11
  2147. readable-stream: 2.3.8
  2148. setimmediate: 1.0.5
  2149. dev: false
  2150. /lazystream@1.0.1:
  2151. resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
  2152. engines: {node: '>= 0.6.3'}
  2153. dependencies:
  2154. readable-stream: 2.3.8
  2155. dev: false
  2156. /less@4.3.0:
  2157. resolution: {integrity: sha512-X9RyH9fvemArzfdP8Pi3irr7lor2Ok4rOttDXBhlwDg+wKQsXOXgHWduAJE1EsF7JJx0w0bcO6BC6tCKKYnXKA==}
  2158. engines: {node: '>=14'}
  2159. hasBin: true
  2160. dependencies:
  2161. copy-anything: 2.0.6
  2162. parse-node-version: 1.0.1
  2163. tslib: 2.8.1
  2164. optionalDependencies:
  2165. errno: 0.1.8
  2166. graceful-fs: 4.2.11
  2167. image-size: 0.5.5
  2168. make-dir: 2.1.0
  2169. mime: 1.6.0
  2170. needle: 3.3.1
  2171. source-map: 0.6.1
  2172. dev: true
  2173. /lie@3.3.0:
  2174. resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
  2175. dependencies:
  2176. immediate: 3.0.6
  2177. dev: false
  2178. /linkify-it@2.2.0:
  2179. resolution: {integrity: sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==}
  2180. dependencies:
  2181. uc.micro: 1.0.6
  2182. dev: false
  2183. /listenercount@1.0.1:
  2184. resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==}
  2185. dev: false
  2186. /lodash-es@4.17.21:
  2187. resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==}
  2188. dev: false
  2189. /lodash.defaults@4.2.0:
  2190. resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==}
  2191. dev: false
  2192. /lodash.difference@4.5.0:
  2193. resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==}
  2194. dev: false
  2195. /lodash.escaperegexp@4.1.2:
  2196. resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==}
  2197. dev: false
  2198. /lodash.flatten@4.4.0:
  2199. resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==}
  2200. dev: false
  2201. /lodash.groupby@4.6.0:
  2202. resolution: {integrity: sha512-5dcWxm23+VAoz+awKmBaiBvzox8+RqMgFhi7UvX9DHZr2HdxHXM/Wrf8cfKpsW37RNrvtPn6hSwNqurSILbmJw==}
  2203. dev: false
  2204. /lodash.isboolean@3.0.3:
  2205. resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==}
  2206. dev: false
  2207. /lodash.isequal@4.5.0:
  2208. resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
  2209. deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead.
  2210. dev: false
  2211. /lodash.isfunction@3.0.9:
  2212. resolution: {integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==}
  2213. dev: false
  2214. /lodash.isnil@4.0.0:
  2215. resolution: {integrity: sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==}
  2216. dev: false
  2217. /lodash.isplainobject@4.0.6:
  2218. resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
  2219. dev: false
  2220. /lodash.isundefined@3.0.1:
  2221. resolution: {integrity: sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA==}
  2222. dev: false
  2223. /lodash.kebabcase@4.1.1:
  2224. resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
  2225. dev: true
  2226. /lodash.union@4.6.0:
  2227. resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==}
  2228. dev: false
  2229. /lodash.uniq@4.5.0:
  2230. resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
  2231. dev: false
  2232. /lodash@4.17.21:
  2233. resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
  2234. /lru-cache@4.1.5:
  2235. resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
  2236. dependencies:
  2237. pseudomap: 1.0.2
  2238. yallist: 2.1.2
  2239. dev: true
  2240. /lru-cache@5.1.1:
  2241. resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
  2242. dependencies:
  2243. yallist: 3.1.1
  2244. dev: true
  2245. /magic-string@0.26.7:
  2246. resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==}
  2247. engines: {node: '>=12'}
  2248. dependencies:
  2249. sourcemap-codec: 1.4.8
  2250. dev: true
  2251. /make-dir@2.1.0:
  2252. resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
  2253. engines: {node: '>=6'}
  2254. requiresBuild: true
  2255. dependencies:
  2256. pify: 4.0.1
  2257. semver: 5.7.2
  2258. dev: true
  2259. optional: true
  2260. /markdown-it@8.4.2:
  2261. resolution: {integrity: sha512-GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ==}
  2262. hasBin: true
  2263. dependencies:
  2264. argparse: 1.0.10
  2265. entities: 1.1.2
  2266. linkify-it: 2.2.0
  2267. mdurl: 1.0.1
  2268. uc.micro: 1.0.6
  2269. dev: false
  2270. /material-colors@1.2.6:
  2271. resolution: {integrity: sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==}
  2272. dev: false
  2273. /math-intrinsics@1.1.0:
  2274. resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
  2275. engines: {node: '>= 0.4'}
  2276. dev: false
  2277. /mdurl@1.0.1:
  2278. resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
  2279. dev: false
  2280. /merge-source-map@1.1.0:
  2281. resolution: {integrity: sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==}
  2282. dependencies:
  2283. source-map: 0.6.1
  2284. dev: true
  2285. /mime-db@1.52.0:
  2286. resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
  2287. engines: {node: '>= 0.6'}
  2288. dev: false
  2289. /mime-types@2.1.35:
  2290. resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
  2291. engines: {node: '>= 0.6'}
  2292. dependencies:
  2293. mime-db: 1.52.0
  2294. dev: false
  2295. /mime@1.6.0:
  2296. resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
  2297. engines: {node: '>=4'}
  2298. hasBin: true
  2299. requiresBuild: true
  2300. dev: true
  2301. optional: true
  2302. /mimic-fn@1.2.0:
  2303. resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==}
  2304. engines: {node: '>=4'}
  2305. dev: false
  2306. /minimatch@3.1.2:
  2307. resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
  2308. dependencies:
  2309. brace-expansion: 1.1.11
  2310. /minimatch@5.1.6:
  2311. resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
  2312. engines: {node: '>=10'}
  2313. dependencies:
  2314. brace-expansion: 2.0.1
  2315. dev: false
  2316. /minimist@1.2.0:
  2317. resolution: {integrity: sha512-7Wl+Jz+IGWuSdgsQEJ4JunV0si/iMhg42MnQQG6h1R6TNeVenp4U9x5CC5v/gYqz/fENLQITAWXidNtVL0NNbw==}
  2318. dev: false
  2319. /minimist@1.2.8:
  2320. resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
  2321. dev: false
  2322. /mkdirp@0.5.6:
  2323. resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
  2324. hasBin: true
  2325. dependencies:
  2326. minimist: 1.2.8
  2327. dev: false
  2328. /moment@2.24.0:
  2329. resolution: {integrity: sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==}
  2330. dev: false
  2331. /ms@2.1.3:
  2332. resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
  2333. dev: true
  2334. /mute-stream@0.0.7:
  2335. resolution: {integrity: sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==}
  2336. dev: false
  2337. /nanoid@3.3.11:
  2338. resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
  2339. engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
  2340. hasBin: true
  2341. /needle@3.3.1:
  2342. resolution: {integrity: sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==}
  2343. engines: {node: '>= 4.4.x'}
  2344. hasBin: true
  2345. requiresBuild: true
  2346. dependencies:
  2347. iconv-lite: 0.6.3
  2348. sax: 1.4.1
  2349. dev: true
  2350. optional: true
  2351. /node-dir@0.1.17:
  2352. resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
  2353. engines: {node: '>= 0.10.5'}
  2354. dependencies:
  2355. minimatch: 3.1.2
  2356. dev: true
  2357. /node-fetch@1.6.3:
  2358. resolution: {integrity: sha512-BDxbhLHXFFFvilHjh9xihcDyPkXQ+kjblxnl82zAX41xUYSNvuRpFRznmldR9+OKu+p+ULZ7hNoyunlLB5ecUA==}
  2359. dependencies:
  2360. encoding: 0.1.13
  2361. is-stream: 1.1.0
  2362. dev: false
  2363. /node-releases@2.0.19:
  2364. resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
  2365. dev: true
  2366. /normalize-path@3.0.0:
  2367. resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
  2368. engines: {node: '>=0.10.0'}
  2369. dev: false
  2370. /normalize-wheel@1.0.1:
  2371. resolution: {integrity: sha512-1OnlAPZ3zgrk8B91HyRj+eVv+kS5u+Z0SCsak6Xil/kmgEia50ga7zfkumayonZrImffAxPU/5WcyGhzetHNPA==}
  2372. dev: false
  2373. /numbro@2.1.2:
  2374. resolution: {integrity: sha512-7w833BxZmKGLE9HI0aREtNVRVH6WTYUUlWf4qgA5gKNhPQ4F/MRZ14sc0v8eoLORprk9ZTVwYaLwj8N3Zgxwiw==}
  2375. dependencies:
  2376. bignumber.js: 8.1.1
  2377. dev: false
  2378. /object-assign@4.1.1:
  2379. resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
  2380. engines: {node: '>=0.10.0'}
  2381. dev: false
  2382. /once@1.4.0:
  2383. resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
  2384. dependencies:
  2385. wrappy: 1.0.2
  2386. dev: false
  2387. /onetime@2.0.1:
  2388. resolution: {integrity: sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==}
  2389. engines: {node: '>=4'}
  2390. dependencies:
  2391. mimic-fn: 1.2.0
  2392. dev: false
  2393. /opencollective-postinstall@2.0.3:
  2394. resolution: {integrity: sha512-8AV/sCtuzUeTo8gQK5qDZzARrulB3egtLzFgteqB2tcT4Mw7B8Kt7JcDHmltjz6FOAHsvTevk70gZEbhM4ZS9Q==}
  2395. hasBin: true
  2396. dev: false
  2397. /opencollective@1.0.3:
  2398. resolution: {integrity: sha512-YBRI0Qa8+Ui0/STV1qYuPrJm889PT3oCPHMVoL+8Y3nwCffj7PSrB2NlGgrhgBKDujxTjxknHWJ/FiqOsYcIDw==}
  2399. hasBin: true
  2400. dependencies:
  2401. babel-polyfill: 6.23.0
  2402. chalk: 1.1.3
  2403. inquirer: 3.0.6
  2404. minimist: 1.2.0
  2405. node-fetch: 1.6.3
  2406. opn: 4.0.2
  2407. dev: false
  2408. /opn@4.0.2:
  2409. resolution: {integrity: sha512-iPBWbPP4OEOzR1xfhpGLDh+ypKBOygunZhM9jBtA7FS5sKjEiMZw0EFb82hnDOmTZX90ZWLoZKUza4cVt8MexA==}
  2410. engines: {node: '>=0.10.0'}
  2411. dependencies:
  2412. object-assign: 4.1.1
  2413. pinkie-promise: 2.0.1
  2414. dev: false
  2415. /os-tmpdir@1.0.2:
  2416. resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
  2417. engines: {node: '>=0.10.0'}
  2418. dev: false
  2419. /pako@1.0.11:
  2420. resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
  2421. dev: false
  2422. /parse-node-version@1.0.1:
  2423. resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
  2424. engines: {node: '>= 0.10'}
  2425. dev: true
  2426. /path-is-absolute@1.0.1:
  2427. resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
  2428. engines: {node: '>=0.10.0'}
  2429. dev: false
  2430. /path-parse@1.0.7:
  2431. resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
  2432. dev: true
  2433. /pdfjs-dist@2.4.456:
  2434. resolution: {integrity: sha512-yckJEHq3F48hcp6wStEpbN9McOj328Ib09UrBlGAKxvN2k+qYPN5iq6TH6jD1C0pso7zTep+g/CKsYgdrQd5QA==}
  2435. dev: false
  2436. /picocolors@0.2.1:
  2437. resolution: {integrity: sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==}
  2438. dev: true
  2439. /picocolors@1.1.1:
  2440. resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
  2441. /picomatch@2.3.1:
  2442. resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
  2443. engines: {node: '>=8.6'}
  2444. dev: true
  2445. /pify@4.0.1:
  2446. resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
  2447. engines: {node: '>=6'}
  2448. requiresBuild: true
  2449. dev: true
  2450. optional: true
  2451. /pikaday@1.8.0:
  2452. resolution: {integrity: sha512-SgGxMYX0NHj9oQnMaSyAipr2gOrbB4Lfs/TJTb6H6hRHs39/5c5VZi73Q8hr53+vWjdn6HzkWcj8Vtl3c9ziaA==}
  2453. dev: false
  2454. /pinkie-promise@2.0.1:
  2455. resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
  2456. engines: {node: '>=0.10.0'}
  2457. dependencies:
  2458. pinkie: 2.0.4
  2459. dev: false
  2460. /pinkie@2.0.4:
  2461. resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
  2462. engines: {node: '>=0.10.0'}
  2463. dev: false
  2464. /postcss-selector-parser@6.1.2:
  2465. resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
  2466. engines: {node: '>=4'}
  2467. dependencies:
  2468. cssesc: 3.0.0
  2469. util-deprecate: 1.0.2
  2470. dev: true
  2471. /postcss@7.0.39:
  2472. resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
  2473. engines: {node: '>=6.0.0'}
  2474. dependencies:
  2475. picocolors: 0.2.1
  2476. source-map: 0.6.1
  2477. dev: true
  2478. /postcss@8.5.3:
  2479. resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
  2480. engines: {node: ^10 || ^12 || >=14}
  2481. dependencies:
  2482. nanoid: 3.3.11
  2483. picocolors: 1.1.1
  2484. source-map-js: 1.2.1
  2485. /pptxtojson@1.3.1:
  2486. resolution: {integrity: sha512-+FcSS70PTkgdlExXCEUoNL2DZcySueonyYpnQANeD6BW1AX8313o6zF71t5wN7tnO1cxh1p0/J90fBV5yMzTCA==}
  2487. dependencies:
  2488. jszip: 3.10.1
  2489. tinycolor2: 1.6.0
  2490. txml: 5.1.1
  2491. dev: false
  2492. /prettier@2.8.8:
  2493. resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
  2494. engines: {node: '>=10.13.0'}
  2495. hasBin: true
  2496. /pretty-format@26.6.2:
  2497. resolution: {integrity: sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==}
  2498. engines: {node: '>= 10'}
  2499. dependencies:
  2500. '@jest/types': 26.6.2
  2501. ansi-regex: 5.0.1
  2502. ansi-styles: 4.3.0
  2503. react-is: 17.0.2
  2504. dev: true
  2505. /process-nextick-args@2.0.1:
  2506. resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
  2507. dev: false
  2508. /proxy-from-env@1.1.0:
  2509. resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
  2510. dev: false
  2511. /prr@1.0.1:
  2512. resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
  2513. requiresBuild: true
  2514. dev: true
  2515. optional: true
  2516. /pseudomap@1.0.2:
  2517. resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
  2518. dev: true
  2519. /querystring@0.2.1:
  2520. resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==}
  2521. engines: {node: '>=0.4.x'}
  2522. deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
  2523. dev: true
  2524. /react-is@17.0.2:
  2525. resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
  2526. dev: true
  2527. /readable-stream@2.3.8:
  2528. resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
  2529. dependencies:
  2530. core-util-is: 1.0.3
  2531. inherits: 2.0.4
  2532. isarray: 1.0.0
  2533. process-nextick-args: 2.0.1
  2534. safe-buffer: 5.1.2
  2535. string_decoder: 1.1.1
  2536. util-deprecate: 1.0.2
  2537. dev: false
  2538. /readable-stream@3.6.2:
  2539. resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
  2540. engines: {node: '>= 6'}
  2541. dependencies:
  2542. inherits: 2.0.4
  2543. string_decoder: 1.3.0
  2544. util-deprecate: 1.0.2
  2545. dev: false
  2546. /readdir-glob@1.1.3:
  2547. resolution: {integrity: sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==}
  2548. dependencies:
  2549. minimatch: 5.1.6
  2550. dev: false
  2551. /regenerator-runtime@0.10.5:
  2552. resolution: {integrity: sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==}
  2553. dev: false
  2554. /regenerator-runtime@0.11.1:
  2555. resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
  2556. dev: false
  2557. /regenerator-runtime@0.13.11:
  2558. resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
  2559. requiresBuild: true
  2560. dev: false
  2561. optional: true
  2562. /regenerator-runtime@0.14.1:
  2563. resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
  2564. dev: false
  2565. /regexp-to-ast@0.4.0:
  2566. resolution: {integrity: sha512-4qf/7IsIKfSNHQXSwial1IFmfM1Cc/whNBQqRwe0V2stPe7KmN1U0tWQiIx6JiirgSrisjE0eECdNf7Tav1Ntw==}
  2567. requiresBuild: true
  2568. dev: false
  2569. optional: true
  2570. /resize-observer-polyfill@1.5.1:
  2571. resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
  2572. dev: false
  2573. /resolve@1.22.10:
  2574. resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
  2575. engines: {node: '>= 0.4'}
  2576. hasBin: true
  2577. dependencies:
  2578. is-core-module: 2.16.1
  2579. path-parse: 1.0.7
  2580. supports-preserve-symlinks-flag: 1.0.0
  2581. dev: true
  2582. /restore-cursor@2.0.0:
  2583. resolution: {integrity: sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==}
  2584. engines: {node: '>=4'}
  2585. dependencies:
  2586. onetime: 2.0.1
  2587. signal-exit: 3.0.7
  2588. dev: false
  2589. /rimraf@2.7.1:
  2590. resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==}
  2591. deprecated: Rimraf versions prior to v4 are no longer supported
  2592. hasBin: true
  2593. dependencies:
  2594. glob: 7.2.3
  2595. dev: false
  2596. /rollup@2.77.3:
  2597. resolution: {integrity: sha512-/qxNTG7FbmefJWoeeYJFbHehJ2HNWnjkAFRKzWN/45eNBBF/r8lo992CwcJXEzyVxs5FmfId+vTSTQDb+bxA+g==}
  2598. engines: {node: '>=10.0.0'}
  2599. hasBin: true
  2600. optionalDependencies:
  2601. fsevents: 2.3.3
  2602. dev: true
  2603. /rollup@2.79.2:
  2604. resolution: {integrity: sha512-fS6iqSPZDs3dr/y7Od6y5nha8dW1YnbgtsyotCVvoFGKbERG++CVRFv1meyGDE1SNItQA8BrnCw7ScdAhRJ3XQ==}
  2605. engines: {node: '>=10.0.0'}
  2606. hasBin: true
  2607. optionalDependencies:
  2608. fsevents: 2.3.3
  2609. dev: true
  2610. /run-async@2.4.1:
  2611. resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
  2612. engines: {node: '>=0.12.0'}
  2613. dev: false
  2614. /rx@4.1.0:
  2615. resolution: {integrity: sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==}
  2616. dev: false
  2617. /safe-buffer@5.1.2:
  2618. resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
  2619. dev: false
  2620. /safe-buffer@5.2.1:
  2621. resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
  2622. dev: false
  2623. /safer-buffer@2.1.2:
  2624. resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
  2625. /sax@1.4.1:
  2626. resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
  2627. requiresBuild: true
  2628. dev: true
  2629. optional: true
  2630. /saxes@5.0.1:
  2631. resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==}
  2632. engines: {node: '>=10'}
  2633. dependencies:
  2634. xmlchars: 2.2.0
  2635. dev: false
  2636. /semver@5.7.2:
  2637. resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
  2638. hasBin: true
  2639. requiresBuild: true
  2640. dev: true
  2641. optional: true
  2642. /semver@6.3.1:
  2643. resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
  2644. hasBin: true
  2645. dev: true
  2646. /setimmediate@1.0.5:
  2647. resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
  2648. dev: false
  2649. /signal-exit@3.0.7:
  2650. resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
  2651. dev: false
  2652. /slash@3.0.0:
  2653. resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
  2654. engines: {node: '>=8'}
  2655. dev: true
  2656. /source-map-js@1.2.1:
  2657. resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
  2658. engines: {node: '>=0.10.0'}
  2659. /source-map@0.6.1:
  2660. resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
  2661. engines: {node: '>=0.10.0'}
  2662. /source-map@0.7.4:
  2663. resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
  2664. engines: {node: '>= 8'}
  2665. dev: true
  2666. /sourcemap-codec@1.4.8:
  2667. resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
  2668. deprecated: Please use @jridgewell/sourcemap-codec instead
  2669. dev: true
  2670. /sprintf-js@1.0.3:
  2671. resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
  2672. dev: false
  2673. /ssf@0.11.2:
  2674. resolution: {integrity: sha512-+idbmIXoYET47hH+d7dfm2epdOMUDjqcB4648sTZ+t2JwoyBFL/insLfB/racrDmsKB3diwsDA696pZMieAC5g==}
  2675. engines: {node: '>=0.8'}
  2676. dependencies:
  2677. frac: 1.1.2
  2678. dev: false
  2679. /string-width@2.1.1:
  2680. resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==}
  2681. engines: {node: '>=4'}
  2682. dependencies:
  2683. is-fullwidth-code-point: 2.0.0
  2684. strip-ansi: 4.0.0
  2685. dev: false
  2686. /string_decoder@1.1.1:
  2687. resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
  2688. dependencies:
  2689. safe-buffer: 5.1.2
  2690. dev: false
  2691. /string_decoder@1.3.0:
  2692. resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
  2693. dependencies:
  2694. safe-buffer: 5.2.1
  2695. dev: false
  2696. /strip-ansi@3.0.1:
  2697. resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
  2698. engines: {node: '>=0.10.0'}
  2699. dependencies:
  2700. ansi-regex: 2.1.1
  2701. dev: false
  2702. /strip-ansi@4.0.0:
  2703. resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==}
  2704. engines: {node: '>=4'}
  2705. dependencies:
  2706. ansi-regex: 3.0.1
  2707. dev: false
  2708. /supports-color@2.0.0:
  2709. resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
  2710. engines: {node: '>=0.8.0'}
  2711. dev: false
  2712. /supports-color@7.2.0:
  2713. resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
  2714. engines: {node: '>=8'}
  2715. dependencies:
  2716. has-flag: 4.0.0
  2717. dev: true
  2718. /supports-preserve-symlinks-flag@1.0.0:
  2719. resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
  2720. engines: {node: '>= 0.4'}
  2721. dev: true
  2722. /svg-tags@1.0.0:
  2723. resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
  2724. dev: true
  2725. /tar-stream@2.2.0:
  2726. resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
  2727. engines: {node: '>=6'}
  2728. dependencies:
  2729. bl: 4.1.0
  2730. end-of-stream: 1.4.4
  2731. fs-constants: 1.0.0
  2732. inherits: 2.0.4
  2733. readable-stream: 3.6.2
  2734. dev: false
  2735. /text-segmentation@1.0.3:
  2736. resolution: {integrity: sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==}
  2737. dependencies:
  2738. utrie: 1.0.2
  2739. dev: false
  2740. /throttle-debounce@1.1.0:
  2741. resolution: {integrity: sha512-XH8UiPCQcWNuk2LYePibW/4qL97+ZQ1AN3FNXwZRBNPPowo/NRU5fAlDCSNBJIYCKbioZfuYtMhG4quqoJhVzg==}
  2742. engines: {node: '>=4'}
  2743. dev: false
  2744. /throttle-debounce@3.0.1:
  2745. resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==}
  2746. engines: {node: '>=10'}
  2747. dev: false
  2748. /through2@3.0.2:
  2749. resolution: {integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==}
  2750. dependencies:
  2751. inherits: 2.0.4
  2752. readable-stream: 3.6.2
  2753. dev: false
  2754. /through@2.3.8:
  2755. resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
  2756. dev: false
  2757. /tiny-emitter@2.1.0:
  2758. resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
  2759. requiresBuild: true
  2760. dev: false
  2761. optional: true
  2762. /tinycolor2@1.6.0:
  2763. resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
  2764. dev: false
  2765. /tmp@0.0.33:
  2766. resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
  2767. engines: {node: '>=0.6.0'}
  2768. dependencies:
  2769. os-tmpdir: 1.0.2
  2770. dev: false
  2771. /tmp@0.2.3:
  2772. resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
  2773. engines: {node: '>=14.14'}
  2774. dev: false
  2775. /traverse@0.3.9:
  2776. resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==}
  2777. dev: false
  2778. /tslib@2.8.1:
  2779. resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
  2780. dev: true
  2781. /txml@5.1.1:
  2782. resolution: {integrity: sha512-TwMDLnXQ09enNaxybLVvKZU7rqog8LgnuAs4ZYXM0nV0eu10iLsSFwlX3AEknAXXtH1wT3CYfoiXAjyBexcmuw==}
  2783. dependencies:
  2784. through2: 3.0.2
  2785. dev: false
  2786. /typescript@5.7.3:
  2787. resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
  2788. engines: {node: '>=14.17'}
  2789. hasBin: true
  2790. dev: true
  2791. /uc.micro@1.0.6:
  2792. resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
  2793. dev: false
  2794. /undici-types@6.21.0:
  2795. resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
  2796. dev: true
  2797. /universalify@2.0.1:
  2798. resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
  2799. engines: {node: '>= 10.0.0'}
  2800. dev: true
  2801. /unorm@1.6.0:
  2802. resolution: {integrity: sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==}
  2803. engines: {node: '>= 0.4.0'}
  2804. requiresBuild: true
  2805. dev: false
  2806. optional: true
  2807. /unzipper@0.10.14:
  2808. resolution: {integrity: sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==}
  2809. dependencies:
  2810. big-integer: 1.6.52
  2811. binary: 0.3.0
  2812. bluebird: 3.4.7
  2813. buffer-indexof-polyfill: 1.0.2
  2814. duplexer2: 0.1.4
  2815. fstream: 1.0.12
  2816. graceful-fs: 4.2.11
  2817. listenercount: 1.0.1
  2818. readable-stream: 2.3.8
  2819. setimmediate: 1.0.5
  2820. dev: false
  2821. /update-browserslist-db@1.1.3(browserslist@4.24.4):
  2822. resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
  2823. hasBin: true
  2824. peerDependencies:
  2825. browserslist: '>= 4.21.0'
  2826. dependencies:
  2827. browserslist: 4.24.4
  2828. escalade: 3.2.0
  2829. picocolors: 1.1.1
  2830. dev: true
  2831. /util-deprecate@1.0.2:
  2832. resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
  2833. /utrie@1.0.2:
  2834. resolution: {integrity: sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==}
  2835. dependencies:
  2836. base64-arraybuffer: 1.0.2
  2837. dev: false
  2838. /uuid@8.3.2:
  2839. resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
  2840. hasBin: true
  2841. dev: false
  2842. /vite-plugin-vue2@2.0.3(lodash@4.17.21)(vite@2.9.18)(vue-template-compiler@2.7.16)(vue@2.7.16):
  2843. resolution: {integrity: sha512-t3Tu93GWsMHbpeIv66MTO5e/rRAo8/+/eWoUtFYuAdKDMyEnn1dqsrXh+CfG+SJAlxJvcTP8U0eXkzhLjKNyMg==}
  2844. peerDependencies:
  2845. vite: ^2.0.0 || ^3.0.0 || ^4.0.0
  2846. vue-template-compiler: ^2.2.0
  2847. dependencies:
  2848. '@babel/core': 7.26.10
  2849. '@babel/parser': 7.27.0
  2850. '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.10)
  2851. '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.10)
  2852. '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.10)
  2853. '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.10)
  2854. '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.10)
  2855. '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.10)
  2856. '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.10)
  2857. '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.10)
  2858. '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.10)
  2859. '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
  2860. '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.10)
  2861. '@babel/plugin-transform-typescript': 7.27.0(@babel/core@7.26.10)
  2862. '@rollup/pluginutils': 4.2.1
  2863. '@vue/babel-helper-vue-jsx-merge-props': 1.4.0
  2864. '@vue/babel-preset-jsx': 1.4.0(@babel/core@7.26.10)(vue@2.7.16)
  2865. '@vue/component-compiler-utils': 3.3.0(lodash@4.17.21)
  2866. consolidate: 0.16.0(lodash@4.17.21)
  2867. debug: 4.4.0
  2868. fs-extra: 10.1.0
  2869. hash-sum: 2.0.0
  2870. magic-string: 0.26.7
  2871. prettier: 2.8.8
  2872. querystring: 0.2.1
  2873. rollup: 2.79.2
  2874. slash: 3.0.0
  2875. source-map: 0.7.4
  2876. vite: 2.9.18(less@4.3.0)
  2877. vue-template-babel-compiler: 1.2.0(vue-template-compiler@2.7.16)
  2878. vue-template-compiler: 2.7.16
  2879. transitivePeerDependencies:
  2880. - arc-templates
  2881. - atpl
  2882. - babel-core
  2883. - bracket-template
  2884. - coffee-script
  2885. - dot
  2886. - dust
  2887. - dustjs-helpers
  2888. - dustjs-linkedin
  2889. - eco
  2890. - ect
  2891. - ejs
  2892. - haml-coffee
  2893. - hamlet
  2894. - hamljs
  2895. - handlebars
  2896. - hogan.js
  2897. - htmling
  2898. - jade
  2899. - jazz
  2900. - jqtpl
  2901. - just
  2902. - liquid-node
  2903. - liquor
  2904. - lodash
  2905. - marko
  2906. - mote
  2907. - mustache
  2908. - nunjucks
  2909. - plates
  2910. - pug
  2911. - qejs
  2912. - ractive
  2913. - razor-tmpl
  2914. - react
  2915. - react-dom
  2916. - slm
  2917. - squirrelly
  2918. - supports-color
  2919. - swig
  2920. - swig-templates
  2921. - teacup
  2922. - templayed
  2923. - then-jade
  2924. - then-pug
  2925. - tinyliquid
  2926. - toffee
  2927. - twig
  2928. - twing
  2929. - underscore
  2930. - vash
  2931. - velocityjs
  2932. - vue
  2933. - walrus
  2934. - whiskers
  2935. dev: true
  2936. /vite@2.9.18(less@4.3.0):
  2937. resolution: {integrity: sha512-sAOqI5wNM9QvSEE70W3UGMdT8cyEn0+PmJMTFvTB8wB0YbYUWw3gUbY62AOyrXosGieF2htmeLATvNxpv/zNyQ==}
  2938. engines: {node: '>=12.2.0'}
  2939. hasBin: true
  2940. peerDependencies:
  2941. less: '*'
  2942. sass: '*'
  2943. stylus: '*'
  2944. peerDependenciesMeta:
  2945. less:
  2946. optional: true
  2947. sass:
  2948. optional: true
  2949. stylus:
  2950. optional: true
  2951. dependencies:
  2952. esbuild: 0.14.54
  2953. less: 4.3.0
  2954. postcss: 8.5.3
  2955. resolve: 1.22.10
  2956. rollup: 2.77.3
  2957. optionalDependencies:
  2958. fsevents: 2.3.3
  2959. dev: true
  2960. /vue-baidu-map@0.21.22(vue@2.6.11):
  2961. resolution: {integrity: sha512-WQMPCih4UTh0AZCKKH/OVOYnyAWjfRNeK6BIeoLmscyY5aF8zzlJhz/NOHLb3mdztIpB0Z6aohn4Jd9mfCSjQw==}
  2962. peerDependencies:
  2963. vue: ^2.1.8
  2964. dependencies:
  2965. bmaplib.curveline: 1.0.0
  2966. bmaplib.heatmap: 1.0.4
  2967. bmaplib.lushu: 1.0.7
  2968. bmaplib.markerclusterer: 1.0.13
  2969. markdown-it: 8.4.2
  2970. vue: 2.6.11
  2971. dev: false
  2972. /vue-class-component@7.2.6(vue@2.6.11):
  2973. resolution: {integrity: sha512-+eaQXVrAm/LldalI272PpDe3+i4mPis0ORiMYxF6Ae4hyuCh15W8Idet7wPUEs4N4YptgFHGys4UrgNQOMyO6w==}
  2974. peerDependencies:
  2975. vue: ^2.0.0
  2976. dependencies:
  2977. vue: 2.6.11
  2978. dev: false
  2979. /vue-cropper@0.5.11:
  2980. resolution: {integrity: sha512-UeA3qL2BLCTGkOEAxEsxSNFO+qLYAn6YRHv4oS32cP9lMhF1vFmnAf/z+ZamtR0/Fh3sbZeZUCLVR2Ol2/dpTQ==}
  2981. dev: false
  2982. /vue-property-decorator@8.5.1(vue@2.6.11):
  2983. resolution: {integrity: sha512-O6OUN2OMsYTGPvgFtXeBU3jPnX5ffQ9V4I1WfxFQ6dqz6cOUbR3Usou7kgFpfiXDvV7dJQSFcJ5yUPgOtPPm1Q==}
  2984. peerDependencies:
  2985. vue: '*'
  2986. dependencies:
  2987. vue: 2.6.11
  2988. vue-class-component: 7.2.6(vue@2.6.11)
  2989. dev: false
  2990. /vue-router@3.6.5(vue@2.6.11):
  2991. resolution: {integrity: sha512-VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ==}
  2992. peerDependencies:
  2993. vue: ^2
  2994. dependencies:
  2995. vue: 2.6.11
  2996. dev: false
  2997. /vue-router@3.6.5(vue@2.7.16):
  2998. resolution: {integrity: sha512-VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ==}
  2999. peerDependencies:
  3000. vue: ^2
  3001. dependencies:
  3002. vue: 2.7.16
  3003. dev: false
  3004. /vue-template-babel-compiler@1.2.0(vue-template-compiler@2.7.16):
  3005. resolution: {integrity: sha512-CScBSX1/wCdmmZ/Lvj/63p2CCVTS0FMj0F69VRBo73CuJrjvPAPGmeNJ7D/cwt/VS2PduowRWbO8N4Zh4Z3b0g==}
  3006. engines: {node: '>=12.0.0'}
  3007. peerDependencies:
  3008. vue-template-compiler: ^2.6.0
  3009. dependencies:
  3010. '@babel/core': 7.26.10
  3011. '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.26.10)
  3012. '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.26.10)
  3013. '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.26.10)
  3014. '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.10)
  3015. '@babel/plugin-transform-block-scoping': 7.27.0(@babel/core@7.26.10)
  3016. '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.10)
  3017. '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.10)
  3018. '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
  3019. '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.10)
  3020. '@babel/types': 7.27.0
  3021. deepmerge: 4.3.1
  3022. vue-template-compiler: 2.7.16
  3023. transitivePeerDependencies:
  3024. - supports-color
  3025. dev: true
  3026. /vue-template-compiler@2.7.16:
  3027. resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==}
  3028. dependencies:
  3029. de-indent: 1.0.2
  3030. he: 1.2.0
  3031. dev: true
  3032. /vue-template-es2015-compiler@1.9.1:
  3033. resolution: {integrity: sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==}
  3034. dev: true
  3035. /vue-virtual-scroll-list@2.3.5:
  3036. resolution: {integrity: sha512-YFK6u5yltqtAOfTBcij/KGAS2SoZvzbNIAf9qTULauPObEp53xj22tDuohrrM2vNkgoD5kejXICIUBt2Q4ZDqQ==}
  3037. dev: false
  3038. /vue@2.6.11:
  3039. resolution: {integrity: sha512-VfPwgcGABbGAue9+sfrD4PuwFar7gPb1yl1UK1MwXoQPAw0BKSqWfoYCT/ThFrdEVWoI51dBuyCoiNU9bZDZxQ==}
  3040. deprecated: Vue 2 has reached EOL and is no longer actively maintained. See https://v2.vuejs.org/eol/ for more details.
  3041. dev: false
  3042. /vue@2.7.16:
  3043. resolution: {integrity: sha512-4gCtFXaAA3zYZdTp5s4Hl2sozuySsgz4jy1EnpBHNfpMa9dK1ZCG7viqBPCwXtmgc8nHqUsAu3G4gtmXkkY3Sw==}
  3044. deprecated: Vue 2 has reached EOL and is no longer actively maintained. See https://v2.vuejs.org/eol/ for more details.
  3045. dependencies:
  3046. '@vue/compiler-sfc': 2.7.16
  3047. csstype: 3.1.3
  3048. /vuex@3.6.2(vue@2.7.16):
  3049. resolution: {integrity: sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw==}
  3050. peerDependencies:
  3051. vue: ^2.0.0
  3052. dependencies:
  3053. vue: 2.7.16
  3054. dev: false
  3055. /watch-size@2.0.0:
  3056. resolution: {integrity: sha512-M92R89dNoTPWyCD+HuUEDdhaDnh9jxPGOwlDc0u51jAgmjUvzqaEMynXSr3BaWs+QdHYk4KzibPy1TFtjLmOZQ==}
  3057. dev: false
  3058. /wisdom-ui@1.0.4-beta.6:
  3059. resolution: {integrity: sha512-7E9Q44CjpQdaxFapo0+u6gJqje7+gtTyahxamj5JgYUbuNSwdEOqPKwRNc7acWIQDRrwwsj3yrL0CCD5y2E6JQ==}
  3060. dependencies:
  3061. '@riophae/vue-treeselect': 0.4.0(vue@2.6.11)
  3062. core-js: 3.41.0
  3063. element-ui: 2.15.14(vue@2.6.11)
  3064. resize-observer-polyfill: 1.5.1
  3065. throttle-debounce: 3.0.1
  3066. vue: 2.6.11
  3067. vue-baidu-map: 0.21.22(vue@2.6.11)
  3068. vue-class-component: 7.2.6(vue@2.6.11)
  3069. vue-cropper: 0.5.11
  3070. vue-property-decorator: 8.5.1(vue@2.6.11)
  3071. vue-router: 3.6.5(vue@2.6.11)
  3072. vue-virtual-scroll-list: 2.3.5
  3073. dev: false
  3074. /wmf@1.0.2:
  3075. resolution: {integrity: sha512-/p9K7bEh0Dj6WbXg4JG0xvLQmIadrner1bi45VMJTfnbVHsc7yIajZyoSoK60/dtVBs12Fm6WkUI5/3WAVsNMw==}
  3076. engines: {node: '>=0.8'}
  3077. dev: false
  3078. /word@0.3.0:
  3079. resolution: {integrity: sha512-OELeY0Q61OXpdUfTp+oweA/vtLVg5VDOXh+3he3PNzLGG/y0oylSOC1xRVj0+l4vQ3tj/bB1HVHv1ocXkQceFA==}
  3080. engines: {node: '>=0.8'}
  3081. dev: false
  3082. /wrappy@1.0.2:
  3083. resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
  3084. dev: false
  3085. /x-data-spreadsheet@1.1.9:
  3086. resolution: {integrity: sha512-wk7knDBYdHjtWiHUVQryZMy00dsGNCF+6wMb5ykwEFcAtBYkYZakJCOCHpEo8onC0Lb/q2gIynWpbQxA4qakyg==}
  3087. requiresBuild: true
  3088. dependencies:
  3089. opencollective: 1.0.3
  3090. opencollective-postinstall: 2.0.3
  3091. dev: false
  3092. /xlsx@0.18.5:
  3093. resolution: {integrity: sha512-dmg3LCjBPHZnQp5/F/+nnTa+miPJxUXB6vtk42YjBBKayDNagxGEeIdWApkYPOf3Z3pm3k62Knjzp7lMeTEtFQ==}
  3094. engines: {node: '>=0.8'}
  3095. hasBin: true
  3096. dependencies:
  3097. adler-32: 1.3.1
  3098. cfb: 1.2.2
  3099. codepage: 1.15.0
  3100. crc-32: 1.2.2
  3101. ssf: 0.11.2
  3102. wmf: 1.0.2
  3103. word: 0.3.0
  3104. dev: false
  3105. /xmlchars@2.2.0:
  3106. resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
  3107. dev: false
  3108. /yallist@2.1.2:
  3109. resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
  3110. dev: true
  3111. /yallist@3.1.1:
  3112. resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
  3113. dev: true
  3114. /zip-stream@4.1.1:
  3115. resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==}
  3116. engines: {node: '>= 10'}
  3117. dependencies:
  3118. archiver-utils: 3.0.4
  3119. compress-commons: 4.1.2
  3120. readable-stream: 3.6.2
  3121. dev: false