@modern-js/module-tools-docs 2.59.0 → 2.60.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (207) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/doc_build/404.html +17 -0
  3. package/doc_build/api/config/build-config.html +1217 -0
  4. package/doc_build/api/config/build-preset.html +211 -0
  5. package/doc_build/api/config/dev.html +63 -0
  6. package/doc_build/api/config/plugins.html +54 -0
  7. package/doc_build/api/index.html +17 -0
  8. package/doc_build/api/plugin-api/plugin-hooks.html +395 -0
  9. package/doc_build/components/faq-build-exception.html +17 -0
  10. package/doc_build/components/faq-build-other.html +17 -0
  11. package/doc_build/components/faq-build-product.html +17 -0
  12. package/doc_build/components/faq-storybook.html +17 -0
  13. package/doc_build/components/publish-emo.html +17 -0
  14. package/doc_build/components/register-esbuild-plugin.html +27 -0
  15. package/doc_build/components/release-module-doc.html +17 -0
  16. package/doc_build/en/api/config/build-config.html +1220 -0
  17. package/doc_build/en/api/config/build-preset.html +206 -0
  18. package/doc_build/en/api/config/dev.html +63 -0
  19. package/doc_build/en/api/config/plugins.html +54 -0
  20. package/doc_build/en/api/index.html +17 -0
  21. package/doc_build/en/api/plugin-api/plugin-hooks.html +399 -0
  22. package/doc_build/en/components/faq-build-exception.html +17 -0
  23. package/doc_build/en/components/faq-build-other.html +17 -0
  24. package/doc_build/en/components/faq-build-product.html +17 -0
  25. package/doc_build/en/components/faq-storybook.html +17 -0
  26. package/doc_build/en/components/publish-emo.html +17 -0
  27. package/doc_build/en/components/register-esbuild-plugin.html +27 -0
  28. package/doc_build/en/components/release-module-doc.html +17 -0
  29. package/doc_build/en/guide/advance/asset.html +58 -0
  30. package/doc_build/en/guide/advance/build-umd.html +166 -0
  31. package/doc_build/en/guide/advance/copy.html +208 -0
  32. package/doc_build/en/guide/advance/external-dependency.html +62 -0
  33. package/doc_build/en/guide/advance/in-depth-about-build.html +302 -0
  34. package/doc_build/en/guide/advance/in-depth-about-dev-command.html +68 -0
  35. package/doc_build/en/guide/basic/before-getting-started.html +139 -0
  36. package/doc_build/en/guide/basic/command-preview.html +131 -0
  37. package/doc_build/en/guide/basic/modify-output-product.html +133 -0
  38. package/doc_build/en/guide/basic/publish-your-project.html +100 -0
  39. package/doc_build/en/guide/basic/use-micro-generator.html +54 -0
  40. package/doc_build/en/guide/basic/use-module-doc.html +397 -0
  41. package/doc_build/en/guide/basic/using-storybook.html +168 -0
  42. package/doc_build/en/guide/best-practices/components.html +198 -0
  43. package/doc_build/en/guide/best-practices/use-tailwindcss.html +243 -0
  44. package/doc_build/en/guide/faq/basic.html +23 -0
  45. package/doc_build/en/guide/faq/build.html +237 -0
  46. package/doc_build/en/guide/faq/index.html +23 -0
  47. package/doc_build/en/guide/faq/storybook.html +85 -0
  48. package/doc_build/en/guide/intro/getting-started.html +92 -0
  49. package/doc_build/en/guide/intro/welcome.html +27 -0
  50. package/doc_build/en/guide/intro/why-module-engineering-solution.html +25 -0
  51. package/doc_build/en/index.html +17 -0
  52. package/doc_build/en/plugins/guide/getting-started.html +70 -0
  53. package/doc_build/en/plugins/guide/plugin-object.html +74 -0
  54. package/doc_build/en/plugins/guide/setup-function.html +96 -0
  55. package/doc_build/en/plugins/official-list/overview.html +26 -0
  56. package/doc_build/en/plugins/official-list/plugin-babel.html +65 -0
  57. package/doc_build/en/plugins/official-list/plugin-banner.html +91 -0
  58. package/doc_build/en/plugins/official-list/plugin-import.html +111 -0
  59. package/doc_build/en/plugins/official-list/plugin-node-polyfill.html +128 -0
  60. package/doc_build/en/plugins/official-list/plugin-polyfill.html +72 -0
  61. package/doc_build/en/plugins/official-list/plugin-vue.html +66 -0
  62. package/doc_build/guide/advance/asset.html +55 -0
  63. package/doc_build/guide/advance/build-umd.html +170 -0
  64. package/doc_build/guide/advance/copy.html +208 -0
  65. package/doc_build/guide/advance/external-dependency.html +61 -0
  66. package/doc_build/guide/advance/in-depth-about-build.html +300 -0
  67. package/doc_build/guide/advance/in-depth-about-dev-command.html +68 -0
  68. package/doc_build/guide/basic/before-getting-started.html +139 -0
  69. package/doc_build/guide/basic/command-preview.html +131 -0
  70. package/doc_build/guide/basic/modify-output-product.html +134 -0
  71. package/doc_build/guide/basic/publish-your-project.html +99 -0
  72. package/doc_build/guide/basic/use-micro-generator.html +54 -0
  73. package/doc_build/guide/basic/use-module-doc.html +395 -0
  74. package/doc_build/guide/basic/using-storybook.html +177 -0
  75. package/doc_build/guide/best-practices/components.html +198 -0
  76. package/doc_build/guide/best-practices/use-tailwindcss.html +243 -0
  77. package/doc_build/guide/faq/basic.html +23 -0
  78. package/doc_build/guide/faq/build.html +234 -0
  79. package/doc_build/guide/faq/index.html +23 -0
  80. package/doc_build/guide/faq/storybook.html +85 -0
  81. package/doc_build/guide/intro/getting-started.html +89 -0
  82. package/doc_build/guide/intro/welcome.html +27 -0
  83. package/doc_build/guide/intro/why-module-engineering-solution.html +25 -0
  84. package/doc_build/index.html +17 -0
  85. package/doc_build/plugins/guide/getting-started.html +70 -0
  86. package/doc_build/plugins/guide/plugin-object.html +74 -0
  87. package/doc_build/plugins/guide/setup-function.html +95 -0
  88. package/doc_build/plugins/official-list/overview.html +26 -0
  89. package/doc_build/plugins/official-list/plugin-babel.html +64 -0
  90. package/doc_build/plugins/official-list/plugin-banner.html +94 -0
  91. package/doc_build/plugins/official-list/plugin-import.html +112 -0
  92. package/doc_build/plugins/official-list/plugin-node-polyfill.html +128 -0
  93. package/doc_build/plugins/official-list/plugin-polyfill.html +71 -0
  94. package/doc_build/plugins/official-list/plugin-vue.html +66 -0
  95. package/doc_build/static/css/styles.0b88df3a.css +1 -0
  96. package/doc_build/static/js/490.a066dbc0.js +6 -0
  97. package/doc_build/static/js/490.a066dbc0.js.LICENSE.txt +35 -0
  98. package/doc_build/static/js/async/1095.4ca5fdf0.js +1 -0
  99. package/doc_build/static/js/async/1148.ff6a84ca.js +1 -0
  100. package/doc_build/static/js/async/1306.8bc84d6b.js +1 -0
  101. package/doc_build/static/js/async/1507.fed31a58.js +1 -0
  102. package/doc_build/static/js/async/1527.4c6e53e2.js +1 -0
  103. package/doc_build/static/js/async/1657.d0d95d59.js +1 -0
  104. package/doc_build/static/js/async/1801.5d49a2fe.js +1 -0
  105. package/doc_build/static/js/async/1941.0b3cceee.js +1 -0
  106. package/doc_build/static/js/async/213.db8a0492.js +1 -0
  107. package/doc_build/static/js/async/2131.5dfdffa9.js +1 -0
  108. package/doc_build/static/js/async/2140.848412d7.js +1 -0
  109. package/doc_build/static/js/async/2206.f6b802b2.js +1 -0
  110. package/doc_build/static/js/async/2300.cba0106e.js +1 -0
  111. package/doc_build/static/js/async/2347.a480682f.js +1 -0
  112. package/doc_build/static/js/async/2365.daed0a9c.js +1 -0
  113. package/doc_build/static/js/async/2561.2e43400c.js +1 -0
  114. package/doc_build/static/js/async/2579.f7c71e6b.js +1 -0
  115. package/doc_build/static/js/async/2671.c711355f.js +1 -0
  116. package/doc_build/static/js/async/2704.561dadd9.js +1 -0
  117. package/doc_build/static/js/async/2712.5ffea5ba.js +1 -0
  118. package/doc_build/static/js/async/3023.5bef6325.js +1 -0
  119. package/doc_build/static/js/async/3039.3982622e.js +1 -0
  120. package/doc_build/static/js/async/3097.b043b3aa.js +1 -0
  121. package/doc_build/static/js/async/3213.df408a99.js +1 -0
  122. package/doc_build/static/js/async/3235.0c4d2c9b.js +1 -0
  123. package/doc_build/static/js/async/336.8387125c.js +1 -0
  124. package/doc_build/static/js/async/3493.5133deaa.js +1 -0
  125. package/doc_build/static/js/async/351.de7824af.js +1 -0
  126. package/doc_build/static/js/async/3597.cf46a69b.js +1 -0
  127. package/doc_build/static/js/async/36.eee0e8fe.js +1 -0
  128. package/doc_build/static/js/async/3628.726e3f10.js +1 -0
  129. package/doc_build/static/js/async/3724.bcc90bb4.js +1 -0
  130. package/doc_build/static/js/async/3761.949f5838.js +1 -0
  131. package/doc_build/static/js/async/4061.84ac839b.js +1 -0
  132. package/doc_build/static/js/async/4064.104b71cd.js +1 -0
  133. package/doc_build/static/js/async/4206.133ffe9e.js +1 -0
  134. package/doc_build/static/js/async/443.b519ce6b.js +1 -0
  135. package/doc_build/static/js/async/4501.c647ab73.js +1 -0
  136. package/doc_build/static/js/async/453.7358c1fd.js +1 -0
  137. package/doc_build/static/js/async/461.2d6ea16c.js +1 -0
  138. package/doc_build/static/js/async/4615.c4e5b749.js +1 -0
  139. package/doc_build/static/js/async/4655.bbe27e7b.js +1 -0
  140. package/doc_build/static/js/async/4812.ebd3f4cb.js +1 -0
  141. package/doc_build/static/js/async/4904.de72a299.js +1 -0
  142. package/doc_build/static/js/async/5105.28347c4d.js +1 -0
  143. package/doc_build/static/js/async/5453.87dcea50.js +1 -0
  144. package/doc_build/static/js/async/5455.9e038fda.js +1 -0
  145. package/doc_build/static/js/async/5493.3644c7b8.js +1 -0
  146. package/doc_build/static/js/async/5495.50aacc7e.js +1 -0
  147. package/doc_build/static/js/async/5555.40dabd12.js +1 -0
  148. package/doc_build/static/js/async/5558.073d18d0.js +1 -0
  149. package/doc_build/static/js/async/5844.b3a9d57a.js +1 -0
  150. package/doc_build/static/js/async/588.6de9811a.js +1 -0
  151. package/doc_build/static/js/async/5889.41a786b6.js +1 -0
  152. package/doc_build/static/js/async/5892.b0db6657.js +1 -0
  153. package/doc_build/static/js/async/5995.209e2925.js +1 -0
  154. package/doc_build/static/js/async/6046.963bbf59.js +1 -0
  155. package/doc_build/static/js/async/6308.6363792d.js +1 -0
  156. package/doc_build/static/js/async/6576.a753babb.js +1 -0
  157. package/doc_build/static/js/async/6615.154a2810.js +1 -0
  158. package/doc_build/static/js/async/6858.e2452605.js +1 -0
  159. package/doc_build/static/js/async/6975.be4ba201.js +1 -0
  160. package/doc_build/static/js/async/7080.1c684c7d.js +1 -0
  161. package/doc_build/static/js/async/7220.1c4ee8bb.js +1 -0
  162. package/doc_build/static/js/async/7406.b2acec42.js +1 -0
  163. package/doc_build/static/js/async/7521.ca744786.js +1 -0
  164. package/doc_build/static/js/async/7535.f50f0fd1.js +1 -0
  165. package/doc_build/static/js/async/7584.c3b673fd.js +1 -0
  166. package/doc_build/static/js/async/7600.03d9da89.js +1 -0
  167. package/doc_build/static/js/async/7663.86b79735.js +1 -0
  168. package/doc_build/static/js/async/769.2bc1c7b7.js +1 -0
  169. package/doc_build/static/js/async/7715.1bfe887f.js +1 -0
  170. package/doc_build/static/js/async/7837.5667c422.js +1 -0
  171. package/doc_build/static/js/async/8040.1cfb21ff.js +1 -0
  172. package/doc_build/static/js/async/8085.f9f71860.js +1 -0
  173. package/doc_build/static/js/async/8098.beeb77f3.js +1 -0
  174. package/doc_build/static/js/async/8134.068074a0.js +1 -0
  175. package/doc_build/static/js/async/8158.2834ced1.js +1 -0
  176. package/doc_build/static/js/async/8214.2fdfe2fe.js +1 -0
  177. package/doc_build/static/js/async/8233.24111213.js +1 -0
  178. package/doc_build/static/js/async/8451.5328c0c7.js +1 -0
  179. package/doc_build/static/js/async/8689.f8447ca1.js +1 -0
  180. package/doc_build/static/js/async/8694.077556c4.js +1 -0
  181. package/doc_build/static/js/async/8713.91395601.js +1 -0
  182. package/doc_build/static/js/async/8750.0f6872b3.js +1 -0
  183. package/doc_build/static/js/async/8802.463e3040.js +1 -0
  184. package/doc_build/static/js/async/9100.066e1017.js +1 -0
  185. package/doc_build/static/js/async/9250.8fb41a47.js +1 -0
  186. package/doc_build/static/js/async/9524.bb257861.js +1 -0
  187. package/doc_build/static/js/async/9611.b2543acb.js +1 -0
  188. package/doc_build/static/js/async/964.b00f3e9f.js +1 -0
  189. package/doc_build/static/js/async/9740.b27e6629.js +1 -0
  190. package/doc_build/static/js/index.6a5d779d.js +1 -0
  191. package/doc_build/static/js/lib-react.a93218f7.js +2 -0
  192. package/doc_build/static/js/lib-react.a93218f7.js.LICENSE.txt +39 -0
  193. package/doc_build/static/js/lib-router.f8d11890.js +2 -0
  194. package/doc_build/static/js/lib-router.f8d11890.js.LICENSE.txt +32 -0
  195. package/doc_build/static/js/styles.3f5a6140.js +1 -0
  196. package/doc_build/static/search_index.en.f19ea64b.json +1 -0
  197. package/doc_build/static/search_index.zh.e818eee4.json +1 -0
  198. package/doc_build/test-result.png +0 -0
  199. package/doc_build/why-module-solution.png +0 -0
  200. package/docs/en/api/config/dev.md +2 -2
  201. package/docs/en/guide/basic/command-preview.md +0 -16
  202. package/docs/en/guide/intro/welcome.md +0 -1
  203. package/docs/zh/api/config/dev.md +2 -2
  204. package/docs/zh/guide/basic/command-preview.md +0 -16
  205. package/docs/zh/guide/basic/using-storybook.mdx +1 -1
  206. package/docs/zh/guide/intro/welcome.md +0 -1
  207. package/package.json +4 -4
@@ -0,0 +1,6 @@
1
+ /*! For license information please see 490.a066dbc0.js.LICENSE.txt */
2
+ (self.webpackChunk_modern_js_module_tools_docs=self.webpackChunk_modern_js_module_tools_docs||[]).push([["490"],{4343:function(e,t,n){"use strict";n.d(t,{Jr:function(){return s},Ni:function(){return a},R0:function(){return o},Vi:function(){return l},aw:function(){return d},n_:function(){return c}});var i=n(6945),r=n(3567);let o=(0,i.createContext)({}),a=(0,i.createContext)({});function l(){return(0,i.useContext)(o).data}function s(){return(0,i.useContext)(o).data.page.lang||""}function d(){return(0,i.useContext)(o).data.page.version||""}function c(e){let[t,n]=(0,i.useState)(e);return(0,i.useLayoutEffect)(()=>{document.startViewTransition&&t!==e?document.startViewTransition(()=>{(0,r.flushSync)(()=>{n(e)}),window.dispatchEvent(new Event("RspressReloadContent"))}):((0,r.flushSync)(()=>{n(e)}),window.dispatchEvent(new Event("RspressReloadContent")))},[e]),t}},2185:function(e,t,n){"use strict";n.d(t,{AP:function(){return d},E9:function(){return l},Tm:function(){return o},i6:function(){return c},pJ:function(){return a},pV:function(){return s}});var i=n(6780),r=n(7158);function o(e){return decodeURIComponent(e).replace(/\.html$/,"").replace(/\/index$/,"/")}function a(e="/"){return(0,r.pJ)(e,i.Z.base)}function l(e){return(0,r.E9)(e,i.Z.base)}function s(e,t){return a(d((0,r.lm)(e)))===a(d((0,r.lm)(t)))}function d(e){let t=!!i.Z?.route?.cleanUrls;return(0,r.yc)(e,t)}function c(e){return!(0,r.yv)()||(0,r.xf)(e)||(0,r.pZ)(e)||e.startsWith("//")||!e.startsWith("/")?e:a(e)}},429:function(e,t){"use strict";t.parse=a;var n,i=",",r=" ",o="";function a(e){for(var t,n=[],r=String(e||o),a=r.indexOf(i),l=0,s=!1;!s;)-1===a&&(a=r.length,s=!0),((t=r.slice(l,a).trim())||!s)&&n.push(t),l=a+1,a=r.indexOf(i,l);return n}function l(e,t){var n=t||{},a=!1===n.padLeft?o:r,l=n.padRight?r:o;return e[e.length-1]===o&&(e=e.concat(o)),e.join(l+i+a).trim()}},9522:function(e,t,n){"use strict";var i=n(8456),r={"text/plain":"Text","text/html":"Url",default:"Text"},o="Copy to clipboard: #{key}, Enter";function a(e){var t=(/mac os x/i.test(navigator.userAgent)?"⌘":"Ctrl")+"+C";return e.replace(/#{\s*key\s*}/g,t)}function l(e,t){var n,l,s,d,c,u,p=!1;!t&&(t={}),n=t.debug||!1;try{if(s=i(),d=document.createRange(),c=document.getSelection(),(u=document.createElement("span")).textContent=e,u.ariaHidden="true",u.style.all="unset",u.style.position="fixed",u.style.top=0,u.style.clip="rect(0, 0, 0, 0)",u.style.whiteSpace="pre",u.style.webkitUserSelect="text",u.style.MozUserSelect="text",u.style.msUserSelect="text",u.style.userSelect="text",u.addEventListener("copy",function(i){if(i.stopPropagation(),t.format){if(i.preventDefault(),void 0===i.clipboardData){n&&console.warn("unable to use e.clipboardData"),n&&console.warn("trying IE specific stuff"),window.clipboardData.clearData();var o=r[t.format]||r.default;window.clipboardData.setData(o,e)}else i.clipboardData.clearData(),i.clipboardData.setData(t.format,e)}t.onCopy&&(i.preventDefault(),t.onCopy(i.clipboardData))}),document.body.appendChild(u),d.selectNodeContents(u),c.addRange(d),!document.execCommand("copy"))throw Error("copy command was unsuccessful");p=!0}catch(i){n&&console.error("unable to copy using execCommand: ",i),n&&console.warn("trying IE specific stuff");try{window.clipboardData.setData(t.format||"text",e),t.onCopy&&t.onCopy(window.clipboardData),p=!0}catch(i){n&&console.error("unable to copy using clipboardData: ",i),n&&console.error("falling back to prompt"),l=a("message"in t?t.message:o),window.prompt(l,e)}}finally{c&&("function"==typeof c.removeRange?c.removeRange(d):c.removeAllRanges()),u&&document.body.removeChild(u),s()}return p}e.exports=l},4220:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}}),n(8247);var i=n(13);function r(e){o(e,"add"),o(e,"append"),o(e,"search"),o(e,"update"),o(e,"remove")}function o(e,t){e[t+"Async"]=function(){let e;let n=this,r=arguments,o=r[r.length-1];(0,i.sB)(o)&&(e=o,delete r[r.length-1]);let a=new Promise(function(e){setTimeout(function(){n.async=!0;let i=n[t].apply(n,r);n.async=!1,e(i)})});return e?(a.then(e),this):a}}},7999:function(e,t,n){"use strict";n.d(t,{Z:function(){return o},r:function(){return a}}),n(8247);var i=n(13);function r(e){this.limit=!0!==e&&e,this.cache=(0,i.Vf)(),this.queue=[]}let o=r;function a(e,t,n){(0,i.TU)(e)&&(e=e.query);let r=this.cache.get(e);return!r&&(r=this.search(e,t,n),this.cache.set(e,r)),r}r.prototype.set=function(e,t){if(!this.cache[e]){let t=this.queue.length;t===this.limit?delete this.cache[this.queue[t-1]]:t++;for(let e=t-1;0<e;e--)this.queue[e]=this.queue[e-1];this.queue[0]=e}this.cache[e]=t},r.prototype.get=function(e){let t=this.cache[e];if(this.limit&&t){let t=this.queue.indexOf(e);if(t){let e=this.queue[t-1];this.queue[t-1]=this.queue[t],this.queue[t]=e}}return t},r.prototype.del=function(e){for(let t=0,n;t<this.queue.length;t++)n=this.queue[t],this.cache[n].includes(e)&&(this.queue.splice(t--,1),delete this.cache[n])}},13:function(e,t,n){"use strict";function i(e,t){return void 0!==e?e:t}function r(e){let t=Array(e);for(let n=0;n<e;n++)t[n]=a();return t}function o(e){return Object.keys(e)}function a(){return Object.create(null)}function l(e){return[].concat.apply([],e)}function s(e,t){return t.length-e.length}function d(e){return e.constructor===Array}function c(e){return"string"==typeof e}function u(e){return"object"==typeof e}function p(e){return"function"==typeof e}n.d(t,{FK:function(){return s},NH:function(){return c},PO:function(){return r},TU:function(){return u},Vf:function(){return a},WN:function(){return d},pi:function(){return o},sB:function(){return p},wD:function(){return i},zo:function(){return l}})},3830:function(e,t,n){"use strict";n.d(t,{Z:()=>k}),n("8247");var i=n("13");function r(e,t,n,i){if(e&&(t&&(e=s(e,t)),this.matcher&&(e=s(e,this.matcher)),this.stemmer&&1<e.length&&(e=s(e,this.stemmer)),i&&1<e.length&&(e=c(e)),n||""===n)){let t=e.split(n);return this.filter?u(t,this.filter):t}return e}let o=/[\p{Z}\p{S}\p{P}\p{C}]+/u;function a(e){let t=(0,i.Vf)();for(let n=0,i=e.length;n<i;n++)t[e[n]]=1;return t}function l(e,t){let n=(0,i.pi)(e),r=n.length,o=[],a="",l=0;for(let i=0,s,c;i<r;i++)(c=e[s=n[i]])?(o[l++]=d(t?"(?!\\b)"+s+"(\\b|_)":s),o[l++]=c):a+=(a?"|":"")+s;return a&&(o[l++]=d(t?"(?!\\b)("+a+")(\\b|_)":"("+a+")"),o[l]=""),o}function s(e,t){for(let n=0,i=t.length;n<i&&(e=e.replace(t[n],t[n+1]));n+=2);return e}function d(e){return RegExp(e,"g")}function c(e){let t="",n="";for(let i=0,r=e.length,o;i<r;i++)(o=e[i])!==n&&(t+=n=o);return t}function u(e,t){let n=e.length,i=[];for(let r=0,o=0;r<n;r++){let n=e[r];n&&!t[n]&&(i[o++]=n)}return i}function p(e){return r.call(this,(""+e).toLowerCase(),!1,o,!1)}let h={},f={};var m=n("4220"),g=n("2010"),x=n("7999");let v={memory:{charset:"latin:extra",resolution:3,minlength:4,fastupdate:!1},performance:{resolution:3,minlength:3,optimize:!1,context:{depth:2,resolution:1}},match:{charset:"latin:extra",tokenize:"reverse"},score:{charset:"latin:advanced",resolution:20,minlength:3,context:{depth:3,resolution:9}},default:{}};function b(e){if((0,i.NH)(e))e=v[e];else{let t=e.preset;t&&(e=Object.assign({},t[t],e))}return e}var y=n("16");function w(e,t){let n,r,o;if(!(this instanceof w))return new w(e);e?(n=(e=b(e)).charset,r=e.lang,(0,i.NH)(n)&&(-1===n.indexOf(":")&&(n+=":default"),n=f[n]),(0,i.NH)(r)&&(r=h[r])):e={};let s,d,c=e.context||{};this.encode=e.encode||n&&n.encode||p,this.register=t||(0,i.Vf)(),this.resolution=s=e.resolution||9,this.tokenize=o=n&&n.tokenize||e.tokenize||"strict",this.depth="strict"===o&&c.depth,this.bidirectional=(0,i.wD)(c.bidirectional,!0),this.optimize=d=(0,i.wD)(e.optimize,!0),this.fastupdate=(0,i.wD)(e.fastupdate,!0),this.minlength=e.minlength||1,this.boost=e.boost,this.map=d?(0,i.PO)(s):(0,i.Vf)(),this.resolution_ctx=s=c.resolution||1,this.ctx=d?(0,i.PO)(s):(0,i.Vf)(),this.rtl=n&&n.rtl||e.rtl,this.matcher=(o=e.matcher||r&&r.matcher)&&l(o,!1),this.stemmer=(o=e.stemmer||r&&r.stemmer)&&l(o,!0),this.filter=(o=e.filter||r&&r.filter)&&a(o),this.cache=(o=e.cache)&&new x.Z(o)}let k=w;function j(e,t,n,i,r){return n&&1<e?t+(i||0)<=e?n+(r||0):0|(e-1)/(t+(i||0))*(n+(r||0))+1:0}function I(e,t,n){return e=1===e.length?e[0]:(0,i.zo)(e),n||e.length>t?e.slice(n,n+t):e}function P(e,t,n,i){if(n){let r=i&&t>n;e=(e=e[r?t:n])&&e[r?n:t]}else e=e[t];return e}function S(e,t,n,r,o){let a=0;if((0,i.WN)(e)){if(o){let n=e.indexOf(t);-1!==n?1<e.length&&(e.splice(n,1),a++):a++}else{o=Math.min(e.length,n);for(let i=0,l;i<o;i++)(l=e[i])&&(a=S(l,t,n,r,o),!r&&!a&&delete e[i])}}else for(let i in e)!(a=S(e[i],t,n,r,o))&&delete e[i];return a}w.prototype.append=function(e,t){return this.add(e,t,!0)},w.prototype.add=function(e,t,n,r){if(t&&(e||0===e)){if(!r&&!n&&this.register[e])return this.update(e,t);let o=(t=this.encode(""+t)).length;if(o){let r=(0,i.Vf)(),a=(0,i.Vf)(),l=this.depth,s=this.resolution;for(let d=0;d<o;d++){let c=t[this.rtl?o-1-d:d],u=c.length;if(c&&u>=this.minlength&&(l||!a[c])){let p=j(s,o,d),h="";switch(this.tokenize){case"full":if(2<u){for(let t=0;t<u;t++)for(let i=u;i>t;i--)if(i-t>=this.minlength){let r=j(s,o,d,u,t);h=c.substring(t,i),this.push_index(a,h,r,e,n)}break}case"reverse":if(1<u){for(let t=u-1;0<t;t--)if((h=c[t]+h).length>=this.minlength){let i=j(s,o,d,u,t);this.push_index(a,h,i,e,n)}h=""}case"forward":if(1<u){for(let t=0;t<u;t++)(h+=c[t]).length>=this.minlength&&this.push_index(a,h,p,e,n);break}default:if(this.boost&&(p=Math.min(0|p/this.boost(t,c,d),s-1)),this.push_index(a,c,p,e,n),l&&1<o&&d<o-1){let a=(0,i.Vf)(),s=this.resolution_ctx,u=c,p=Math.min(l+1,o-d);a[u]=1;for(let i=1;i<p;i++)if((c=t[this.rtl?o-1-d-i:d+i])&&c.length>=this.minlength&&!a[c]){a[c]=1;let t=j(s+(o/2>s?0:1),o,d,p-1,i-1),l=this.bidirectional&&c>u;this.push_index(r,l?u:c,t,e,n,l?c:u)}}}}}this.fastupdate||(this.register[e]=1)}}return this},w.prototype.push_index=function(e,t,n,r,o,a){let l=a?this.ctx:this.map;if((!e[t]||a&&!e[t][a])&&(this.optimize&&(l=l[n]),a?((e=e[t]||(e[t]=(0,i.Vf)()))[a]=1,l=l[a]||(l[a]=(0,i.Vf)())):e[t]=1,l=l[t]||(l[t]=[]),!this.optimize&&(l=l[n]||(l[n]=[])),(!o||!l.includes(r))&&(l[l.length]=r,this.fastupdate))){let e=this.register[r]||(this.register[r]=[]);e[e.length]=l}},w.prototype.search=function(e,t,n){!n&&(!t&&(0,i.TU)(e)?e=(n=e).query:(0,i.TU)(t)&&(n=t));let r=[],o,a,l,s=0;if(n&&(e=n.query||e,t=n.limit,s=n.offset||0,a=n.context,l=n.suggest),e&&1<(o=(e=this.encode(""+e)).length)){let t=(0,i.Vf)(),n=[];for(let i=0,a=0,s;i<o;i++)if((s=e[i])&&s.length>=this.minlength&&!t[s]){if(!this.optimize&&!l&&!this.map[s])return r;n[a++]=s,t[s]=1}o=(e=n).length}if(!o)return r;t||(t=100);let d=this.depth&&1<o&&!1!==a,c=0,u;d?(u=e[0],c=1):1<o&&e.sort(i.FK);for(let n,i;c<o;c++){if(i=e[c],d?(n=this.add_result(r,l,t,s,2===o,i,u),(!l||!1!==n||!r.length)&&(u=i)):n=this.add_result(r,l,t,s,1===o,i),n)return n;if(l&&c==o-1){let e=r.length;if(e){if(1===e)return I(r[0],t,s)}else{if(d){d=0,c=-1;continue}return r}}}return(0,g.w)(r,t,s,l)},w.prototype.add_result=function(e,t,n,i,r,o,a){let l=[],s=a?this.ctx:this.map;if(!this.optimize&&(s=P(s,o,a,this.bidirectional)),s){let t=0,d=Math.min(s.length,a?this.resolution_ctx:this.resolution);for(let e=0,c=0,u,p;e<d&&(!(u=s[e])||(this.optimize&&(u=P(u,o,a,this.bidirectional)),i&&u&&r&&((p=u.length)<=i?(i-=p,u=null):(u=u.slice(i),i=0)),!u||(l[t++]=u,!r||!((c+=u.length)>=n))));e++);if(t)return r?I(l,n,0):(e[e.length]=l,void 0)}return!t&&l},w.prototype.contain=function(e){return!!this.register[e]},w.prototype.update=function(e,t){return this.remove(e).add(e,t)},w.prototype.remove=function(e,t){let n=this.register[e];if(n){if(this.fastupdate)for(let t=0,i;t<n.length;t++)(i=n[t]).splice(i.indexOf(e),1);else S(this.map,e,this.resolution,this.optimize),this.depth&&S(this.ctx,e,this.resolution_ctx,this.optimize);t||delete this.register[e],this.cache&&this.cache.del(e)}return this},w.prototype.searchCache=x.r,w.prototype.export=y.qR,w.prototype.import=y.xt,(0,m.Z)(w.prototype)},2010:function(e,t,n){"use strict";n.d(t,{X:function(){return o},w:function(){return r}});var i=n(13);function r(e,t,n,r){let o=e.length,a=[],l,s,d=0;r&&(r=[]);for(let c=o-1;0<=c;c--){let u=e[c],p=u.length,h=(0,i.Vf)(),f=!l;for(let e=0;e<p;e++){let i=u[e],p=i.length;if(p)for(let e=0,u,m;e<p;e++)if(m=i[e],l){if(l[m]){if(!c){if(n)n--;else if(a[d++]=m,d===t)return a}(c||r)&&(h[m]=1),f=!0}if(r&&(u=(s[m]||0)+1,s[m]=u,u<o)){let e=r[u-2]||(r[u-2]=[]);e[e.length]=m}}else h[m]=1}if(r)l||(s=h);else if(!f)return[];l=h}if(r)for(let e=r.length-1,i,o;0<=e;e--){o=(i=r[e]).length;for(let e=0,r;e<o;e++)if(!l[r=i[e]]){if(n)n--;else if(a[d++]=r,d===t)return a;l[r]=1}}return a}function o(e,t){let n=(0,i.Vf)(),r=(0,i.Vf)(),o=[];for(let t=0;t<e.length;t++)n[e[t]]=1;for(let e=0,i;e<t.length;e++){i=t[e];for(let e=0,t;e<i.length;e++)n[t=i[e]]&&!r[t]&&(r[t]=1,o[o.length]=t)}return o}},16:function(e,t,n){"use strict";n.d(t,{bx:function(){return l},qR:function(){return o},xr:function(){return s},xt:function(){return a}}),n(8247);var i=n(13);function r(e,t,n,i,r,o,a,l){setTimeout(function(){let s=e(n?n+"."+i:i,JSON.stringify(a));s&&s.then?s.then(function(){t.export(e,t,n,r,o+1,l)}):t.export(e,t,n,r,o+1,l)})}function o(e,t,n,o,a,l){let s,d,c=!0;switch(void 0===l&&(c=new Promise(e=>{l=e})),a||(a=0)){case 0:if(s="reg",this.fastupdate)for(let e in d=(0,i.Vf)(),this.register)d[e]=1;else d=this.register;break;case 1:s="cfg",d={doc:0,opt:this.optimize?1:0};break;case 2:s="map",d=this.map;break;case 3:s="ctx",d=this.ctx;break;default:void 0===n&&l&&l();return}return r(e,t||this,n,s,o,a,d,l),c}function a(e,t){if(!!t)switch((0,i.NH)(t)&&(t=JSON.parse(t)),e){case"cfg":this.optimize=!!t.opt;break;case"reg":this.fastupdate=!1,this.register=t;break;case"map":this.map=t;break;case"ctx":this.ctx=t}}function l(e,t,n,i,o,a){let l;if(void 0===a&&(l=new Promise(e=>{a=e})),o||(o=0),i||(i=0),i<this.field.length){let n=this.field[i],r=this.index[n];t=this,setTimeout(function(){!r.export(e,t,o?n:"",i,o++,a)&&(i++,o=1,t.export(e,t,n,i,o,a))})}else{let t,l;switch(o){case 1:t="tag",l=this.tagindex,n=null;break;case 2:t="store",l=this.store,n=null;break;default:a();return}r(e,this,n,t,i,o,l,a)}return l}function s(e,t){if(!!t)switch((0,i.NH)(t)&&(t=JSON.parse(t)),e){case"tag":this.tagindex=t;break;case"reg":this.fastupdate=!1,this.register=t;for(let e=0,n;e<this.field.length;e++)(n=this.index[this.field[e]]).register=t,n.fastupdate=!1;break;case"store":this.store=t;break;default:let n=(e=e.split("."))[0];e=e[1],n&&e&&this.index[n].import(e,t)}}},8247:function(){"use strict";function e(){this.cache=null,this.matcher=null,this.stemmer=null,this.filter=null}e.prototype.add,e.prototype.append,e.prototype.search,e.prototype.update,e.prototype.remove},9082:function(e,t,n){"use strict";n.d(t,{Z:function(){return r}});var i=n(3830);function r(e){e=e.data;let t=self._index,n=e.args,r=e.task;if("init"===r){let t=e.options||{},n=e.factory,r=t.encode;t.cache=!1,r&&0===r.indexOf("function")&&(t.encode=Function("return "+r)()),n?(Function("return "+n)()(self),self._index=new self.FlexSearch.Index(t),delete self.FlexSearch):self._index=new i.Z(t)}else{let i=e.id,o=t[r].apply(t,n);postMessage("search"===r?{id:i,msg:o}:{id:i})}}},1387:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Z:function(){return __WEBPACK_DEFAULT_EXPORT__}});var _common_js__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(13),_handler_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(9082);let pid=0;function WorkerIndex(e){let t;if(!(this instanceof WorkerIndex))return new WorkerIndex(e);e?(0,_common_js__WEBPACK_IMPORTED_MODULE_1__.sB)(t=e.encode)&&(e.encode=t.toString()):e={};let n=(self||window)._factory;n&&(n=n.toString());let i="undefined"==typeof window&&self.exports,r=this;if(this.worker=create(n,i,e.worker),this.resolver=(0,_common_js__WEBPACK_IMPORTED_MODULE_1__.Vf)(),!!this.worker)i?this.worker.on("message",function(e){r.resolver[e.id](e.msg),delete r.resolver[e.id]}):this.worker.onmessage=function(e){e=e.data,r.resolver[e.id](e.msg),delete r.resolver[e.id]},this.worker.postMessage({task:"init",factory:n,options:e})}let __WEBPACK_DEFAULT_EXPORT__=WorkerIndex;function register(e){WorkerIndex.prototype[e]=WorkerIndex.prototype[e+"Async"]=function(){let t;let n=this,i=[].slice.call(arguments),r=i[i.length-1];(0,_common_js__WEBPACK_IMPORTED_MODULE_1__.sB)(r)&&(t=r,i.splice(i.length-1,1));let o=new Promise(function(t){setTimeout(function(){n.resolver[++pid]=t,n.worker.postMessage({task:e,id:pid,args:i})})});return t?(o.then(t),this):o}}function create(factory,is_node_js,worker_path){let worker;try{worker=is_node_js?eval('new (require("worker_threads")["Worker"])(__dirname + "/node/node.js")'):factory?new Worker(URL.createObjectURL(new Blob(["onmessage="+_handler_js__WEBPACK_IMPORTED_MODULE_0__.Z.toString()],{type:"text/javascript"}))):new Worker((0,_common_js__WEBPACK_IMPORTED_MODULE_1__.NH)(worker_path)?worker_path:"worker/worker.js",{type:"module"})}catch(e){}return worker}register("add"),register("append"),register("search"),register("update"),register("remove")},3451:function(e){"use strict";e.exports=n;var t=/[#.]/g;function n(e,n){for(var i,r,o,a=e||"",l=n||"div",s={},d=0;d<a.length;)t.lastIndex=d,o=t.exec(a),(i=a.slice(d,o?o.index:a.length))&&(r?"#"===r?s.id=i:s.className?s.className.push(i):s.className=[i]:l=i,d+=i.length),o&&(r=o[0],d++);return{type:"element",tagName:l,properties:s,children:[]}}},6442:function(e,t,n){"use strict";var i=n(2616),r=n(2275),o=n(3451),a=n(3212).parse,l=n(429).parse;e.exports=d;var s={}.hasOwnProperty;function d(e,t,n){var r=n?g(n):null;return d;function d(e,n){var i,a=o(e,t),l=Array.prototype.slice.call(arguments,2),d=a.tagName.toLowerCase();if(a.tagName=r&&s.call(r,d)?r[d]:d,n&&c(n,a)&&(l.unshift(n),n=null),n)for(i in n)u(a.properties,i,n[i]);return p(a.children,l),"template"===a.tagName&&(a.content={type:"root",children:a.children},a.children=[]),a}function u(t,n,r){var o,s,d;if(null!=r&&r==r)s=(o=i(e,n)).property,"string"==typeof(d=r)&&(o.spaceSeparated?d=a(d):o.commaSeparated?d=l(d):o.commaOrSpaceSeparated&&(d=a(l(d).join(" ")))),"style"===s&&"string"!=typeof r&&(d=m(d)),"className"===s&&t.className&&(d=t.className.concat(d)),t[s]=h(o,s,d)}}function c(e,t){return"string"==typeof e||"length"in e||u(t.tagName,e)}function u(e,t){var n=t.type;return"input"!==e&&!!n&&"string"==typeof n&&("object"==typeof t.children&&"length"in t.children||((n=n.toLowerCase(),"button"===e)?"menu"!==n&&"submit"!==n&&"reset"!==n&&"button"!==n:"value"in t))}function p(e,t){var n,i;if("string"==typeof t||"number"==typeof t){e.push({type:"text",value:String(t)});return}if("object"==typeof t&&"length"in t){for(n=-1,i=t.length;++n<i;)p(e,t[n]);return}if("object"!=typeof t||!("type"in t))throw Error("Expected node, nodes, or string, got `"+t+"`");e.push(t)}function h(e,t,n){var i,r,o;if("object"!=typeof n||!("length"in n))return f(e,t,n);for(r=n.length,i=-1,o=[];++i<r;)o[i]=f(e,t,n[i]);return o}function f(e,t,n){var i=n;return e.number||e.positiveNumber?!isNaN(i)&&""!==i&&(i=Number(i)):(e.boolean||e.overloadedBoolean)&&"string"==typeof i&&(""===i||r(n)===r(t))&&(i=!0),i}function m(e){var t,n=[];for(t in e)n.push([t,e[t]].join(": "));return n.join("; ")}function g(e){for(var t,n=e.length,i=-1,r={};++i<n;)r[(t=e[i]).toLowerCase()]=t;return r}},7665:function(e,t,n){"use strict";var i=n(6093),r=n(6442)(i,"div");r.displayName="html",e.exports=r},4396:function(e,t,n){"use strict";e.exports=n(7665)},3393:function(e,t,n){"use strict";e.exports=n(8606)},4823:function(e,t,n){!function(t,i){e.exports=i(n(6945))}(0,function(e){"use strict";function t(e,t,i,r){return void 0===t&&(t={}),Object.keys(t).reduce(function(o,a){if(/^on.*/.test(a))return o;var l=a;/^(data|aria)-/.test(a)||0===i.filter(function(e){return e instanceof RegExp?e.test(a):e===a}).length&&(l=n(a));var s,d,c=r(e,l);if("style"===c.name)o[c.name]=(s=t.style,d={},s.split(";").filter(function(e){return""!==e.trim()}).forEach(function(e){var t,i=e.split(":");if(i.length>1){var r=function(e){return/^-ms-/.test(e)&&(e=e.substr(1)),e.startsWith("--")?e:n(e)}(i[0].trim()),o=(t=i.slice(1).join(":").trim(),/^\d+$/.test(t)?Number(t):t.replace(/'/g,'"'));d[r]=o}}),d);else{var u=t[a],p=""===u||String(u).toLowerCase()===l.toLowerCase();o[c.name]=c.isBoolean?p:u}return o},{})}function n(e){return e.replace(/(-|:)(.)/g,function(e,t,n){return n.toUpperCase()})}e=e&&e.hasOwnProperty("default")?e.default:e;var i=["table","tbody","thead","tfoot","tr"],r={for:"htmlFor",class:"className",allowfullscreen:["allowFullScreen","allowFullscreen"],autocomplete:"autoComplete",autofocus:["autoFocus"],contenteditable:"contentEditable",spellcheck:"spellCheck",srcdoc:"srcDoc",srcset:"srcSet",itemscope:"itemScope",itemprop:"itemProp",itemtype:"itemType"};function o(e,t){var n=r[t],i=document.createElement(e);if(n)return{name:Array.isArray(n)?n[0]:n,isBoolean:a(i,Array.isArray(n)?n[1]||t:n)};for(var o in i)if(o.toLowerCase()===t.toLowerCase())return{name:o,isBoolean:a(i,o)};return{name:t,isBoolean:a(i,t)}}function a(e,t){return e.setAttribute(t,""),!0===e[t]||l.indexOf(t)>-1}var l=["itemScope"];function s(t,n,i,r){void 0===r&&(r=null);var o=i[t],a=i._;return o?e.createElement(o,n,r):a?a(t,n,r):e.createElement(t,n,r)}return function(e,n){if(void 0===n&&(n={}),"string"!=typeof e)throw TypeError("Expected HTML string");var r=document.createElement("div");r.innerHTML=e.trim();var a=Array.from(r.childNodes).map(function(e,r){return function e(n,r,a){var l=a.transform||{},d=a.preserveAttributes||[],c=a.dangerouslySetChildren||["style"],u=l._;if(8===n.nodeType)return null;if(3===n.nodeType){var p=n.textContent;return u?u(p):p}for(var h={},f=n.attributes,m=0;m<f.length;m++)h[f[m].name]=f[m].value;h.key=r.toString();var g=n.tagName.toLowerCase(),x=t(g,h,d,o),v=Array.from(n.childNodes).map(function(t,n){return i.indexOf(g)>-1&&3===t.nodeType&&(t.textContent=t.textContent.trim(),""===t.textContent)?null:e(t,r+"."+n,a)}).filter(Boolean);if(c.indexOf(g)>-1){var b=n.innerHTML;return b&&("style"!==g&&"script"!==g&&(b=b.replace(/"/g,"&quot;")),x.dangerouslySetInnerHTML={__html:b.trim()}),s(g,x,l)}return s(g,x,l,0===v.length?null:v)}(e,String(r),n)}).filter(Boolean);return 1===a.length?a[0]:a}})},4546:function(e){"use strict";var t=function(e,t,n,i,r,o,a,l){if(!e){var s;if(void 0===t)s=Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var d=[n,i,r,o,a,l],c=0;(s=Error(t.replace(/%s/g,function(){return d[c++]}))).name="Invariant Violation"}throw s.framesToPop=1,s}};e.exports=t},4761:function(e){"use strict";function t(e){var t="string"==typeof e?e.charCodeAt(0):e;return t>=97&&t<=122||t>=65&&t<=90}e.exports=t},9975:function(e,t,n){"use strict";var i=n(4761),r=n(7525);function o(e){return i(e)||r(e)}e.exports=o},7525:function(e){"use strict";function t(e){var t="string"==typeof e?e.charCodeAt(0):e;return t>=48&&t<=57}e.exports=t},2201:function(e){"use strict";function t(e){var t="string"==typeof e?e.charCodeAt(0):e;return t>=97&&t<=102||t>=65&&t<=70||t>=48&&t<=57}e.exports=t},7841:function(e){!function(t,n){"function"==typeof define&&define.amd?define(n):e.exports=n()}(0,function(){var e={};e.version="0.2.0";var t=e.settings={minimum:.08,easing:"ease",positionUsing:"",speed:200,trickle:!0,trickleRate:.02,trickleSpeed:800,showSpinner:!0,barSelector:'[role="bar"]',spinnerSelector:'[role="spinner"]',parent:"body",template:'<div class="bar" role="bar"><div class="peg"></div></div><div class="spinner" role="spinner"><div class="spinner-icon"></div></div>'};function n(e,t,n){return e<t?t:e>n?n:e}function i(e){return(-1+e)*100}function r(e,n,r){var o;return(o="translate3d"===t.positionUsing?{transform:"translate3d("+i(e)+"%,0,0)"}:"translate"===t.positionUsing?{transform:"translate("+i(e)+"%,0)"}:{"margin-left":i(e)+"%"}).transition="all "+n+"ms "+r,o}e.configure=function(e){var n,i;for(n in e)void 0!==(i=e[n])&&e.hasOwnProperty(n)&&(t[n]=i);return this},e.status=null,e.set=function(i){var l=e.isStarted();i=n(i,t.minimum,1),e.status=1===i?null:i;var s=e.render(!l),d=s.querySelector(t.barSelector),c=t.speed,u=t.easing;return s.offsetWidth,o(function(n){""===t.positionUsing&&(t.positionUsing=e.getPositioningCSS()),a(d,r(i,c,u)),1===i?(a(s,{transition:"none",opacity:1}),s.offsetWidth,setTimeout(function(){a(s,{transition:"all "+c+"ms linear",opacity:0}),setTimeout(function(){e.remove(),n()},c)},c)):setTimeout(n,c)}),this},e.isStarted=function(){return"number"==typeof e.status},e.start=function(){!e.status&&e.set(0);var n=function(){setTimeout(function(){e.status&&(e.trickle(),n())},t.trickleSpeed)};return t.trickle&&n(),this},e.done=function(t){return t||e.status?e.inc(.3+.5*Math.random()).set(1):this},e.inc=function(t){var i=e.status;return i?("number"!=typeof t&&(t=(1-i)*n(Math.random()*i,.1,.95)),i=n(i+t,0,.994),e.set(i)):e.start()},e.trickle=function(){return e.inc(Math.random()*t.trickleRate)},!function(){var t=0,n=0;e.promise=function(i){return i&&"resolved"!==i.state()?(0===n&&e.start(),t++,n++,i.always(function(){0==--n?(t=0,e.done()):e.set((t-n)/t)}),this):this}}(),e.render=function(n){if(e.isRendered())return document.getElementById("nprogress");s(document.documentElement,"nprogress-busy");var r=document.createElement("div");r.id="nprogress",r.innerHTML=t.template;var o,l=r.querySelector(t.barSelector),d=n?"-100":i(e.status||0),c=document.querySelector(t.parent);return a(l,{transition:"all 0 linear",transform:"translate3d("+d+"%,0,0)"}),!t.showSpinner&&(o=r.querySelector(t.spinnerSelector))&&u(o),c!=document.body&&s(c,"nprogress-custom-parent"),c.appendChild(r),r},e.remove=function(){d(document.documentElement,"nprogress-busy"),d(document.querySelector(t.parent),"nprogress-custom-parent");var e=document.getElementById("nprogress");e&&u(e)},e.isRendered=function(){return!!document.getElementById("nprogress")},e.getPositioningCSS=function(){var e=document.body.style,t="WebkitTransform"in e?"Webkit":"MozTransform"in e?"Moz":"msTransform"in e?"ms":"OTransform"in e?"O":"";return t+"Perspective" in e?"translate3d":t+"Transform" in e?"translate":"margin"};var o=function(){var e=[];function t(){var n=e.shift();n&&n(t)}return function(n){e.push(n),1==e.length&&t()}}(),a=function(){var e=["Webkit","O","Moz","ms"],t={};function n(e){return e.replace(/^-ms-/,"ms-").replace(/-([\da-z])/gi,function(e,t){return t.toUpperCase()})}function i(t){var n=document.body.style;if(t in n)return t;for(var i,r=e.length,o=t.charAt(0).toUpperCase()+t.slice(1);r--;)if((i=e[r]+o)in n)return i;return t}function r(e){return t[e=n(e)]||(t[e]=i(e))}function o(e,t,n){t=r(t),e.style[t]=n}return function(e,t){var n,i,r=arguments;if(2==r.length)for(n in t)void 0!==(i=t[n])&&t.hasOwnProperty(n)&&o(e,n,i);else o(e,r[1],r[2])}}();function l(e,t){return("string"==typeof e?e:c(e)).indexOf(" "+t+" ")>=0}function s(e,t){var n=c(e),i=n+t;!l(n,t)&&(e.className=i.substring(1))}function d(e,t){var n,i=c(e);l(e,t)&&(n=i.replace(" "+t+" "," "),e.className=n.substring(1,n.length-1))}function c(e){return(" "+(e.className||"")+" ").replace(/\s+/gi," ")}function u(e){e&&e.parentNode&&e.parentNode.removeChild(e)}return e})},5144:function(e){"use strict";var t,n=59;function i(e){var i,r="&"+e+";";return(t=t||document.createElement("i")).innerHTML=r,((i=t.textContent).charCodeAt(i.length-1)!==n||"semi"===e)&&i!==r&&i}e.exports=i},2668:function(e,t,n){"use strict";var i=n(924),r=n(3222),o=n(7525),a=n(2201),l=n(9975),s=n(5144);e.exports=R;var d={}.hasOwnProperty,c=String.fromCharCode,u=Function.prototype,p={warning:null,reference:null,text:null,warningContext:null,referenceContext:null,textContext:null,position:{},additional:null,attribute:!1,nonTerminated:!0},h=9,f=10,m=12,g=32,x=38,v=59,b=60,y=61,w=35,k=88,j=120,I=65533,P="named",S="hexadecimal",E="decimal",_={};_[S]=16,_[E]=10;var C={};C[P]=l,C[E]=o,C[S]=a;var z=1,N=2,A=3,T=4,O=5,M=6,L=7,$={};function R(e,t){var n,i,r={};for(i in!t&&(t={}),p)n=t[i],r[i]=null==n?p[i]:n;return(r.position.indent||r.position.start)&&(r.indent=r.position.indent||[],r.position=r.position.start),H(e,r)}function H(e,t){var n,o,a,p,R,H,F,W,q,V,U,Z,G,Y,K,J,Q,X,ee,et=t.additional,en=t.nonTerminated,ei=t.text,er=t.reference,eo=t.warning,ea=t.textContext,el=t.referenceContext,es=t.warningContext,ed=t.position,ec=t.indent||[],eu=e.length,ep=0,eh=-1,ef=ed.column||1,em=ed.line||1,eg="",ex=[];for("string"==typeof et&&(et=et.charCodeAt(0)),J=ev(),W=eo?eb:u,ep--,eu++;++ep<eu;)if(R===f&&(ef=ec[eh]||1),(R=e.charCodeAt(ep))===x){if((F=e.charCodeAt(ep+1))===h||F===f||F===m||F===g||F===x||F===b||F!=F||et&&F===et){eg+=c(R),ef++;continue}for(Z=G=ep+1,ee=G,F===w?(ee=++Z,(F=e.charCodeAt(ee))===k||F===j?(Y=S,ee=++Z):Y=E):Y=P,n="",U="",p="",K=C[Y],ee--;++ee<eu&&K(F=e.charCodeAt(ee));){;p+=c(F),Y===P&&d.call(i,p)&&(n=p,U=i[p])}if((a=e.charCodeAt(ee)===v)&&(ee++,(o=Y===P&&s(p))&&(n=p,U=o)),X=1+ee-G,a||en)p?Y===P?(a&&!U?W(O,1):(n!==p&&(X=1+(ee=Z+n.length)-Z,a=!1),!a&&(q=n?z:A,t.attribute?(F=e.charCodeAt(ee))===y?(W(q,X),U=null):l(F)?U=null:W(q,X):W(q,X))),H=U):(!a&&W(N,X),B(H=parseInt(p,_[Y]))?(W(L,X),H=c(I)):H in r?(W(M,X),H=r[H]):(V="",D(H)&&W(M,X),H>65535&&(H-=65536,V+=c(H>>>10|55296),H=56320|1023&H),H=V+c(H))):Y!==P&&W(T,X);H?(ey(),J=ev(),ep=ee-1,ef+=ee-G+1,ex.push(H),Q=ev(),Q.offset++,er&&er.call(el,H,{start:J,end:Q},e.slice(G-1,ee)),J=Q):(p=e.slice(G-1,ee),eg+=p,ef+=p.length,ep=ee-1)}else 10===R&&(em++,eh++,ef=0),R==R?(eg+=c(R),ef++):ey();return ex.join("");function ev(){return{line:em,column:ef,offset:ep+(ed.offset||0)}}function eb(e,t){var n=ev();n.column+=t,n.offset+=t,eo.call(es,$[e],n,e)}function ey(){eg&&(ex.push(eg),ei&&ei.call(ea,eg,{start:J,end:ev()}),eg="")}}function B(e){return e>=55296&&e<=57343||e>1114111}function D(e){return e>=1&&e<=8||11===e||e>=13&&e<=31||e>=127&&e<=159||e>=64976&&e<=65007||(65535&e)==65535||(65535&e)==65534}$[1]="Named character references must be terminated by a semicolon",$[N]="Numeric character references must be terminated by a semicolon",$[A]="Named character references cannot be empty",$[T]="Numeric character references cannot be empty",$[O]="Named character references must be known",$[M]="Numeric character references cannot be disallowed",$[L]="Numeric character references cannot be outside the permissible Unicode range"},3921:function(e,t,n){var i=function(e){var t=/(?:^|\s)lang(?:uage)?-([\w-]+)(?=\s|$)/i,n=0,i={},r={manual:e.Prism&&e.Prism.manual,disableWorkerMessageHandler:e.Prism&&e.Prism.disableWorkerMessageHandler,util:{encode:function e(t){return t instanceof o?new o(t.type,e(t.content),t.alias):Array.isArray(t)?t.map(e):t.replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/\u00a0/g," ")},type:function(e){return Object.prototype.toString.call(e).slice(8,-1)},objId:function(e){return!e.__id&&Object.defineProperty(e,"__id",{value:++n}),e.__id},clone:function e(t,n){var i,o;switch(n=n||{},r.util.type(t)){case"Object":if(n[o=r.util.objId(t)])return n[o];for(var a in i={},n[o]=i,t)t.hasOwnProperty(a)&&(i[a]=e(t[a],n));return i;case"Array":if(n[o=r.util.objId(t)])return n[o];return i=[],n[o]=i,t.forEach(function(t,r){i[r]=e(t,n)}),i;default:return t}},getLanguage:function(e){for(;e;){var n=t.exec(e.className);if(n)return n[1].toLowerCase();e=e.parentElement}return"none"},setLanguage:function(e,n){e.className=e.className.replace(RegExp(t,"gi"),""),e.classList.add("language-"+n)},currentScript:function(){if("undefined"==typeof document)return null;if("currentScript"in document)return document.currentScript;try{throw Error()}catch(i){var e=(/at [^(\r\n]*\((.*):[^:]+:[^:]+\)$/i.exec(i.stack)||[])[1];if(e){var t=document.getElementsByTagName("script");for(var n in t)if(t[n].src==e)return t[n]}return null}},isActive:function(e,t,n){for(var i="no-"+t;e;){var r=e.classList;if(r.contains(t))return!0;if(r.contains(i))return!1;e=e.parentElement}return!!n}},languages:{plain:i,plaintext:i,text:i,txt:i,extend:function(e,t){var n=r.util.clone(r.languages[e]);for(var i in t)n[i]=t[i];return n},insertBefore:function(e,t,n,i){var o=(i=i||r.languages)[e],a={};for(var l in o)if(o.hasOwnProperty(l)){if(l==t)for(var s in n)n.hasOwnProperty(s)&&(a[s]=n[s]);!n.hasOwnProperty(l)&&(a[l]=o[l])}var d=i[e];return i[e]=a,r.languages.DFS(r.languages,function(t,n){n===d&&t!=e&&(this[t]=a)}),a},DFS:function e(t,n,i,o){o=o||{};var a=r.util.objId;for(var l in t)if(t.hasOwnProperty(l)){n.call(t,l,t[l],i||l);var s=t[l],d=r.util.type(s);"Object"!==d||o[a(s)]?"Array"===d&&!o[a(s)]&&(o[a(s)]=!0,e(s,n,l,o)):(o[a(s)]=!0,e(s,n,null,o))}}},plugins:{},highlightAll:function(e,t){r.highlightAllUnder(document,e,t)},highlightAllUnder:function(e,t,n){var i={callback:n,container:e,selector:'code[class*="language-"], [class*="language-"] code, code[class*="lang-"], [class*="lang-"] code'};r.hooks.run("before-highlightall",i),i.elements=Array.prototype.slice.apply(i.container.querySelectorAll(i.selector)),r.hooks.run("before-all-elements-highlight",i);for(var o,a=0;o=i.elements[a++];)r.highlightElement(o,!0===t,i.callback)},highlightElement:function(t,n,i){var o=r.util.getLanguage(t),a=r.languages[o];r.util.setLanguage(t,o);var l=t.parentElement;l&&"pre"===l.nodeName.toLowerCase()&&r.util.setLanguage(l,o);var s=t.textContent,d={element:t,language:o,grammar:a,code:s};function c(e){d.highlightedCode=e,r.hooks.run("before-insert",d),d.element.innerHTML=d.highlightedCode,r.hooks.run("after-highlight",d),r.hooks.run("complete",d),i&&i.call(d.element)}if(r.hooks.run("before-sanity-check",d),(l=d.element.parentElement)&&"pre"===l.nodeName.toLowerCase()&&!l.hasAttribute("tabindex")&&l.setAttribute("tabindex","0"),!d.code){r.hooks.run("complete",d),i&&i.call(d.element);return}if(r.hooks.run("before-highlight",d),!d.grammar){c(r.util.encode(d.code));return}if(n&&e.Worker){var u=new Worker(r.filename);u.onmessage=function(e){c(e.data)},u.postMessage(JSON.stringify({language:d.language,code:d.code,immediateClose:!0}))}else c(r.highlight(d.code,d.grammar,d.language))},highlight:function(e,t,n){var i={code:e,grammar:t,language:n};if(r.hooks.run("before-tokenize",i),!i.grammar)throw Error('The language "'+i.language+'" has no grammar.');return i.tokens=r.tokenize(i.code,i.grammar),r.hooks.run("after-tokenize",i),o.stringify(r.util.encode(i.tokens),i.language)},tokenize:function(e,t){var n=t.rest;if(n){for(var i in n)t[i]=n[i];delete t.rest}var r=new s;return d(r,r.head,e),l(e,r,t,r.head,0),u(r)},hooks:{all:{},add:function(e,t){var n=r.hooks.all;n[e]=n[e]||[],n[e].push(t)},run:function(e,t){var n=r.hooks.all[e];if(!!n&&!!n.length)for(var i,o=0;i=n[o++];)i(t)}},Token:o};function o(e,t,n,i){this.type=e,this.content=t,this.alias=n,this.length=0|(i||"").length}function a(e,t,n,i){e.lastIndex=t;var r=e.exec(n);if(r&&i&&r[1]){var o=r[1].length;r.index+=o,r[0]=r[0].slice(o)}return r}function l(e,t,n,i,s,u){for(var p in n){if(!!n.hasOwnProperty(p)&&!!n[p]){var h=n[p];h=Array.isArray(h)?h:[h];for(var f=0;f<h.length;++f){if(u&&u.cause==p+","+f)return;var m=h[f],g=m.inside,x=!!m.lookbehind,v=!!m.greedy,b=m.alias;if(v&&!m.pattern.global){var y=m.pattern.toString().match(/[imsuy]*$/)[0];m.pattern=RegExp(m.pattern.source,y+"g")}for(var w=m.pattern||m,k=i.next,j=s;k!==t.tail&&(!u||!(j>=u.reach));j+=k.value.length,k=k.next){;var I,P=k.value;if(t.length>e.length)return;if(!(P instanceof o)){var S=1;if(v){if(!(I=a(w,j,e,x))||I.index>=e.length)break;var E=I.index,_=I.index+I[0].length,C=j;for(C+=k.value.length;E>=C;)C+=(k=k.next).value.length;if(C-=k.value.length,j=C,k.value instanceof o)continue;for(var z=k;z!==t.tail&&(C<_||"string"==typeof z.value);z=z.next)S++,C+=z.value.length;S--,P=e.slice(j,C),I.index-=j}else if(!(I=a(w,0,P,x)))continue;var E=I.index,N=I[0],A=P.slice(0,E),T=P.slice(E+N.length),O=j+P.length;u&&O>u.reach&&(u.reach=O);var M=k.prev;if(A&&(M=d(t,M,A),j+=A.length),c(t,M,S),k=d(t,M,new o(p,g?r.tokenize(N,g):N,b,N)),T&&d(t,k,T),S>1){var L={cause:p+","+f,reach:O};l(e,t,n,k.prev,j,L),u&&L.reach>u.reach&&(u.reach=L.reach)}}}}}}}function s(){var e={value:null,prev:null,next:null},t={value:null,prev:e,next:null};e.next=t,this.head=e,this.tail=t,this.length=0}function d(e,t,n){var i=t.next,r={value:n,prev:t,next:i};return t.next=r,i.prev=r,e.length++,r}function c(e,t,n){for(var i=t.next,r=0;r<n&&i!==e.tail;r++)i=i.next;t.next=i,i.prev=t,e.length-=r}function u(e){for(var t=[],n=e.head.next;n!==e.tail;)t.push(n.value),n=n.next;return t}if(e.Prism=r,o.stringify=function e(t,n){if("string"==typeof t)return t;if(Array.isArray(t)){var i="";return t.forEach(function(t){i+=e(t,n)}),i}var o={type:t.type,content:e(t.content,n),tag:"span",classes:["token",t.type],attributes:{},language:n},a=t.alias;a&&(Array.isArray(a)?Array.prototype.push.apply(o.classes,a):o.classes.push(a)),r.hooks.run("wrap",o);var l="";for(var s in o.attributes)l+=" "+s+'="'+(o.attributes[s]||"").replace(/"/g,"&quot;")+'"';return"<"+o.tag+' class="'+o.classes.join(" ")+'"'+l+">"+o.content+"</"+o.tag+">"},!e.document)return e.addEventListener?(!r.disableWorkerMessageHandler&&e.addEventListener("message",function(t){var n=JSON.parse(t.data),i=n.language,o=n.code,a=n.immediateClose;e.postMessage(r.highlight(o,r.languages[i],i)),a&&e.close()},!1),r):r;var p=r.util.currentScript();function h(){!r.manual&&r.highlightAll()}if(p&&(r.filename=p.src,p.hasAttribute("data-manual")&&(r.manual=!0)),!r.manual){var f=document.readyState;"loading"===f||"interactive"===f&&p&&p.defer?document.addEventListener("DOMContentLoaded",h):window.requestAnimationFrame?window.requestAnimationFrame(h):window.setTimeout(h,16)}return r}("undefined"!=typeof window?window:"undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?self:{});e.exports&&(e.exports=i),void 0!==n.g&&(n.g.Prism=i)},2504:function(e,t,n){"use strict";var i=n(2265);function r(){}function o(){}o.resetWarningCache=r,e.exports=function(){function e(e,t,n,r,o,a){if(a!==i){var l=Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw l.name="Invariant Violation",l}}function t(){return e}e.isRequired=e;var n={array:e,bigint:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:o,resetWarningCache:r};return n.PropTypes=n,n}},3698:function(e,t,n){e.exports=n(2504)()},2265:function(e){"use strict";var t="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";e.exports=t},2616:function(e,t,n){"use strict";var i=n(2275),r=n(6492),o=n(3811),a="data";e.exports=c;var l=/^data[-\w.:]+$/i,s=/-[a-z]/g,d=/[A-Z]/g;function c(e,t){var n=i(t),s=t,d=o;return n in e.normal?e.property[e.normal[n]]:(n.length>4&&n.slice(0,4)===a&&l.test(t)&&("-"===t.charAt(4)?s=u(t):t=p(t),d=r),new d(s,t))}function u(e){var t=e.slice(5).replace(s,f);return a+t.charAt(0).toUpperCase()+t.slice(1)}function p(e){var t=e.slice(4);return s.test(t)?e:("-"!==(t=t.replace(d,h)).charAt(0)&&(t="-"+t),a+t)}function h(e){return"-"+e.toLowerCase()}function f(e){return e.charAt(1).toUpperCase()}},6093:function(e,t,n){"use strict";var i=n(6399),r=n(9283),o=n(7430),a=n(2376),l=n(5531),s=n(1581);e.exports=i([o,r,a,l,s])},5531:function(e,t,n){"use strict";var i=n(3077),r=n(9469),o=i.booleanish,a=i.number,l=i.spaceSeparated;function s(e,t){return"role"===t?t:"aria-"+t.slice(4).toLowerCase()}e.exports=r({transform:s,properties:{ariaActiveDescendant:null,ariaAtomic:o,ariaAutoComplete:null,ariaBusy:o,ariaChecked:o,ariaColCount:a,ariaColIndex:a,ariaColSpan:a,ariaControls:l,ariaCurrent:null,ariaDescribedBy:l,ariaDetails:null,ariaDisabled:o,ariaDropEffect:l,ariaErrorMessage:null,ariaExpanded:o,ariaFlowTo:l,ariaGrabbed:o,ariaHasPopup:null,ariaHidden:o,ariaInvalid:null,ariaKeyShortcuts:null,ariaLabel:null,ariaLabelledBy:l,ariaLevel:a,ariaLive:null,ariaModal:o,ariaMultiLine:o,ariaMultiSelectable:o,ariaOrientation:null,ariaOwns:l,ariaPlaceholder:null,ariaPosInSet:a,ariaPressed:o,ariaReadOnly:o,ariaRelevant:null,ariaRequired:o,ariaRoleDescription:l,ariaRowCount:a,ariaRowIndex:a,ariaRowSpan:a,ariaSelected:o,ariaSetSize:a,ariaSort:null,ariaValueMax:a,ariaValueMin:a,ariaValueNow:a,ariaValueText:null,role:null}})},1581:function(e,t,n){"use strict";var i=n(3077),r=n(9469),o=n(2561),a=i.boolean,l=i.overloadedBoolean,s=i.booleanish,d=i.number,c=i.spaceSeparated,u=i.commaSeparated;e.exports=r({space:"html",attributes:{acceptcharset:"accept-charset",classname:"class",htmlfor:"for",httpequiv:"http-equiv"},transform:o,mustUseProperty:["checked","multiple","muted","selected"],properties:{abbr:null,accept:u,acceptCharset:c,accessKey:c,action:null,allow:null,allowFullScreen:a,allowPaymentRequest:a,allowUserMedia:a,alt:null,as:null,async:a,autoCapitalize:null,autoComplete:c,autoFocus:a,autoPlay:a,capture:a,charSet:null,checked:a,cite:null,className:c,cols:d,colSpan:null,content:null,contentEditable:s,controls:a,controlsList:c,coords:d|u,crossOrigin:null,data:null,dateTime:null,decoding:null,default:a,defer:a,dir:null,dirName:null,disabled:a,download:l,draggable:s,encType:null,enterKeyHint:null,form:null,formAction:null,formEncType:null,formMethod:null,formNoValidate:a,formTarget:null,headers:c,height:d,hidden:a,high:d,href:null,hrefLang:null,htmlFor:c,httpEquiv:c,id:null,imageSizes:null,imageSrcSet:u,inputMode:null,integrity:null,is:null,isMap:a,itemId:null,itemProp:c,itemRef:c,itemScope:a,itemType:c,kind:null,label:null,lang:null,language:null,list:null,loading:null,loop:a,low:d,manifest:null,max:null,maxLength:d,media:null,method:null,min:null,minLength:d,multiple:a,muted:a,name:null,nonce:null,noModule:a,noValidate:a,onAbort:null,onAfterPrint:null,onAuxClick:null,onBeforePrint:null,onBeforeUnload:null,onBlur:null,onCancel:null,onCanPlay:null,onCanPlayThrough:null,onChange:null,onClick:null,onClose:null,onContextMenu:null,onCopy:null,onCueChange:null,onCut:null,onDblClick:null,onDrag:null,onDragEnd:null,onDragEnter:null,onDragExit:null,onDragLeave:null,onDragOver:null,onDragStart:null,onDrop:null,onDurationChange:null,onEmptied:null,onEnded:null,onError:null,onFocus:null,onFormData:null,onHashChange:null,onInput:null,onInvalid:null,onKeyDown:null,onKeyPress:null,onKeyUp:null,onLanguageChange:null,onLoad:null,onLoadedData:null,onLoadedMetadata:null,onLoadEnd:null,onLoadStart:null,onMessage:null,onMessageError:null,onMouseDown:null,onMouseEnter:null,onMouseLeave:null,onMouseMove:null,onMouseOut:null,onMouseOver:null,onMouseUp:null,onOffline:null,onOnline:null,onPageHide:null,onPageShow:null,onPaste:null,onPause:null,onPlay:null,onPlaying:null,onPopState:null,onProgress:null,onRateChange:null,onRejectionHandled:null,onReset:null,onResize:null,onScroll:null,onSecurityPolicyViolation:null,onSeeked:null,onSeeking:null,onSelect:null,onSlotChange:null,onStalled:null,onStorage:null,onSubmit:null,onSuspend:null,onTimeUpdate:null,onToggle:null,onUnhandledRejection:null,onUnload:null,onVolumeChange:null,onWaiting:null,onWheel:null,open:a,optimum:d,pattern:null,ping:c,placeholder:null,playsInline:a,poster:null,preload:null,readOnly:a,referrerPolicy:null,rel:c,required:a,reversed:a,rows:d,rowSpan:d,sandbox:c,scope:null,scoped:a,seamless:a,selected:a,shape:null,size:d,sizes:null,slot:null,span:d,spellCheck:s,src:null,srcDoc:null,srcLang:null,srcSet:u,start:d,step:null,style:null,tabIndex:d,target:null,title:null,translate:null,type:null,typeMustMatch:a,useMap:null,value:s,width:d,wrap:null,align:null,aLink:null,archive:c,axis:null,background:null,bgColor:null,border:d,borderColor:null,bottomMargin:d,cellPadding:null,cellSpacing:null,char:null,charOff:null,classId:null,clear:null,code:null,codeBase:null,codeType:null,color:null,compact:a,declare:a,event:null,face:null,frame:null,frameBorder:null,hSpace:d,leftMargin:d,link:null,longDesc:null,lowSrc:null,marginHeight:d,marginWidth:d,noResize:a,noHref:a,noShade:a,noWrap:a,object:null,profile:null,prompt:null,rev:null,rightMargin:d,rules:null,scheme:null,scrolling:s,standby:null,summary:null,text:null,topMargin:d,valueType:null,version:null,vAlign:null,vLink:null,vSpace:d,allowTransparency:null,autoCorrect:null,autoSave:null,disablePictureInPicture:a,disableRemotePlayback:a,prefix:null,property:null,results:d,security:null,unselectable:null}})},2561:function(e,t,n){"use strict";var i=n(6073);function r(e,t){return i(e,t.toLowerCase())}e.exports=r},6073:function(e){"use strict";function t(e,t){return t in e?e[t]:t}e.exports=t},9469:function(e,t,n){"use strict";var i=n(2275),r=n(3673),o=n(6492);function a(e){var t,n,a=e.space,l=e.mustUseProperty||[],s=e.attributes||{},d=e.properties,c=e.transform,u={},p={};for(t in d)n=new o(t,c(s,t),d[t],a),-1!==l.indexOf(t)&&(n.mustUseProperty=!0),u[t]=n,p[i(t)]=t,p[i(n.attribute)]=t;return new r(u,p,a)}e.exports=a},6492:function(e,t,n){"use strict";var i=n(3811),r=n(3077);e.exports=l,l.prototype=new i,l.prototype.defined=!0;var o=["boolean","booleanish","overloadedBoolean","number","commaSeparated","spaceSeparated","commaOrSpaceSeparated"],a=o.length;function l(e,t,n,l){var d,c=-1;for(s(this,"space",l),i.call(this,e,t);++c<a;)s(this,d=o[c],(n&r[d])===r[d])}function s(e,t,n){n&&(e[t]=n)}},3811:function(e){"use strict";e.exports=n;var t=n.prototype;function n(e,t){this.property=e,this.attribute=t}t.space=null,t.attribute=null,t.property=null,t.boolean=!1,t.booleanish=!1,t.overloadedBoolean=!1,t.number=!1,t.commaSeparated=!1,t.spaceSeparated=!1,t.commaOrSpaceSeparated=!1,t.mustUseProperty=!1,t.defined=!1},6399:function(e,t,n){"use strict";var i=n(2563),r=n(3673);function o(e){for(var t,n,o=e.length,a=[],l=[],s=-1;++s<o;)t=e[s],a.push(t.property),l.push(t.normal),n=t.space;return new r(i.apply(null,a),i.apply(null,l),n)}e.exports=o},3673:function(e){"use strict";e.exports=n;var t=n.prototype;function n(e,t,n){this.property=e,this.normal=t,n&&(this.space=n)}t.space=null,t.normal={},t.property={}},3077:function(e,t){"use strict";var n=0;function i(){return Math.pow(2,++n)}t.boolean=i(),t.booleanish=i(),t.overloadedBoolean=i(),t.number=i(),t.spaceSeparated=i(),t.commaSeparated=i(),t.commaOrSpaceSeparated=i()},9283:function(e,t,n){"use strict";var i=n(9469);function r(e,t){return"xlink:"+t.slice(5).toLowerCase()}e.exports=i({space:"xlink",transform:r,properties:{xLinkActuate:null,xLinkArcRole:null,xLinkHref:null,xLinkRole:null,xLinkShow:null,xLinkTitle:null,xLinkType:null}})},7430:function(e,t,n){"use strict";var i=n(9469);function r(e,t){return"xml:"+t.slice(3).toLowerCase()}e.exports=i({space:"xml",transform:r,properties:{xmlLang:null,xmlBase:null,xmlSpace:null}})},2376:function(e,t,n){"use strict";var i=n(9469),r=n(2561);e.exports=i({space:"xmlns",attributes:{xmlnsxlink:"xmlns:xlink"},transform:r,properties:{xmlns:null,xmlnsXLink:null}})},2275:function(e){"use strict";function t(e){return e.toLowerCase()}e.exports=t},7491:function(e){var t="undefined"!=typeof Element,n="function"==typeof Map,i="function"==typeof Set,r="function"==typeof ArrayBuffer&&!!ArrayBuffer.isView;function o(e,a){if(e===a)return!0;if(e&&a&&"object"==typeof e&&"object"==typeof a){var l,s,d,c;if(e.constructor!==a.constructor)return!1;if(Array.isArray(e)){if((l=e.length)!=a.length)return!1;for(s=l;0!=s--;)if(!o(e[s],a[s]))return!1;return!0}if(n&&e instanceof Map&&a instanceof Map){if(e.size!==a.size)return!1;for(c=e.entries();!(s=c.next()).done;)if(!a.has(s.value[0]))return!1;for(c=e.entries();!(s=c.next()).done;)if(!o(s.value[1],a.get(s.value[0])))return!1;return!0}if(i&&e instanceof Set&&a instanceof Set){if(e.size!==a.size)return!1;for(c=e.entries();!(s=c.next()).done;)if(!a.has(s.value[0]))return!1;return!0}if(r&&ArrayBuffer.isView(e)&&ArrayBuffer.isView(a)){if((l=e.length)!=a.length)return!1;for(s=l;0!=s--;)if(e[s]!==a[s])return!1;return!0}if(e.constructor===RegExp)return e.source===a.source&&e.flags===a.flags;if(e.valueOf!==Object.prototype.valueOf)return e.valueOf()===a.valueOf();if(e.toString!==Object.prototype.toString)return e.toString()===a.toString();if((l=(d=Object.keys(e)).length)!==Object.keys(a).length)return!1;for(s=l;0!=s--;)if(!Object.prototype.hasOwnProperty.call(a,d[s]))return!1;if(t&&e instanceof Element)return!1;for(s=l;0!=s--;){if("_owner"!==d[s]&&"__v"!==d[s]&&"__o"!==d[s]||!e.$$typeof){if(!o(e[d[s]],a[d[s]]))return!1}}return!0}return e!=e&&a!=a}e.exports=function(e,t){try{return o(e,t)}catch(e){if((e.message||"").match(/stack|recursion/i))return console.warn("react-fast-compare cannot handle circular refs"),!1;throw e}}},5802:function(e,t,n){"use strict";n.d(t,{B6:function(){return V},ql:function(){return X}});var i=n(6945),r=n(3698),o=n.n(r),a=n(7491),l=n.n(a),s=n(4546),d=n.n(s),c=n(5241),u=n.n(c);function p(){return(p=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e}).apply(this,arguments)}function h(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,f(e,t)}function f(e,t){return(f=Object.setPrototypeOf||function(e,t){return e.__proto__=t,e})(e,t)}function m(e,t){if(null==e)return{};var n,i,r={},o=Object.keys(e);for(i=0;i<o.length;i++)t.indexOf(n=o[i])>=0||(r[n]=e[n]);return r}var g={BASE:"base",BODY:"body",HEAD:"head",HTML:"html",LINK:"link",META:"meta",NOSCRIPT:"noscript",SCRIPT:"script",STYLE:"style",TITLE:"title",FRAGMENT:"Symbol(react.fragment)"},x={rel:["amphtml","canonical","alternate"]},v={type:["application/ld+json"]},b={charset:"",name:["robots","description"],property:["og:type","og:title","og:url","og:image","og:image:alt","og:description","twitter:url","twitter:title","twitter:description","twitter:image","twitter:image:alt","twitter:card","twitter:site"]},y=Object.keys(g).map(function(e){return g[e]}),w={accesskey:"accessKey",charset:"charSet",class:"className",contenteditable:"contentEditable",contextmenu:"contextMenu","http-equiv":"httpEquiv",itemprop:"itemProp",tabindex:"tabIndex"},k=Object.keys(w).reduce(function(e,t){return e[w[t]]=t,e},{}),j=function(e,t){for(var n=e.length-1;n>=0;n-=1){var i=e[n];if(Object.prototype.hasOwnProperty.call(i,t))return i[t]}return null},I=function(e){var t=j(e,g.TITLE),n=j(e,"titleTemplate");if(Array.isArray(t)&&(t=t.join("")),n&&t)return n.replace(/%s/g,function(){return t});var i=j(e,"defaultTitle");return t||i||void 0},P=function(e){return j(e,"onChangeClientState")||function(){}},S=function(e,t){return t.filter(function(t){return void 0!==t[e]}).map(function(t){return t[e]}).reduce(function(e,t){return p({},e,t)},{})},E=function(e,t){return t.filter(function(e){return void 0!==e[g.BASE]}).map(function(e){return e[g.BASE]}).reverse().reduce(function(t,n){if(!t.length)for(var i=Object.keys(n),r=0;r<i.length;r+=1){var o=i[r].toLowerCase();if(-1!==e.indexOf(o)&&n[o])return t.concat(n)}return t},[])},_=function(e,t,n){var i={};return n.filter(function(t){return!!Array.isArray(t[e])||(void 0!==t[e]&&console&&"function"==typeof console.warn&&console.warn("Helmet: "+e+' should be of type "Array". Instead found type "'+typeof t[e]+'"'),!1)}).map(function(t){return t[e]}).reverse().reduce(function(e,n){var r={};n.filter(function(e){for(var n,o=Object.keys(e),a=0;a<o.length;a+=1){var l=o[a],s=l.toLowerCase();-1===t.indexOf(s)||"rel"===n&&"canonical"===e[n].toLowerCase()||"rel"===s&&"stylesheet"===e[s].toLowerCase()||(n=s),-1===t.indexOf(l)||"innerHTML"!==l&&"cssText"!==l&&"itemprop"!==l||(n=l)}if(!n||!e[n])return!1;var d=e[n].toLowerCase();return i[n]||(i[n]={}),r[n]||(r[n]={}),!i[n][d]&&(r[n][d]=!0,!0)}).reverse().forEach(function(t){return e.push(t)});for(var o=Object.keys(r),a=0;a<o.length;a+=1){var l=o[a],s=p({},i[l],r[l]);i[l]=s}return e},[]).reverse()},C=function(e,t){if(Array.isArray(e)&&e.length){for(var n=0;n<e.length;n+=1)if(e[n][t])return!0}return!1},z=function(e){return Array.isArray(e)?e.join(""):e},N=function(e,t){return Array.isArray(e)?e.reduce(function(e,n){return!function(e,t){for(var n=Object.keys(e),i=0;i<n.length;i+=1)if(t[n[i]]&&t[n[i]].includes(e[n[i]]))return!0;return!1}(n,t)?e.default.push(n):e.priority.push(n),e},{priority:[],default:[]}):{default:e}},A=function(e,t){var n;return p({},e,((n={})[t]=void 0,n))},T=[g.NOSCRIPT,g.SCRIPT,g.STYLE],O=function(e,t){return void 0===t&&(t=!0),!1===t?String(e):String(e).replace(/&/g,"&amp;").replace(/</g,"&lt;").replace(/>/g,"&gt;").replace(/"/g,"&quot;").replace(/'/g,"&#x27;")},M=function(e){return Object.keys(e).reduce(function(t,n){var i=void 0!==e[n]?n+'="'+e[n]+'"':""+n;return t?t+" "+i:i},"")},L=function(e,t){return void 0===t&&(t={}),Object.keys(e).reduce(function(t,n){return t[w[n]||n]=e[n],t},t)},$=function(e,t){return t.map(function(t,n){var r,o=((r={key:n})["data-rh"]=!0,r);return Object.keys(t).forEach(function(e){var n=w[e]||e;"innerHTML"===n||"cssText"===n?o.dangerouslySetInnerHTML={__html:t.innerHTML||t.cssText}:o[n]=t[e]}),i.createElement(e,o)})},R=function(e,t,n){switch(e){case g.TITLE:return{toComponent:function(){var e,n,r,o;return n=t.titleAttributes,(r={key:e=t.title})["data-rh"]=!0,o=L(n,r),[i.createElement(g.TITLE,o,e)]},toString:function(){return function(e,t,n,i){var r=M(n),o=z(t);return r?"<"+e+' data-rh="true" '+r+">"+O(o,i)+"</"+e+">":"<"+e+' data-rh="true">'+O(o,i)+"</"+e+">"}(e,t.title,t.titleAttributes,n)}};case"bodyAttributes":case"htmlAttributes":return{toComponent:function(){return L(t)},toString:function(){return M(t)}};default:return{toComponent:function(){return $(e,t)},toString:function(){return function(e,t,n){return t.reduce(function(t,i){var r=Object.keys(i).filter(function(e){return!("innerHTML"===e||"cssText"===e)}).reduce(function(e,t){var r=void 0===i[t]?t:t+'="'+O(i[t],n)+'"';return e?e+" "+r:r},""),o=i.innerHTML||i.cssText||"",a=-1===T.indexOf(e);return t+"<"+e+' data-rh="true" '+r+(a?"/>":">"+o+"</"+e+">")},"")}(e,t,n)}}}},H=function(e){var t=e.baseTag,n=e.bodyAttributes,i=e.encode,r=e.htmlAttributes,o=e.noscriptTags,a=e.styleTags,l=e.title,s=void 0===l?"":l,d=e.titleAttributes,c=e.linkTags,u=e.metaTags,p=e.scriptTags,h={toComponent:function(){},toString:function(){return""}};if(e.prioritizeSeoTags){var f=function(e){var t=e.linkTags,n=e.scriptTags,i=e.encode,r=N(e.metaTags,b),o=N(t,x),a=N(n,v);return{priorityMethods:{toComponent:function(){return[].concat($(g.META,r.priority),$(g.LINK,o.priority),$(g.SCRIPT,a.priority))},toString:function(){return R(g.META,r.priority,i)+" "+R(g.LINK,o.priority,i)+" "+R(g.SCRIPT,a.priority,i)}},metaTags:r.default,linkTags:o.default,scriptTags:a.default}}(e);h=f.priorityMethods,c=f.linkTags,u=f.metaTags,p=f.scriptTags}return{priority:h,base:R(g.BASE,t,i),bodyAttributes:R("bodyAttributes",n,i),htmlAttributes:R("htmlAttributes",r,i),link:R(g.LINK,c,i),meta:R(g.META,u,i),noscript:R(g.NOSCRIPT,o,i),script:R(g.SCRIPT,p,i),style:R(g.STYLE,a,i),title:R(g.TITLE,{title:s,titleAttributes:d},i)}},B=[],D=function(e,t){var n=this;void 0===t&&(t="undefined"!=typeof document),this.instances=[],this.value={setHelmet:function(e){n.context.helmet=e},helmetInstances:{get:function(){return n.canUseDOM?B:n.instances},add:function(e){(n.canUseDOM?B:n.instances).push(e)},remove:function(e){var t=(n.canUseDOM?B:n.instances).indexOf(e);(n.canUseDOM?B:n.instances).splice(t,1)}}},this.context=e,this.canUseDOM=t,t||(e.helmet=H({baseTag:[],bodyAttributes:{},encodeSpecialCharacters:!0,htmlAttributes:{},linkTags:[],metaTags:[],noscriptTags:[],scriptTags:[],styleTags:[],title:"",titleAttributes:{}}))},F=i.createContext({}),W=o().shape({setHelmet:o().func,helmetInstances:o().shape({get:o().func,add:o().func,remove:o().func})}),q="undefined"!=typeof document,V=function(e){function t(n){var i;return(i=e.call(this,n)||this).helmetData=new D(i.props.context,t.canUseDOM),i}return h(t,e),t.prototype.render=function(){return i.createElement(F.Provider,{value:this.helmetData.value},this.props.children)},t}(i.Component);V.canUseDOM=q,V.propTypes={context:o().shape({helmet:o().shape()}),children:o().node.isRequired},V.defaultProps={context:{}},V.displayName="HelmetProvider";var U=function(e,t){var n,i=document.head||document.querySelector(g.HEAD),r=i.querySelectorAll(e+"[data-rh]"),o=[].slice.call(r),a=[];return t&&t.length&&t.forEach(function(t){var i=document.createElement(e);for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&("innerHTML"===r?i.innerHTML=t.innerHTML:"cssText"===r?i.styleSheet?i.styleSheet.cssText=t.cssText:i.appendChild(document.createTextNode(t.cssText)):i.setAttribute(r,void 0===t[r]?"":t[r]));i.setAttribute("data-rh","true"),o.some(function(e,t){return n=t,i.isEqualNode(e)})?o.splice(n,1):a.push(i)}),o.forEach(function(e){return e.parentNode.removeChild(e)}),a.forEach(function(e){return i.appendChild(e)}),{oldTags:o,newTags:a}},Z=function(e,t){var n=document.getElementsByTagName(e)[0];if(n){for(var i=n.getAttribute("data-rh"),r=i?i.split(","):[],o=[].concat(r),a=Object.keys(t),l=0;l<a.length;l+=1){var s=a[l],d=t[s]||"";n.getAttribute(s)!==d&&n.setAttribute(s,d),-1===r.indexOf(s)&&r.push(s);var c=o.indexOf(s);-1!==c&&o.splice(c,1)}for(var u=o.length-1;u>=0;u-=1)n.removeAttribute(o[u]);r.length===o.length?n.removeAttribute("data-rh"):n.getAttribute("data-rh")!==a.join(",")&&n.setAttribute("data-rh",a.join(","))}},G=function(e,t){var n=e.baseTag,i=e.htmlAttributes,r=e.linkTags,o=e.metaTags,a=e.noscriptTags,l=e.onChangeClientState,s=e.scriptTags,d=e.styleTags,c=e.title,u=e.titleAttributes;Z(g.BODY,e.bodyAttributes),Z(g.HTML,i),function(e,t){void 0!==e&&document.title!==e&&(document.title=z(e)),Z(g.TITLE,t)}(c,u);var p={baseTag:U(g.BASE,n),linkTags:U(g.LINK,r),metaTags:U(g.META,o),noscriptTags:U(g.NOSCRIPT,a),scriptTags:U(g.SCRIPT,s),styleTags:U(g.STYLE,d)},h={},f={};Object.keys(p).forEach(function(e){var t=p[e],n=t.newTags,i=t.oldTags;n.length&&(h[e]=n),i.length&&(f[e]=p[e].oldTags)}),t&&t(),l(e,h,f)},Y=null,K=function(e){function t(){for(var t,n=arguments.length,i=Array(n),r=0;r<n;r++)i[r]=arguments[r];return(t=e.call.apply(e,[this].concat(i))||this).rendered=!1,t}h(t,e);var n=t.prototype;return n.shouldComponentUpdate=function(e){return!u()(e,this.props)},n.componentDidUpdate=function(){this.emitChange()},n.componentWillUnmount=function(){this.props.context.helmetInstances.remove(this),this.emitChange()},n.emitChange=function(){var e,t,n=this.props.context,i=n.setHelmet,r=null,o={baseTag:E(["href"],e=n.helmetInstances.get().map(function(e){var t=p({},e.props);return delete t.context,t})),bodyAttributes:S("bodyAttributes",e),defer:j(e,"defer"),encode:j(e,"encodeSpecialCharacters"),htmlAttributes:S("htmlAttributes",e),linkTags:_(g.LINK,["rel","href"],e),metaTags:_(g.META,["name","charset","http-equiv","property","itemprop"],e),noscriptTags:_(g.NOSCRIPT,["innerHTML"],e),onChangeClientState:P(e),scriptTags:_(g.SCRIPT,["src","innerHTML"],e),styleTags:_(g.STYLE,["cssText"],e),title:I(e),titleAttributes:S("titleAttributes",e),prioritizeSeoTags:C(e,"prioritizeSeoTags")};V.canUseDOM?(t=o,Y&&cancelAnimationFrame(Y),t.defer?Y=requestAnimationFrame(function(){G(t,function(){Y=null})}):(G(t),Y=null)):H&&(r=H(o)),i(r)},n.init=function(){this.rendered||(this.rendered=!0,this.props.context.helmetInstances.add(this),this.emitChange())},n.render=function(){return this.init(),null},t}(i.Component);K.propTypes={context:W.isRequired},K.displayName="HelmetDispatcher";var J=["children"],Q=["children"],X=function(e){function t(){return e.apply(this,arguments)||this}h(t,e);var n=t.prototype;return n.shouldComponentUpdate=function(e){return!l()(A(this.props,"helmetData"),A(e,"helmetData"))},n.mapNestedChildrenToProps=function(e,t){if(!t)return null;switch(e.type){case g.SCRIPT:case g.NOSCRIPT:return{innerHTML:t};case g.STYLE:return{cssText:t};default:throw Error("<"+e.type+" /> elements are self-closing and can not contain children. Refer to our API for more information.")}},n.flattenArrayTypeChildren=function(e){var t,n=e.child,i=e.arrayTypeChildren;return p({},i,((t={})[n.type]=[].concat(i[n.type]||[],[p({},e.newChildProps,this.mapNestedChildrenToProps(n,e.nestedChildren))]),t))},n.mapObjectTypeChildren=function(e){var t,n,i=e.child,r=e.newProps,o=e.newChildProps,a=e.nestedChildren;switch(i.type){case g.TITLE:return p({},r,((t={})[i.type]=a,t.titleAttributes=p({},o),t));case g.BODY:return p({},r,{bodyAttributes:p({},o)});case g.HTML:return p({},r,{htmlAttributes:p({},o)});default:return p({},r,((n={})[i.type]=p({},o),n))}},n.mapArrayTypeChildrenToProps=function(e,t){var n=p({},t);return Object.keys(e).forEach(function(t){var i;n=p({},n,((i={})[t]=e[t],i))}),n},n.warnOnInvalidChildren=function(e,t){return d()(y.some(function(t){return e.type===t}),"function"==typeof e.type?"You may be attempting to nest <Helmet> components within each other, which is not allowed. Refer to our API for more information.":"Only elements types "+y.join(", ")+" are allowed. Helmet does not support rendering <"+e.type+"> elements. Refer to our API for more information."),d()(!t||"string"==typeof t||Array.isArray(t)&&!t.some(function(e){return"string"!=typeof e}),"Helmet expects a string as a child of <"+e.type+">. Did you forget to wrap your children in braces? ( <"+e.type+">{``}</"+e.type+"> ) Refer to our API for more information."),!0},n.mapChildrenToProps=function(e,t){var n=this,r={};return i.Children.forEach(e,function(e){if(e&&e.props){var i=e.props,o=i.children,a=m(i,J),l=Object.keys(a).reduce(function(e,t){return e[k[t]||t]=a[t],e},{}),s=e.type;switch("symbol"==typeof s?s=s.toString():n.warnOnInvalidChildren(e,o),s){case g.FRAGMENT:t=n.mapChildrenToProps(o,t);break;case g.LINK:case g.META:case g.NOSCRIPT:case g.SCRIPT:case g.STYLE:r=n.flattenArrayTypeChildren({child:e,arrayTypeChildren:r,newChildProps:l,nestedChildren:o});break;default:t=n.mapObjectTypeChildren({child:e,newProps:t,newChildProps:l,nestedChildren:o})}}}),this.mapArrayTypeChildrenToProps(r,t)},n.render=function(){var e=this.props,t=e.children,n=m(e,Q),r=p({},n),o=n.helmetData;return t&&(r=this.mapChildrenToProps(t,r)),!o||o instanceof D||(o=new D(o.context,o.instances)),o?i.createElement(K,p({},r,{context:o.value,helmetData:void 0})):i.createElement(F.Consumer,null,function(e){return i.createElement(K,p({},r,{context:e}))})},t}(i.Component);X.propTypes={base:o().object,bodyAttributes:o().object,children:o().oneOfType([o().arrayOf(o().node),o().node]),defaultTitle:o().string,defer:o().bool,encodeSpecialCharacters:o().bool,htmlAttributes:o().object,link:o().arrayOf(o().object),meta:o().arrayOf(o().object),noscript:o().arrayOf(o().object),onChangeClientState:o().func,script:o().arrayOf(o().object),style:o().arrayOf(o().object),title:o().string,titleAttributes:o().object,titleTemplate:o().string,prioritizeSeoTags:o().bool,helmetData:o().object},X.defaultProps={defer:!0,encodeSpecialCharacters:!0,prioritizeSeoTags:!1},X.displayName="Helmet"},2897:function(e,t,n){"use strict";i={value:!0},t.lazyWithPreload=void 0;var i,r=n(6945);function o(e){var t,n,i=(0,r.lazy)(e),o=(0,r.forwardRef)(function(e,n){var o=(0,r.useRef)(null!=t?t:i);return(0,r.createElement)(o.current,Object.assign(n?{ref:n}:{},e))});return o.preload=function(){return!n&&(n=e().then(function(e){return t=e.default})),n},o}t.lazyWithPreload=o},4934:function(e,t,n){"use strict";var i,r=n(4361);i={value:!0},t.default=void 0;var o=r(n(538)).default;t.default=o},5690:function(e,t,n){"use strict";var i,r=n(4361);i={value:!0},t.default=void 0;var o=r(n(7520)).default;t.default=o},6719:function(e,t,n){"use strict";var i,r=n(4361);i={value:!0},t.default=void 0;var o=r(n(3610)).default;t.default=o},2704:function(e,t,n){"use strict";var i,r=n(4361);i={value:!0},t.default=void 0;var o=r(n(9551)).default;t.default=o},3603:function(e,t,n){"use strict";var i,r=n(4361);i={value:!0},t.default=void 0;var o=r(n(7091)).default;t.default=o},8964:function(e,t,n){"use strict";var i,r=n(4361);i={value:!0},t.default=void 0;var o=r(n(9693)).default;t.default=o},7366:function(e,t,n){"use strict";var i,r=n(4361);i={value:!0},t.default=void 0;var o=r(n(9463)).default;t.default=o},5210:function(e,t,n){"use strict";var i,r=n(4361);i={value:!0},t.default=void 0;var o=r(n(3883)).default;t.default=o},5048:function(e,t,n){"use strict";var i,r=n(4361);i={value:!0},t.default=void 0;var o=r(n(1337)).default;t.default=o},4436:function(e,t,n){"use strict";var i,r=n(4361);i={value:!0},t.default=void 0;var o=r(n(9455)).default;t.default=o},5592:function(e,t,n){"use strict";var i,r=n(4361);i={value:!0},t.default=void 0;var o=r(n(3847)).default;t.default=o},6778:function(e,t,n){"use strict";var i="object"==typeof globalThis?globalThis:"object"==typeof self?self:"object"==typeof window?window:"object"==typeof n.g?n.g:{},r=I();i.Prism={manual:!0,disableWorkerMessageHandler:!0};var o=n(4396),a=n(2668),l=n(3921),s=n(7264),d=n(7520),c=n(1860),u=n(9551);r();var p={}.hasOwnProperty;function h(){}h.prototype=l;var f=new h;function m(e){if("function"!=typeof e||!e.displayName)throw Error("Expected `function` for `grammar`, got `"+e+"`");void 0===f.languages[e.displayName]&&e(f)}function g(e,t){var n,i,r,o,a=f.languages,l=e;for(n in t&&((l={})[e]=t),l)for(r=(i="string"==typeof(i=l[n])?[i]:i).length,o=-1;++o<r;)a[i[o]]=a[n]}function x(e,t){var n,i=l.highlight;if("string"!=typeof e)throw Error("Expected `string` for `value`, got `"+e+"`");if("Object"===f.util.type(t))n=t,t=null;else{if("string"!=typeof t)throw Error("Expected `string` for `name`, got `"+t+"`");if(p.call(f.languages,t))n=f.languages[t];else throw Error("Unknown language: `"+t+"` is not registered")}return i.call(this,e,n,t)}function v(e){if("string"!=typeof e)throw Error("Expected `string` for `language`, got `"+e+"`");return p.call(f.languages,e)}function b(){var e,t=f.languages,n=[];for(e in t)p.call(t,e)&&"object"==typeof t[e]&&n.push(e);return n}function y(e,t,n){var i;return"string"==typeof e?{type:"text",value:e}:"Array"===f.util.type(e)?w(e,t):(i={type:e.type,content:f.Token.stringify(e.content,t,n),tag:"span",classes:["token",e.type],attributes:{},language:t,parent:n},e.alias&&(i.classes=i.classes.concat(e.alias)),f.hooks.run("wrap",i),o(i.tag+"."+i.classes.join("."),j(i.attributes),i.content))}function w(e,t){for(var n,i=[],r=e.length,o=-1;++o<r;)""!==(n=e[o])&&null!=n&&i.push(n);for(o=-1,r=i.length;++o<r;)n=i[o],i[o]=f.Token.stringify(n,t,i);return i}function k(e){return e}function j(e){var t;for(t in e)e[t]=a(e[t]);return e}function I(){var e="Prism"in i,t=e?i.Prism:void 0;return n;function n(){e?i.Prism=t:delete i.Prism,e=void 0,t=void 0}}e.exports=f,f.highlight=x,f.register=m,f.alias=g,f.registered=v,f.listLanguages=b,m(s),m(d),m(c),m(u),f.util.encode=k,f.Token.stringify=y},538:function(e){"use strict";function t(e){!function(e){var t="\\b(?:BASH|BASHOPTS|BASH_ALIASES|BASH_ARGC|BASH_ARGV|BASH_CMDS|BASH_COMPLETION_COMPAT_DIR|BASH_LINENO|BASH_REMATCH|BASH_SOURCE|BASH_VERSINFO|BASH_VERSION|COLORTERM|COLUMNS|COMP_WORDBREAKS|DBUS_SESSION_BUS_ADDRESS|DEFAULTS_PATH|DESKTOP_SESSION|DIRSTACK|DISPLAY|EUID|GDMSESSION|GDM_LANG|GNOME_KEYRING_CONTROL|GNOME_KEYRING_PID|GPG_AGENT_INFO|GROUPS|HISTCONTROL|HISTFILE|HISTFILESIZE|HISTSIZE|HOME|HOSTNAME|HOSTTYPE|IFS|INSTANCE|JOB|LANG|LANGUAGE|LC_ADDRESS|LC_ALL|LC_IDENTIFICATION|LC_MEASUREMENT|LC_MONETARY|LC_NAME|LC_NUMERIC|LC_PAPER|LC_TELEPHONE|LC_TIME|LESSCLOSE|LESSOPEN|LINES|LOGNAME|LS_COLORS|MACHTYPE|MAILCHECK|MANDATORY_PATH|NO_AT_BRIDGE|OLDPWD|OPTERR|OPTIND|ORBIT_SOCKETDIR|OSTYPE|PAPERSIZE|PATH|PIPESTATUS|PPID|PS1|PS2|PS3|PS4|PWD|RANDOM|REPLY|SECONDS|SELINUX_INIT|SESSION|SESSIONTYPE|SESSION_MANAGER|SHELL|SHELLOPTS|SHLVL|SSH_AUTH_SOCK|TERM|UID|UPSTART_EVENTS|UPSTART_INSTANCE|UPSTART_JOB|UPSTART_SESSION|USER|WINDOWID|XAUTHORITY|XDG_CONFIG_DIRS|XDG_CURRENT_DESKTOP|XDG_DATA_DIRS|XDG_GREETER_DATA_DIR|XDG_MENU_PREFIX|XDG_RUNTIME_DIR|XDG_SEAT|XDG_SEAT_PATH|XDG_SESSION_DESKTOP|XDG_SESSION_ID|XDG_SESSION_PATH|XDG_SESSION_TYPE|XDG_VTNR|XMODIFIERS)\\b",n={pattern:/(^(["']?)\w+\2)[ \t]+\S.*/,lookbehind:!0,alias:"punctuation",inside:null},i={bash:n,environment:{pattern:RegExp("\\$"+t),alias:"constant"},variable:[{pattern:/\$?\(\([\s\S]+?\)\)/,greedy:!0,inside:{variable:[{pattern:/(^\$\(\([\s\S]+)\)\)/,lookbehind:!0},/^\$\(\(/],number:/\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,operator:/--|\+\+|\*\*=?|<<=?|>>=?|&&|\|\||[=!+\-*/%<>^&|]=?|[?~:]/,punctuation:/\(\(?|\)\)?|,|;/}},{pattern:/\$\((?:\([^)]+\)|[^()])+\)|`[^`]+`/,greedy:!0,inside:{variable:/^\$\(|^`|\)$|`$/}},{pattern:/\$\{[^}]+\}/,greedy:!0,inside:{operator:/:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,punctuation:/[\[\]]/,environment:{pattern:RegExp("(\\{)"+t),lookbehind:!0,alias:"constant"}}},/\$(?:\w+|[#?*!@$])/],entity:/\\(?:[abceEfnrtv\\"]|O?[0-7]{1,3}|U[0-9a-fA-F]{8}|u[0-9a-fA-F]{4}|x[0-9a-fA-F]{1,2})/};e.languages.bash={shebang:{pattern:/^#!\s*\/.*/,alias:"important"},comment:{pattern:/(^|[^"{\\$])#.*/,lookbehind:!0},"function-name":[{pattern:/(\bfunction\s+)[\w-]+(?=(?:\s*\(?:\s*\))?\s*\{)/,lookbehind:!0,alias:"function"},{pattern:/\b[\w-]+(?=\s*\(\s*\)\s*\{)/,alias:"function"}],"for-or-select":{pattern:/(\b(?:for|select)\s+)\w+(?=\s+in\s)/,alias:"variable",lookbehind:!0},"assign-left":{pattern:/(^|[\s;|&]|[<>]\()\w+(?=\+?=)/,inside:{environment:{pattern:RegExp("(^|[\\s;|&]|[<>]\\()"+t),lookbehind:!0,alias:"constant"}},alias:"variable",lookbehind:!0},string:[{pattern:/((?:^|[^<])<<-?\s*)(\w+)\s[\s\S]*?(?:\r?\n|\r)\2/,lookbehind:!0,greedy:!0,inside:i},{pattern:/((?:^|[^<])<<-?\s*)(["'])(\w+)\2\s[\s\S]*?(?:\r?\n|\r)\3/,lookbehind:!0,greedy:!0,inside:{bash:n}},{pattern:/(^|[^\\](?:\\\\)*)"(?:\\[\s\S]|\$\([^)]+\)|\$(?!\()|`[^`]+`|[^"\\`$])*"/,lookbehind:!0,greedy:!0,inside:i},{pattern:/(^|[^$\\])'[^']*'/,lookbehind:!0,greedy:!0},{pattern:/\$'(?:[^'\\]|\\[\s\S])*'/,greedy:!0,inside:{entity:i.entity}}],environment:{pattern:RegExp("\\$?"+t),alias:"constant"},variable:i.variable,function:{pattern:/(^|[\s;|&]|[<>]\()(?:add|apropos|apt|apt-cache|apt-get|aptitude|aspell|automysqlbackup|awk|basename|bash|bc|bconsole|bg|bzip2|cal|cat|cfdisk|chgrp|chkconfig|chmod|chown|chroot|cksum|clear|cmp|column|comm|composer|cp|cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|debootstrap|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|docker|docker-compose|du|egrep|eject|env|ethtool|expand|expect|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|git|gparted|grep|groupadd|groupdel|groupmod|groups|grub-mkconfig|gzip|halt|head|hg|history|host|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|ip|jobs|join|kill|killall|less|link|ln|locate|logname|logrotate|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|lynx|make|man|mc|mdadm|mkconfig|mkdir|mke2fs|mkfifo|mkfs|mkisofs|mknod|mkswap|mmv|more|most|mount|mtools|mtr|mutt|mv|nano|nc|netstat|nice|nl|node|nohup|notify-send|npm|nslookup|op|open|parted|passwd|paste|pathchk|ping|pkill|pnpm|podman|podman-compose|popd|pr|printcap|printenv|ps|pushd|pv|quota|quotacheck|quotactl|ram|rar|rcp|reboot|remsync|rename|renice|rev|rm|rmdir|rpm|rsync|scp|screen|sdiff|sed|sendmail|seq|service|sftp|sh|shellcheck|shuf|shutdown|sleep|slocate|sort|split|ssh|stat|strace|su|sudo|sum|suspend|swapon|sync|tac|tail|tar|tee|time|timeout|top|touch|tr|traceroute|tsort|tty|umount|uname|unexpand|uniq|units|unrar|unshar|unzip|update-grub|uptime|useradd|userdel|usermod|users|uudecode|uuencode|v|vcpkg|vdir|vi|vim|virsh|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yarn|yes|zenity|zip|zsh|zypper)(?=$|[)\s;|&])/,lookbehind:!0},keyword:{pattern:/(^|[\s;|&]|[<>]\()(?:case|do|done|elif|else|esac|fi|for|function|if|in|select|then|until|while)(?=$|[)\s;|&])/,lookbehind:!0},builtin:{pattern:/(^|[\s;|&]|[<>]\()(?:\.|:|alias|bind|break|builtin|caller|cd|command|continue|declare|echo|enable|eval|exec|exit|export|getopts|hash|help|let|local|logout|mapfile|printf|pwd|read|readarray|readonly|return|set|shift|shopt|source|test|times|trap|type|typeset|ulimit|umask|unalias|unset)(?=$|[)\s;|&])/,lookbehind:!0,alias:"class-name"},boolean:{pattern:/(^|[\s;|&]|[<>]\()(?:false|true)(?=$|[)\s;|&])/,lookbehind:!0},"file-descriptor":{pattern:/\B&\d\b/,alias:"important"},operator:{pattern:/\d?<>|>\||\+=|=[=~]?|!=?|<<[<-]?|[&\d]?>>|\d[<>]&?|[<>][&=]?|&[>&]?|\|[&|]?/,inside:{"file-descriptor":{pattern:/^\d/,alias:"important"}}},punctuation:/\$?\(\(?|\)\)?|\.\.|[{}[\];\\]/,number:{pattern:/(^|\s)(?:[1-9]\d*|0)(?:[.,]\d+)?\b/,lookbehind:!0}},n.inside=e.languages.bash;for(var r=["comment","function-name","for-or-select","assign-left","string","environment","function","keyword","builtin","boolean","file-descriptor","operator","punctuation","number"],o=i.variable[1].inside,a=0;a<r.length;a++)o[r[a]]=e.languages.bash[r[a]];e.languages.shell=e.languages.bash}(e)}e.exports=t,t.displayName="bash",t.aliases=["shell"]},1860:function(e){"use strict";function t(e){e.languages.clike={comment:[{pattern:/(^|[^\\])\/\*[\s\S]*?(?:\*\/|$)/,lookbehind:!0,greedy:!0},{pattern:/(^|[^\\:])\/\/.*/,lookbehind:!0,greedy:!0}],string:{pattern:/(["'])(?:\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,greedy:!0},"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|trait)\s+|\bcatch\s+\()[\w.\\]+/i,lookbehind:!0,inside:{punctuation:/[.\\]/}},keyword:/\b(?:break|catch|continue|do|else|finally|for|function|if|in|instanceof|new|null|return|throw|try|while)\b/,boolean:/\b(?:false|true)\b/,function:/\b\w+(?=\()/,number:/\b0x[\da-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:e[+-]?\d+)?/i,operator:/[<>]=?|[!=]=?=?|--?|\+\+?|&&?|\|\|?|[?*/~^%]/,punctuation:/[{}[\];(),.:]/}}e.exports=t,t.displayName="clike",t.aliases=[]},7520:function(e){"use strict";function t(e){!function(e){var t=/(?:"(?:\\(?:\r\n|[\s\S])|[^"\\\r\n])*"|'(?:\\(?:\r\n|[\s\S])|[^'\\\r\n])*')/;e.languages.css={comment:/\/\*[\s\S]*?\*\//,atrule:{pattern:/@[\w-](?:[^;{\s]|\s+(?![\s{]))*(?:;|(?=\s*\{))/,inside:{rule:/^@[\w-]+/,"selector-function-argument":{pattern:/(\bselector\s*\(\s*(?![\s)]))(?:[^()\s]|\s+(?![\s)])|\((?:[^()]|\([^()]*\))*\))+(?=\s*\))/,lookbehind:!0,alias:"selector"},keyword:{pattern:/(^|[^\w-])(?:and|not|only|or)(?![\w-])/,lookbehind:!0}}},url:{pattern:RegExp("\\burl\\((?:"+t.source+"|"+/(?:[^\\\r\n()"']|\\[\s\S])*/.source+")\\)","i"),greedy:!0,inside:{function:/^url/i,punctuation:/^\(|\)$/,string:{pattern:RegExp("^"+t.source+"$"),alias:"url"}}},selector:{pattern:RegExp("(^|[{}\\s])[^{}\\s](?:[^{};\"'\\s]|\\s+(?![\\s{])|"+t.source+")*(?=\\s*\\{)"),lookbehind:!0},string:{pattern:t,greedy:!0},property:{pattern:/(^|[^-\w\xA0-\uFFFF])(?!\s)[-_a-z\xA0-\uFFFF](?:(?!\s)[-\w\xA0-\uFFFF])*(?=\s*:)/i,lookbehind:!0},important:/!important\b/i,function:{pattern:/(^|[^-a-z0-9])[-a-z0-9]+(?=\()/i,lookbehind:!0},punctuation:/[(){};:,]/},e.languages.css.atrule.inside.rest=e.languages.css;var n=e.languages.markup;n&&(n.tag.addInlined("style","css"),n.tag.addAttribute("style","css"))}(e)}e.exports=t,t.displayName="css",t.aliases=[]},3610:function(e){"use strict";function t(e){!function(e){e.languages.diff={coord:[/^(?:\*{3}|-{3}|\+{3}).*$/m,/^@@.*@@$/m,/^\d.*$/m]};var t={"deleted-sign":"-","deleted-arrow":"<","inserted-sign":"+","inserted-arrow":">",unchanged:" ",diff:"!"};Object.keys(t).forEach(function(n){var i=t[n],r=[];!/^\w+$/.test(n)&&r.push(/\w+/.exec(n)[0]),"diff"===n&&r.push("bold"),e.languages.diff[n]={pattern:RegExp("^(?:["+i+"].*(?:\r\n?|\n|(?![\\s\\S])))+","m"),alias:r,inside:{line:{pattern:/(.)(?=[\s\S]).*(?:\r\n?|\n)?/,lookbehind:!0},prefix:{pattern:/[\s\S]/,alias:/\w+/.exec(n)[0]}}}}),Object.defineProperty(e.languages.diff,"PREFIXES",{value:t})}(e)}e.exports=t,t.displayName="diff",t.aliases=[]},9551:function(e){"use strict";function t(e){e.languages.javascript=e.languages.extend("clike",{"class-name":[e.languages.clike["class-name"],{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$A-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\.(?:constructor|prototype))/,lookbehind:!0}],keyword:[{pattern:/((?:^|\})\s*)catch\b/,lookbehind:!0},{pattern:/(^|[^.]|\.\.\.\s*)\b(?:as|assert(?=\s*\{)|async(?=\s*(?:function\b|\(|[$\w\xA0-\uFFFF]|$))|await|break|case|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally(?=\s*(?:\{|$))|for|from(?=\s*(?:['"]|$))|function|(?:get|set)(?=\s*(?:[#\[$\w\xA0-\uFFFF]|$))|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)\b/,lookbehind:!0}],function:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*(?:\.\s*(?:apply|bind|call)\s*)?\()/,number:{pattern:RegExp(/(^|[^\w$])/.source+"(?:"+(/NaN|Infinity/.source+"|"+/0[bB][01]+(?:_[01]+)*n?/.source+"|"+/0[oO][0-7]+(?:_[0-7]+)*n?/.source+"|"+/0[xX][\dA-Fa-f]+(?:_[\dA-Fa-f]+)*n?/.source+"|"+/\d+(?:_\d+)*n/.source+"|")+/(?:\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\.\d+(?:_\d+)*)(?:[Ee][+-]?\d+(?:_\d+)*)?/.source+")"+/(?![\w$])/.source),lookbehind:!0},operator:/--|\+\+|\*\*=?|=>|&&=?|\|\|=?|[!=]==|<<=?|>>>?=?|[-+*/%&|^!=<>]=?|\.{3}|\?\?=?|\?\.?|[~:]/}),e.languages.javascript["class-name"][0].pattern=/(\b(?:class|extends|implements|instanceof|interface|new)\s+)[\w.\\]+/,e.languages.insertBefore("javascript","keyword",{regex:{pattern:/((?:^|[^$\w\xA0-\uFFFF."'\])\s]|\b(?:return|yield))\s*)\/(?:\[(?:[^\]\\\r\n]|\\.)*\]|\\.|[^/\\\[\r\n])+\/[dgimyus]{0,7}(?=(?:\s|\/\*(?:[^*]|\*(?!\/))*\*\/)*(?:$|[\r\n,.;:})\]]|\/\/))/,lookbehind:!0,greedy:!0,inside:{"regex-source":{pattern:/^(\/)[\s\S]+(?=\/[a-z]*$)/,lookbehind:!0,alias:"language-regex",inside:e.languages.regex},"regex-delimiter":/^\/|\/$/,"regex-flags":/^[a-z]+$/}},"function-variable":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*[=:]\s*(?:async\s*)?(?:\bfunction\b|(?:\((?:[^()]|\([^()]*\))*\)|(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)\s*=>))/,alias:"function"},parameter:[{pattern:/(function(?:\s+(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*)?\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\))/,lookbehind:!0,inside:e.languages.javascript},{pattern:/(^|[^$\w\xA0-\uFFFF])(?!\s)[_$a-z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*=>)/i,lookbehind:!0,inside:e.languages.javascript},{pattern:/(\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*=>)/,lookbehind:!0,inside:e.languages.javascript},{pattern:/((?:\b|\s|^)(?!(?:as|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|in|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|undefined|var|void|while|with|yield)(?![$\w\xA0-\uFFFF]))(?:(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*)\(\s*|\]\s*\(\s*)(?!\s)(?:[^()\s]|\s+(?![\s)])|\([^()]*\))+(?=\s*\)\s*\{)/,lookbehind:!0,inside:e.languages.javascript}],constant:/\b[A-Z](?:[A-Z_]|\dx?)*\b/}),e.languages.insertBefore("javascript","string",{hashbang:{pattern:/^#!.*/,greedy:!0,alias:"comment"},"template-string":{pattern:/`(?:\\[\s\S]|\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}|(?!\$\{)[^\\`])*`/,greedy:!0,inside:{"template-punctuation":{pattern:/^`|`$/,alias:"string"},interpolation:{pattern:/((?:^|[^\\])(?:\\{2})*)\$\{(?:[^{}]|\{(?:[^{}]|\{[^}]*\})*\})+\}/,lookbehind:!0,inside:{"interpolation-punctuation":{pattern:/^\$\{|\}$/,alias:"punctuation"},rest:e.languages.javascript}},string:/[\s\S]+/}},"string-property":{pattern:/((?:^|[,{])[ \t]*)(["'])(?:\\(?:\r\n|[\s\S])|(?!\2)[^\\\r\n])*\2(?=\s*:)/m,lookbehind:!0,greedy:!0,alias:"property"}}),e.languages.insertBefore("javascript","operator",{"literal-property":{pattern:/((?:^|[,{])[ \t]*)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?=\s*:)/m,lookbehind:!0,alias:"property"}}),e.languages.markup&&(e.languages.markup.tag.addInlined("script","javascript"),e.languages.markup.tag.addAttribute(/on(?:abort|blur|change|click|composition(?:end|start|update)|dblclick|error|focus(?:in|out)?|key(?:down|up)|load|mouse(?:down|enter|leave|move|out|over|up)|reset|resize|scroll|select|slotchange|submit|unload|wheel)/.source,"javascript")),e.languages.js=e.languages.javascript}e.exports=t,t.displayName="javascript",t.aliases=["js"]},7091:function(e){"use strict";function t(e){e.languages.json={property:{pattern:/(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?=\s*:)/,lookbehind:!0,greedy:!0},string:{pattern:/(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?!\s*:)/,lookbehind:!0,greedy:!0},comment:{pattern:/\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,greedy:!0},number:/-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,punctuation:/[{}[\],]/,operator:/:/,boolean:/\b(?:false|true)\b/,null:{pattern:/\bnull\b/,alias:"keyword"}},e.languages.webmanifest=e.languages.json}e.exports=t,t.displayName="json",t.aliases=["webmanifest"]},7942:function(e){"use strict";function t(e){!function(e){var t=e.util.clone(e.languages.javascript),n=/(?:\s|\/\/.*(?!.)|\/\*(?:[^*]|\*(?!\/))\*\/)/.source,i=/(?:\{(?:\{(?:\{[^{}]*\}|[^{}])*\}|[^{}])*\})/.source,r=/(?:\{<S>*\.{3}(?:[^{}]|<BRACES>)*\})/.source;function o(e,t){return RegExp(e=e.replace(/<S>/g,function(){return n}).replace(/<BRACES>/g,function(){return i}).replace(/<SPREAD>/g,function(){return r}),t)}r=o(r).source,e.languages.jsx=e.languages.extend("markup",t),e.languages.jsx.tag.pattern=o(/<\/?(?:[\w.:-]+(?:<S>+(?:[\w.:$-]+(?:=(?:"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*'|[^\s{'"/>=]+|<BRACES>))?|<SPREAD>))*<S>*\/?)?>/.source),e.languages.jsx.tag.inside.tag.pattern=/^<\/?[^\s>\/]*/,e.languages.jsx.tag.inside["attr-value"].pattern=/=(?!\{)(?:"(?:\\[\s\S]|[^\\"])*"|'(?:\\[\s\S]|[^\\'])*'|[^\s'">]+)/,e.languages.jsx.tag.inside.tag.inside["class-name"]=/^[A-Z]\w*(?:\.[A-Z]\w*)*$/,e.languages.jsx.tag.inside.comment=t.comment,e.languages.insertBefore("inside","attr-name",{spread:{pattern:o(/<SPREAD>/.source),inside:e.languages.jsx}},e.languages.jsx.tag),e.languages.insertBefore("inside","special-attr",{script:{pattern:o(/=<BRACES>/.source),alias:"language-javascript",inside:{"script-punctuation":{pattern:/^=(?=\{)/,alias:"punctuation"},rest:e.languages.jsx}}},e.languages.jsx.tag);var a=function(e){return e?"string"==typeof e?e:"string"==typeof e.content?e.content:e.content.map(a).join(""):""},l=function(t){for(var n=[],i=0;i<t.length;i++){var r=t[i],o=!1;if("string"!=typeof r&&("tag"===r.type&&r.content[0]&&"tag"===r.content[0].type?"</"===r.content[0].content[0].content?n.length>0&&n[n.length-1].tagName===a(r.content[0].content[1])&&n.pop():"/>"===r.content[r.content.length-1].content||n.push({tagName:a(r.content[0].content[1]),openedBraces:0}):n.length>0&&"punctuation"===r.type&&"{"===r.content?n[n.length-1].openedBraces++:n.length>0&&n[n.length-1].openedBraces>0&&"punctuation"===r.type&&"}"===r.content?n[n.length-1].openedBraces--:o=!0),(o||"string"==typeof r)&&n.length>0&&0===n[n.length-1].openedBraces){var s=a(r);i<t.length-1&&("string"==typeof t[i+1]||"plain-text"===t[i+1].type)&&(s+=a(t[i+1]),t.splice(i+1,1)),i>0&&("string"==typeof t[i-1]||"plain-text"===t[i-1].type)&&(s=a(t[i-1])+s,t.splice(i-1,1),i--),t[i]=new e.Token("plain-text",s,null,s)}r.content&&"string"!=typeof r.content&&l(r.content)}};e.hooks.add("after-tokenize",function(e){if("jsx"===e.language||"tsx"===e.language)l(e.tokens)})}(e)}e.exports=t,t.displayName="jsx",t.aliases=[]},9693:function(e){"use strict";function t(e){e.languages.less=e.languages.extend("css",{comment:[/\/\*[\s\S]*?\*\//,{pattern:/(^|[^\\])\/\/.*/,lookbehind:!0}],atrule:{pattern:/@[\w-](?:\((?:[^(){}]|\([^(){}]*\))*\)|[^(){};\s]|\s+(?!\s))*?(?=\s*\{)/,inside:{punctuation:/[:()]/}},selector:{pattern:/(?:@\{[\w-]+\}|[^{};\s@])(?:@\{[\w-]+\}|\((?:[^(){}]|\([^(){}]*\))*\)|[^(){};@\s]|\s+(?!\s))*?(?=\s*\{)/,inside:{variable:/@+[\w-]+/}},property:/(?:@\{[\w-]+\}|[\w-])+(?:\+_?)?(?=\s*:)/,operator:/[+\-*\/]/}),e.languages.insertBefore("less","property",{variable:[{pattern:/@[\w-]+\s*:/,inside:{punctuation:/:/}},/@@?[\w-]+/],"mixin-usage":{pattern:/([{;]\s*)[.#](?!\d)[\w-].*?(?=[(;])/,lookbehind:!0,alias:"function"}})}e.exports=t,t.displayName="less",t.aliases=[]},9463:function(e){"use strict";function t(e){!function(e){var t=/(?:\\.|[^\\\n\r]|(?:\n|\r\n?)(?![\r\n]))/.source;function n(e){return e=e.replace(/<inner>/g,function(){return t}),RegExp(/((?:^|[^\\])(?:\\{2})*)/.source+"(?:"+e+")")}var i=/(?:\\.|``(?:[^`\r\n]|`(?!`))+``|`[^`\r\n]+`|[^\\|\r\n`])+/.source,r=/\|?__(?:\|__)+\|?(?:(?:\n|\r\n?)|(?![\s\S]))/.source.replace(/__/g,function(){return i}),o=/\|?[ \t]*:?-{3,}:?[ \t]*(?:\|[ \t]*:?-{3,}:?[ \t]*)+\|?(?:\n|\r\n?)/.source;e.languages.markdown=e.languages.extend("markup",{}),e.languages.insertBefore("markdown","prolog",{"front-matter-block":{pattern:/(^(?:\s*[\r\n])?)---(?!.)[\s\S]*?[\r\n]---(?!.)/,lookbehind:!0,greedy:!0,inside:{punctuation:/^---|---$/,"front-matter":{pattern:/\S+(?:\s+\S+)*/,alias:["yaml","language-yaml"],inside:e.languages.yaml}}},blockquote:{pattern:/^>(?:[\t ]*>)*/m,alias:"punctuation"},table:{pattern:RegExp("^"+r+o+"(?:"+r+")*","m"),inside:{"table-data-rows":{pattern:RegExp("^("+r+o+")(?:"+r+")*$"),lookbehind:!0,inside:{"table-data":{pattern:RegExp(i),inside:e.languages.markdown},punctuation:/\|/}},"table-line":{pattern:RegExp("^("+r+")"+o+"$"),lookbehind:!0,inside:{punctuation:/\||:?-{3,}:?/}},"table-header-row":{pattern:RegExp("^"+r+"$"),inside:{"table-header":{pattern:RegExp(i),alias:"important",inside:e.languages.markdown},punctuation:/\|/}}}},code:[{pattern:/((?:^|\n)[ \t]*\n|(?:^|\r\n?)[ \t]*\r\n?)(?: {4}|\t).+(?:(?:\n|\r\n?)(?: {4}|\t).+)*/,lookbehind:!0,alias:"keyword"},{pattern:/^```[\s\S]*?^```$/m,greedy:!0,inside:{"code-block":{pattern:/^(```.*(?:\n|\r\n?))[\s\S]+?(?=(?:\n|\r\n?)^```$)/m,lookbehind:!0},"code-language":{pattern:/^(```).+/,lookbehind:!0},punctuation:/```/}}],title:[{pattern:/\S.*(?:\n|\r\n?)(?:==+|--+)(?=[ \t]*$)/m,alias:"important",inside:{punctuation:/==+$|--+$/}},{pattern:/(^\s*)#.+/m,lookbehind:!0,alias:"important",inside:{punctuation:/^#+|#+$/}}],hr:{pattern:/(^\s*)([*-])(?:[\t ]*\2){2,}(?=\s*$)/m,lookbehind:!0,alias:"punctuation"},list:{pattern:/(^\s*)(?:[*+-]|\d+\.)(?=[\t ].)/m,lookbehind:!0,alias:"punctuation"},"url-reference":{pattern:/!?\[[^\]]+\]:[\t ]+(?:\S+|<(?:\\.|[^>\\])+>)(?:[\t ]+(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*'|\((?:\\.|[^)\\])*\)))?/,inside:{variable:{pattern:/^(!?\[)[^\]]+/,lookbehind:!0},string:/(?:"(?:\\.|[^"\\])*"|'(?:\\.|[^'\\])*'|\((?:\\.|[^)\\])*\))$/,punctuation:/^[\[\]!:]|[<>]/},alias:"url"},bold:{pattern:n(/\b__(?:(?!_)<inner>|_(?:(?!_)<inner>)+_)+__\b|\*\*(?:(?!\*)<inner>|\*(?:(?!\*)<inner>)+\*)+\*\*/.source),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^..)[\s\S]+(?=..$)/,lookbehind:!0,inside:{}},punctuation:/\*\*|__/}},italic:{pattern:n(/\b_(?:(?!_)<inner>|__(?:(?!_)<inner>)+__)+_\b|\*(?:(?!\*)<inner>|\*\*(?:(?!\*)<inner>)+\*\*)+\*/.source),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^.)[\s\S]+(?=.$)/,lookbehind:!0,inside:{}},punctuation:/[*_]/}},strike:{pattern:n(/(~~?)(?:(?!~)<inner>)+\2/.source),lookbehind:!0,greedy:!0,inside:{content:{pattern:/(^~~?)[\s\S]+(?=\1$)/,lookbehind:!0,inside:{}},punctuation:/~~?/}},"code-snippet":{pattern:/(^|[^\\`])(?:``[^`\r\n]+(?:`[^`\r\n]+)*``(?!`)|`[^`\r\n]+`(?!`))/,lookbehind:!0,greedy:!0,alias:["code","keyword"]},url:{pattern:n(/!?\[(?:(?!\])<inner>)+\](?:\([^\s)]+(?:[\t ]+"(?:\\.|[^"\\])*")?\)|[ \t]?\[(?:(?!\])<inner>)+\])/.source),lookbehind:!0,greedy:!0,inside:{operator:/^!/,content:{pattern:/(^\[)[^\]]+(?=\])/,lookbehind:!0,inside:{}},variable:{pattern:/(^\][ \t]?\[)[^\]]+(?=\]$)/,lookbehind:!0},url:{pattern:/(^\]\()[^\s)]+/,lookbehind:!0},string:{pattern:/(^[ \t]+)"(?:\\.|[^"\\])*"(?=\)$)/,lookbehind:!0}}}}),["url","bold","italic","strike"].forEach(function(t){["url","bold","italic","strike","code-snippet"].forEach(function(n){t!==n&&(e.languages.markdown[t].inside.content.inside[n]=e.languages.markdown[n])})}),e.hooks.add("after-tokenize",function(e){if("markdown"===e.language||"md"===e.language)t(e.tokens);function t(e){if(!!e&&"string"!=typeof e)for(var n=0,i=e.length;n<i;n++){var r=e[n];if("code"!==r.type){t(r.content);continue}var o=r.content[1],a=r.content[3];if(o&&a&&"code-language"===o.type&&"code-block"===a.type&&"string"==typeof o.content){var l=o.content.replace(/\b#/g,"sharp").replace(/\b\+\+/g,"pp"),s="language-"+(l=(/[a-z][\w-]*/i.exec(l)||[""])[0].toLowerCase());a.alias?"string"==typeof a.alias?a.alias=[a.alias,s]:a.alias.push(s):a.alias=[s]}}}}),e.hooks.add("wrap",function(t){if("code-block"===t.type){for(var n="",i=0,r=t.classes.length;i<r;i++){var o=t.classes[i],a=/language-(.+)/.exec(o);if(a){n=a[1];break}}var l=e.languages[n];if(l)t.content=e.highlight(d(t.content.value),l,n);else if(n&&"none"!==n&&e.plugins.autoloader){var s="md-"+new Date().valueOf()+"-"+Math.floor(1e16*Math.random());t.attributes.id=s,e.plugins.autoloader.loadLanguages(n,function(){var t=document.getElementById(s);t&&(t.innerHTML=e.highlight(t.textContent,e.languages[n],n))})}}});var a=RegExp(e.languages.markup.tag.pattern.source,"gi"),l={amp:"&",lt:"<",gt:">",quot:'"'},s=String.fromCodePoint||String.fromCharCode;function d(e){var t=e.replace(a,"");return t=t.replace(/&(\w{1,8}|#x?[\da-f]{1,8});/gi,function(e,t){if("#"===(t=t.toLowerCase())[0]){var n;return s(n="x"===t[1]?parseInt(t.slice(2),16):Number(t.slice(1)))}var i=l[t];return i?i:e})}e.languages.md=e.languages.markdown}(e)}e.exports=t,t.displayName="markdown",t.aliases=["md"]},7264:function(e){"use strict";function t(e){e.languages.markup={comment:{pattern:/<!--(?:(?!<!--)[\s\S])*?-->/,greedy:!0},prolog:{pattern:/<\?[\s\S]+?\?>/,greedy:!0},doctype:{pattern:/<!DOCTYPE(?:[^>"'[\]]|"[^"]*"|'[^']*')+(?:\[(?:[^<"'\]]|"[^"]*"|'[^']*'|<(?!!--)|<!--(?:[^-]|-(?!->))*-->)*\]\s*)?>/i,greedy:!0,inside:{"internal-subset":{pattern:/(^[^\[]*\[)[\s\S]+(?=\]>$)/,lookbehind:!0,greedy:!0,inside:null},string:{pattern:/"[^"]*"|'[^']*'/,greedy:!0},punctuation:/^<!|>$|[[\]]/,"doctype-tag":/^DOCTYPE/i,name:/[^\s<>'"]+/}},cdata:{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,greedy:!0},tag:{pattern:/<\/?(?!\d)[^\s>\/=$<%]+(?:\s(?:\s*[^\s>\/=]+(?:\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))|(?=[\s/>])))+)?\s*\/?>/,greedy:!0,inside:{tag:{pattern:/^<\/?[^\s>\/]+/,inside:{punctuation:/^<\/?/,namespace:/^[^\s>\/:]+:/}},"special-attr":[],"attr-value":{pattern:/=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+)/,inside:{punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}},punctuation:/\/?>/,"attr-name":{pattern:/[^\s>\/]+/,inside:{namespace:/^[^\s>\/:]+:/}}}},entity:[{pattern:/&[\da-z]{1,8};/i,alias:"named-entity"},/&#x?[\da-f]{1,8};/i]},e.languages.markup.tag.inside["attr-value"].inside.entity=e.languages.markup.entity,e.languages.markup.doctype.inside["internal-subset"].inside=e.languages.markup,e.hooks.add("wrap",function(e){"entity"===e.type&&(e.attributes.title=e.content.value.replace(/&amp;/,"&"))}),Object.defineProperty(e.languages.markup.tag,"addInlined",{value:function(t,n){var i={};i["language-"+n]={pattern:/(^<!\[CDATA\[)[\s\S]+?(?=\]\]>$)/i,lookbehind:!0,inside:e.languages[n]},i.cdata=/^<!\[CDATA\[|\]\]>$/i;var r={"included-cdata":{pattern:/<!\[CDATA\[[\s\S]*?\]\]>/i,inside:i}};r["language-"+n]={pattern:/[\s\S]+/,inside:e.languages[n]};var o={};o[t]={pattern:RegExp(/(<__[^>]*>)(?:<!\[CDATA\[(?:[^\]]|\](?!\]>))*\]\]>|(?!<!\[CDATA\[)[\s\S])*?(?=<\/__>)/.source.replace(/__/g,function(){return t}),"i"),lookbehind:!0,greedy:!0,inside:r},e.languages.insertBefore("markup","cdata",o)}}),Object.defineProperty(e.languages.markup.tag,"addAttribute",{value:function(t,n){e.languages.markup.tag.inside["special-attr"].push({pattern:RegExp(/(^|["'\s])/.source+"(?:"+t+")"+/\s*=\s*(?:"[^"]*"|'[^']*'|[^\s'">=]+(?=[\s>]))/.source,"i"),lookbehind:!0,inside:{"attr-name":/^[^\s=]+/,"attr-value":{pattern:/=[\s\S]+/,inside:{value:{pattern:/(^=\s*(["']|(?!["'])))\S[\s\S]*(?=\2$)/,lookbehind:!0,alias:[n,"language-"+n],inside:e.languages[n]},punctuation:[{pattern:/^=/,alias:"attr-equals"},/"|'/]}}}})}}),e.languages.html=e.languages.markup,e.languages.mathml=e.languages.markup,e.languages.svg=e.languages.markup,e.languages.xml=e.languages.extend("markup",{}),e.languages.ssml=e.languages.xml,e.languages.atom=e.languages.xml,e.languages.rss=e.languages.xml}e.exports=t,t.displayName="markup",t.aliases=["html","mathml","svg","xml","ssml","atom","rss"]},3883:function(e){"use strict";function t(e){!function(e){e.languages.sass=e.languages.extend("css",{comment:{pattern:/^([ \t]*)\/[\/*].*(?:(?:\r?\n|\r)\1[ \t].+)*/m,lookbehind:!0,greedy:!0}}),e.languages.insertBefore("sass","atrule",{"atrule-line":{pattern:/^(?:[ \t]*)[@+=].+/m,greedy:!0,inside:{atrule:/(?:@[\w-]+|[+=])/}}}),delete e.languages.sass.atrule;var t=/\$[-\w]+|#\{\$[-\w]+\}/,n=[/[+*\/%]|[=!]=|<=?|>=?|\b(?:and|not|or)\b/,{pattern:/(\s)-(?=\s)/,lookbehind:!0}];e.languages.insertBefore("sass","property",{"variable-line":{pattern:/^[ \t]*\$.+/m,greedy:!0,inside:{punctuation:/:/,variable:t,operator:n}},"property-line":{pattern:/^[ \t]*(?:[^:\s]+ *:.*|:[^:\s].*)/m,greedy:!0,inside:{property:[/[^:\s]+(?=\s*:)/,{pattern:/(:)[^:\s]+/,lookbehind:!0}],punctuation:/:/,variable:t,operator:n,important:e.languages.sass.important}}}),delete e.languages.sass.property,delete e.languages.sass.important,e.languages.insertBefore("sass","punctuation",{selector:{pattern:/^([ \t]*)\S(?:,[^,\r\n]+|[^,\r\n]*)(?:,[^,\r\n]+)*(?:,(?:\r?\n|\r)\1[ \t]+\S(?:,[^,\r\n]+|[^,\r\n]*)(?:,[^,\r\n]+)*)*/m,lookbehind:!0,greedy:!0}})}(e)}e.exports=t,t.displayName="sass",t.aliases=[]},1337:function(e){"use strict";function t(e){e.languages.scss=e.languages.extend("css",{comment:{pattern:/(^|[^\\])(?:\/\*[\s\S]*?\*\/|\/\/.*)/,lookbehind:!0},atrule:{pattern:/@[\w-](?:\([^()]+\)|[^()\s]|\s+(?!\s))*?(?=\s+[{;])/,inside:{rule:/@[\w-]+/}},url:/(?:[-a-z]+-)?url(?=\()/i,selector:{pattern:/(?=\S)[^@;{}()]?(?:[^@;{}()\s]|\s+(?!\s)|#\{\$[-\w]+\})+(?=\s*\{(?:\}|\s|[^}][^:{}]*[:{][^}]))/,inside:{parent:{pattern:/&/,alias:"important"},placeholder:/%[-\w]+/,variable:/\$[-\w]+|#\{\$[-\w]+\}/}},property:{pattern:/(?:[-\w]|\$[-\w]|#\{\$[-\w]+\})+(?=\s*:)/,inside:{variable:/\$[-\w]+|#\{\$[-\w]+\}/}}}),e.languages.insertBefore("scss","atrule",{keyword:[/@(?:content|debug|each|else(?: if)?|extend|for|forward|function|if|import|include|mixin|return|use|warn|while)\b/i,{pattern:/( )(?:from|through)(?= )/,lookbehind:!0}]}),e.languages.insertBefore("scss","important",{variable:/\$[-\w]+|#\{\$[-\w]+\}/}),e.languages.insertBefore("scss","function",{"module-modifier":{pattern:/\b(?:as|hide|show|with)\b/i,alias:"keyword"},placeholder:{pattern:/%[-\w]+/,alias:"selector"},statement:{pattern:/\B!(?:default|optional)\b/i,alias:"keyword"},boolean:/\b(?:false|true)\b/,null:{pattern:/\bnull\b/,alias:"keyword"},operator:{pattern:/(\s)(?:[-+*\/%]|[=!]=|<=?|>=?|and|not|or)(?=\s)/,lookbehind:!0}}),e.languages.scss.atrule.inside.rest=e.languages.scss}e.exports=t,t.displayName="scss",t.aliases=[]},9455:function(e,t,n){"use strict";var i=n(7942),r=n(3847);function o(e){e.register(i),e.register(r),!function(e){var t=e.util.clone(e.languages.typescript);e.languages.tsx=e.languages.extend("jsx",t),delete e.languages.tsx.parameter,delete e.languages.tsx["literal-property"];var n=e.languages.tsx.tag;n.pattern=RegExp(/(^|[^\w$]|(?=<\/))/.source+"(?:"+n.pattern.source+")",n.pattern.flags),n.lookbehind=!0}(e)}e.exports=o,o.displayName="tsx",o.aliases=[]},3847:function(e){"use strict";function t(e){!function(e){e.languages.typescript=e.languages.extend("javascript",{"class-name":{pattern:/(\b(?:class|extends|implements|instanceof|interface|new|type)\s+)(?!keyof\b)(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*(?:\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>)?/,lookbehind:!0,greedy:!0,inside:null},builtin:/\b(?:Array|Function|Promise|any|boolean|console|never|number|string|symbol|unknown)\b/}),e.languages.typescript.keyword.push(/\b(?:abstract|declare|is|keyof|readonly|require)\b/,/\b(?:asserts|infer|interface|module|namespace|type)\b(?=\s*(?:[{_$a-zA-Z\xA0-\uFFFF]|$))/,/\btype\b(?=\s*(?:[\{*]|$))/),delete e.languages.typescript.parameter,delete e.languages.typescript["literal-property"];var t=e.languages.extend("typescript",{});delete t["class-name"],e.languages.typescript["class-name"].inside=t,e.languages.insertBefore("typescript","function",{decorator:{pattern:/@[$\w\xA0-\uFFFF]+/,inside:{at:{pattern:/^@/,alias:"operator"},function:/^[\s\S]+/}},"generic-function":{pattern:/#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*\s*<(?:[^<>]|<(?:[^<>]|<[^<>]*>)*>)*>(?=\s*\()/,greedy:!0,inside:{function:/^#?(?!\s)[_$a-zA-Z\xA0-\uFFFF](?:(?!\s)[$\w\xA0-\uFFFF])*/,generic:{pattern:/<[\s\S]+/,alias:"class-name",inside:t}}}}),e.languages.ts=e.languages.typescript}(e)}e.exports=t,t.displayName="typescript",t.aliases=["ts"]},5241:function(e){e.exports=function(e,t,n,i){var r=n?n.call(i,e,t):void 0;if(void 0!==r)return!!r;if(e===t)return!0;if("object"!=typeof e||!e||"object"!=typeof t||!t)return!1;var o=Object.keys(e),a=Object.keys(t);if(o.length!==a.length)return!1;for(var l=Object.prototype.hasOwnProperty.bind(t),s=0;s<o.length;s++){var d=o[s];if(!l(d))return!1;var c=e[d],u=t[d];if(!1===(r=n?n.call(i,c,u,d):void 0)||void 0===r&&c!==u)return!1}return!0}},3212:function(e,t){"use strict";t.parse=a;var n,i="",r=" ",o=/[ \t\n\r\f]+/g;function a(e){var t=String(e||i).trim();return t===i?[]:t.split(o)}function l(e){return e.join(r).trim()}},8456:function(e){e.exports=function(){var e=document.getSelection();if(!e.rangeCount)return function(){};for(var t=document.activeElement,n=[],i=0;i<e.rangeCount;i++)n.push(e.getRangeAt(i));switch(t.tagName.toUpperCase()){case"INPUT":case"TEXTAREA":t.blur();break;default:t=null}return e.removeAllRanges(),function(){"Caret"===e.type&&e.removeAllRanges(),!e.rangeCount&&n.forEach(function(t){e.addRange(t)}),t&&t.focus()}}},2563:function(e){e.exports=n;var t=Object.prototype.hasOwnProperty;function n(){for(var e={},n=0;n<arguments.length;n++){var i=arguments[n];for(var r in i)t.call(i,r)&&(e[r]=i[r])}return e}},7673:function(e,t,n){"use strict";var i=n("8093"),r=n("6945"),o=n("7158"),a=n("6780"),l=n("2185"),s=n("4343"),d=n("1514"),c=n("1207"),u=n("6344"),p=n("5802"),h=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e},f=function(e){return"IMG"===e.tagName},m=function(e){return NodeList.prototype.isPrototypeOf(e)},g=function(e){return e&&1===e.nodeType},x=function(e){return".svg"===(e.currentSrc||e.src).substr(-4).toLowerCase()},v=function(e){try{if(Array.isArray(e))return e.filter(f);if(m(e))return[].slice.call(e).filter(f);if(g(e))return[e].filter(f);if("string"==typeof e)return[].slice.call(document.querySelectorAll(e)).filter(f);return[]}catch(e){throw TypeError("The provided selector is invalid.\nExpects a CSS selector, a Node element, a NodeList or an array.\nSee: https://github.com/francoischalifour/medium-zoom")}},b=function(e){var t=document.createElement("div");return t.classList.add("medium-zoom-overlay"),t.style.background=e,t},y=function(e){var t=e.getBoundingClientRect(),n=t.top,i=t.left,r=t.width,o=t.height,a=e.cloneNode(),l=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0,s=window.pageXOffset||document.documentElement.scrollLeft||document.body.scrollLeft||0;return a.removeAttribute("id"),a.style.position="absolute",a.style.top=n+l+"px",a.style.left=i+s+"px",a.style.width=r+"px",a.style.height=o+"px",a.style.transform="",a},w=function(e,t){var n=h({bubbles:!1,cancelable:!1,detail:void 0},t);if("function"==typeof window.CustomEvent)return new CustomEvent(e,n);var i=document.createEvent("CustomEvent");return i.initCustomEvent(e,n.bubbles,n.cancelable,n.detail),i},k=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=window.Promise||function(e){function t(){}e(t,t)},r=function(e){var t=e.target;if(t===A){m();return}if(-1!==S.indexOf(t))k({target:t})},o=function(){if(!_&&!!N.original){var e=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0;Math.abs(C-e)>z.scrollOffset&&setTimeout(m,150)}},a=function(e){var t=e.key||e.keyCode;("Escape"===t||"Esc"===t||27===t)&&m()},l=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e;if(e.background&&(A.style.background=e.background),e.container&&e.container instanceof Object&&(t.container=h({},z.container,e.container)),e.template){var n=g(e.template)?e.template:document.querySelector(e.template);t.template=n}return z=h({},z,t),S.forEach(function(e){e.dispatchEvent(w("medium-zoom:update",{detail:{zoom:T}}))}),T},s=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return e(h({},z,t))},d=function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];var i=t.reduce(function(e,t){return[].concat(e,v(t))},[]);return i.filter(function(e){return -1===S.indexOf(e)}).forEach(function(e){S.push(e),e.classList.add("medium-zoom-image")}),E.forEach(function(e){var t=e.type,n=e.listener,r=e.options;i.forEach(function(e){e.addEventListener(t,n,r)})}),T},c=function(){for(var e=arguments.length,t=Array(e),n=0;n<e;n++)t[n]=arguments[n];N.zoomed&&m();var i=t.length>0?t.reduce(function(e,t){return[].concat(e,v(t))},[]):S;return i.forEach(function(e){e.classList.remove("medium-zoom-image"),e.dispatchEvent(w("medium-zoom:detach",{detail:{zoom:T}}))}),S=S.filter(function(e){return -1===i.indexOf(e)}),T},u=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return S.forEach(function(i){i.addEventListener("medium-zoom:"+e,t,n)}),E.push({type:"medium-zoom:"+e,listener:t,options:n}),T},p=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return S.forEach(function(i){i.removeEventListener("medium-zoom:"+e,t,n)}),E=E.filter(function(n){return!(n.type==="medium-zoom:"+e&&n.listener.toString()===t.toString())}),T},f=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.target,n=function(){var e={width:document.documentElement.clientWidth,height:document.documentElement.clientHeight,left:0,top:0,right:0,bottom:0},t=void 0,n=void 0;if(z.container){if(z.container instanceof Object)t=(e=h({},e,z.container)).width-e.left-e.right-2*z.margin,n=e.height-e.top-e.bottom-2*z.margin;else{var i=(g(z.container)?z.container:document.querySelector(z.container)).getBoundingClientRect();e=h({},e,{width:i.width,height:i.height,left:i.left,top:i.top})}}t=t||e.width-2*z.margin,n=n||e.height-2*z.margin;var r=N.zoomedHd||N.original,o=x(r)?t:r.naturalWidth||t,a=x(r)?n:r.naturalHeight||n,l=r.getBoundingClientRect(),s=l.top,d=l.left,c=l.width,u=l.height,p=Math.min(Math.min(Math.max(c,o),t)/c,Math.min(Math.max(u,a),n)/u),f=(-d+(t-c)/2+z.margin+e.left)/p,m=(-s+(n-u)/2+z.margin+e.top)/p,v="scale("+p+") translate3d("+f+"px, "+m+"px, 0)";N.zoomed.style.transform=v,N.zoomedHd&&(N.zoomedHd.style.transform=v)};return new i(function(e){if(t&&-1===S.indexOf(t)){e(T);return}var i=function t(){_=!1,N.zoomed.removeEventListener("transitionend",t),N.original.dispatchEvent(w("medium-zoom:opened",{detail:{zoom:T}})),e(T)};if(N.zoomed){e(T);return}if(t)N.original=t;else if(S.length>0){var r=S;N.original=r[0]}else{e(T);return}if(N.original.dispatchEvent(w("medium-zoom:open",{detail:{zoom:T}})),C=window.pageYOffset||document.documentElement.scrollTop||document.body.scrollTop||0,_=!0,N.zoomed=y(N.original),document.body.appendChild(A),z.template){var o=g(z.template)?z.template:document.querySelector(z.template);N.template=document.createElement("div"),N.template.appendChild(o.content.cloneNode(!0)),document.body.appendChild(N.template)}if(N.original.parentElement&&"PICTURE"===N.original.parentElement.tagName&&N.original.currentSrc&&(N.zoomed.src=N.original.currentSrc),document.body.appendChild(N.zoomed),window.requestAnimationFrame(function(){document.body.classList.add("medium-zoom--opened")}),N.original.classList.add("medium-zoom-image--hidden"),N.zoomed.classList.add("medium-zoom-image--opened"),N.zoomed.addEventListener("click",m),N.zoomed.addEventListener("transitionend",i),N.original.getAttribute("data-zoom-src")){N.zoomedHd=N.zoomed.cloneNode(),N.zoomedHd.removeAttribute("srcset"),N.zoomedHd.removeAttribute("sizes"),N.zoomedHd.removeAttribute("loading"),N.zoomedHd.src=N.zoomed.getAttribute("data-zoom-src"),N.zoomedHd.onerror=function(){clearInterval(a),console.warn("Unable to reach the zoom image target "+N.zoomedHd.src),N.zoomedHd=null,n()};var a=setInterval(function(){N.zoomedHd.complete&&(clearInterval(a),N.zoomedHd.classList.add("medium-zoom-image--opened"),N.zoomedHd.addEventListener("click",m),document.body.appendChild(N.zoomedHd),n())},10)}else if(N.original.hasAttribute("srcset")){N.zoomedHd=N.zoomed.cloneNode(),N.zoomedHd.removeAttribute("sizes"),N.zoomedHd.removeAttribute("loading");var l=N.zoomedHd.addEventListener("load",function(){N.zoomedHd.removeEventListener("load",l),N.zoomedHd.classList.add("medium-zoom-image--opened"),N.zoomedHd.addEventListener("click",m),document.body.appendChild(N.zoomedHd),n()})}else n()})},m=function(){return new i(function(e){if(_||!N.original){e(T);return}var t=function t(){N.original.classList.remove("medium-zoom-image--hidden"),document.body.removeChild(N.zoomed),N.zoomedHd&&document.body.removeChild(N.zoomedHd),document.body.removeChild(A),N.zoomed.classList.remove("medium-zoom-image--opened"),N.template&&document.body.removeChild(N.template),_=!1,N.zoomed.removeEventListener("transitionend",t),N.original.dispatchEvent(w("medium-zoom:closed",{detail:{zoom:T}})),N.original=null,N.zoomed=null,N.zoomedHd=null,N.template=null,e(T)};_=!0,document.body.classList.remove("medium-zoom--opened"),N.zoomed.style.transform="",N.zoomedHd&&(N.zoomedHd.style.transform=""),N.template&&(N.template.style.transition="opacity 150ms",N.template.style.opacity=0),N.original.dispatchEvent(w("medium-zoom:close",{detail:{zoom:T}})),N.zoomed.addEventListener("transitionend",t)})},k=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.target;return N.original?m():f({target:t})},j=function(){return z},I=function(){return S},P=function(){return N.original},S=[],E=[],_=!1,C=0,z=n,N={original:null,zoomed:null,zoomedHd:null,template:null};"[object Object]"===Object.prototype.toString.call(t)?z=t:(t||"string"==typeof t)&&d(t);var A=b((z=h({margin:0,background:"#fff",scrollOffset:40,container:null,template:null},z)).background);document.addEventListener("click",r),document.addEventListener("keyup",a),document.addEventListener("scroll",o),window.addEventListener("resize",m);var T={open:f,close:m,toggle:k,update:l,clone:s,attach:d,detach:c,on:u,off:p,getOptions:j,getImages:I,getZoomedImage:P};return T};(function e(e,t){void 0===t&&(t={});var n=t.insertAt;if(!!e&&"undefined"!=typeof document){var i=document.head||document.getElementsByTagName("head")[0],r=document.createElement("style");r.type="text/css","top"===n&&i.firstChild?i.insertBefore(r,i.firstChild):i.appendChild(r),r.styleSheet?r.styleSheet.cssText=e:r.appendChild(document.createTextNode(e))}})(".medium-zoom-overlay{position:fixed;top:0;right:0;bottom:0;left:0;opacity:0;transition:opacity .3s;will-change:opacity}.medium-zoom--opened .medium-zoom-overlay{cursor:pointer;cursor:zoom-out;opacity:1}.medium-zoom-image{cursor:pointer;cursor:zoom-in;transition:transform .3s cubic-bezier(.2,0,.2,1)!important}.medium-zoom-image--hidden{visibility:hidden}.medium-zoom-image--opened{position:relative;cursor:pointer;cursor:zoom-out;will-change:transform}");let j=k;n("9350");let I=[[function e(e){let{pathname:t}=(0,u.TH)(),{selector:n=".rspress-doc img",options:i={}}=e;return(0,r.useEffect)(()=>{let e;let t=setTimeout(()=>{e=j(document.querySelectorAll(n),{...i,background:"var(--rp-c-bg)"})},100);return()=>{clearTimeout(t),null==e||e.detach(),null==e||e.close()}},[t]),null},{}]];var P=n("8078");n("5631");async function S(e){var t,i;let{routes:r}=n(6118),s=(0,c.fp)(r,e);if(s){let t=s[0].route,n=await t.preload(),r=(0,o.bw)(s[0].route.filePath),d=a.Z.pages.find(t=>{let n=e=>e.replace(/\/$/,"").toLowerCase();return(0,l.pV)(n(t.routePath),n(e))}),c=encodeURIComponent(r),u=(null===(i=n.default.__RSPRESS_PAGE_META)||void 0===i?void 0:i[c])||{},{toc:p=[],title:h="",frontmatter:f={},...m}=o.kv.test(t.filePath)?u:n;return{siteData:a.Z,page:{...m,pagePath:r,...d,pageType:(null==f?void 0:f.pageType)||"doc",title:h,frontmatter:f,toc:p}}}let d=a.Z.lang||"",u=(null===(t=a.Z.multiVersion)||void 0===t?void 0:t.default)||"";if(a.Z.lang&&"undefined"!=typeof window){let e=location.pathname.replace(a.Z.base,"").split("/").slice(0,2);if(a.Z.locales.length){let t=a.Z.locales.find(t=>{let{lang:n}=t;return e.includes(n)});t&&(d=t.lang)}if(a.Z.multiVersion.versions){let t=a.Z.multiVersion.versions.find(t=>e.includes(t));t&&(u=t)}}return{siteData:a.Z,page:{pagePath:"",pageType:"404",routePath:"/404",lang:d,frontmatter:{},title:"404",toc:[],version:u,_filepath:"",_relativePath:""}}}function E(e){let{helmetContext:t}=e,{setData:n,data:o}=(0,r.useContext)(s.R0),a=o.page.frontmatter||{},{pathname:d,search:c}=(0,u.TH)(),h=new URLSearchParams(c),f="globalUIComponents",m=!1===a[f]||"0"===h.get(f);return(0,r.useLayoutEffect)(()=>{(async function e(){try{let e=await S((0,l.Tm)(d));n(e)}catch(e){console.log(e)}})()},[d,n]),(0,i.jsxs)(p.B6,{context:t,children:[(0,i.jsx)(P.ZP.Layout,{}),!m&&I.map((e,t)=>{if(Array.isArray(e)){let[n,i]=e;return r.createElement(n,{key:t,...i})}return r.createElement(e,{key:t})})]})}let _=a.Z.ssg,{default:C,useThemeState:z}=n(2285);(async function e(){let e=document.getElementById("root"),t=async()=>{let e=await S((0,l.Tm)(window.location.pathname));return function(){let[t,n]=(0,r.useState)(e),[o,a]=z();return(0,i.jsx)(s.Ni.Provider,{value:(0,r.useMemo)(()=>({theme:o,setTheme:a}),[o,a]),children:(0,i.jsx)(s.R0.Provider,{value:(0,r.useMemo)(()=>({data:t,setData:n}),[t,n]),children:(0,i.jsx)(d.VK,{children:(0,i.jsx)(E,{})})})})}},a=await t();{let{createRoot:t,hydrateRoot:r}=n(1796);(0,o.yv)()&&_?r(e,(0,i.jsx)(a,{})):t(e).render((0,i.jsx)(a,{}))}})().then(()=>{C.setup()})},7817:function(e,t,n){"use strict";n.d(t,{YE:()=>i.YE,WG:()=>i.WG,ZB:()=>i.ZB,Rg:()=>i.Rg,KO:()=>i.KO,OK:()=>i.OK,Ar:()=>i.Ar,rU:()=>i.rU,JL:()=>i.JL,Qn:()=>i.Qn,RY:()=>i.RY,mi:()=>i.mi,BZ:()=>i.BZ,xN:()=>i.xN,Ct:()=>i.Ct,zx:()=>i.zx,xK:()=>i.xK,mQ:()=>i.mQ,Vp:()=>i.Vp,of:()=>i.of,UQ:()=>i.UQ,AV:()=>i.AV,tx:()=>i.tx,ls:()=>i.ls,ZP:()=>i.ZP,TJ:()=>i.TJ,zh:()=>i.zh,s2:()=>i.s2,H_:()=>i.H_,NG:()=>i.NG,VA:()=>i.VA,eF:()=>i.eF,cY:()=>i.cY,CU:()=>i.CU,CF:()=>i.CF,YS:()=>i.YS,Vl:()=>i.Vl,M4:()=>i.M4,eE:()=>i.eE,WS:()=>i.WS,xB:()=>i.xB,Os:()=>i.Os,O9:()=>i.O9,qx:()=>i.qx,g2:()=>i.g2,SU:()=>i.SU,Qe:()=>i.Qe,y2:()=>i.y2,pU:()=>i.pU,ol:()=>i.ol,EG:()=>i.EG});var i=n("8078")},6118:function(e,t,n){"use strict";n.r(t),n.d(t,{routes:function(){return eW}});var i=n(6945),r=n(2897);let o=(0,r.lazyWithPreload)(()=>n.e("9740").then(n.bind(n,5381))),a=(0,r.lazyWithPreload)(()=>n.e("1148").then(n.bind(n,6247))),l=(0,r.lazyWithPreload)(()=>n.e("9611").then(n.bind(n,6824))),s=(0,r.lazyWithPreload)(()=>n.e("8158").then(n.bind(n,5775))),d=(0,r.lazyWithPreload)(()=>n.e("588").then(n.bind(n,5517))),c=(0,r.lazyWithPreload)(()=>n.e("1657").then(n.bind(n,830))),u=(0,r.lazyWithPreload)(()=>n.e("2704").then(n.bind(n,6453))),p=(0,r.lazyWithPreload)(()=>n.e("4206").then(n.bind(n,3137))),h=(0,r.lazyWithPreload)(()=>n.e("4812").then(n.bind(n,3374))),f=(0,r.lazyWithPreload)(()=>n.e("7837").then(n.bind(n,4520))),m=(0,r.lazyWithPreload)(()=>n.e("8085").then(n.bind(n,9322))),g=(0,r.lazyWithPreload)(()=>n.e("8689").then(n.bind(n,86))),x=(0,r.lazyWithPreload)(()=>n.e("4904").then(n.bind(n,3677))),v=(0,r.lazyWithPreload)(()=>n.e("2561").then(n.bind(n,4688))),b=(0,r.lazyWithPreload)(()=>n.e("2140").then(n.bind(n,3401))),y=(0,r.lazyWithPreload)(()=>n.e("1507").then(n.bind(n,838))),w=(0,r.lazyWithPreload)(()=>n.e("336").then(n.bind(n,3865))),k=(0,r.lazyWithPreload)(()=>n.e("2131").then(n.bind(n,9019))),j=(0,r.lazyWithPreload)(()=>n.e("4615").then(n.bind(n,3456))),I=(0,r.lazyWithPreload)(()=>n.e("5995").then(n.bind(n,6792))),P=(0,r.lazyWithPreload)(()=>n.e("2347").then(n.bind(n,162))),S=(0,r.lazyWithPreload)(()=>n.e("7715").then(n.bind(n,4967))),E=(0,r.lazyWithPreload)(()=>n.e("5889").then(n.bind(n,8010))),_=(0,r.lazyWithPreload)(()=>n.e("7521").then(n.bind(n,577))),C=(0,r.lazyWithPreload)(()=>n.e("3761").then(n.bind(n,5695))),z=(0,r.lazyWithPreload)(()=>n.e("5555").then(n.bind(n,5320))),N=(0,r.lazyWithPreload)(()=>n.e("3213").then(n.bind(n,5959))),A=(0,r.lazyWithPreload)(()=>n.e("4064").then(n.bind(n,8481))),T=(0,r.lazyWithPreload)(()=>n.e("453").then(n.bind(n,7506))),O=(0,r.lazyWithPreload)(()=>n.e("8750").then(n.bind(n,7499))),M=(0,r.lazyWithPreload)(()=>n.e("6615").then(n.bind(n,6826))),L=(0,r.lazyWithPreload)(()=>n.e("5892").then(n.bind(n,3605))),$=(0,r.lazyWithPreload)(()=>n.e("7535").then(n.bind(n,5408))),R=(0,r.lazyWithPreload)(()=>n.e("8451").then(n.bind(n,8565))),H=(0,r.lazyWithPreload)(()=>n.e("3597").then(n.bind(n,5114))),B=(0,r.lazyWithPreload)(()=>n.e("7406").then(n.bind(n,2501))),D=(0,r.lazyWithPreload)(()=>n.e("3097").then(n.bind(n,216))),F=(0,r.lazyWithPreload)(()=>n.e("5558").then(n.bind(n,6633))),W=(0,r.lazyWithPreload)(()=>n.e("4501").then(n.bind(n,6435))),q=(0,r.lazyWithPreload)(()=>n.e("6975").then(n.bind(n,2517))),V=(0,r.lazyWithPreload)(()=>n.e("7663").then(n.bind(n,6957))),U=(0,r.lazyWithPreload)(()=>n.e("8098").then(n.bind(n,9694))),Z=(0,r.lazyWithPreload)(()=>n.e("443").then(n.bind(n,2444))),G=(0,r.lazyWithPreload)(()=>n.e("7080").then(n.bind(n,6532))),Y=(0,r.lazyWithPreload)(()=>n.e("36").then(n.bind(n,4008))),K=(0,r.lazyWithPreload)(()=>n.e("6858").then(n.bind(n,8370))),J=(0,r.lazyWithPreload)(()=>n.e("2206").then(n.bind(n,5195))),Q=(0,r.lazyWithPreload)(()=>n.e("9524").then(n.bind(n,7293))),X=(0,r.lazyWithPreload)(()=>n.e("351").then(n.bind(n,7612))),ee=(0,r.lazyWithPreload)(()=>n.e("1306").then(n.bind(n,2212))),et=(0,r.lazyWithPreload)(()=>n.e("6046").then(n.bind(n,765))),en=(0,r.lazyWithPreload)(()=>n.e("4061").then(n.bind(n,992))),ei=(0,r.lazyWithPreload)(()=>n.e("7584").then(n.bind(n,7228))),er=(0,r.lazyWithPreload)(()=>n.e("8214").then(n.bind(n,3021))),eo=(0,r.lazyWithPreload)(()=>n.e("2671").then(n.bind(n,4103))),ea=(0,r.lazyWithPreload)(()=>n.e("4655").then(n.bind(n,5518))),el=(0,r.lazyWithPreload)(()=>n.e("964").then(n.bind(n,1808))),es=(0,r.lazyWithPreload)(()=>n.e("3023").then(n.bind(n,7966))),ed=(0,r.lazyWithPreload)(()=>n.e("1941").then(n.bind(n,8573))),ec=(0,r.lazyWithPreload)(()=>n.e("461").then(n.bind(n,112))),eu=(0,r.lazyWithPreload)(()=>n.e("769").then(n.bind(n,4650))),ep=(0,r.lazyWithPreload)(()=>n.e("5495").then(n.bind(n,7022))),eh=(0,r.lazyWithPreload)(()=>n.e("213").then(n.bind(n,1513))),ef=(0,r.lazyWithPreload)(()=>n.e("9250").then(n.bind(n,1459))),em=(0,r.lazyWithPreload)(()=>n.e("3235").then(n.bind(n,9242))),eg=(0,r.lazyWithPreload)(()=>n.e("8233").then(n.bind(n,9201))),ex=(0,r.lazyWithPreload)(()=>n.e("5453").then(n.bind(n,8761))),ev=(0,r.lazyWithPreload)(()=>n.e("5493").then(n.bind(n,1446))),eb=(0,r.lazyWithPreload)(()=>n.e("6308").then(n.bind(n,5555))),ey=(0,r.lazyWithPreload)(()=>n.e("8802").then(n.bind(n,4585))),ew=(0,r.lazyWithPreload)(()=>n.e("3493").then(n.bind(n,2489))),ek=(0,r.lazyWithPreload)(()=>n.e("8040").then(n.bind(n,6536))),ej=(0,r.lazyWithPreload)(()=>n.e("6576").then(n.bind(n,7571))),eI=(0,r.lazyWithPreload)(()=>n.e("1095").then(n.bind(n,7341))),eP=(0,r.lazyWithPreload)(()=>n.e("1801").then(n.bind(n,6452))),eS=(0,r.lazyWithPreload)(()=>n.e("2712").then(n.bind(n,2721))),eE=(0,r.lazyWithPreload)(()=>n.e("5455").then(n.bind(n,2330))),e_=(0,r.lazyWithPreload)(()=>n.e("7600").then(n.bind(n,7533))),eC=(0,r.lazyWithPreload)(()=>n.e("2365").then(n.bind(n,8539))),ez=(0,r.lazyWithPreload)(()=>n.e("5105").then(n.bind(n,6394))),eN=(0,r.lazyWithPreload)(()=>n.e("8134").then(n.bind(n,2323))),eA=(0,r.lazyWithPreload)(()=>n.e("5844").then(n.bind(n,9096))),eT=(0,r.lazyWithPreload)(()=>n.e("3628").then(n.bind(n,3099))),eO=(0,r.lazyWithPreload)(()=>n.e("2579").then(n.bind(n,5293))),eM=(0,r.lazyWithPreload)(()=>n.e("1527").then(n.bind(n,7774))),eL=(0,r.lazyWithPreload)(()=>n.e("3724").then(n.bind(n,3259))),e$=(0,r.lazyWithPreload)(()=>n.e("3039").then(n.bind(n,2375))),eR=(0,r.lazyWithPreload)(()=>n.e("2300").then(n.bind(n,561))),eH=(0,r.lazyWithPreload)(()=>n.e("8713").then(n.bind(n,2302))),eB=(0,r.lazyWithPreload)(()=>n.e("9100").then(n.bind(n,191))),eD=(0,r.lazyWithPreload)(()=>n.e("8694").then(n.bind(n,2927))),eF=(0,r.lazyWithPreload)(()=>n.e("7220").then(n.bind(n,2101))),eW=[{path:"/module-tools/en/api/config/build-config",element:i.createElement(o),filePath:"en/api/config/build-config.mdx",preload:async()=>(await o.preload(),n.e("9740").then(n.bind(n,5381))),lang:"en",version:""},{path:"/module-tools/en/api/config/build-preset",element:i.createElement(a),filePath:"en/api/config/build-preset.mdx",preload:async()=>(await a.preload(),n.e("1148").then(n.bind(n,6247))),lang:"en",version:""},{path:"/module-tools/en/api/config/dev",element:i.createElement(l),filePath:"en/api/config/dev.md",preload:async()=>(await l.preload(),n.e("9611").then(n.bind(n,6824))),lang:"en",version:""},{path:"/module-tools/en/api/config/plugins",element:i.createElement(s),filePath:"en/api/config/plugins.md",preload:async()=>(await s.preload(),n.e("8158").then(n.bind(n,5775))),lang:"en",version:""},{path:"/module-tools/en/api/",element:i.createElement(d),filePath:"en/api/index.md",preload:async()=>(await d.preload(),n.e("588").then(n.bind(n,5517))),lang:"en",version:""},{path:"/module-tools/en/api/plugin-api/plugin-hooks",element:i.createElement(c),filePath:"en/api/plugin-api/plugin-hooks.md",preload:async()=>(await c.preload(),n.e("1657").then(n.bind(n,830))),lang:"en",version:""},{path:"/module-tools/en/components/faq-build-exception",element:i.createElement(u),filePath:"en/components/faq-build-exception.mdx",preload:async()=>(await u.preload(),n.e("2704").then(n.bind(n,6453))),lang:"en",version:""},{path:"/module-tools/en/components/faq-build-other",element:i.createElement(p),filePath:"en/components/faq-build-other.mdx",preload:async()=>(await p.preload(),n.e("4206").then(n.bind(n,3137))),lang:"en",version:""},{path:"/module-tools/en/components/faq-build-product",element:i.createElement(h),filePath:"en/components/faq-build-product.mdx",preload:async()=>(await h.preload(),n.e("4812").then(n.bind(n,3374))),lang:"en",version:""},{path:"/module-tools/en/components/faq-storybook",element:i.createElement(f),filePath:"en/components/faq-storybook.mdx",preload:async()=>(await f.preload(),n.e("7837").then(n.bind(n,4520))),lang:"en",version:""},{path:"/module-tools/en/components/publish-emo",element:i.createElement(m),filePath:"en/components/publish-emo.mdx",preload:async()=>(await m.preload(),n.e("8085").then(n.bind(n,9322))),lang:"en",version:""},{path:"/module-tools/en/components/register-esbuild-plugin",element:i.createElement(g),filePath:"en/components/register-esbuild-plugin.mdx",preload:async()=>(await g.preload(),n.e("8689").then(n.bind(n,86))),lang:"en",version:""},{path:"/module-tools/en/components/release-module-doc",element:i.createElement(x),filePath:"en/components/release-module-doc.mdx",preload:async()=>(await x.preload(),n.e("4904").then(n.bind(n,3677))),lang:"en",version:""},{path:"/module-tools/en/guide/advance/asset",element:i.createElement(v),filePath:"en/guide/advance/asset.mdx",preload:async()=>(await v.preload(),n.e("2561").then(n.bind(n,4688))),lang:"en",version:""},{path:"/module-tools/en/guide/advance/build-umd",element:i.createElement(b),filePath:"en/guide/advance/build-umd.mdx",preload:async()=>(await b.preload(),n.e("2140").then(n.bind(n,3401))),lang:"en",version:""},{path:"/module-tools/en/guide/advance/copy",element:i.createElement(y),filePath:"en/guide/advance/copy.md",preload:async()=>(await y.preload(),n.e("1507").then(n.bind(n,838))),lang:"en",version:""},{path:"/module-tools/en/guide/advance/external-dependency",element:i.createElement(w),filePath:"en/guide/advance/external-dependency.mdx",preload:async()=>(await w.preload(),n.e("336").then(n.bind(n,3865))),lang:"en",version:""},{path:"/module-tools/en/guide/advance/in-depth-about-build",element:i.createElement(k),filePath:"en/guide/advance/in-depth-about-build.md",preload:async()=>(await k.preload(),n.e("2131").then(n.bind(n,9019))),lang:"en",version:""},{path:"/module-tools/en/guide/advance/in-depth-about-dev-command",element:i.createElement(j),filePath:"en/guide/advance/in-depth-about-dev-command.md",preload:async()=>(await j.preload(),n.e("4615").then(n.bind(n,3456))),lang:"en",version:""},{path:"/module-tools/en/guide/basic/before-getting-started",element:i.createElement(I),filePath:"en/guide/basic/before-getting-started.md",preload:async()=>(await I.preload(),n.e("5995").then(n.bind(n,6792))),lang:"en",version:""},{path:"/module-tools/en/guide/basic/command-preview",element:i.createElement(P),filePath:"en/guide/basic/command-preview.md",preload:async()=>(await P.preload(),n.e("2347").then(n.bind(n,162))),lang:"en",version:""},{path:"/module-tools/en/guide/basic/modify-output-product",element:i.createElement(S),filePath:"en/guide/basic/modify-output-product.md",preload:async()=>(await S.preload(),n.e("7715").then(n.bind(n,4967))),lang:"en",version:""},{path:"/module-tools/en/guide/basic/publish-your-project",element:i.createElement(E),filePath:"en/guide/basic/publish-your-project.mdx",preload:async()=>(await E.preload(),n.e("5889").then(n.bind(n,8010))),lang:"en",version:""},{path:"/module-tools/en/guide/basic/use-micro-generator",element:i.createElement(_),filePath:"en/guide/basic/use-micro-generator.md",preload:async()=>(await _.preload(),n.e("7521").then(n.bind(n,577))),lang:"en",version:""},{path:"/module-tools/en/guide/basic/use-module-doc",element:i.createElement(C),filePath:"en/guide/basic/use-module-doc.mdx",preload:async()=>(await C.preload(),n.e("3761").then(n.bind(n,5695))),lang:"en",version:""},{path:"/module-tools/en/guide/basic/using-storybook",element:i.createElement(z),filePath:"en/guide/basic/using-storybook.mdx",preload:async()=>(await z.preload(),n.e("5555").then(n.bind(n,5320))),lang:"en",version:""},{path:"/module-tools/en/guide/best-practices/components",element:i.createElement(N),filePath:"en/guide/best-practices/components.mdx",preload:async()=>(await N.preload(),n.e("3213").then(n.bind(n,5959))),lang:"en",version:""},{path:"/module-tools/en/guide/best-practices/use-tailwindcss",element:i.createElement(A),filePath:"en/guide/best-practices/use-tailwindcss.mdx",preload:async()=>(await A.preload(),n.e("4064").then(n.bind(n,8481))),lang:"en",version:""},{path:"/module-tools/en/guide/faq/basic",element:i.createElement(T),filePath:"en/guide/faq/basic.mdx",preload:async()=>(await T.preload(),n.e("453").then(n.bind(n,7506))),lang:"en",version:""},{path:"/module-tools/en/guide/faq/build",element:i.createElement(O),filePath:"en/guide/faq/build.mdx",preload:async()=>(await O.preload(),n.e("8750").then(n.bind(n,7499))),lang:"en",version:""},{path:"/module-tools/en/guide/faq/",element:i.createElement(M),filePath:"en/guide/faq/index.md",preload:async()=>(await M.preload(),n.e("6615").then(n.bind(n,6826))),lang:"en",version:""},{path:"/module-tools/en/guide/faq/storybook",element:i.createElement(L),filePath:"en/guide/faq/storybook.mdx",preload:async()=>(await L.preload(),n.e("5892").then(n.bind(n,3605))),lang:"en",version:""},{path:"/module-tools/en/guide/intro/getting-started",element:i.createElement($),filePath:"en/guide/intro/getting-started.mdx",preload:async()=>(await $.preload(),n.e("7535").then(n.bind(n,5408))),lang:"en",version:""},{path:"/module-tools/en/guide/intro/welcome",element:i.createElement(R),filePath:"en/guide/intro/welcome.md",preload:async()=>(await R.preload(),n.e("8451").then(n.bind(n,8565))),lang:"en",version:""},{path:"/module-tools/en/guide/intro/why-module-engineering-solution",element:i.createElement(H),filePath:"en/guide/intro/why-module-engineering-solution.md",preload:async()=>(await H.preload(),n.e("3597").then(n.bind(n,5114))),lang:"en",version:""},{path:"/module-tools/en/",element:i.createElement(B),filePath:"en/index.md",preload:async()=>(await B.preload(),n.e("7406").then(n.bind(n,2501))),lang:"en",version:""},{path:"/module-tools/en/plugins/guide/getting-started",element:i.createElement(D),filePath:"en/plugins/guide/getting-started.mdx",preload:async()=>(await D.preload(),n.e("3097").then(n.bind(n,216))),lang:"en",version:""},{path:"/module-tools/en/plugins/guide/plugin-object",element:i.createElement(F),filePath:"en/plugins/guide/plugin-object.mdx",preload:async()=>(await F.preload(),n.e("5558").then(n.bind(n,6633))),lang:"en",version:""},{path:"/module-tools/en/plugins/guide/setup-function",element:i.createElement(W),filePath:"en/plugins/guide/setup-function.mdx",preload:async()=>(await W.preload(),n.e("4501").then(n.bind(n,6435))),lang:"en",version:""},{path:"/module-tools/en/plugins/official-list/overview",element:i.createElement(q),filePath:"en/plugins/official-list/overview.md",preload:async()=>(await q.preload(),n.e("6975").then(n.bind(n,2517))),lang:"en",version:""},{path:"/module-tools/en/plugins/official-list/plugin-babel",element:i.createElement(V),filePath:"en/plugins/official-list/plugin-babel.mdx",preload:async()=>(await V.preload(),n.e("7663").then(n.bind(n,6957))),lang:"en",version:""},{path:"/module-tools/en/plugins/official-list/plugin-banner",element:i.createElement(U),filePath:"en/plugins/official-list/plugin-banner.mdx",preload:async()=>(await U.preload(),n.e("8098").then(n.bind(n,9694))),lang:"en",version:""},{path:"/module-tools/en/plugins/official-list/plugin-import",element:i.createElement(Z),filePath:"en/plugins/official-list/plugin-import.mdx",preload:async()=>(await Z.preload(),n.e("443").then(n.bind(n,2444))),lang:"en",version:""},{path:"/module-tools/en/plugins/official-list/plugin-node-polyfill",element:i.createElement(G),filePath:"en/plugins/official-list/plugin-node-polyfill.mdx",preload:async()=>(await G.preload(),n.e("7080").then(n.bind(n,6532))),lang:"en",version:""},{path:"/module-tools/en/plugins/official-list/plugin-polyfill",element:i.createElement(Y),filePath:"en/plugins/official-list/plugin-polyfill.mdx",preload:async()=>(await Y.preload(),n.e("36").then(n.bind(n,4008))),lang:"en",version:""},{path:"/module-tools/en/plugins/official-list/plugin-vue",element:i.createElement(K),filePath:"en/plugins/official-list/plugin-vue.mdx",preload:async()=>(await K.preload(),n.e("6858").then(n.bind(n,8370))),lang:"en",version:""},{path:"/module-tools/api/config/build-config",element:i.createElement(J),filePath:"zh/api/config/build-config.mdx",preload:async()=>(await J.preload(),n.e("2206").then(n.bind(n,5195))),lang:"zh",version:""},{path:"/module-tools/api/config/build-preset",element:i.createElement(Q),filePath:"zh/api/config/build-preset.mdx",preload:async()=>(await Q.preload(),n.e("9524").then(n.bind(n,7293))),lang:"zh",version:""},{path:"/module-tools/api/config/dev",element:i.createElement(X),filePath:"zh/api/config/dev.md",preload:async()=>(await X.preload(),n.e("351").then(n.bind(n,7612))),lang:"zh",version:""},{path:"/module-tools/api/config/plugins",element:i.createElement(ee),filePath:"zh/api/config/plugins.md",preload:async()=>(await ee.preload(),n.e("1306").then(n.bind(n,2212))),lang:"zh",version:""},{path:"/module-tools/api/",element:i.createElement(et),filePath:"zh/api/index.md",preload:async()=>(await et.preload(),n.e("6046").then(n.bind(n,765))),lang:"zh",version:""},{path:"/module-tools/api/plugin-api/plugin-hooks",element:i.createElement(en),filePath:"zh/api/plugin-api/plugin-hooks.md",preload:async()=>(await en.preload(),n.e("4061").then(n.bind(n,992))),lang:"zh",version:""},{path:"/module-tools/components/faq-build-exception",element:i.createElement(ei),filePath:"zh/components/faq-build-exception.mdx",preload:async()=>(await ei.preload(),n.e("7584").then(n.bind(n,7228))),lang:"zh",version:""},{path:"/module-tools/components/faq-build-other",element:i.createElement(er),filePath:"zh/components/faq-build-other.mdx",preload:async()=>(await er.preload(),n.e("8214").then(n.bind(n,3021))),lang:"zh",version:""},{path:"/module-tools/components/faq-build-product",element:i.createElement(eo),filePath:"zh/components/faq-build-product.mdx",preload:async()=>(await eo.preload(),n.e("2671").then(n.bind(n,4103))),lang:"zh",version:""},{path:"/module-tools/components/faq-storybook",element:i.createElement(ea),filePath:"zh/components/faq-storybook.mdx",preload:async()=>(await ea.preload(),n.e("4655").then(n.bind(n,5518))),lang:"zh",version:""},{path:"/module-tools/components/publish-emo",element:i.createElement(el),filePath:"zh/components/publish-emo.mdx",preload:async()=>(await el.preload(),n.e("964").then(n.bind(n,1808))),lang:"zh",version:""},{path:"/module-tools/components/register-esbuild-plugin",element:i.createElement(es),filePath:"zh/components/register-esbuild-plugin.mdx",preload:async()=>(await es.preload(),n.e("3023").then(n.bind(n,7966))),lang:"zh",version:""},{path:"/module-tools/components/release-module-doc",element:i.createElement(ed),filePath:"zh/components/release-module-doc.mdx",preload:async()=>(await ed.preload(),n.e("1941").then(n.bind(n,8573))),lang:"zh",version:""},{path:"/module-tools/guide/advance/asset",element:i.createElement(ec),filePath:"zh/guide/advance/asset.mdx",preload:async()=>(await ec.preload(),n.e("461").then(n.bind(n,112))),lang:"zh",version:""},{path:"/module-tools/guide/advance/build-umd",element:i.createElement(eu),filePath:"zh/guide/advance/build-umd.mdx",preload:async()=>(await eu.preload(),n.e("769").then(n.bind(n,4650))),lang:"zh",version:""},{path:"/module-tools/guide/advance/copy",element:i.createElement(ep),filePath:"zh/guide/advance/copy.md",preload:async()=>(await ep.preload(),n.e("5495").then(n.bind(n,7022))),lang:"zh",version:""},{path:"/module-tools/guide/advance/external-dependency",element:i.createElement(eh),filePath:"zh/guide/advance/external-dependency.mdx",preload:async()=>(await eh.preload(),n.e("213").then(n.bind(n,1513))),lang:"zh",version:""},{path:"/module-tools/guide/advance/in-depth-about-build",element:i.createElement(ef),filePath:"zh/guide/advance/in-depth-about-build.md",preload:async()=>(await ef.preload(),n.e("9250").then(n.bind(n,1459))),lang:"zh",version:""},{path:"/module-tools/guide/advance/in-depth-about-dev-command",element:i.createElement(em),filePath:"zh/guide/advance/in-depth-about-dev-command.md",preload:async()=>(await em.preload(),n.e("3235").then(n.bind(n,9242))),lang:"zh",version:""},{path:"/module-tools/guide/basic/before-getting-started",element:i.createElement(eg),filePath:"zh/guide/basic/before-getting-started.md",preload:async()=>(await eg.preload(),n.e("8233").then(n.bind(n,9201))),lang:"zh",version:""},{path:"/module-tools/guide/basic/command-preview",element:i.createElement(ex),filePath:"zh/guide/basic/command-preview.md",preload:async()=>(await ex.preload(),n.e("5453").then(n.bind(n,8761))),lang:"zh",version:""},{path:"/module-tools/guide/basic/modify-output-product",element:i.createElement(ev),filePath:"zh/guide/basic/modify-output-product.md",preload:async()=>(await ev.preload(),n.e("5493").then(n.bind(n,1446))),lang:"zh",version:""},{path:"/module-tools/guide/basic/publish-your-project",element:i.createElement(eb),filePath:"zh/guide/basic/publish-your-project.mdx",preload:async()=>(await eb.preload(),n.e("6308").then(n.bind(n,5555))),lang:"zh",version:""},{path:"/module-tools/guide/basic/use-micro-generator",element:i.createElement(ey),filePath:"zh/guide/basic/use-micro-generator.md",preload:async()=>(await ey.preload(),n.e("8802").then(n.bind(n,4585))),lang:"zh",version:""},{path:"/module-tools/guide/basic/use-module-doc",element:i.createElement(ew),filePath:"zh/guide/basic/use-module-doc.mdx",preload:async()=>(await ew.preload(),n.e("3493").then(n.bind(n,2489))),lang:"zh",version:""},{path:"/module-tools/guide/basic/using-storybook",element:i.createElement(ek),filePath:"zh/guide/basic/using-storybook.mdx",preload:async()=>(await ek.preload(),n.e("8040").then(n.bind(n,6536))),lang:"zh",version:""},{path:"/module-tools/guide/best-practices/components",element:i.createElement(ej),filePath:"zh/guide/best-practices/components.mdx",preload:async()=>(await ej.preload(),n.e("6576").then(n.bind(n,7571))),lang:"zh",version:""},{path:"/module-tools/guide/best-practices/use-tailwindcss",element:i.createElement(eI),filePath:"zh/guide/best-practices/use-tailwindcss.mdx",preload:async()=>(await eI.preload(),n.e("1095").then(n.bind(n,7341))),lang:"zh",version:""},{path:"/module-tools/guide/faq/basic",element:i.createElement(eP),filePath:"zh/guide/faq/basic.mdx",preload:async()=>(await eP.preload(),n.e("1801").then(n.bind(n,6452))),lang:"zh",version:""},{path:"/module-tools/guide/faq/build",element:i.createElement(eS),filePath:"zh/guide/faq/build.mdx",preload:async()=>(await eS.preload(),n.e("2712").then(n.bind(n,2721))),lang:"zh",version:""},{path:"/module-tools/guide/faq/",element:i.createElement(eE),filePath:"zh/guide/faq/index.md",preload:async()=>(await eE.preload(),n.e("5455").then(n.bind(n,2330))),lang:"zh",version:""},{path:"/module-tools/guide/faq/storybook",element:i.createElement(e_),filePath:"zh/guide/faq/storybook.mdx",preload:async()=>(await e_.preload(),n.e("7600").then(n.bind(n,7533))),lang:"zh",version:""},{path:"/module-tools/guide/intro/getting-started",element:i.createElement(eC),filePath:"zh/guide/intro/getting-started.mdx",preload:async()=>(await eC.preload(),n.e("2365").then(n.bind(n,8539))),lang:"zh",version:""},{path:"/module-tools/guide/intro/welcome",element:i.createElement(ez),filePath:"zh/guide/intro/welcome.md",preload:async()=>(await ez.preload(),n.e("5105").then(n.bind(n,6394))),lang:"zh",version:""},{path:"/module-tools/guide/intro/why-module-engineering-solution",element:i.createElement(eN),filePath:"zh/guide/intro/why-module-engineering-solution.md",preload:async()=>(await eN.preload(),n.e("8134").then(n.bind(n,2323))),lang:"zh",version:""},{path:"/module-tools/",element:i.createElement(eA),filePath:"zh/index.md",preload:async()=>(await eA.preload(),n.e("5844").then(n.bind(n,9096))),lang:"zh",version:""},{path:"/module-tools/plugins/guide/getting-started",element:i.createElement(eT),filePath:"zh/plugins/guide/getting-started.mdx",preload:async()=>(await eT.preload(),n.e("3628").then(n.bind(n,3099))),lang:"zh",version:""},{path:"/module-tools/plugins/guide/plugin-object",element:i.createElement(eO),filePath:"zh/plugins/guide/plugin-object.mdx",preload:async()=>(await eO.preload(),n.e("2579").then(n.bind(n,5293))),lang:"zh",version:""},{path:"/module-tools/plugins/guide/setup-function",element:i.createElement(eM),filePath:"zh/plugins/guide/setup-function.mdx",preload:async()=>(await eM.preload(),n.e("1527").then(n.bind(n,7774))),lang:"zh",version:""},{path:"/module-tools/plugins/official-list/overview",element:i.createElement(eL),filePath:"zh/plugins/official-list/overview.md",preload:async()=>(await eL.preload(),n.e("3724").then(n.bind(n,3259))),lang:"zh",version:""},{path:"/module-tools/plugins/official-list/plugin-babel",element:i.createElement(e$),filePath:"zh/plugins/official-list/plugin-babel.mdx",preload:async()=>(await e$.preload(),n.e("3039").then(n.bind(n,2375))),lang:"zh",version:""},{path:"/module-tools/plugins/official-list/plugin-banner",element:i.createElement(eR),filePath:"zh/plugins/official-list/plugin-banner.mdx",preload:async()=>(await eR.preload(),n.e("2300").then(n.bind(n,561))),lang:"zh",version:""},{path:"/module-tools/plugins/official-list/plugin-import",element:i.createElement(eH),filePath:"zh/plugins/official-list/plugin-import.mdx",preload:async()=>(await eH.preload(),n.e("8713").then(n.bind(n,2302))),lang:"zh",version:""},{path:"/module-tools/plugins/official-list/plugin-node-polyfill",element:i.createElement(eB),filePath:"zh/plugins/official-list/plugin-node-polyfill.mdx",preload:async()=>(await eB.preload(),n.e("9100").then(n.bind(n,191))),lang:"zh",version:""},{path:"/module-tools/plugins/official-list/plugin-polyfill",element:i.createElement(eD),filePath:"zh/plugins/official-list/plugin-polyfill.mdx",preload:async()=>(await eD.preload(),n.e("8694").then(n.bind(n,2927))),lang:"zh",version:""},{path:"/module-tools/plugins/official-list/plugin-vue",element:i.createElement(eF),filePath:"zh/plugins/official-list/plugin-vue.mdx",preload:async()=>(await eF.preload(),n.e("7220").then(n.bind(n,2101))),lang:"zh",version:""}]},6780:function(e,t,n){"use strict";n.d(t,{Z:function(){return i}});let i={title:"Modern.js Module",description:"",icon:"https://lf3-static.bytednsdoc.com/obj/eden-cn/zq-uylkvT/ljhwZthlaukjlkulzlp/logo-1x-0104.png",themeConfig:{footer:{message:"Copyright \xa9 2023 ByteDance."},socialLinks:[{icon:"github",mode:"link",content:"https://github.com/web-infra-dev/modern.js/tree/main/packages/solutions/module-tools"}],locales:[{lang:"zh",label:"简体中文",nav:[{text:"指南",link:"/guide/intro/welcome",activeMatch:"^/guide/"},{text:"API",link:"/api/",activeMatch:"^/api/"},{text:"插件",link:"/plugins/guide/getting-started",activeMatch:"^/plugins/"},{text:"v2.60.1",items:[{text:"更新日志",link:"https://github.com/web-infra-dev/modern.js/tree/main/packages/solutions/module-tools/CHANGELOG.md"},{text:"贡献指南",link:"https://modernjs.dev/en/community/contributing-guide.html"}]}],title:"Modern.js Module",outlineTitle:"目录",prevPageText:"上一页",nextPageText:"下一页",description:"模块工程解决方案",sidebar:{"/api/":[{text:"概览",link:"/module-tools/api/"},{text:"配置项",link:"",items:[{text:"buildConfig",link:"/module-tools/api/config/build-config"},{text:"buildPreset",link:"/module-tools/api/config/build-preset"},{text:"dev",link:"/module-tools/api/config/dev"},{text:"plugins",link:"/module-tools/api/config/plugins"}],collapsed:!1,collapsible:!0},{text:"Plugin API",link:"",items:[{text:"Plugin Hooks",link:"/module-tools/api/plugin-api/plugin-hooks"}],collapsed:!1,collapsible:!0}],"/guide/":[{text:"介绍",link:"",items:[{text:"欢迎使用",link:"/module-tools/guide/intro/welcome"},{text:"为什么需要 Modern.js Module",link:"/module-tools/guide/intro/why-module-engineering-solution"},{text:"快速开始",link:"/module-tools/guide/intro/getting-started"}],collapsed:!1,collapsible:!0},{text:"基础使用",link:"",items:[{text:"开始之前",link:"/module-tools/guide/basic/before-getting-started"},{text:"CLI 命令",link:"/module-tools/guide/basic/command-preview"},{text:"修改输出产物",link:"/module-tools/guide/basic/modify-output-product"},{text:"使用微生成器",link:"/module-tools/guide/basic/use-micro-generator"},{text:"开发模块文档",link:"/module-tools/guide/basic/use-module-doc"},{text:"使用 Storybook",link:"/module-tools/guide/basic/using-storybook"},{text:"版本管理与发布",link:"/module-tools/guide/basic/publish-your-project"}],collapsed:!1,collapsible:!0},{text:"进阶指南",link:"",items:[{text:"深入理解构建",link:"/module-tools/guide/advance/in-depth-about-build"},{text:"深入理解 dev 命令",link:"/module-tools/guide/advance/in-depth-about-dev-command"},{text:"使用 Copy 工具",link:"/module-tools/guide/advance/copy"},{text:"处理三方依赖",link:"/module-tools/guide/advance/external-dependency"},{text:"构建 umd 产物",link:"/module-tools/guide/advance/build-umd"},{text:"处理静态资源",link:"/module-tools/guide/advance/asset"}],collapsed:!1,collapsible:!0},{text:"最佳实践",link:"",items:[{text:"开发组件",link:"/module-tools/guide/best-practices/components"},{text:"使用 Tailwind CSS",link:"/module-tools/guide/best-practices/use-tailwindcss"}],collapsed:!1,collapsible:!0},{text:"常见问题",link:"/module-tools/guide/faq/",items:[{text:"通用类问题",link:"/module-tools/guide/faq/basic"},{text:"构建相关问题",link:"/module-tools/guide/faq/build"},{text:"Storybook 相关问题",link:"/module-tools/guide/faq/storybook"}],collapsed:!1,collapsible:!0}],"/plugins/":[{text:"指南",link:"",items:[{text:"快速开始",link:"/module-tools/plugins/guide/getting-started"},{text:"插件对象",link:"/module-tools/plugins/guide/plugin-object"},{text:"Setup 函数",link:"/module-tools/plugins/guide/setup-function"}],collapsed:!1,collapsible:!0},{text:"插件列表",link:"",items:[{text:"总览",link:"/module-tools/plugins/official-list/overview"},{text:"Babel 插件",link:"/module-tools/plugins/official-list/plugin-babel"},{text:"Banner 插件",link:"/module-tools/plugins/official-list/plugin-banner"},{text:"Import 插件",link:"/module-tools/plugins/official-list/plugin-import"},{text:"Node Polyfill 插件",link:"/module-tools/plugins/official-list/plugin-node-polyfill"},{text:"Polyfill 插件",link:"/module-tools/plugins/official-list/plugin-polyfill"},{text:"Vue 插件",link:"/module-tools/plugins/official-list/plugin-vue"}],collapsed:!1,collapsible:!0}]}},{lang:"en",label:"English",nav:[{text:"Guide",link:"/en/guide/intro/welcome",activeMatch:"^/guide/"},{text:"API",link:"/en/api/",activeMatch:"^/api/"},{text:"Plugins",link:"/en/plugins/guide/getting-started",activeMatch:"^/plugins/"},{text:"v2.60.1",items:[{text:"Changelog",link:"https://github.com/web-infra-dev/modern.js/tree/main/packages/solutions/module-tools/CHANGELOG.md"},{text:"Contributing",link:"https://modernjs.dev/en/community/contributing-guide.html"}]}],title:"Modern.js Module",description:"Module Engineering Solutions",sidebar:{"/en/api/":[{text:"Overview",link:"/module-tools/en/api/"},{text:"Config",link:"",items:[{text:"buildConfig",link:"/module-tools/en/api/config/build-config"},{text:"buildPreset",link:"/module-tools/en/api/config/build-preset"},{text:"dev",link:"/module-tools/en/api/config/dev"},{text:"plugins",link:"/module-tools/en/api/config/plugins"}],collapsed:!1,collapsible:!0},{text:"Plugin API",link:"",items:[{text:"Plugin Hooks",link:"/module-tools/en/api/plugin-api/plugin-hooks"}],collapsed:!1,collapsible:!0}],"/en/guide/":[{text:"Introduction",link:"",items:[{text:"Welcome to Modern.js Module",link:"/module-tools/en/guide/intro/welcome"},{text:"Why you need Modern.js Module",link:"/module-tools/en/guide/intro/why-module-engineering-solution"},{text:"Quick Start",link:"/module-tools/en/guide/intro/getting-started"}],collapsed:!1,collapsible:!0},{text:"Basic Guide",link:"",items:[{text:"Before you start",link:"/module-tools/en/guide/basic/before-getting-started"},{text:"CLI Commands",link:"/module-tools/en/guide/basic/command-preview"},{text:"Modify the output",link:"/module-tools/en/guide/basic/modify-output-product"},{text:"Using the Microgenerator",link:"/module-tools/en/guide/basic/use-micro-generator"},{text:"Developing Module documentation",link:"/module-tools/en/guide/basic/use-module-doc"},{text:"Using Storybook",link:"/module-tools/en/guide/basic/using-storybook"},{text:"Versioning and Publishing",link:"/module-tools/en/guide/basic/publish-your-project"}],collapsed:!1,collapsible:!0},{text:"Advanced Guide",link:"",items:[{text:"In-depth understanding of build",link:"/module-tools/en/guide/advance/in-depth-about-build"},{text:"In-depth understanding of the dev command",link:"/module-tools/en/guide/advance/in-depth-about-dev-command"},{text:"Use the Copy Tools",link:"/module-tools/en/guide/advance/copy"},{text:"Handle third-party dependencies",link:"/module-tools/en/guide/advance/external-dependency"},{text:"Build umd artifacts",link:"/module-tools/en/guide/advance/build-umd"},{text:"Handle static assets",link:"/module-tools/en/guide/advance/asset"}],collapsed:!1,collapsible:!0},{text:"Best practices",link:"",items:[{text:"Developing Components",link:"/module-tools/en/guide/best-practices/components"},{text:"Using Tailwind CSS",link:"/module-tools/en/guide/best-practices/use-tailwindcss"}],collapsed:!1,collapsible:!0},{text:"FAQ",link:"/module-tools/en/guide/faq/",items:[{text:"General Questions",link:"/module-tools/en/guide/faq/basic"},{text:"Build FAQ",link:"/module-tools/en/guide/faq/build"},{text:"Storybook FAQ",link:"/module-tools/en/guide/faq/storybook"}],collapsed:!1,collapsible:!0}],"/en/plugins/":[{text:"Guide",link:"",items:[{text:"Quick Start",link:"/module-tools/en/plugins/guide/getting-started"},{text:"Plugin Object",link:"/module-tools/en/plugins/guide/plugin-object"},{text:"Setup function",link:"/module-tools/en/plugins/guide/setup-function"}],collapsed:!1,collapsible:!0},{text:"Plugins List",link:"",items:[{text:"Overview",link:"/module-tools/en/plugins/official-list/overview"},{text:"Babel Plugin",link:"/module-tools/en/plugins/official-list/plugin-babel"},{text:"Banner Plugin",link:"/module-tools/en/plugins/official-list/plugin-banner"},{text:"Import Plugin",link:"/module-tools/en/plugins/official-list/plugin-import"},{text:"Node Polyfill Plugin",link:"/module-tools/en/plugins/official-list/plugin-node-polyfill"},{text:"Polyfill Plugin",link:"/module-tools/en/plugins/official-list/plugin-polyfill"},{text:"Vue Plugin",link:"/module-tools/en/plugins/official-list/plugin-vue"}],collapsed:!1,collapsible:!0}]}}],editLink:{docRepoBaseUrl:"https://github.com/web-infra-dev/modern.js/tree/main/packages/document/module-doc/docs",text:"Edit this page on GitHub"}},base:"/module-tools/",lang:"zh",locales:[{lang:"zh",label:"简体中文",nav:[{text:"指南",link:"/guide/intro/welcome",activeMatch:"^/guide/"},{text:"API",link:"/api/",activeMatch:"^/api/"},{text:"插件",link:"/plugins/guide/getting-started",activeMatch:"^/plugins/"},{text:"v2.60.1",items:[{text:"更新日志",link:"https://github.com/web-infra-dev/modern.js/tree/main/packages/solutions/module-tools/CHANGELOG.md"},{text:"贡献指南",link:"https://modernjs.dev/en/community/contributing-guide.html"}]}],title:"Modern.js Module",outlineTitle:"目录",prevPageText:"上一页",nextPageText:"下一页",description:"模块工程解决方案",sidebar:{"/api/":[{text:"概览",link:"/module-tools/api/"},{text:"配置项",link:"",items:[{text:"buildConfig",link:"/module-tools/api/config/build-config"},{text:"buildPreset",link:"/module-tools/api/config/build-preset"},{text:"dev",link:"/module-tools/api/config/dev"},{text:"plugins",link:"/module-tools/api/config/plugins"}],collapsed:!1,collapsible:!0},{text:"Plugin API",link:"",items:[{text:"Plugin Hooks",link:"/module-tools/api/plugin-api/plugin-hooks"}],collapsed:!1,collapsible:!0}],"/guide/":[{text:"介绍",link:"",items:[{text:"欢迎使用",link:"/module-tools/guide/intro/welcome"},{text:"为什么需要 Modern.js Module",link:"/module-tools/guide/intro/why-module-engineering-solution"},{text:"快速开始",link:"/module-tools/guide/intro/getting-started"}],collapsed:!1,collapsible:!0},{text:"基础使用",link:"",items:[{text:"开始之前",link:"/module-tools/guide/basic/before-getting-started"},{text:"CLI 命令",link:"/module-tools/guide/basic/command-preview"},{text:"修改输出产物",link:"/module-tools/guide/basic/modify-output-product"},{text:"使用微生成器",link:"/module-tools/guide/basic/use-micro-generator"},{text:"开发模块文档",link:"/module-tools/guide/basic/use-module-doc"},{text:"使用 Storybook",link:"/module-tools/guide/basic/using-storybook"},{text:"版本管理与发布",link:"/module-tools/guide/basic/publish-your-project"}],collapsed:!1,collapsible:!0},{text:"进阶指南",link:"",items:[{text:"深入理解构建",link:"/module-tools/guide/advance/in-depth-about-build"},{text:"深入理解 dev 命令",link:"/module-tools/guide/advance/in-depth-about-dev-command"},{text:"使用 Copy 工具",link:"/module-tools/guide/advance/copy"},{text:"处理三方依赖",link:"/module-tools/guide/advance/external-dependency"},{text:"构建 umd 产物",link:"/module-tools/guide/advance/build-umd"},{text:"处理静态资源",link:"/module-tools/guide/advance/asset"}],collapsed:!1,collapsible:!0},{text:"最佳实践",link:"",items:[{text:"开发组件",link:"/module-tools/guide/best-practices/components"},{text:"使用 Tailwind CSS",link:"/module-tools/guide/best-practices/use-tailwindcss"}],collapsed:!1,collapsible:!0},{text:"常见问题",link:"/module-tools/guide/faq/",items:[{text:"通用类问题",link:"/module-tools/guide/faq/basic"},{text:"构建相关问题",link:"/module-tools/guide/faq/build"},{text:"Storybook 相关问题",link:"/module-tools/guide/faq/storybook"}],collapsed:!1,collapsible:!0}],"/plugins/":[{text:"指南",link:"",items:[{text:"快速开始",link:"/module-tools/plugins/guide/getting-started"},{text:"插件对象",link:"/module-tools/plugins/guide/plugin-object"},{text:"Setup 函数",link:"/module-tools/plugins/guide/setup-function"}],collapsed:!1,collapsible:!0},{text:"插件列表",link:"",items:[{text:"总览",link:"/module-tools/plugins/official-list/overview"},{text:"Babel 插件",link:"/module-tools/plugins/official-list/plugin-babel"},{text:"Banner 插件",link:"/module-tools/plugins/official-list/plugin-banner"},{text:"Import 插件",link:"/module-tools/plugins/official-list/plugin-import"},{text:"Node Polyfill 插件",link:"/module-tools/plugins/official-list/plugin-node-polyfill"},{text:"Polyfill 插件",link:"/module-tools/plugins/official-list/plugin-polyfill"},{text:"Vue 插件",link:"/module-tools/plugins/official-list/plugin-vue"}],collapsed:!1,collapsible:!0}]}},{lang:"en",label:"English",nav:[{text:"Guide",link:"/en/guide/intro/welcome",activeMatch:"^/guide/"},{text:"API",link:"/en/api/",activeMatch:"^/api/"},{text:"Plugins",link:"/en/plugins/guide/getting-started",activeMatch:"^/plugins/"},{text:"v2.60.1",items:[{text:"Changelog",link:"https://github.com/web-infra-dev/modern.js/tree/main/packages/solutions/module-tools/CHANGELOG.md"},{text:"Contributing",link:"https://modernjs.dev/en/community/contributing-guide.html"}]}],title:"Modern.js Module",description:"Module Engineering Solutions",sidebar:{"/en/api/":[{text:"Overview",link:"/module-tools/en/api/"},{text:"Config",link:"",items:[{text:"buildConfig",link:"/module-tools/en/api/config/build-config"},{text:"buildPreset",link:"/module-tools/en/api/config/build-preset"},{text:"dev",link:"/module-tools/en/api/config/dev"},{text:"plugins",link:"/module-tools/en/api/config/plugins"}],collapsed:!1,collapsible:!0},{text:"Plugin API",link:"",items:[{text:"Plugin Hooks",link:"/module-tools/en/api/plugin-api/plugin-hooks"}],collapsed:!1,collapsible:!0}],"/en/guide/":[{text:"Introduction",link:"",items:[{text:"Welcome to Modern.js Module",link:"/module-tools/en/guide/intro/welcome"},{text:"Why you need Modern.js Module",link:"/module-tools/en/guide/intro/why-module-engineering-solution"},{text:"Quick Start",link:"/module-tools/en/guide/intro/getting-started"}],collapsed:!1,collapsible:!0},{text:"Basic Guide",link:"",items:[{text:"Before you start",link:"/module-tools/en/guide/basic/before-getting-started"},{text:"CLI Commands",link:"/module-tools/en/guide/basic/command-preview"},{text:"Modify the output",link:"/module-tools/en/guide/basic/modify-output-product"},{text:"Using the Microgenerator",link:"/module-tools/en/guide/basic/use-micro-generator"},{text:"Developing Module documentation",link:"/module-tools/en/guide/basic/use-module-doc"},{text:"Using Storybook",link:"/module-tools/en/guide/basic/using-storybook"},{text:"Versioning and Publishing",link:"/module-tools/en/guide/basic/publish-your-project"}],collapsed:!1,collapsible:!0},{text:"Advanced Guide",link:"",items:[{text:"In-depth understanding of build",link:"/module-tools/en/guide/advance/in-depth-about-build"},{text:"In-depth understanding of the dev command",link:"/module-tools/en/guide/advance/in-depth-about-dev-command"},{text:"Use the Copy Tools",link:"/module-tools/en/guide/advance/copy"},{text:"Handle third-party dependencies",link:"/module-tools/en/guide/advance/external-dependency"},{text:"Build umd artifacts",link:"/module-tools/en/guide/advance/build-umd"},{text:"Handle static assets",link:"/module-tools/en/guide/advance/asset"}],collapsed:!1,collapsible:!0},{text:"Best practices",link:"",items:[{text:"Developing Components",link:"/module-tools/en/guide/best-practices/components"},{text:"Using Tailwind CSS",link:"/module-tools/en/guide/best-practices/use-tailwindcss"}],collapsed:!1,collapsible:!0},{text:"FAQ",link:"/module-tools/en/guide/faq/",items:[{text:"General Questions",link:"/module-tools/en/guide/faq/basic"},{text:"Build FAQ",link:"/module-tools/en/guide/faq/build"},{text:"Storybook FAQ",link:"/module-tools/en/guide/faq/storybook"}],collapsed:!1,collapsible:!0}],"/en/plugins/":[{text:"Guide",link:"",items:[{text:"Quick Start",link:"/module-tools/en/plugins/guide/getting-started"},{text:"Plugin Object",link:"/module-tools/en/plugins/guide/plugin-object"},{text:"Setup function",link:"/module-tools/en/plugins/guide/setup-function"}],collapsed:!1,collapsible:!0},{text:"Plugins List",link:"",items:[{text:"Overview",link:"/module-tools/en/plugins/official-list/overview"},{text:"Babel Plugin",link:"/module-tools/en/plugins/official-list/plugin-babel"},{text:"Banner Plugin",link:"/module-tools/en/plugins/official-list/plugin-banner"},{text:"Import Plugin",link:"/module-tools/en/plugins/official-list/plugin-import"},{text:"Node Polyfill Plugin",link:"/module-tools/en/plugins/official-list/plugin-node-polyfill"},{text:"Polyfill Plugin",link:"/module-tools/en/plugins/official-list/plugin-polyfill"},{text:"Vue Plugin",link:"/module-tools/en/plugins/official-list/plugin-vue"}],collapsed:!1,collapsible:!0}]}}],logo:"",logoText:"",ssg:!0,multiVersion:{default:"",versions:[]},search:{},pages:[{title:"buildConfig",routePath:"/module-tools/en/api/config/build-config",lang:"en",toc:[{text:"alias",id:"alias",depth:2,charIndex:378},{text:"asset",id:"asset",depth:2,charIndex:1054},{text:"asset.name",id:"assetname",depth:2,charIndex:1113},{text:"asset.limit",id:"assetlimit",depth:2,charIndex:1571},{text:"asset.path",id:"assetpath",depth:2,charIndex:2045},{text:"asset.publicPath",id:"assetpublicpath",depth:2,charIndex:2149},{text:"asset.svgr",id:"assetsvgr",depth:2,charIndex:2336},{text:"asset.svgr.include",id:"assetsvgrinclude",depth:2,charIndex:2783},{text:"asset.svgr.exclude",id:"assetsvgrexclude",depth:2,charIndex:2901},{text:"asset.svgr.exportType",id:"assetsvgrexporttype",depth:2,charIndex:3018},{text:"autoExtension",id:"autoextension",depth:2,charIndex:3299},{text:"autoExternal",id:"autoexternal",depth:2,charIndex:4498},{text:"autoExternal.dependencies",id:"autoexternaldependencies",depth:2,charIndex:5006},{text:"autoExternal.peerDependencies",id:"autoexternalpeerdependencies",depth:2,charIndex:5142},{text:"banner",id:"banner",depth:2,charIndex:5273},{text:"buildType",id:"buildtype",depth:2,charIndex:5514},{text:"copy",id:"copy",depth:2,charIndex:5674},{text:"copy.patterns",id:"copypatterns",depth:2,charIndex:5850},{text:"copy.options",id:"copyoptions",depth:2,charIndex:5908},{text:"define",id:"define",depth:2,charIndex:6133},{text:"dts",id:"dts",depth:2,charIndex:7312},{text:"dts.abortOnError",id:"dtsabortonerror",depth:2,charIndex:7435},{text:"dts.distPath",id:"dtsdistpath",depth:2,charIndex:7919},{text:"dts.enableTscBuild",id:"dtsenabletscbuild",depth:2,charIndex:8081},{text:"dts.only",id:"dtsonly",depth:2,charIndex:8508},{text:"dts.tsconfigPath",id:"dtstsconfigpath",depth:2,charIndex:8664},{text:"dts.respectExternal",id:"dtsrespectexternal",depth:2,charIndex:8793},{text:"esbuildOptions",id:"esbuildoptions",depth:2,charIndex:9225},{text:"externalHelpers",id:"externalhelpers",depth:2,charIndex:10401},{text:"externals",id:"externals",depth:2,charIndex:10923},{text:"footer",id:"footer",depth:2,charIndex:11113},{text:"format",id:"format",depth:2,charIndex:11209},{text:"format: esm",id:"format-esm",depth:3,charIndex:11396},{text:"format: cjs",id:"format-cjs",depth:3,charIndex:11536},{text:"format: iife",id:"format-iife",depth:3,charIndex:11732},{text:"format: umd",id:"format-umd",depth:3,charIndex:12026},{text:"hooks",id:"hooks",depth:2,charIndex:12329},{text:"input",id:"input",depth:2,charIndex:12816},{text:"jsx",id:"jsx",depth:2,charIndex:13845},{text:"loader",id:"loader",depth:2,charIndex:14376},{text:"metafile",id:"metafile",depth:2,charIndex:14536},{text:"minify",id:"minify",depth:2,charIndex:14965},{text:"outDir",id:"outdir",depth:2,charIndex:15108},{text:"platform",id:"platform",depth:2,charIndex:15202},{text:"redirect",id:"redirect",depth:2,charIndex:15433},{text:"resolve",id:"resolve",depth:2,charIndex:15949},{text:"resolve.alias",id:"resolvealias",depth:3,charIndex:15994},{text:"resolve.mainFields",id:"resolvemainfields",depth:3,charIndex:16827},{text:"resolve.jsExtentions",id:"resolvejsextentions",depth:3,charIndex:17320},{text:"shims",id:"shims",depth:2,charIndex:17785},{text:"sideEffects",id:"sideeffects",depth:2,charIndex:18206},{text:"sourceDir",id:"sourcedir",depth:2,charIndex:19055},{text:"sourceMap",id:"sourcemap",depth:2,charIndex:19313},{text:"sourceType",id:"sourcetype",depth:2,charIndex:19424},{text:"splitting",id:"splitting",depth:2,charIndex:19651},{text:"style",id:"style",depth:2,charIndex:19814},{text:"style.less",id:"styleless",depth:2,charIndex:19862},{text:"style.less.lessOptions",id:"stylelesslessoptions",depth:2,charIndex:19904},{text:"style.less.additionalData",id:"stylelessadditionaldata",depth:2,charIndex:20029},{text:"style.less.implementation",id:"stylelessimplementation",depth:2,charIndex:20150},{text:"style.sass",id:"stylesass",depth:2,charIndex:20495},{text:"style.sass.sassOptions",id:"stylesasssassoptions",depth:2,charIndex:20538},{text:"style.sass.additionalData",id:"stylesassadditionaldata",depth:2,charIndex:20644},{text:"style.sass.implementation",id:"stylesassimplementation",depth:2,charIndex:20776},{text:"style.postcss",id:"stylepostcss",depth:2,charIndex:21116},{text:"style.inject",id:"styleinject",depth:2,charIndex:21464},{text:"style.autoModules",id:"styleautomodules",depth:2,charIndex:22477},{text:"style.modules",id:"stylemodules",depth:2,charIndex:22824},{text:"style.tailwindcss",id:"styletailwindcss",depth:2,charIndex:23124},{text:"Enabling Tailwind CSS",id:"enabling-tailwind-css",depth:3,charIndex:23238},{text:"Type",id:"type",depth:3,charIndex:23447},{text:"Notes",id:"notes",depth:3,charIndex:23752},{text:"target",id:"target",depth:2,charIndex:24335},{text:"transformImport",id:"transformimport",depth:2,charIndex:24699},{text:"transformLodash",id:"transformlodash",depth:2,charIndex:25055},{text:"tsconfig",id:"tsconfig",depth:2,charIndex:25556},{text:"umdGlobals",id:"umdglobals",depth:2,charIndex:25661},{text:"umdModuleName",id:"umdmodulename",depth:2,charIndex:25972}],frontmatter:{sidebar_position:1},version:"",_relativePath:"en/api/config/build-config.mdx"},{title:"buildPreset",routePath:"/module-tools/en/api/config/build-preset",lang:"en",toc:[{text:"`npm-library`",id:"npm-library",depth:3,charIndex:-1},{text:"`npm-library-with-umd`",id:"npm-library-with-umd",depth:3,charIndex:-1},{text:"`npm-component`",id:"npm-component",depth:3,charIndex:-1},{text:"`npm-component-with-umd`",id:"npm-component-with-umd",depth:3,charIndex:-1},{text:"`npm-library-{es5...esnext}`",id:"npm-library-es5esnext",depth:3,charIndex:-1},{text:"string / function",id:"string--function",depth:2,charIndex:1651}],frontmatter:{sidebar_position:2},version:"",_relativePath:"en/api/config/build-preset.mdx"},{title:"dev",routePath:"/module-tools/en/api/config/dev",lang:"en",toc:[{text:"storybook",id:"storybook",depth:2,charIndex:93},{text:"storybook.webpack",id:"storybookwebpack",depth:3,charIndex:239},{text:"Configure Manager App",id:"configure-manager-app",depth:4,charIndex:498},{text:"storybook.webpackChain",id:"storybookwebpackchain",depth:3,charIndex:678}],frontmatter:{sidebar_position:3},version:"",_relativePath:"en/api/config/dev.md"},{title:"plugins",routePath:"/module-tools/en/api/config/plugins",lang:"en",toc:[{text:"Plugin Execution Order",id:"plugin-execution-order",depth:2,charIndex:140},{text:"Developing Plugins",id:"developing-plugins",depth:2,charIndex:584},{text:"Example",id:"example",depth:2,charIndex:680},{text:"Using Plugins from npm",id:"using-plugins-from-npm",depth:3,charIndex:691},{text:"Using Local Plugins",id:"using-local-plugins",depth:4,charIndex:837},{text:"Plugin Configuration",id:"plugin-configuration",depth:3,charIndex:960}],frontmatter:{sidebar_position:4},version:"",_relativePath:"en/api/config/plugins.md"},{title:"Overview",routePath:"/module-tools/en/api/",lang:"en",toc:[],frontmatter:{overview:!0,sidebar_label:"Overview",sidebar_position:1},version:"",_relativePath:"en/api/index.md"},{title:"Plugin Hooks",routePath:"/module-tools/en/api/plugin-api/plugin-hooks",lang:"en",toc:[{text:"Config hooks",id:"config-hooks",depth:2,charIndex:509},{text:"`resolveModuleUserConfig`",id:"resolvemoduleuserconfig",depth:3,charIndex:-1},{text:"build hooks",id:"build-hooks",depth:2,charIndex:596},{text:"`beforeBuild`",id:"beforebuild",depth:3,charIndex:-1},{text:"`beforeBuildTask`",id:"beforebuildtask",depth:3,charIndex:-1},{text:"`afterBuildTask`",id:"afterbuildtask",depth:3,charIndex:-1},{text:"`afterBuild`",id:"afterbuild",depth:3,charIndex:-1},{text:"buildPlatform hooks",id:"buildplatform-hooks",depth:2,charIndex:1494},{text:"`registerBuildPlatform`",id:"registerbuildplatform",depth:3,charIndex:-1},{text:"`beforeBuildPlatform`",id:"beforebuildplatform",depth:3,charIndex:-1},{text:"`buildPlatform`",id:"buildplatform",depth:3,charIndex:-1},{text:"`afterBuildPlatform`",id:"afterbuildplatform",depth:3,charIndex:-1},{text:"Dev Hooks",id:"dev-hooks",depth:2,charIndex:2796},{text:"`registerDev`",id:"registerdev",depth:3,charIndex:-1},{text:"`beforeDev`",id:"beforedev",depth:3,charIndex:-1},{text:"`(before|after)DevMenu`",id:"beforeafterdevmenu",depth:3,charIndex:-1},{text:"`beforeDevTask`",id:"beforedevtask",depth:3,charIndex:-1},{text:"`afterDev`",id:"afterdev",depth:3,charIndex:-1}],frontmatter:{},version:"",_relativePath:"en/api/plugin-api/plugin-hooks.md"},{title:"",routePath:"/module-tools/en/components/faq-build-exception",lang:"en",toc:[],frontmatter:{},version:"",_relativePath:"en/components/faq-build-exception.mdx"},{title:"",routePath:"/module-tools/en/components/faq-build-other",lang:"en",toc:[],frontmatter:{},version:"",_relativePath:"en/components/faq-build-other.mdx"},{title:"",routePath:"/module-tools/en/components/faq-build-product",lang:"en",toc:[],frontmatter:{},version:"",_relativePath:"en/components/faq-build-product.mdx"},{title:"",routePath:"/module-tools/en/components/faq-storybook",lang:"en",toc:[],frontmatter:{},version:"",_relativePath:"en/components/faq-storybook.mdx"},{title:"",routePath:"/module-tools/en/components/publish-emo",lang:"en",toc:[],frontmatter:{},version:"",_relativePath:"en/components/publish-emo.mdx"},{title:"",routePath:"/module-tools/en/components/register-esbuild-plugin",lang:"en",toc:[],frontmatter:{},version:"",_relativePath:"en/components/register-esbuild-plugin.mdx"},{title:"",routePath:"/module-tools/en/components/release-module-doc",lang:"en",toc:[],frontmatter:{},version:"",_relativePath:"en/components/release-module-doc.mdx"},{title:"Handle static assets",routePath:"/module-tools/en/guide/advance/asset",lang:"en",toc:[{text:"Default behavior",id:"default-behavior",depth:2,charIndex:139},{text:"Example",id:"example",depth:2,charIndex:571}],frontmatter:{sidebar_position:6},version:"",_relativePath:"en/guide/advance/asset.mdx"},{title:"Build umd artifacts",routePath:"/module-tools/en/guide/advance/build-umd",lang:"en",toc:[{text:"Third-party dependency handling for umd artifacts",id:"third-party-dependency-handling-for-umd-artifacts",depth:2,charIndex:412},{text:"Example",id:"example",depth:3,charIndex:716},{text:"Global variable names of third-party dependencies",id:"global-variable-names-of-third-party-dependencies",depth:3,charIndex:1171},{text:"Changing the name of a global variable in a project",id:"changing-the-name-of-a-global-variable-in-a-project",depth:2,charIndex:1831}],frontmatter:{sidebar_position:5},version:"",_relativePath:"en/guide/advance/build-umd.mdx"},{title:"Use the Copy Tools",routePath:"/module-tools/en/guide/advance/copy",lang:"en",toc:[{text:"Understanding the Copy API",id:"understanding-the-copy-api",depth:2,charIndex:171},{text:"API Description",id:"api-description",depth:2,charIndex:335},{text:"Examples of Different Scenarios",id:"examples-of-different-scenarios",depth:2,charIndex:1783},{text:"Copying Files",id:"copying-files",depth:3,charIndex:1818},{text:"Copying Files to a Directory",id:"copying-files-to-a-directory",depth:3,charIndex:1837},{text:"Copying from Directory to Directory",id:"copying-from-directory-to-directory",depth:3,charIndex:1871},{text:"Copying from Directory to File",id:"copying-from-directory-to-file",depth:3,charIndex:1912},{text:"Using Glob",id:"using-glob",depth:3,charIndex:1948}],frontmatter:{sidebar_position:3},version:"",_relativePath:"en/guide/advance/copy.md"},{title:"Handle third-party dependencies",routePath:"/module-tools/en/guide/advance/external-dependency",lang:"en",toc:[{text:"Default handling of third-party dependencies",id:"default-handling-of-third-party-dependencies",depth:2,charIndex:811},{text:"Example",id:"example",depth:3,charIndex:1373},{text:"Exclude specified third-party dependencies",id:"exclude-specified-third-party-dependencies",depth:2,charIndex:1643}],frontmatter:{sidebar_position:4},version:"",_relativePath:"en/guide/advance/external-dependency.mdx"},{title:"In-depth understanding of build",routePath:"/module-tools/en/guide/advance/in-depth-about-build",lang:"en",toc:[{text:"`bundle` / `bundleless`",id:"bundle--bundleless",depth:2,charIndex:-1},{text:"`input` / `sourceDir`",id:"input--sourcedir",depth:2,charIndex:-1},{text:"use swc",id:"use-swc",depth:2,charIndex:2845},{text:"Using Hooks to Intervene in the Build Process",id:"using-hooks-to-intervene-in-the-build-process",depth:2,charIndex:3803},{text:"Hook type",id:"hook-type",depth:3,charIndex:4183},{text:"AsyncSeriesBailHook",id:"asyncseriesbailhook",depth:4,charIndex:4195},{text:"AsyncSeriesWaterFallHooks",id:"asyncserieswaterfallhooks",depth:4,charIndex:4334},{text:"Hook Order",id:"hook-order",depth:3,charIndex:4431},{text:"Hook API",id:"hook-api",depth:3,charIndex:4612},{text:"load",id:"load",depth:4,charIndex:4623},{text:"transform",id:"transform",depth:4,charIndex:4807},{text:"renderChunk",id:"renderchunk",depth:4,charIndex:5018},{text:"dts",id:"dts",depth:2,charIndex:5252},{text:"Turn off type generation",id:"turn-off-type-generation",depth:3,charIndex:5335},{text:"Build type files",id:"build-type-files",depth:3,charIndex:5538},{text:"Alias Conversion",id:"alias-conversion",depth:3,charIndex:6605},{text:"Some examples of the use of `dts`",id:"some-examples-of-the-use-of-dts",depth:3,charIndex:-1},{text:"Build process",id:"build-process",depth:2,charIndex:6945},{text:"Build errors",id:"build-errors",depth:2,charIndex:7238},{text:"Debug mode",id:"debug-mode",depth:2,charIndex:7763}],frontmatter:{sidebar_position:1},version:"",_relativePath:"en/guide/advance/in-depth-about-build.md"},{title:"In-depth understanding of the dev command",routePath:"/module-tools/en/guide/advance/in-depth-about-dev-command",lang:"en",toc:[{text:"The overall flow of the command run",id:"the-overall-flow-of-the-command-run",depth:2,charIndex:92},{text:"Extending the dev command",id:"extending-the-dev-command",depth:2,charIndex:806}],frontmatter:{sidebar_position:2},version:"",_relativePath:"en/guide/advance/in-depth-about-dev-command.md"},{title:"Before you start",routePath:"/module-tools/en/guide/basic/before-getting-started",lang:"en",toc:[{text:"Environment preparation",id:"environment-preparation",depth:2,charIndex:3},{text:"Getting Started with npm",id:"getting-started-with-npm",depth:2,charIndex:424},{text:"npm package type project",id:"npm-package-type-project",depth:2,charIndex:906},{text:"Using third-party npm packages",id:"using-third-party-npm-packages",depth:2,charIndex:1922},{text:"Other npm bits and pieces to know",id:"other-npm-bits-and-pieces-to-know",depth:2,charIndex:3606},{text:"Program entry for npm packages",id:"program-entry-for-npm-packages",depth:3,charIndex:3643},{text:"`scripts`",id:"scripts",depth:3,charIndex:-1},{text:"`npm install`",id:"npm-install",depth:4,charIndex:-1},{text:"`npm publish`",id:"npm-publish",depth:4,charIndex:-1},{text:"peerDependencies",id:"peerdependencies",depth:3,charIndex:5883},{text:"npm package manager",id:"npm-package-manager",depth:2,charIndex:6585},{text:"Modern.js Module configuration file",id:"modernjs-module-configuration-file",depth:2,charIndex:6850}],frontmatter:{sidebar_position:1},version:"",_relativePath:"en/guide/basic/before-getting-started.md"},{title:"CLI Commands",routePath:"/module-tools/en/guide/basic/command-preview",lang:"en",toc:[{text:"`modern build`",id:"modern-build",depth:2,charIndex:-1},{text:"`modern new`",id:"modern-new",depth:2,charIndex:-1},{text:"`modern dev`",id:"modern-dev",depth:2,charIndex:-1},{text:"`modern change`",id:"modern-change",depth:2,charIndex:-1},{text:"`modern pre`",id:"modern-pre",depth:2,charIndex:-1},{text:"`modern bump`",id:"modern-bump",depth:2,charIndex:-1},{text:"`modern release`",id:"modern-release",depth:2,charIndex:-1},{text:"`modern gen-release-note`",id:"modern-gen-release-note",depth:2,charIndex:-1},{text:"`modern upgrade`",id:"modern-upgrade",depth:2,charIndex:-1}],frontmatter:{sidebar_position:2},version:"",_relativePath:"en/guide/basic/command-preview.md"},{title:"Modify the output",routePath:"/module-tools/en/guide/basic/modify-output-product",lang:"en",toc:[{text:"Default output artifacts",id:"default-output-artifacts",depth:2,charIndex:3},{text:"buildPreset",id:"buildpreset",depth:2,charIndex:818},{text:"buildConfig",id:"buildconfig",depth:2,charIndex:1639},{text:"Combining Configuration and Presets",id:"combining-configuration-and-presets",depth:2,charIndex:4390}],frontmatter:{sidebar_position:3},version:"",_relativePath:"en/guide/basic/modify-output-product.md"},{title:"Versioning and Publishing",routePath:"/module-tools/en/guide/basic/publish-your-project",lang:"en",toc:[{text:"Tracking changes",id:"tracking-changes",depth:2,charIndex:610},{text:"Version update",id:"version-update",depth:2,charIndex:1355},{text:"Publish",id:"publish",depth:2,charIndex:1780},{text:"Pre-releases",id:"pre-releases",depth:2,charIndex:2468}],frontmatter:{sidebar_position:7},version:"",_relativePath:"en/guide/basic/publish-your-project.mdx"},{title:"Using the Microgenerator",routePath:"/module-tools/en/guide/basic/use-micro-generator",lang:"en",toc:[{text:"Develop Module Doc",id:"develop-module-doc",depth:2,charIndex:431},{text:"Storybook",id:"storybook",depth:2,charIndex:895},{text:"Tailwind CSS Support",id:"tailwind-css-support",depth:2,charIndex:1243},{text:"Modern.js Runtime API",id:"modernjs-runtime-api",depth:2,charIndex:1528}],frontmatter:{sidebar_position:4},version:"",_relativePath:"en/guide/basic/use-micro-generator.md"},{title:"Developing Module documentation",routePath:"/module-tools/en/guide/basic/use-module-doc",lang:"en",toc:[{text:"Before we start",id:"before-we-start",depth:2,charIndex:98},{text:"Why we need to build a documentation site for a module",id:"why-we-need-to-build-a-documentation-site-for-a-module",depth:3,charIndex:117},{text:"Preliminary preparation",id:"preliminary-preparation",depth:3,charIndex:451},{text:"Basic site structure",id:"basic-site-structure",depth:2,charIndex:686},{text:"Configure sidebar",id:"configure-sidebar",depth:3,charIndex:1493},{text:"Writing Documentation",id:"writing-documentation",depth:2,charIndex:2109},{text:"Component preview",id:"component-preview",depth:2,charIndex:2329},{text:"Example",id:"example",depth:3,charIndex:2514},{text:"Mobile Preview",id:"mobile-preview",depth:3,charIndex:3121},{text:"Using external demos",id:"using-external-demos",depth:3,charIndex:3451},{text:"Using built-in components",id:"using-built-in-components",depth:2,charIndex:3691},{text:"API",id:"api",depth:3,charIndex:3837},{text:"Parse file",id:"parse-file",depth:4,charIndex:3883},{text:"Content generation",id:"content-generation",depth:4,charIndex:3981},{text:"Using the component",id:"using-the-component",depth:4,charIndex:5005},{text:"Overview",id:"overview",depth:3,charIndex:5154},{text:"Plugin options",id:"plugin-options",depth:2,charIndex:5675},{text:"apiParseTool",id:"apiparsetool",depth:3,charIndex:5693},{text:"doc",id:"doc",depth:3,charIndex:5817},{text:"entries",id:"entries",depth:3,charIndex:5833},{text:"iframePosition",id:"iframeposition",depth:3,charIndex:6040},{text:"parseToolOptions",id:"parsetooloptions",depth:3,charIndex:6320},{text:"previewMode",id:"previewmode",depth:3,charIndex:6408},{text:"deprecated: languages",id:"deprecated-languages",depth:3,charIndex:6599},{text:"deprecated: useModuleSidebar",id:"deprecated-usemodulesidebar",depth:3,charIndex:6746},{text:"Scripts",id:"scripts",depth:2,charIndex:6967},{text:"Advanced guide",id:"advanced-guide",depth:2,charIndex:7130}],frontmatter:{sidebar_position:5},version:"",_relativePath:"en/guide/basic/use-module-doc.mdx"},{title:"Using Storybook",routePath:"/module-tools/en/guide/basic/using-storybook",lang:"en",toc:[{text:"V7 (Recommended)",id:"v7-recommended",depth:2,charIndex:511},{text:"Enable Storybook",id:"enable-storybook",depth:3,charIndex:531},{text:"Enable Debug output",id:"enable-debug-output",depth:3,charIndex:985},{text:"Enable Rspack build",id:"enable-rspack-build",depth:3,charIndex:2036},{text:"Configurations",id:"configurations",depth:3,charIndex:2361},{text:"bundler",id:"bundler",depth:4,charIndex:2441},{text:"builderConfig",id:"builderconfig",depth:4,charIndex:2579},{text:"Command",id:"command",depth:3,charIndex:2782},{text:"storybook dev",id:"storybook-dev",depth:4,charIndex:2850},{text:"storybook build",id:"storybook-build",depth:4,charIndex:2890},{text:"Migrate from V6 to V7",id:"migrate-from-v6-to-v7",depth:2,charIndex:2948},{text:"V6 (legacy)",id:"v6-legacy",depth:2,charIndex:3767},{text:"Start Storybook",id:"start-storybook",depth:3,charIndex:4013},{text:"Configure Storybook",id:"configure-storybook",depth:3,charIndex:4352},{text:"Build Storybook Output",id:"build-storybook-output",depth:3,charIndex:5092}],frontmatter:{sidebar_position:5},version:"",_relativePath:"en/guide/basic/using-storybook.mdx"},{title:"Developing Components",routePath:"/module-tools/en/guide/best-practices/components",lang:"en",toc:[{text:"Initialize the project",id:"initialize-the-project",depth:2,charIndex:93},{text:"Debugging code with Storybook",id:"debugging-code-with-storybook",depth:2,charIndex:406},{text:"Developing Styles",id:"developing-styles",depth:2,charIndex:505},{text:"CSS/PostCSS",id:"csspostcss",depth:3,charIndex:711},{text:"Less",id:"less",depth:3,charIndex:1098},{text:"Sass/Scss",id:"sassscss",depth:3,charIndex:1251},{text:"Tailwind CSS",id:"tailwind-css",depth:3,charIndex:1414},{text:"CSS Modules",id:"css-modules",depth:3,charIndex:1488},{text:"Configuring build artifacts",id:"configuring-build-artifacts",depth:2,charIndex:1852},{text:"Releasing components",id:"releasing-components",depth:2,charIndex:2666}],frontmatter:{sidebar_position:1},version:"",_relativePath:"en/guide/best-practices/components.mdx"},{title:"Using Tailwind CSS",routePath:"/module-tools/en/guide/best-practices/use-tailwindcss",lang:"en",toc:[{text:"Enabling Tailwind CSS",id:"enabling-tailwind-css",depth:2,charIndex:252},{text:"Configuring Tailwind CSS",id:"configuring-tailwind-css",depth:2,charIndex:1105},{text:"Tailwind CSS Autocomplete",id:"tailwind-css-autocomplete",depth:3,charIndex:1889},{text:"Build Modes",id:"build-modes",depth:2,charIndex:2460},{text:"Bundle Mode",id:"bundle-mode",depth:3,charIndex:2728},{text:"Bundleless Mode",id:"bundleless-mode",depth:3,charIndex:3091},{text:"Class Name Prefix",id:"class-name-prefix",depth:2,charIndex:3254},{text:"Usage Guide",id:"usage-guide",depth:2,charIndex:3641},{text:"HTML Class Names",id:"html-class-names",depth:3,charIndex:3703},{text:"`@apply`",id:"apply",depth:3,charIndex:-1},{text:"Sass",id:"sass",depth:4,charIndex:4211},{text:"Less",id:"less",depth:4,charIndex:4413},{text:"About `designSystem` config",id:"about-designsystem-config",depth:2,charIndex:-1}],frontmatter:{sidebar_position:2},version:"",_relativePath:"en/guide/best-practices/use-tailwindcss.mdx"},{title:"General Questions",routePath:"/module-tools/en/guide/faq/basic",lang:"en",toc:[{text:"What is the relationship between Modern.js Module and Rsbuild?",id:"what-is-the-relationship-between-modernjs-module-and-rsbuild",depth:2,charIndex:3},{text:"Can Modern.js Module use webpack plugins or loaders?",id:"can-modernjs-module-use-webpack-plugins-or-loaders",depth:2,charIndex:210}],frontmatter:{},version:"",_relativePath:"en/guide/faq/basic.mdx"},{title:"Build FAQ",routePath:"/module-tools/en/guide/faq/build",lang:"en",toc:[{text:"Product FAQ",id:"product-faq",depth:2,charIndex:301},{text:"Initialization of Class Fields",id:"initialization-of-class-fields",depth:3,charIndex:316},{text:"babel-plugin-lodash treats the introduced lodash as `undefined`",id:"babel-plugin-lodash-treats-the-introduced-lodash-as-undefined",depth:3,charIndex:-1},{text:"Cannot find module 'http'",id:"cannot-find-module-http",depth:3,charIndex:2578},{text:"Exceptions FAQ",id:"exceptions-faq",depth:2,charIndex:2995},{text:'Dynamic require of "react" is not supported',id:"dynamic-require-of-react-is-not-supported",depth:3,charIndex:3013},{text:"Problem Description",id:"problem-description",depth:4,charIndex:3059},{text:"Solution",id:"solution",depth:4,charIndex:3287},{text:"Reference Links",id:"reference-links",depth:4,charIndex:3792},{text:"During compilation, an error was reported in the less file of a component library:`'Operation on an invalid type'`",id:"during-compilation-an-error-was-reported-in-the-less-file-of-a-component-libraryoperation-on-an-invalid-type",depth:3,charIndex:-1},{text:"Bundleless DTS failed",id:"bundleless-dts-failed",depth:3,charIndex:4560},{text:"Bundle DTS failed",id:"bundle-dts-failed",depth:3,charIndex:5206},{text:'Error reported for `defineConfig` function type: `If there is no reference to "..." then the inferred type of "default" cannot be named`',id:"error-reported-for-defineconfig-function-type-if-there-is-no-reference-to--then-the-inferred-type-of-default-cannot-be-named",depth:3,charIndex:-1},{text:"Other FAQ",id:"other-faq",depth:2,charIndex:5958},{text:"How to skip the pre-processing of less/scss files with bundleless",id:"how-to-skip-the-pre-processing-of-lessscss-files-with-bundleless",depth:3,charIndex:5971},{text:"Add additional compilation feature",id:"add-additional-compilation-feature",depth:3,charIndex:6445},{text:"Support for generating TypeScript declaration files for CSS Modules",id:"support-for-generating-typescript-declaration-files-for-css-modules",depth:3,charIndex:7173}],frontmatter:{},version:"",_relativePath:"en/guide/faq/build.mdx"},{title:"FAQ",routePath:"/module-tools/en/guide/faq/",lang:"en",toc:[],frontmatter:{},version:"",_relativePath:"en/guide/faq/index.md"},{title:"Storybook FAQ",routePath:"/module-tools/en/guide/faq/storybook",lang:"en",toc:[{text:"Storybook v7 Support",id:"storybook-v7-support",depth:2,charIndex:3},{text:"Using Storybook Addon or other configurations does not work",id:"using-storybook-addon-or-other-configurations-does-not-work",depth:2,charIndex:104},{text:"Cannot find module 'react-dom/package.json'",id:"cannot-find-module-react-dompackagejson",depth:2,charIndex:519},{text:"Unable to locate the specific error message",id:"unable-to-locate-the-specific-error-message",depth:2,charIndex:681},{text:"Can`t find any stories is your Storybook",id:"cant-find-any-stories-is-your-storybook",depth:2,charIndex:900},{text:"Storybook Adds Proxy Functionality",id:"storybook-adds-proxy-functionality",depth:2,charIndex:1200},{text:"Tailwind CSS doesn't work in Storybook",id:"tailwind-css-doesnt-work-in-storybook",depth:2,charIndex:1585}],frontmatter:{},version:"",_relativePath:"en/guide/faq/storybook.mdx"},{title:"Quick Start",routePath:"/module-tools/en/guide/intro/getting-started",lang:"en",toc:[{text:"3 minute demo",id:"3-minute-demo",depth:2,charIndex:3},{text:"Create new project",id:"create-new-project",depth:3,charIndex:209},{text:"Add to an existing project",id:"add-to-an-existing-project",depth:3,charIndex:855},{text:"Core npm Package",id:"core-npm-package",depth:3,charIndex:1577},{text:"View official example",id:"view-official-example",depth:3,charIndex:2272},{text:"Let's get started",id:"lets-get-started",depth:2,charIndex:2407}],frontmatter:{sidebar_position:3},version:"",_relativePath:"en/guide/intro/getting-started.mdx"},{title:"Welcome to Modern.js Module",routePath:"/module-tools/en/guide/intro/welcome",lang:"en",toc:[],frontmatter:{sidebar_position:1},version:"",_relativePath:"en/guide/intro/welcome.md"},{title:"Why you need Modern.js Module",routePath:"/module-tools/en/guide/intro/why-module-engineering-solution",lang:"en",toc:[],frontmatter:{sidebar_position:2},version:"",_relativePath:"en/guide/intro/why-module-engineering-solution.md"},{title:"index",routePath:"/module-tools/en/",lang:"en",toc:[],frontmatter:{pageType:"home",hero:{name:"Modern.js Module",text:"Module engineering solutions",tagline:"simple, powerful, high-performance modern npm package development solution",actions:[{theme:"brand",text:"Welcome",link:"/guide/intro/welcome"},{theme:"alt",text:"Quick Start",link:"/guide/intro/getting-started"}]},features:[{title:"esbuild: The High Performance JS Bundler",details:"Built on esbuild, the build is extremely fast and gives you the ultimate development experience.",icon:"\uD83D\uDE80"},{title:"Two build modes",details:"Both bundle and bundleless build modes are supported.",icon:"✨"},{title:"Out of the box",details:"Develop your npm packages without too much configuration, with built-in presets covering a wide range of scenarios.",icon:"\uD83D\uDEE0️"},{title:"Extensible: Provides a powerful plugin mechanism",details:"With its plugin extension mechanism, you can easily extend the capabilities of Modern.js Module.",icon:"\uD83C\uDFA8"},{title:"Storybook: The community popular UI development tool",details:"Integrated with Storybook, you can use it to debug UI.",icon:"\uD83D\uDCE6"},{title:"Lint: Code Formatting",details:"Built-in ESLint rules for rich scenarios.",icon:"\uD83D\uDCD0"}]},version:"",_relativePath:"en/index.md"},{title:"Quick Start",routePath:"/module-tools/en/plugins/guide/getting-started",lang:"en",toc:[],frontmatter:{sidebar_position:1},version:"",_relativePath:"en/plugins/guide/getting-started.mdx"},{title:"Plugin Object",routePath:"/module-tools/en/plugins/guide/plugin-object",lang:"en",toc:[{text:"Plugin type definitions",id:"plugin-type-definitions",depth:2,charIndex:570},{text:"Plugin configuration options",id:"plugin-configuration-options",depth:2,charIndex:741}],frontmatter:{sidebar_position:2},version:"",_relativePath:"en/plugins/guide/plugin-object.mdx"},{title:"Setup function",routePath:"/module-tools/en/plugins/guide/setup-function",lang:"en",toc:[{text:"Plugin API objects",id:"plugin-api-objects",depth:2,charIndex:173},{text:"`api.useAppContext`",id:"apiuseappcontext",depth:3,charIndex:-1},{text:"`api.useResolvedConfigContext`",id:"apiuseresolvedconfigcontext",depth:3,charIndex:-1},{text:"`api.useHookRunners`",id:"apiusehookrunners",depth:3,charIndex:-1},{text:"Asynchronous setup",id:"asynchronous-setup",depth:2,charIndex:993},{text:"Life cycle hooks",id:"life-cycle-hooks",depth:2,charIndex:1434}],frontmatter:{sidebar_position:3},version:"",_relativePath:"en/plugins/guide/setup-function.mdx"},{title:"Overview",routePath:"/module-tools/en/plugins/official-list/overview",lang:"en",toc:[{text:"Official Plugins",id:"official-plugins",depth:2,charIndex:3}],frontmatter:{},version:"",_relativePath:"en/plugins/official-list/overview.md"},{title:"Babel Plugin",routePath:"/module-tools/en/plugins/official-list/plugin-babel",lang:"en",toc:[{text:"Quick start",id:"quick-start",depth:2,charIndex:110},{text:"Install",id:"install",depth:3,charIndex:125},{text:"Register",id:"register",depth:3,charIndex:136},{text:"Config",id:"config",depth:2,charIndex:372}],frontmatter:{},version:"",_relativePath:"en/plugins/official-list/plugin-babel.mdx"},{title:"Banner Plugin",routePath:"/module-tools/en/plugins/official-list/plugin-banner",lang:"en",toc:[{text:"Quick Start",id:"quick-start",depth:2,charIndex:89},{text:"Install",id:"install",depth:3,charIndex:104},{text:"Register",id:"register",depth:3,charIndex:115},{text:"Example",id:"example",depth:2,charIndex:271},{text:"Add copyright information at the top of a JS file",id:"add-copyright-information-at-the-top-of-a-js-file",depth:3,charIndex:282},{text:"Configuration",id:"configuration",depth:2,charIndex:337},{text:"banner",id:"banner",depth:3,charIndex:365},{text:"footer",id:"footer",depth:3,charIndex:505}],frontmatter:{},version:"",_relativePath:"en/plugins/official-list/plugin-banner.mdx"},{title:"Import Plugin",routePath:"/module-tools/en/plugins/official-list/plugin-import",lang:"en",toc:[{text:"Quick Start",id:"quick-start",depth:2,charIndex:230},{text:"Install",id:"install",depth:3,charIndex:245},{text:"Register",id:"register",depth:3,charIndex:256},{text:"Configurations",id:"configurations",depth:2,charIndex:413},{text:"pluginImport",id:"pluginimport",depth:3,charIndex:443},{text:"Notes",id:"notes",depth:2,charIndex:602}],frontmatter:{},version:"",_relativePath:"en/plugins/official-list/plugin-import.mdx"},{title:"Node Polyfill Plugin",routePath:"/module-tools/en/plugins/official-list/plugin-node-polyfill",lang:"en",toc:[{text:"Quick Start",id:"quick-start",depth:2,charIndex:460},{text:"Install",id:"install",depth:3,charIndex:475},{text:"Register",id:"register",depth:3,charIndex:486},{text:"Configurations",id:"configurations",depth:2,charIndex:569},{text:"exclude",id:"exclude",depth:3,charIndex:599},{text:"overrides",id:"overrides",depth:3,charIndex:655},{text:"Node Polyfills",id:"node-polyfills",depth:2,charIndex:708},{text:"Globals",id:"globals",depth:3,charIndex:726},{text:"Modules",id:"modules",depth:3,charIndex:877},{text:"Fallbacks",id:"fallbacks",depth:3,charIndex:1336}],frontmatter:{},version:"",_relativePath:"en/plugins/official-list/plugin-node-polyfill.mdx"},{title:"Polyfill Plugin",routePath:"/module-tools/en/plugins/official-list/plugin-polyfill",lang:"en",toc:[{text:"Quick start",id:"quick-start",depth:2,charIndex:497},{text:"Install",id:"install",depth:3,charIndex:512},{text:"Register",id:"register",depth:3,charIndex:523},{text:"Config",id:"config",depth:2,charIndex:778},{text:"targets",id:"targets",depth:3,charIndex:799}],frontmatter:{},version:"",_relativePath:"en/plugins/official-list/plugin-polyfill.mdx"},{title:"Vue Plugin",routePath:"/module-tools/en/plugins/official-list/plugin-vue",lang:"en",toc:[{text:"Quick start",id:"quick-start",depth:2,charIndex:547},{text:"Install",id:"install",depth:3,charIndex:562},{text:"Register",id:"register",depth:3,charIndex:573},{text:"Options",id:"options",depth:2,charIndex:656},{text:"vueJsxPluginOptions",id:"vuejsxpluginoptions",depth:3,charIndex:667}],frontmatter:{},version:"",_relativePath:"en/plugins/official-list/plugin-vue.mdx"},{title:"buildConfig",routePath:"/module-tools/api/config/build-config",lang:"zh",toc:[{text:"alias",id:"alias",depth:2,charIndex:141},{text:"asset",id:"asset",depth:2,charIndex:483},{text:"asset.name",id:"assetname",depth:2,charIndex:506},{text:"asset.limit",id:"assetlimit",depth:2,charIndex:753},{text:"asset.path",id:"assetpath",depth:2,charIndex:981},{text:"asset.publicPath",id:"assetpublicpath",depth:2,charIndex:1052},{text:"asset.svgr",id:"assetsvgr",depth:2,charIndex:1159},{text:"asset.svgr.include",id:"assetsvgrinclude",depth:2,charIndex:1411},{text:"asset.svgr.exclude",id:"assetsvgrexclude",depth:2,charIndex:1510},{text:"asset.svgr.exportType",id:"assetsvgrexporttype",depth:2,charIndex:1611},{text:"autoExtension",id:"autoextension",depth:2,charIndex:1802},{text:"autoExternal",id:"autoexternal",depth:2,charIndex:2393},{text:"autoExternal.dependencies",id:"autoexternaldependencies",depth:2,charIndex:2670},{text:"autoExternal.peerDependencies",id:"autoexternalpeerdependencies",depth:2,charIndex:2758},{text:"banner",id:"banner",depth:2,charIndex:2854},{text:"buildType",id:"buildtype",depth:2,charIndex:2984},{text:"copy",id:"copy",depth:2,charIndex:3087},{text:"copy.patterns",id:"copypatterns",depth:2,charIndex:3128},{text:"copy.options",id:"copyoptions",depth:2,charIndex:3180},{text:"define",id:"define",depth:2,charIndex:3341},{text:"dts",id:"dts",depth:2,charIndex:3802},{text:"dts.abortOnError",id:"dtsabortonerror",depth:2,charIndex:3864},{text:"dts.distPath",id:"dtsdistpath",depth:2,charIndex:4097},{text:"dts.enableTscBuild",id:"dtsenabletscbuild",depth:2,charIndex:4196},{text:"dts.only",id:"dtsonly",depth:2,charIndex:4419},{text:"dts.respectExternal",id:"dtsrespectexternal",depth:2,charIndex:4499},{text:"dts.tsconfigPath",id:"dtstsconfigpath",depth:2,charIndex:4718},{text:"esbuildOptions",id:"esbuildoptions",depth:2,charIndex:4790},{text:"externalHelpers",id:"externalhelpers",depth:2,charIndex:5293},{text:"externals",id:"externals",depth:2,charIndex:5501},{text:"footer",id:"footer",depth:2,charIndex:5617},{text:"format",id:"format",depth:2,charIndex:5655},{text:"format: esm",id:"format-esm",depth:3,charIndex:5780},{text:"format: cjs",id:"format-cjs",depth:3,charIndex:5859},{text:"format: iife",id:"format-iife",depth:3,charIndex:5957},{text:"format: umd",id:"format-umd",depth:3,charIndex:6058},{text:"hooks",id:"hooks",depth:2,charIndex:6211},{text:"input",id:"input",depth:2,charIndex:6359},{text:"jsx",id:"jsx",depth:2,charIndex:6824},{text:"loader",id:"loader",depth:2,charIndex:7147},{text:"metafile",id:"metafile",depth:2,charIndex:7208},{text:"minify",id:"minify",depth:2,charIndex:7446},{text:"outDir",id:"outdir",depth:2,charIndex:7566},{text:"platform",id:"platform",depth:2,charIndex:7620},{text:"redirect",id:"redirect",depth:2,charIndex:7754},{text:"resolve",id:"resolve",depth:2,charIndex:7985},{text:"resolve.alias",id:"resolvealias",depth:3,charIndex:8007},{text:"resolve.mainFields",id:"resolvemainfields",depth:3,charIndex:8457},{text:"resolve.jsExtentions",id:"resolvejsextentions",depth:3,charIndex:8774},{text:"shims",id:"shims",depth:2,charIndex:9031},{text:"sideEffects",id:"sideeffects",depth:2,charIndex:9298},{text:"sourceDir",id:"sourcedir",depth:2,charIndex:9740},{text:"sourceMap",id:"sourcemap",depth:2,charIndex:9856},{text:"sourceType",id:"sourcetype",depth:2,charIndex:9943},{text:"splitting",id:"splitting",depth:2,charIndex:10101},{text:"style",id:"style",depth:2,charIndex:10214},{text:"style.less",id:"styleless",depth:2,charIndex:10235},{text:"style.less.lessOptions",id:"stylelesslessoptions",depth:2,charIndex:10261},{text:"style.less.additionalData",id:"stylelessadditionaldata",depth:2,charIndex:10352},{text:"style.less.implementation",id:"stylelessimplementation",depth:2,charIndex:10436},{text:"sass",id:"sass",depth:2,charIndex:10611},{text:"style.sass.sassOptions",id:"stylesasssassoptions",depth:2,charIndex:10631},{text:"style.sass.additionalData",id:"stylesassadditionaldata",depth:2,charIndex:10701},{text:"style.sass.implementation",id:"stylesassimplementation",depth:2,charIndex:10796},{text:"style.postcss",id:"stylepostcss",depth:2,charIndex:10972},{text:"style.inject",id:"styleinject",depth:2,charIndex:11131},{text:"style.autoModules",id:"styleautomodules",depth:2,charIndex:11627},{text:"style.modules",id:"stylemodules",depth:2,charIndex:11861},{text:"style.tailwindcss",id:"styletailwindcss",depth:2,charIndex:12040},{text:"启用 Tailwind CSS",id:"启用-tailwind-css",depth:3,charIndex:12122},{text:"类型",id:"类型",depth:3,charIndex:12242},{text:"注意事项",id:"注意事项",depth:3,charIndex:12373},{text:"target",id:"target",depth:2,charIndex:12663},{text:"transformImport",id:"transformimport",depth:2,charIndex:12829},{text:"transformLodash",id:"transformlodash",depth:2,charIndex:13025},{text:"tsconfig",id:"tsconfig",depth:2,charIndex:13267},{text:"umdGlobals",id:"umdglobals",depth:2,charIndex:13355},{text:"umdModuleName",id:"umdmodulename",depth:2,charIndex:13515}],frontmatter:{sidebar_position:1},version:"",_relativePath:"zh/api/config/build-config.mdx"},{title:"buildPreset",routePath:"/module-tools/api/config/build-preset",lang:"zh",toc:[{text:"`npm-library`",id:"npm-library",depth:2,charIndex:-1},{text:"`npm-library-with-umd`",id:"npm-library-with-umd",depth:2,charIndex:-1},{text:"`npm-component`",id:"npm-component",depth:2,charIndex:-1},{text:"`npm-component-with-umd`",id:"npm-component-with-umd",depth:2,charIndex:-1},{text:"`npm-library-{es5...esnext}`",id:"npm-library-es5esnext",depth:2,charIndex:-1},{text:"string / function",id:"string--function",depth:2,charIndex:835}],frontmatter:{sidebar_position:2},version:"",_relativePath:"zh/api/config/build-preset.mdx"},{title:"dev",routePath:"/module-tools/api/config/dev",lang:"zh",toc:[{text:"storybook",id:"storybook",depth:2,charIndex:43},{text:"storybook.webpack",id:"storybookwebpack",depth:3,charIndex:118},{text:"配置 Manager App",id:"配置-manager-app",depth:4,charIndex:306},{text:"storybook.webpackChain",id:"storybookwebpackchain",depth:3,charIndex:409}],frontmatter:{sidebar_position:3},version:"",_relativePath:"zh/api/config/dev.md"},{title:"plugins",routePath:"/module-tools/api/config/plugins",lang:"zh",toc:[{text:"插件执行顺序",id:"插件执行顺序",depth:2,charIndex:79},{text:"开发插件",id:"开发插件",depth:2,charIndex:221},{text:"示例",id:"示例",depth:2,charIndex:253},{text:"使用 npm 上的插件",id:"使用-npm-上的插件",depth:3,charIndex:259},{text:"使用本地插件",id:"使用本地插件",depth:4,charIndex:316},{text:"插件配置项",id:"插件配置项",depth:3,charIndex:364}],frontmatter:{sidebar_position:4},version:"",_relativePath:"zh/api/config/plugins.md"},{title:"概览",routePath:"/module-tools/api/",lang:"zh",toc:[],frontmatter:{overview:!0,sidebar_label:"概览",sidebar_position:1},version:"",_relativePath:"zh/api/index.md"},{title:"Plugin Hooks",routePath:"/module-tools/api/plugin-api/plugin-hooks",lang:"zh",toc:[{text:"配置钩子",id:"配置钩子",depth:2,charIndex:209},{text:"`resolveModuleUserConfig`",id:"resolvemoduleuserconfig",depth:3,charIndex:-1},{text:"构建钩子",id:"构建钩子",depth:2,charIndex:276},{text:"`beforeBuild`",id:"beforebuild",depth:3,charIndex:-1},{text:"`beforeBuildTask`",id:"beforebuildtask",depth:3,charIndex:-1},{text:"`afterBuildTask`",id:"afterbuildtask",depth:3,charIndex:-1},{text:"`afterBuild`",id:"afterbuild",depth:3,charIndex:-1},{text:"buildPlatform 钩子",id:"buildplatform-钩子",depth:2,charIndex:713},{text:"`registerBuildPlatform`",id:"registerbuildplatform",depth:3,charIndex:-1},{text:"`beforeBuildPlatform`",id:"beforebuildplatform",depth:3,charIndex:-1},{text:"`buildPlatform`",id:"buildplatform",depth:3,charIndex:-1},{text:"`afterBuildPlatform`",id:"afterbuildplatform",depth:3,charIndex:-1},{text:"调试钩子",id:"调试钩子",depth:2,charIndex:1459},{text:"`registerDev`",id:"registerdev",depth:3,charIndex:-1},{text:"`beforeDev`",id:"beforedev",depth:3,charIndex:-1},{text:"`(before|after)DevMenu`",id:"beforeafterdevmenu",depth:3,charIndex:-1},{text:"`beforeDevTask`",id:"beforedevtask",depth:3,charIndex:-1},{text:"`afterDev`",id:"afterdev",depth:3,charIndex:-1}],frontmatter:{},version:"",_relativePath:"zh/api/plugin-api/plugin-hooks.md"},{title:"",routePath:"/module-tools/components/faq-build-exception",lang:"zh",toc:[],frontmatter:{},version:"",_relativePath:"zh/components/faq-build-exception.mdx"},{title:"",routePath:"/module-tools/components/faq-build-other",lang:"zh",toc:[],frontmatter:{},version:"",_relativePath:"zh/components/faq-build-other.mdx"},{title:"",routePath:"/module-tools/components/faq-build-product",lang:"zh",toc:[],frontmatter:{},version:"",_relativePath:"zh/components/faq-build-product.mdx"},{title:"",routePath:"/module-tools/components/faq-storybook",lang:"zh",toc:[],frontmatter:{},version:"",_relativePath:"zh/components/faq-storybook.mdx"},{title:"",routePath:"/module-tools/components/publish-emo",lang:"zh",toc:[],frontmatter:{},version:"",_relativePath:"zh/components/publish-emo.mdx"},{title:"",routePath:"/module-tools/components/register-esbuild-plugin",lang:"zh",toc:[],frontmatter:{},version:"",_relativePath:"zh/components/register-esbuild-plugin.mdx"},{title:"",routePath:"/module-tools/components/release-module-doc",lang:"zh",toc:[],frontmatter:{},version:"",_relativePath:"zh/components/release-module-doc.mdx"},{title:"处理静态资源",routePath:"/module-tools/guide/advance/asset",lang:"zh",toc:[{text:"默认行为",id:"默认行为",depth:2,charIndex:74},{text:"示例",id:"示例",depth:2,charIndex:355}],frontmatter:{sidebar_position:7},version:"",_relativePath:"zh/guide/advance/asset.mdx"},{title:"构建 umd 产物",routePath:"/module-tools/guide/advance/build-umd",lang:"zh",toc:[{text:"umd 产物的第三方依赖处理",id:"umd-产物的第三方依赖处理",depth:2,charIndex:181},{text:"示例",id:"示例",depth:3,charIndex:302},{text:"三方依赖的全局变量名称",id:"三方依赖的全局变量名称",depth:3,charIndex:556},{text:"更改项目的全局变量名称",id:"更改项目的全局变量名称",depth:2,charIndex:836}],frontmatter:{sidebar_position:5},version:"",_relativePath:"zh/guide/advance/build-umd.mdx"},{title:"使用 Copy 工具",routePath:"/module-tools/guide/advance/copy",lang:"zh",toc:[{text:"了解 Copy API",id:"了解-copy-api",depth:2,charIndex:72},{text:"API 详解",id:"api-详解",depth:2,charIndex:165},{text:"不同场景使用示例",id:"不同场景使用示例",depth:2,charIndex:826},{text:"将文件复制文件",id:"将文件复制文件",depth:3,charIndex:838},{text:"将文件复制到目录",id:"将文件复制到目录",depth:3,charIndex:851},{text:"从目录复制到目录",id:"从目录复制到目录",depth:3,charIndex:865},{text:"从目录到文件",id:"从目录到文件",depth:3,charIndex:879},{text:"使用 Glob",id:"使用-glob",depth:3,charIndex:891}],frontmatter:{sidebar_position:3},version:"",_relativePath:"zh/guide/advance/copy.md"},{title:"处理三方依赖",routePath:"/module-tools/guide/advance/external-dependency",lang:"zh",toc:[{text:"第三方依赖的默认处理",id:"第三方依赖的默认处理",depth:2,charIndex:264},{text:"示例",id:"示例",depth:3,charIndex:521},{text:"排除指定第三方依赖",id:"排除指定第三方依赖",depth:2,charIndex:652}],frontmatter:{sidebar_position:4},version:"",_relativePath:"zh/guide/advance/external-dependency.mdx"},{title:"深入理解构建",routePath:"/module-tools/guide/advance/in-depth-about-build",lang:"zh",toc:[{text:"`bundle` / `bundleless`",id:"bundle--bundleless",depth:2,charIndex:-1},{text:"`input` / `sourceDir`",id:"input--sourcedir",depth:2,charIndex:-1},{text:"使用 swc",id:"使用-swc",depth:2,charIndex:1281},{text:"使用 Hook 介入构建流程",id:"使用-hook-介入构建流程",depth:2,charIndex:1762},{text:"Hook 类型",id:"hook-类型",depth:3,charIndex:1936},{text:"AsyncSeriesBailHook",id:"asyncseriesbailhook",depth:4,charIndex:1946},{text:"AsyncSeriesWaterFallHooks",id:"asyncserieswaterfallhooks",depth:4,charIndex:2048},{text:"Hook 顺序",id:"hook-顺序",depth:3,charIndex:2117},{text:"Hook API",id:"hook-api",depth:3,charIndex:2197},{text:"load",id:"load",depth:4,charIndex:2208},{text:"transform",id:"transform",depth:4,charIndex:2316},{text:"renderChunk",id:"renderchunk",depth:4,charIndex:2438},{text:"类型文件生成",id:"类型文件生成",depth:2,charIndex:2580},{text:"关闭类型生成",id:"关闭类型生成",depth:3,charIndex:2622},{text:"打包类型文件",id:"打包类型文件",depth:3,charIndex:2699},{text:"别名转换",id:"别名转换",depth:3,charIndex:3170},{text:"一些示例",id:"一些示例",depth:3,charIndex:3288},{text:"构建过程",id:"构建过程",depth:2,charIndex:3300},{text:"构建报错",id:"构建报错",depth:2,charIndex:3474},{text:"调试模式",id:"调试模式",depth:2,charIndex:3647}],frontmatter:{sidebar_position:1},version:"",_relativePath:"zh/guide/advance/in-depth-about-build.md"},{title:"深入理解 dev 命令",routePath:"/module-tools/guide/advance/in-depth-about-dev-command",lang:"zh",toc:[{text:"命令运行的整体流程",id:"命令运行的整体流程",depth:2,charIndex:42},{text:"扩展 dev 命令",id:"扩展-dev-命令",depth:2,charIndex:333}],frontmatter:{sidebar_position:2},version:"",_relativePath:"zh/guide/advance/in-depth-about-dev-command.md"},{title:"开始之前",routePath:"/module-tools/guide/basic/before-getting-started",lang:"zh",toc:[{text:"环境准备",id:"环境准备",depth:2,charIndex:3},{text:"初识 npm",id:"初识-npm",depth:2,charIndex:188},{text:"npm 包类型项目",id:"npm-包类型项目",depth:2,charIndex:391},{text:"使用第三方 npm 包",id:"使用第三方-npm-包",depth:2,charIndex:818},{text:"还需要了解的 npm 零碎知识",id:"还需要了解的-npm-零碎知识",depth:2,charIndex:1602},{text:"npm 包的程序入口",id:"npm-包的程序入口",depth:3,charIndex:1621},{text:'"scripts"',id:"scripts",depth:3,charIndex:2042},{text:"`npm install`",id:"npm-install",depth:4,charIndex:-1},{text:"`npm publish`",id:"npm-publish",depth:4,charIndex:-1},{text:"peerDependencies",id:"peerdependencies",depth:3,charIndex:2825},{text:"npm 包管理器",id:"npm-包管理器",depth:2,charIndex:3139},{text:"Modern.js Module 配置文件",id:"modernjs-module-配置文件",depth:2,charIndex:3247}],frontmatter:{sidebar_position:1},version:"",_relativePath:"zh/guide/basic/before-getting-started.md"},{title:"CLI 命令",routePath:"/module-tools/guide/basic/command-preview",lang:"zh",toc:[{text:"`modern build`",id:"modern-build",depth:2,charIndex:-1},{text:"`modern new`",id:"modern-new",depth:2,charIndex:-1},{text:"`modern dev`",id:"modern-dev",depth:2,charIndex:-1},{text:"`modern change`",id:"modern-change",depth:2,charIndex:-1},{text:"`modern pre`",id:"modern-pre",depth:2,charIndex:-1},{text:"`modern bump`",id:"modern-bump",depth:2,charIndex:-1},{text:"`modern release`",id:"modern-release",depth:2,charIndex:-1},{text:"`modern gen-release-note`",id:"modern-gen-release-note",depth:2,charIndex:-1},{text:"`modern upgrade`",id:"modern-upgrade",depth:2,charIndex:-1}],frontmatter:{sidebar_position:2},version:"",_relativePath:"zh/guide/basic/command-preview.md"},{title:"修改输出产物",routePath:"/module-tools/guide/basic/modify-output-product",lang:"zh",toc:[{text:"默认输出产物",id:"默认输出产物",depth:2,charIndex:3},{text:"构建预设",id:"构建预设",depth:2,charIndex:344},{text:"构建配置",id:"构建配置",depth:2,charIndex:664},{text:"结合配置与预设",id:"结合配置与预设",depth:2,charIndex:1952}],frontmatter:{sidebar_position:3},version:"",_relativePath:"zh/guide/basic/modify-output-product.md"},{title:"版本管理与发布",routePath:"/module-tools/guide/basic/publish-your-project",lang:"zh",toc:[{text:"跟踪变更",id:"跟踪变更",depth:2,charIndex:231},{text:"版本更新",id:"版本更新",depth:2,charIndex:519},{text:"发布",id:"发布",depth:2,charIndex:728},{text:"预发布",id:"预发布",depth:2,charIndex:1040}],frontmatter:{sidebar_position:7},version:"",_relativePath:"zh/guide/basic/publish-your-project.mdx"},{title:"使用微生成器",routePath:"/module-tools/guide/basic/use-micro-generator",lang:"zh",toc:[{text:"开发模块文档",id:"开发模块文档",depth:2,charIndex:166},{text:"Storybook 调试",id:"storybook-调试",depth:2,charIndex:370},{text:"Tailwind CSS 支持",id:"tailwind-css-支持",depth:2,charIndex:561},{text:"Modern.js Runtime API 支持",id:"modernjs-runtime-api-支持",depth:2,charIndex:709}],frontmatter:{sidebar_position:4},version:"",_relativePath:"zh/guide/basic/use-micro-generator.md"},{title:"开发模块文档",routePath:"/module-tools/guide/basic/use-module-doc",lang:"zh",toc:[{text:"开始之前",id:"开始之前",depth:2,charIndex:29},{text:"为什么我们需要为模块搭建一个文档站点",id:"为什么我们需要为模块搭建一个文档站点",depth:3,charIndex:37},{text:"前置准备",id:"前置准备",depth:3,charIndex:146},{text:"站点基本结构",id:"站点基本结构",depth:2,charIndex:233},{text:"配置侧边栏",id:"配置侧边栏",depth:3,charIndex:625},{text:"编写文档",id:"编写文档",depth:2,charIndex:830},{text:"组件预览",id:"组件预览",depth:2,charIndex:916},{text:"示例",id:"示例",depth:3,charIndex:973},{text:"移动端预览",id:"移动端预览",depth:3,charIndex:1216},{text:"使用外部 demo",id:"使用外部-demo",depth:3,charIndex:1369},{text:"使用内置组件",id:"使用内置组件",depth:2,charIndex:1461},{text:"API",id:"api",depth:3,charIndex:1505},{text:"解析文件",id:"解析文件",depth:4,charIndex:1525},{text:"内容生成",id:"内容生成",depth:4,charIndex:1563},{text:"组件使用",id:"组件使用",depth:4,charIndex:2032},{text:"Overview",id:"overview",depth:3,charIndex:2092},{text:"插件配置",id:"插件配置",depth:2,charIndex:2360},{text:"apiParseTool",id:"apiparsetool",depth:3,charIndex:2368},{text:"doc",id:"doc",depth:3,charIndex:2478},{text:"entries",id:"entries",depth:3,charIndex:2493},{text:"iframePosition",id:"iframeposition",depth:3,charIndex:2596},{text:"parseToolOptions",id:"parsetooloptions",depth:3,charIndex:2749},{text:"previewMode",id:"previewmode",depth:3,charIndex:2818},{text:"deprecated: languages",id:"deprecated-languages",depth:3,charIndex:2936},{text:"deprecated: useModuleSidebar",id:"deprecated-usemodulesidebar",depth:3,charIndex:3003},{text:"命令行",id:"命令行",depth:2,charIndex:3112},{text:"进阶指南",id:"进阶指南",depth:2,charIndex:3184}],frontmatter:{sidebar_position:5},version:"",_relativePath:"zh/guide/basic/use-module-doc.mdx"},{title:"使用 Storybook",routePath:"/module-tools/guide/basic/using-storybook",lang:"zh",toc:[{text:"V7 (推荐)",id:"v7-推荐",depth:2,charIndex:239},{text:"开启 Storybook",id:"开启-storybook",depth:3,charIndex:250},{text:"开启产物调试",id:"开启产物调试",depth:3,charIndex:492},{text:"开启 Rspack 构建",id:"开启-rspack-构建",depth:3,charIndex:946},{text:"配置",id:"配置",depth:3,charIndex:1095},{text:"bundler",id:"bundler",depth:4,charIndex:1134},{text:"builderConfig",id:"builderconfig",depth:4,charIndex:1222},{text:"命令行",id:"命令行",depth:3,charIndex:1356},{text:"storybook dev",id:"storybook-dev",depth:4,charIndex:1409},{text:"storybook build",id:"storybook-build",depth:4,charIndex:1444},{text:"配置文件",id:"配置文件",depth:3,charIndex:1490},{text:"从 V6 迁移至 V7",id:"从-v6-迁移至-v7",depth:2,charIndex:1574},{text:"V6 (legacy)",id:"v6-legacy",depth:2,charIndex:2037},{text:"开启 Storybook",id:"开启-storybook-1",depth:3,charIndex:2178},{text:"配置 Storybook",id:"配置-storybook",depth:3,charIndex:2358},{text:"构建 Storybook 产物",id:"构建-storybook-产物",depth:3,charIndex:2705}],frontmatter:{sidebar_position:5},version:"",_relativePath:"zh/guide/basic/using-storybook.mdx"},{title:"开发组件",routePath:"/module-tools/guide/best-practices/components",lang:"zh",toc:[{text:"初始化项目",id:"初始化项目",depth:2,charIndex:40},{text:"使用 Storybook 调试代码",id:"使用-storybook-调试代码",depth:2,charIndex:166},{text:"开发样式",id:"开发样式",depth:2,charIndex:227},{text:"CSS/PostCSS",id:"csspostcss",depth:3,charIndex:335},{text:"Less",id:"less",depth:3,charIndex:587},{text:"Sass/Scss",id:"sassscss",depth:3,charIndex:680},{text:"Tailwind CSS",id:"tailwind-css",depth:3,charIndex:784},{text:"CSS Modules",id:"css-modules",depth:3,charIndex:832},{text:"配置构建产物",id:"配置构建产物",depth:2,charIndex:1071},{text:"发布组件",id:"发布组件",depth:2,charIndex:1431}],frontmatter:{sidebar_position:1},version:"",_relativePath:"zh/guide/best-practices/components.mdx"},{title:"使用 Tailwind CSS",routePath:"/module-tools/guide/best-practices/use-tailwindcss",lang:"zh",toc:[{text:"启用 Tailwind CSS",id:"启用-tailwind-css",depth:2,charIndex:127},{text:"配置 Tailwind CSS",id:"配置-tailwind-css",depth:2,charIndex:585},{text:"Tailwind CSS 自动补全",id:"tailwind-css-自动补全",depth:2,charIndex:1047},{text:"构建模式",id:"构建模式",depth:2,charIndex:1360},{text:"Bundle 模式",id:"bundle-模式",depth:3,charIndex:1477},{text:"Bundleless 模式",id:"bundleless-模式",depth:3,charIndex:1660},{text:"类名前缀",id:"类名前缀",depth:2,charIndex:1732},{text:"用法介绍",id:"用法介绍",depth:2,charIndex:1890},{text:"HTML 类名",id:"html-类名",depth:3,charIndex:1925},{text:"`@apply`",id:"apply",depth:3,charIndex:-1},{text:"Sass",id:"sass",depth:4,charIndex:2192},{text:"Less",id:"less",depth:4,charIndex:2300},{text:"关于 `designSystem` 配置",id:"关于-designsystem-配置",depth:2,charIndex:-1}],frontmatter:{sidebar_position:2},version:"",_relativePath:"zh/guide/best-practices/use-tailwindcss.mdx"},{title:"通用类问题",routePath:"/module-tools/guide/faq/basic",lang:"zh",toc:[{text:"Modern.js Module 和 Rsbuild 的关系?",id:"modernjs-module-和-rsbuild-的关系",depth:2,charIndex:3},{text:"Modern.js Module 是否可以使用 webpack plugin 或者 loader?",id:"modernjs-module-是否可以使用-webpack-plugin-或者-loader",depth:2,charIndex:103}],frontmatter:{},version:"",_relativePath:"zh/guide/faq/basic.mdx"},{title:"构建相关问题",routePath:"/module-tools/guide/faq/build",lang:"zh",toc:[{text:"产物问题",id:"产物问题",depth:2,charIndex:110},{text:"Class Fields 的初始化处理",id:"class-fields-的初始化处理",depth:3,charIndex:118},{text:"babel-plugin-lodash 将引入的 lodash 处理成 `undefined`",id:"babel-plugin-lodash-将引入的-lodash-处理成-undefined",depth:3,charIndex:-1},{text:"Cannot find module 'http'",id:"cannot-find-module-http",depth:3,charIndex:1337},{text:"异常类问题",id:"异常类问题",depth:2,charIndex:1559},{text:'Dynamic require of "react" is not supported',id:"dynamic-require-of-react-is-not-supported",depth:3,charIndex:1568},{text:"问题描述",id:"问题描述",depth:4,charIndex:1614},{text:"解决办法",id:"解决办法",depth:4,charIndex:1714},{text:"参考链接",id:"参考链接",depth:4,charIndex:1916},{text:"编译过程中,因为某个组件库的 less 文件报错:`'Operation on an invalid type'`",id:"编译过程中因为某个组件库的-less-文件报错operation-on-an-invalid-type",depth:3,charIndex:-1},{text:"Bundleless DTS failed",id:"bundleless-dts-failed",depth:3,charIndex:2338},{text:"Bundle DTS failed",id:"bundle-dts-failed",depth:3,charIndex:2595},{text:'`defineConfig` 函数类型报错:`如果没有引用 "...",则无法命名 "default" 的推断类型`',id:"defineconfig-函数类型报错如果没有引用-则无法命名-default-的推断类型",depth:3,charIndex:-1},{text:"其他",id:"其他",depth:2,charIndex:2940},{text:"bundleless 如何跳过对 less / scss 文件的预处理",id:"bundleless-如何跳过对-less--scss-文件的预处理",depth:3,charIndex:2946},{text:"增加额外的编译能力",id:"增加额外的编译能力",depth:3,charIndex:3184},{text:"支持生成 CSS Modules 的 TypeScript 声明文件",id:"支持生成-css-modules-的-typescript-声明文件",depth:3,charIndex:3492}],frontmatter:{},version:"",_relativePath:"zh/guide/faq/build.mdx"},{title:"常见问题",routePath:"/module-tools/guide/faq/",lang:"zh",toc:[],frontmatter:{},version:"",_relativePath:"zh/guide/faq/index.md"},{title:"Storybook 相关问题",routePath:"/module-tools/guide/faq/storybook",lang:"zh",toc:[{text:"支持 Storybook v7",id:"支持-storybook-v7",depth:2,charIndex:3},{text:"使用 Storybook Addon 或者其他配置不生效",id:"使用-storybook-addon-或者其他配置不生效",depth:2,charIndex:58},{text:"Cannot find module 'react-dom/package.json'",id:"cannot-find-module-react-dompackagejson",depth:2,charIndex:263},{text:"报错后,看不到具体报错信息",id:"报错后看不到具体报错信息",depth:2,charIndex:373},{text:"Couldn't find any stories is your Storybook",id:"couldnt-find-any-stories-is-your-storybook",depth:2,charIndex:538},{text:"Storybook 添加 Proxy 功能",id:"storybook-添加-proxy-功能",depth:2,charIndex:696},{text:"Tailwind CSS 在 Storybook 中不生效",id:"tailwind-css-在-storybook-中不生效",depth:2,charIndex:918}],frontmatter:{},version:"",_relativePath:"zh/guide/faq/storybook.mdx"},{title:"快速开始",routePath:"/module-tools/guide/intro/getting-started",lang:"zh",toc:[{text:"三分钟快速上手",id:"三分钟快速上手",depth:2,charIndex:3},{text:"创建新项目",id:"创建新项目",depth:3,charIndex:110},{text:"接入已有项目",id:"接入已有项目",depth:3,charIndex:402},{text:"核心 npm 包",id:"核心-npm-包",depth:3,charIndex:784},{text:"查看官方示例",id:"查看官方示例",depth:3,charIndex:1118},{text:"让我们开始吧",id:"让我们开始吧",depth:2,charIndex:1175}],frontmatter:{sidebar_position:3},version:"",_relativePath:"zh/guide/intro/getting-started.mdx"},{title:"欢迎使用",routePath:"/module-tools/guide/intro/welcome",lang:"zh",toc:[],frontmatter:{sidebar_position:1},version:"",_relativePath:"zh/guide/intro/welcome.md"},{title:"为什么需要 Modern.js Module",routePath:"/module-tools/guide/intro/why-module-engineering-solution",lang:"zh",toc:[],frontmatter:{sidebar_position:2},version:"",_relativePath:"zh/guide/intro/why-module-engineering-solution.md"},{title:"index",routePath:"/module-tools/",lang:"zh",toc:[],frontmatter:{pageType:"home",hero:{name:"Modern.js Module",text:"模块工程解决方案",tagline:"简单、强大、高性能的现代化 npm 包开发方案",actions:[{theme:"brand",text:"欢迎使用",link:"/guide/intro/welcome"},{theme:"alt",text:"快速上手",link:"/guide/intro/getting-started"}]},features:[{title:"esbuild: 高性能的 JS Bundler",details:"基于 esbuild 构建,构建速度极快,带给你极致的开发体验。",icon:"\uD83D\uDE80"},{title:"双构建模式",details:"支持 Bundle 和 Bundleless 两种构建模式。",icon:"✨"},{title:"开箱即用",details:"无需过多配置即可开发你的 npm 包,内置预设覆盖多种场景。",icon:"\uD83D\uDEE0️"},{title:"扩展性强: 提供强大的插件机制",details:"通过其插件扩展机制,你可以轻松的扩展 Modern.js Module 的各项能力。",icon:"\uD83C\uDFA8"},{title:"Storybook: 社区流行的 UI 开发工具",details:"集成了 Storybook,你可以使用它调试 UI。",icon:"\uD83D\uDCE6"},{title:"Lint: 代码格式化",details:"丰富场景的内置 ESLint 规则。",icon:"\uD83D\uDCD0"}]},version:"",_relativePath:"zh/index.md"},{title:"快速开始",routePath:"/module-tools/plugins/guide/getting-started",lang:"zh",toc:[],frontmatter:{sidebar_position:1},version:"",_relativePath:"zh/plugins/guide/getting-started.mdx"},{title:"插件对象",routePath:"/module-tools/plugins/guide/plugin-object",lang:"zh",toc:[{text:"插件类型定义",id:"插件类型定义",depth:2,charIndex:245},{text:"插件配置项",id:"插件配置项",depth:2,charIndex:323}],frontmatter:{sidebar_position:2},version:"",_relativePath:"zh/plugins/guide/plugin-object.mdx"},{title:"Setup 函数",routePath:"/module-tools/plugins/guide/setup-function",lang:"zh",toc:[{text:"插件 API 对象",id:"插件-api-对象",depth:2,charIndex:77},{text:"`api.useAppContext`",id:"apiuseappcontext",depth:3,charIndex:-1},{text:"`api.useResolvedConfigContext`",id:"apiuseresolvedconfigcontext",depth:3,charIndex:-1},{text:"`api.useHookRunners`",id:"apiusehookrunners",depth:3,charIndex:-1},{text:"异步 setup",id:"异步-setup",depth:2,charIndex:430},{text:"生命周期钩子",id:"生命周期钩子",depth:2,charIndex:579}],frontmatter:{sidebar_position:3},version:"",_relativePath:"zh/plugins/guide/setup-function.mdx"},{title:"总览",routePath:"/module-tools/plugins/official-list/overview",lang:"zh",toc:[{text:"官方插件",id:"官方插件",depth:2,charIndex:3}],frontmatter:{},version:"",_relativePath:"zh/plugins/official-list/overview.md"},{title:"Babel 插件",routePath:"/module-tools/plugins/official-list/plugin-babel",lang:"zh",toc:[{text:"快速开始",id:"快速开始",depth:2,charIndex:50},{text:"安装",id:"安装",depth:3,charIndex:58},{text:"注册插件",id:"注册插件",depth:3,charIndex:64},{text:"配置",id:"配置",depth:2,charIndex:172}],frontmatter:{},version:"",_relativePath:"zh/plugins/official-list/plugin-babel.mdx"},{title:"Banner 插件",routePath:"/module-tools/plugins/official-list/plugin-banner",lang:"zh",toc:[{text:"快速开始",id:"快速开始",depth:2,charIndex:132},{text:"安装",id:"安装",depth:3,charIndex:140},{text:"注册插件",id:"注册插件",depth:3,charIndex:146},{text:"示例",id:"示例",depth:2,charIndex:240},{text:"在 JS 文件顶部增加版权信息",id:"在-js-文件顶部增加版权信息",depth:3,charIndex:246},{text:"配置",id:"配置",depth:2,charIndex:267},{text:"banner",id:"banner",depth:3,charIndex:283},{text:"footer",id:"footer",depth:3,charIndex:362}],frontmatter:{},version:"",_relativePath:"zh/plugins/official-list/plugin-banner.mdx"},{title:"Import 插件",routePath:"/module-tools/plugins/official-list/plugin-import",lang:"zh",toc:[{text:"快速开始",id:"快速开始",depth:2,charIndex:144},{text:"安装",id:"安装",depth:3,charIndex:152},{text:"注册插件",id:"注册插件",depth:3,charIndex:158},{text:"配置",id:"配置",depth:2,charIndex:245},{text:"pluginImport",id:"pluginimport",depth:3,charIndex:261},{text:"注意事项",id:"注意事项",depth:2,charIndex:357}],frontmatter:{},version:"",_relativePath:"zh/plugins/official-list/plugin-import.mdx"},{title:"Node Polyfill 插件",routePath:"/module-tools/plugins/official-list/plugin-node-polyfill",lang:"zh",toc:[{text:"快速开始",id:"快速开始",depth:2,charIndex:213},{text:"安装",id:"安装",depth:3,charIndex:221},{text:"注册插件",id:"注册插件",depth:3,charIndex:227},{text:"配置",id:"配置",depth:2,charIndex:274},{text:"exclude",id:"exclude",depth:3,charIndex:290},{text:"overrides",id:"overrides",depth:3,charIndex:326},{text:"Node Polyfills",id:"node-polyfills",depth:2,charIndex:363},{text:"Globals",id:"globals",depth:3,charIndex:381},{text:"Modules",id:"modules",depth:3,charIndex:464},{text:"Fallbacks",id:"fallbacks",depth:3,charIndex:860}],frontmatter:{},version:"",_relativePath:"zh/plugins/official-list/plugin-node-polyfill.mdx"},{title:"Polyfill 插件",routePath:"/module-tools/plugins/official-list/plugin-polyfill",lang:"zh",toc:[{text:"快速开始",id:"快速开始",depth:2,charIndex:197},{text:"安装",id:"安装",depth:3,charIndex:205},{text:"注册插件",id:"注册插件",depth:3,charIndex:211},{text:"配置",id:"配置",depth:2,charIndex:322},{text:"targets",id:"targets",depth:3,charIndex:338}],frontmatter:{},version:"",_relativePath:"zh/plugins/official-list/plugin-polyfill.mdx"},{title:"Vue 插件",routePath:"/module-tools/plugins/official-list/plugin-vue",lang:"zh",toc:[{text:"快速开始",id:"快速开始",depth:2,charIndex:256},{text:"安装",id:"安装",depth:3,charIndex:264},{text:"注册插件",id:"注册插件",depth:3,charIndex:270},{text:"配置",id:"配置",depth:2,charIndex:317},{text:"vueJsxPluginOptions",id:"vuejsxpluginoptions",depth:3,charIndex:323}],frontmatter:{},version:"",_relativePath:"zh/plugins/official-list/plugin-vue.mdx"}],markdown:{showLineNumbers:!1,defaultWrapCode:!1,codeHighlighter:"prism"}}},4361:function(e){function t(e){return e&&e.__esModule?e:{default:e}}e.exports=t,e.exports.__esModule=!0,e.exports.default=e.exports},5878:function(e,t,n){"use strict";n.d(t,{Zo:function(){return l},ah:function(){return o}});var i=n(6945);let r=i.createContext({});function o(e){let t=i.useContext(r);return i.useMemo(()=>"function"==typeof e?e(t):{...t,...e},[t,e])}let a={};function l({components:e,children:t,disableParentContext:n}){let l;return l=n?"function"==typeof e?e({}):e||a:o(e),i.createElement(r.Provider,{value:l},t)}},7158:function(e,t,n){"use strict";n.d(t,{$U:function(){return nb},E9:function(){return nP},Kw:function(){return ng},Qj:function(){return nm},_f:function(){return np},bw:function(){return ns},kv:function(){return nr},lm:function(){return nc},mi:function(){return nf},pJ:function(){return nI},pZ:function(){return nv},rp:function(){return no},t6:function(){return na},tz:function(){return nj},xM:function(){return ny},xf:function(){return nx},yc:function(){return nk},yv:function(){return nl}});var i="object"==typeof global&&global&&global.Object===Object&&global,r="object"==typeof self&&self&&self.Object===Object&&self,o=i||r||Function("return this")(),a=o.Symbol,l=Object.prototype,s=l.hasOwnProperty,d=l.toString,c=a?a.toStringTag:void 0,u=function e(e){var t=s.call(e,c),n=e[c];try{e[c]=void 0;var i=!0}catch(e){}var r=d.call(e);return i&&(t?e[c]=n:delete e[c]),r},p=Object.prototype.toString,h=function e(e){return p.call(e)},f="[object Null]",m="[object Undefined]",g=a?a.toStringTag:void 0,x=function e(e){return null==e?void 0===e?m:f:g&&g in Object(e)?u(e):h(e)},v=function e(e){return null!=e&&"object"==typeof e},b=Array.isArray,y=function e(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)},w=function e(e){return e},k="[object AsyncFunction]",j="[object Function]",I="[object GeneratorFunction]",P="[object Proxy]",S=function e(e){if(!y(e))return!1;var t=x(e);return t==j||t==I||t==k||t==P},E=o["__core-js_shared__"],_=function(){var e=/[^.]+$/.exec(E&&E.keys&&E.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}(),C=function e(e){return!!_&&_ in e},z=Function.prototype.toString,N=function e(e){if(null!=e){try{return z.call(e)}catch(e){}try{return e+""}catch(e){}}return""},A=/[\\^$.*+?()[\]{}|]/g,T=/^\[object .+?Constructor\]$/,O=Object.prototype,M=Function.prototype.toString,L=O.hasOwnProperty,$=RegExp("^"+M.call(L).replace(A,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),R=function e(e){return!(!y(e)||C(e))&&(S(e)?$:T).test(N(e))},H=function e(e,t){return null==e?void 0:e[t]},B=function e(e,t){var n=H(e,t);return R(n)?n:void 0},D=Object.create,F=function(){function e(){}return function(t){if(!y(t))return{};if(D)return D(t);e.prototype=t;var n=new e;return e.prototype=void 0,n}}(),W=function e(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)},q=function e(e,t){var n=-1,i=e.length;for(t||(t=Array(i));++n<i;)t[n]=e[n];return t},V=800,U=16,Z=Date.now,G=function e(e){var t=0,n=0;return function(){var i=Z(),r=U-(i-n);if(n=i,r>0){if(++t>=V)return arguments[0]}else t=0;return e.apply(void 0,arguments)}},Y=function e(e){return function(){return e}},K=function(){try{var e=B(Object,"defineProperty");return e({},"",{}),e}catch(e){}}(),J=G(K?function(e,t){return K(e,"toString",{configurable:!0,enumerable:!1,value:Y(t),writable:!0})}:w),Q=9007199254740991,X=/^(?:0|[1-9]\d*)$/,ee=function e(e,t){var n=typeof e;return!!(t=null==t?Q:t)&&("number"==n||"symbol"!=n&&X.test(e))&&e>-1&&e%1==0&&e<t},et=function e(e,t,n){"__proto__"==t&&K?K(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n},en=function e(e,t){return e===t||e!=e&&t!=t},ei=Object.prototype.hasOwnProperty,er=function e(e,t,n){var i=e[t];(!(ei.call(e,t)&&en(i,n))||void 0===n&&!(t in e))&&et(e,t,n)},eo=function e(e,t,n,i){var r=!n;n||(n={});for(var o=-1,a=t.length;++o<a;){var l=t[o],s=i?i(n[l],e[l],l,n,e):void 0;void 0===s&&(s=e[l]),r?et(n,l,s):er(n,l,s)}return n},ea=Math.max,el=function e(e,t,n){return t=ea(void 0===t?e.length-1:t,0),function(){for(var i=arguments,r=-1,o=ea(i.length-t,0),a=Array(o);++r<o;)a[r]=i[t+r];r=-1;for(var l=Array(t+1);++r<t;)l[r]=i[r];return l[t]=n(a),W(e,this,l)}},es=function e(e,t){return J(el(e,t,w),e+"")},ed=9007199254740991,ec=function e(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=ed},eu=function e(e){return null!=e&&ec(e.length)&&!S(e)},ep=function e(e,t,n){if(!y(n))return!1;var i=typeof t;return("number"==i?!!(eu(n)&&ee(t,n.length)):"string"==i&&t in n)&&en(n[t],e)},eh=function e(e){return es(function(t,n){var i=-1,r=n.length,o=r>1?n[r-1]:void 0,a=r>2?n[2]:void 0;for(o=e.length>3&&"function"==typeof o?(r--,o):void 0,a&&ep(n[0],n[1],a)&&(o=r<3?void 0:o,r=1),t=Object(t);++i<r;){var l=n[i];l&&e(t,l,i,o)}return t})},ef=Object.prototype,em=function e(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||ef)},eg=function e(e,t){for(var n=-1,i=Array(e);++n<e;)i[n]=t(n);return i},ex="[object Arguments]",ev=function e(e){return v(e)&&x(e)==ex},eb=Object.prototype,ey=eb.hasOwnProperty,ew=eb.propertyIsEnumerable,ek=ev(function(){return arguments}())?ev:function(e){return v(e)&&ey.call(e,"callee")&&!ew.call(e,"callee")},ej=function e(){return!1},eI="object"==typeof exports&&exports&&!exports.nodeType&&exports,eP=eI&&"object"==typeof module&&module&&!module.nodeType&&module,eS=eP&&eP.exports===eI?o.Buffer:void 0,eE=(eS?eS.isBuffer:void 0)||ej,e_="[object Arguments]",eC="[object Array]",ez="[object Boolean]",eN="[object Date]",eA="[object Error]",eT="[object Function]",eO="[object Map]",eM="[object Number]",eL="[object Object]",e$="[object RegExp]",eR="[object Set]",eH="[object String]",eB="[object WeakMap]",eD="[object ArrayBuffer]",eF="[object DataView]",eW="[object Float64Array]",eq="[object Int8Array]",eV="[object Int16Array]",eU="[object Int32Array]",eZ="[object Uint8Array]",eG="[object Uint8ClampedArray]",eY="[object Uint16Array]",eK="[object Uint32Array]",eJ={};eJ["[object Float32Array]"]=eJ[eW]=eJ[eq]=eJ[eV]=eJ[eU]=eJ[eZ]=eJ[eG]=eJ[eY]=eJ[eK]=!0,eJ[e_]=eJ[eC]=eJ[eD]=eJ[ez]=eJ[eF]=eJ[eN]=eJ[eA]=eJ[eT]=eJ[eO]=eJ[eM]=eJ[eL]=eJ[e$]=eJ[eR]=eJ[eH]=eJ[eB]=!1;var eQ=function e(e){return v(e)&&ec(e.length)&&!!eJ[x(e)]},eX=function e(e){return function(t){return e(t)}},e0="object"==typeof exports&&exports&&!exports.nodeType&&exports,e1=e0&&"object"==typeof module&&module&&!module.nodeType&&module,e2=e1&&e1.exports===e0&&i.process,e3=function(){try{var e=e1&&e1.require&&e1.require("util").types;if(e)return e;return e2&&e2.binding&&e2.binding("util")}catch(e){}}(),e4=e3&&e3.isTypedArray,e5=e4?eX(e4):eQ,e6=Object.prototype.hasOwnProperty,e7=function e(e,t){var n=b(e),i=!n&&ek(e),r=!n&&!i&&eE(e),o=!n&&!i&&!r&&e5(e),a=n||i||r||o,l=a?eg(e.length,String):[],s=l.length;for(var d in e)(t||e6.call(e,d))&&!(a&&("length"==d||r&&("offset"==d||"parent"==d)||o&&("buffer"==d||"byteLength"==d||"byteOffset"==d)||ee(d,s)))&&l.push(d);return l},e8=function e(e,t){return function(n){return e(t(n))}},e9=function e(e){var t=[];if(null!=e)for(var n in Object(e))t.push(n);return t},te=Object.prototype.hasOwnProperty,tt=function e(e){if(!y(e))return e9(e);var t=em(e),n=[];for(var i in e)!("constructor"==i&&(t||!te.call(e,i)))&&n.push(i);return n},tn=function e(e){return eu(e)?e7(e,!0):tt(e)},ti=B(Object,"create"),tr=function e(){this.__data__=ti?ti(null):{},this.size=0},to=function e(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t},ta="__lodash_hash_undefined__",tl=Object.prototype.hasOwnProperty,ts=function e(e){var t=this.__data__;if(ti){var n=t[e];return n===ta?void 0:n}return tl.call(t,e)?t[e]:void 0},td=Object.prototype.hasOwnProperty,tc=function e(e){var t=this.__data__;return ti?void 0!==t[e]:td.call(t,e)},tu="__lodash_hash_undefined__",tp=function e(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=ti&&void 0===t?tu:t,this};function th(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var i=e[t];this.set(i[0],i[1])}}th.prototype.clear=tr,th.prototype.delete=to,th.prototype.get=ts,th.prototype.has=tc,th.prototype.set=tp;var tf=th,tm=function e(){this.__data__=[],this.size=0},tg=function e(e,t){for(var n=e.length;n--;)if(en(e[n][0],t))return n;return -1},tx=Array.prototype.splice,tv=function e(e){var t=this.__data__,n=tg(t,e);return!(n<0)&&(n==t.length-1?t.pop():tx.call(t,n,1),--this.size,!0)},tb=function e(e){var t=this.__data__,n=tg(t,e);return n<0?void 0:t[n][1]},ty=function e(e){return tg(this.__data__,e)>-1},tw=function e(e,t){var n=this.__data__,i=tg(n,e);return i<0?(++this.size,n.push([e,t])):n[i][1]=t,this};function tk(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var i=e[t];this.set(i[0],i[1])}}tk.prototype.clear=tm,tk.prototype.delete=tv,tk.prototype.get=tb,tk.prototype.has=ty,tk.prototype.set=tw;var tj=tk,tI=B(o,"Map"),tP=function e(){this.size=0,this.__data__={hash:new tf,map:new(tI||tj),string:new tf}},tS=function e(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e},tE=function e(e,t){var n=e.__data__;return tS(t)?n["string"==typeof t?"string":"hash"]:n.map},t_=function e(e){var t=tE(this,e).delete(e);return this.size-=t?1:0,t},tC=function e(e){return tE(this,e).get(e)},tz=function e(e){return tE(this,e).has(e)},tN=function e(e,t){var n=tE(this,e),i=n.size;return n.set(e,t),this.size+=n.size==i?0:1,this};function tA(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var i=e[t];this.set(i[0],i[1])}}tA.prototype.clear=tP,tA.prototype.delete=t_,tA.prototype.get=tC,tA.prototype.has=tz,tA.prototype.set=tN;var tT=tA,tO=e8(Object.getPrototypeOf,Object),tM="[object Object]",tL=Object.prototype,t$=Function.prototype.toString,tR=tL.hasOwnProperty,tH=t$.call(Object),tB=function e(e){if(!v(e)||x(e)!=tM)return!1;var t=tO(e);if(null===t)return!0;var n=tR.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&t$.call(n)==tH},tD=function e(){this.__data__=new tj,this.size=0},tF=function e(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},tW=function e(e){return this.__data__.get(e)},tq=function e(e){return this.__data__.has(e)},tV=200,tU=function e(e,t){var n=this.__data__;if(n instanceof tj){var i=n.__data__;if(!tI||i.length<tV-1)return i.push([e,t]),this.size=++n.size,this;n=this.__data__=new tT(i)}return n.set(e,t),this.size=n.size,this};function tZ(e){var t=this.__data__=new tj(e);this.size=t.size}tZ.prototype.clear=tD,tZ.prototype.delete=tF,tZ.prototype.get=tW,tZ.prototype.has=tq,tZ.prototype.set=tU;var tG=tZ,tY="object"==typeof exports&&exports&&!exports.nodeType&&exports,tK=tY&&"object"==typeof module&&module&&!module.nodeType&&module,tJ=tK&&tK.exports===tY?o.Buffer:void 0,tQ=tJ?tJ.allocUnsafe:void 0,tX=function e(e,t){if(t)return e.slice();var n=e.length,i=tQ?tQ(n):new e.constructor(n);return e.copy(i),i},t0=o.Uint8Array,t1=function e(e){var t=new e.constructor(e.byteLength);return new t0(t).set(new t0(e)),t},t2=function e(e,t){var n=t?t1(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)},t3=function e(e){return"function"!=typeof e.constructor||em(e)?{}:F(tO(e))},t4=function e(e){return function(t,n,i){for(var r=-1,o=Object(t),a=i(t),l=a.length;l--;){var s=a[e?l:++r];if(!1===n(o[s],s,o))break}return t}}(),t5=function e(e,t,n){(void 0!==n&&!en(e[t],n)||void 0===n&&!(t in e))&&et(e,t,n)},t6=function e(e){return v(e)&&eu(e)},t7=function e(e,t){if(("constructor"!==t||"function"!=typeof e[t])&&"__proto__"!=t)return e[t]},t8=function e(e){return eo(e,tn(e))},t9=function e(e,t,n,i,r,o,a){var l=t7(e,n),s=t7(t,n),d=a.get(s);if(d){t5(e,n,d);return}var c=o?o(l,s,n+"",e,t,a):void 0,u=void 0===c;if(u){var p=b(s),h=!p&&eE(s),f=!p&&!h&&e5(s);c=s,p||h||f?b(l)?c=l:t6(l)?c=q(l):h?(u=!1,c=tX(s,!0)):f?(u=!1,c=t2(s,!0)):c=[]:tB(s)||ek(s)?(c=l,ek(l)?c=t8(l):(!y(l)||S(l))&&(c=t3(s))):u=!1}u&&(a.set(s,c),r(c,s,i,o,a),a.delete(s)),t5(e,n,c)};function ne(e,t,n,i,r){if(e!==t)t4(t,function(o,a){if(r||(r=new tG),y(o))t9(e,t,a,n,ne,i,r);else{var l=i?i(t7(e,a),o,a+"",e,t,r):void 0;void 0===l&&(l=o),t5(e,a,l)}},tn)}var nt=ne;eh(function(e,t,n,i){nt(e,t,n,i)});var nn=/\?.*$/s,ni=/#.*$/s,nr=/\.mdx?$/,no="rspress-theme-appearance",na="search_index",nl=()=>!0,ns=e=>e.replace(ni,"").replace(nn,"");function nd(e){return e.replace(/\\/g,"/")}function nc(e){return e.replace(/#.*$/,"")}function nu(e){let t=nd(e),n=t.startsWith("/"),i=t.split("/"),r=[];for(let e of i)"."===e||""===e||(".."===e?r.length>0&&".."!==r[r.length-1]?r.pop():n&&r.push(".."):r.push(e));let o=r.join("/");return n&&(o=`/${o}`),o}var np=()=>!0;function nh(e){return"/"===e.charAt(0)||nx(e)?e:`/${e}`}function nf(e){return"/"===e.charAt(e.length-1)?e:`${e}/`}function nm(e){return"/"===e.charAt(e.length-1)?e.slice(0,-1):e}function ng(e){return nm(nh(nu(e)))}function nx(e=""){return e.startsWith("http://")||e.startsWith("https://")||e.startsWith("mailto:")||e.startsWith("tel:")}function nv(e=""){return/^\s*data:/i.test(e)}function nb(e,t,n,i="",r=!1,o=!1){let a=nP(e,i);(!a||o)&&(a=r?"/index":"/index.html"),a.endsWith("/")&&(a+=r?"/index":"/index.html");let l="",s="",d="",c=a.split("/").filter(Boolean);return n.current&&n.current!==n.default&&(l=c.shift()||""),t.target!==t.default?(s=t.target,t.current!==t.default&&c.shift()):c.shift(),d=c.join("/")||"",(l||s)&&!d&&(d=r?"index":"index.html"),nI(nh([l,s,d].filter(Boolean).join("/")),i)}function ny(e,t,n="",i=!1,r=!1){let o=nP(e,n);(!o||r)&&(o=i?"/index":"/index.html");let a="",l=o.split("/").filter(Boolean);t.target!==t.default?(a=t.target,t.current!==t.default&&l.shift()):l.shift();let s=l.join("/")||"";return a&&!s&&(s=i?"index":"index.html"),nI(nh([a,s].filter(Boolean).join("/")),n)}var nw=e=>{let[t,n=""]=e.split("#");return{url:t,hash:n}};function nk(e,t=!1){if(!e)return"/";if(nx(e))return e;let{url:n,hash:i}=nw(decodeURIComponent(e));return!t&&!n.endsWith(".html")&&(n.endsWith("/")?n+="index.html":n+=".html"),t&&n.endsWith("/")&&(n+="index"),t&&n.endsWith(".html")&&(n=n.replace(/\.html$/,"")),nh(i?`${n}#${i}`:n)}function nj(e,t=""){return nh(e).replace(ng(t),"")}function nI(e="/",t=""){let n=nh(e),i=ng(t);return n.startsWith(i)?n:`${i}${n}`}function nP(e,t){return nh(e).replace(RegExp(`^${ng(t)}`),"")}},8078:function(e,t,n){"use strict";n.d(t,{YE:()=>dw,WG:()=>sE,ZB:()=>dj,Rg:()=>dP,KO:()=>sw,OK:()=>dt,Ar:()=>lE,rU:()=>sg,JL:()=>sU,Qn:()=>lb,RY:()=>lI,mi:()=>si,BZ:()=>sl,xN:()=>lg,Ct:()=>l9,zx:()=>st,xK:()=>ss,mQ:()=>de,Vp:()=>dS,of:()=>d_,UQ:()=>aB,AV:()=>lt,tx:()=>aN,ls:()=>ll,ZP:()=>dC,TJ:()=>l7,zh:()=>ls,s2:()=>ld,H_:()=>lm,NG:()=>lc,VA:()=>lf,eF:()=>aR,cY:()=>aD,CU:()=>aT,CF:()=>aO,YS:()=>le,Vl:()=>aM,M4:()=>aC,eE:()=>aF,WS:()=>aA,xB:()=>sp,Os:()=>l_,O9:()=>sf,qx:()=>a_,g2:()=>sG,SU:()=>s0,Qe:()=>s2,y2:()=>a7,pU:()=>s4,ol:()=>dd,EG:()=>ds});var i,r,o,a,l,s,d,c,u,p,h,f,m,g,x,v,b,y,w,k,j,I,P={};n.r(P),n.d(P,{onSearch:()=>an}),n("1867");var S=n("4343"),E=n("2185"),_=n("8093");n("2575");var C=n("5802"),z=n("6945"),N=n("6344"),A=n("1207"),T=n("6780");let{routes:O}=n(6118);function M(e){let t=e.el;return T.Z?.themeConfig?.enableContentAnimation&&(t=(0,S.n_)(e.el)),t}let L=(0,z.memo)(M,(e,t)=>e.el===t.el),$=({fallback:e=(0,_.jsx)(_.Fragment,{})})=>{let{pathname:t}=(0,N.TH)(),n=(0,A.fp)(O,(0,E.Tm)(t));if(!n)return(0,_.jsx)("div",{});let i=n[0].route.element;return(0,_.jsx)(z.Suspense,{fallback:e,children:(0,_.jsx)(L,{el:i})})};var R=n("5878");function H(e){let{children:t}=e,[n,i]=(0,z.useState)(!1);return((0,z.useEffect)(()=>{i(!0)},[]),n)?(0,_.jsx)(_.Fragment,{children:t}):null}var B=n("7158");let D=function e(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)},F="object"==typeof global&&global&&global.Object===Object&&global;var W="object"==typeof self&&self&&self.Object===Object&&self;let q=F||W||Function("return this")(),V=function(){return q.Date.now()};var U=/\s/;let Z=function e(e){for(var t=e.length;t--&&U.test(e.charAt(t)););return t};var G=/^\s+/;let Y=function e(e){return e?e.slice(0,Z(e)+1).replace(G,""):e},K=q.Symbol;var J=Object.prototype,Q=J.hasOwnProperty,X=J.toString,ee=K?K.toStringTag:void 0;let et=function e(e){var t=Q.call(e,ee),n=e[ee];try{e[ee]=void 0;var i=!0}catch(e){}var r=X.call(e);return i&&(t?e[ee]=n:delete e[ee]),r};var en=Object.prototype.toString;let ei=function e(e){return en.call(e)};var er="[object Null]",eo="[object Undefined]",ea=K?K.toStringTag:void 0;let el=function e(e){return null==e?void 0===e?eo:er:ea&&ea in Object(e)?et(e):ei(e)},es=function e(e){return null!=e&&"object"==typeof e};var ed="[object Symbol]";let ec=function e(e){return"symbol"==typeof e||es(e)&&el(e)==ed};var eu=0/0,ep=/^[-+]0x[0-9a-f]+$/i,eh=/^0b[01]+$/i,ef=/^0o[0-7]+$/i,em=parseInt;let eg=function e(e){if("number"==typeof e)return e;if(ec(e))return eu;if(D(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=D(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=Y(e);var n=eh.test(e);return n||ef.test(e)?em(e.slice(2),n?2:8):ep.test(e)?eu:+e};var ex="Expected a function",ev=Math.max,eb=Math.min;let ey=function e(e,t,n){var i,r,o,a,l,s,d=0,c=!1,u=!1,p=!0;if("function"!=typeof e)throw TypeError(ex);function h(t){var n=i,o=r;return i=r=void 0,d=t,a=e.apply(o,n)}function f(e){return d=e,l=setTimeout(x,t),c?h(e):a}function m(e){var n=e-s,i=e-d,r=t-n;return u?eb(r,o-i):r}function g(e){var n=e-s,i=e-d;return void 0===s||n>=t||n<0||u&&i>=o}function x(){var e=V();if(g(e))return v(e);l=setTimeout(x,m(e))}function v(e){return(l=void 0,p&&i)?h(e):(i=r=void 0,a)}function b(){void 0!==l&&clearTimeout(l),d=0,i=s=r=l=void 0}function y(){return void 0===l?a:v(V())}function w(){var e=V(),n=g(e);if(i=arguments,r=this,s=e,n){if(void 0===l)return f(s);if(u)return clearTimeout(l),l=setTimeout(x,t),h(s)}return void 0===l&&(l=setTimeout(x,t)),a}return t=eg(t)||0,D(n)&&(c=!!n.leading,o=(u="maxWait"in n)?ev(eg(n.maxWait)||0,t):o,p="trailing"in n?!!n.trailing:p),w.cancel=b,w.flush=y,w};var ew="Expected a function";let ek=function e(e,t,n){var i=!0,r=!0;if("function"!=typeof e)throw TypeError(ew);return D(n)&&(i="leading"in n?!!n.leading:i,r="trailing"in n?!!n.trailing:r),ey(e,t,{leading:i,maxWait:t,trailing:r})};var ej=n("3830");n("8247");var eI=n("7999"),eP=n("13"),eS=n("4220"),eE=n("2010"),e_=n("16"),eC=n("1387");function ez(e){let t;if(!(this instanceof ez))return new ez(e);let n=e.document||e.doc||e;this.tree=[],this.field=[],this.marker=[],this.register=(0,eP.Vf)(),this.key=(t=n.key||n.id)&&eT(t,this.marker)||"id",this.fastupdate=(0,eP.wD)(e.fastupdate,!0),this.storetree=(t=n.store)&&!0!==t&&[],this.store=t&&(0,eP.Vf)(),this.tag=(t=n.tag)&&eT(t,this.marker),this.tagindex=t&&(0,eP.Vf)(),this.cache=(t=e.cache)&&new eI.Z(t),e.cache=!1,this.worker=e.worker,this.async=!1,this.index=eA.call(this,e,n)}let eN=ez;function eA(e,t){let n=(0,eP.Vf)(),i=t.index||t.field||t;(0,eP.NH)(i)&&(i=[i]);for(let t=0,r,o;t<i.length;t++)r=i[t],!(0,eP.NH)(r)&&(o=r,r=r.field),o=(0,eP.TU)(o)?Object.assign({},e,o):e,this.worker&&(n[r]=new eC.Z(o),!n[r].worker&&(this.worker=!1)),!this.worker&&(n[r]=new ej.Z(o,this.register)),this.tree[t]=eT(r,this.marker),this.field[t]=r;if(this.storetree){let e=t.store;(0,eP.NH)(e)&&(e=[e]);for(let t=0;t<e.length;t++)this.storetree[t]=eT(e[t],this.marker)}return n}function eT(e,t){let n=e.split(":"),i=0;for(let r=0;r<n.length;r++)0<=(e=n[r]).indexOf("[]")&&(e=e.substring(0,e.length-2))&&(t[i]=!0),e&&(n[i++]=e);return i<n.length&&(n.length=i),1<i?n:n[0]}function eO(e,t){if((0,eP.NH)(t))e=e[t];else for(let n=0;e&&n<t.length;n++)e=e[t[n]];return e}function eM(e,t,n,i,r){if(e=e[r],i===n.length-1)t[r]=e;else if(e){if((0,eP.WN)(e)){t=t[r]=Array(e.length);for(let r=0;r<e.length;r++)eM(e,t,n,i,r)}else t=t[r]||(t[r]=(0,eP.Vf)()),r=n[++i],eM(e,t,n,i,r)}}function eL(e,t,n,i,r,o,a,l){if(e=e[a]){if(i===t.length-1){if((0,eP.WN)(e)){if(n[i]){for(let t=0;t<e.length;t++)r.add(o,e[t],!0,!0);return}e=e.join(" ")}r.add(o,e,l,!0)}else if((0,eP.WN)(e))for(let a=0;a<e.length;a++)eL(e,t,n,i,r,o,a,l);else a=t[++i],eL(e,t,n,i,r,o,a,l)}}function e$(e,t,n){let i=this.tagindex[e];i&&i.length}function eR(e){let t=Array(e.length);for(let n=0,i;n<e.length;n++)i=e[n],t[n]={id:i,doc:this.store[i]};return t}ez.prototype.add=function(e,t,n){if((0,eP.TU)(e)&&(e=eO(t=e,this.key)),t&&(e||0===e)){if(!n&&this.register[e])return this.update(e,t);for(let i=0,r,o;i<this.field.length;i++)o=this.field[i],r=this.tree[i],(0,eP.NH)(r)&&(r=[r]),eL(t,r,this.marker,0,this.index[o],e,r[0],n);if(this.tag){let i=eO(t,this.tag),r=(0,eP.Vf)();(0,eP.NH)(i)&&(i=[i]);for(let t=0,o,a;t<i.length;t++)if(!r[o=i[t]]&&(r[o]=1,a=this.tagindex[o]||(this.tagindex[o]=[]),(!n||!a.includes(e))&&(a[a.length]=e,this.fastupdate))){let t=this.register[e]||(this.register[e]=[]);t[t.length]=a}}if(this.store&&(!n||!this.store[e])){let n;if(this.storetree){n=(0,eP.Vf)();for(let e=0,i;e<this.storetree.length;e++)i=this.storetree[e],(0,eP.NH)(i)?n[i]=t[i]:eM(t,n,i,0,i[0])}this.store[e]=n||t}}return this},ez.prototype.append=function(e,t){return this.add(e,t,!0)},ez.prototype.update=function(e,t){return this.remove(e).add(e,t)},ez.prototype.remove=function(e){if((0,eP.TU)(e)&&(e=eO(e,this.key)),this.register[e]){for(let t=0;t<this.field.length&&(this.index[this.field[t]].remove(e,!this.worker),!this.fastupdate);t++);if(this.tag&&!this.fastupdate)for(let t in this.tagindex){let n=this.tagindex[t],i=n.indexOf(e);-1!==i&&(1<n.length?n.splice(i,1):delete this.tagindex[t])}this.store&&delete this.store[e],delete this.register[e]}return this},ez.prototype.search=function(e,t,n,i){!n&&(!t&&(0,eP.TU)(e)?(n=e,e=""):(0,eP.TU)(t)&&(n=t,t=0));let r=[],o=[],a,l,s,d,c,u,p=0;if(n){if((0,eP.WN)(n))s=n,n=null;else{if(e=n.query||e,s=(a=n.pluck)||n.index||n.field,d=n.tag,l=this.store&&n.enrich,c="and"===n.bool,t=n.limit||t||100,u=n.offset||0,d&&((0,eP.NH)(d)&&(d=[d]),!e)){for(let e=0,n;e<d.length;e++)(n=e$.call(this,d[e],t,u,l))&&(r[r.length]=n,p++);return p?r:[]}(0,eP.NH)(s)&&(s=[s])}}s||(s=this.field),c=c&&(1<s.length||d&&1<d.length);let h=!i&&(this.worker||this.async)&&[];for(let a=0,f,m,g;a<s.length;a++){let x;if(m=s[a],!(0,eP.NH)(m)&&(m=(x=m).field,e=x.query||e,t=x.limit||t,l=x.enrich||l),h){h[a]=this.index[m].searchAsync(e,t,x||n);continue}f=i?i[a]:this.index[m].search(e,t,x||n);if(g=f&&f.length,d&&g){let e=[],n=0;c&&(e[0]=[f]);for(let t=0,i,r;t<d.length;t++)i=d[t],(g=(r=this.tagindex[i])&&r.length)&&(n++,e[e.length]=c?[r]:r);n&&(g=(f=c?(0,eE.w)(e,t||100,u||0):(0,eE.X)(f,e)).length)}if(g)o[p]=m,r[p++]=f;else if(c)return[]}if(h){let i=this;return new Promise(function(r){Promise.all(h).then(function(o){r(i.search(e,t,n,o))})})}if(!p)return[];if(a&&(!l||!this.store))return r[0];for(let e=0,t;e<o.length;e++){if((t=r[e]).length&&l&&(t=eR.call(this,t)),a)return t;r[e]={field:o[e],result:t}}return r},ez.prototype.contain=function(e){return!!this.register[e]},ez.prototype.get=function(e){return this.store[e]},ez.prototype.set=function(e,t){return this.store[e]=t,this},ez.prototype.searchCache=eI.r,ez.prototype.export=e_.bx,ez.prototype.import=e_.xr,(0,eS.Z)(ez.prototype);let eH={"###en":"f19ea64b","###zh":"e818eee4"};var eB=n("4823"),eD=n("3393");let eF=/\s?<!doctype html>|(<html\b[^>]*>|<body\b[^>]*>|<x-[^>]+>)+/i,eW=RegExp(eD.map(e=>`<${e}\\b[^>]*>`).join("|"),"i");function eq(e){return e=e.trim().slice(0,1e3),eF.test(e)||eW.test(e)}var eV="[object Number]";let eU=function e(e){return"number"==typeof e||es(e)&&el(e)==eV};var eZ=e=>(0,_.jsx)("svg",{width:"1em",height:"1em",viewBox:"0 0 32 32",...e,children:(0,_.jsx)("path",{fill:"currentColor",d:"M4 6h24v2H4zm0 18h24v2H4zm0-12h24v2H4zm0 6h24v2H4z"})}),eG=e=>(0,_.jsx)("svg",{width:"1em",height:"1em",viewBox:"0 0 32 32",...e,children:(0,_.jsx)("path",{fill:"currentColor",d:"M22 16 12 26l-1.4-1.4 8.6-8.6-8.6-8.6L12 6z"})});function eY(){return(eY=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var i in n)({}).hasOwnProperty.call(n,i)&&(e[i]=n[i])}return e}).apply(null,arguments)}function eK(e,t){if(null==e)return{};var n={};for(var i in e)if(({}).hasOwnProperty.call(e,i)){if(t.indexOf(i)>=0)continue;n[i]=e[i]}return n}function eJ(e,t){return(eJ=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}function eQ(e,t){e.prototype=Object.create(t.prototype),e.prototype.constructor=e,eJ(e,t)}function eX(e,t){return e.classList?!!t&&e.classList.contains(t):-1!==(" "+(e.className.baseVal||e.className)+" ").indexOf(" "+t+" ")}function e0(e,t){e.classList?e.classList.add(t):!eX(e,t)&&("string"==typeof e.className?e.className=e.className+" "+t:e.setAttribute("class",(e.className&&e.className.baseVal||"")+" "+t))}function e1(e,t){return e.replace(RegExp("(^|\\s)"+t+"(?:\\s|$)","g"),"$1").replace(/\s+/g," ").replace(/^\s*|\s*$/g,"")}function e2(e,t){e.classList?e.classList.remove(t):"string"==typeof e.className?e.className=e1(e.className,t):e.setAttribute("class",e1(e.className&&e.className.baseVal||"",t))}var e3=n("3567");let e4={disabled:!1},e5=z.createContext(null);var e6=function(e){return e.scrollTop},e7="unmounted",e8="exited",e9="entering",te="entered",tt="exiting",tn=function(e){function t(t,n){i=e.call(this,t,n)||this;var i,r,o=n,a=o&&!o.isMounting?t.enter:t.appear;return i.appearStatus=null,t.in?a?(r=e8,i.appearStatus=e9):r=te:r=t.unmountOnExit||t.mountOnEnter?e7:e8,i.state={status:r},i.nextCallback=null,i}eQ(t,e),t.getDerivedStateFromProps=function(e,t){return e.in&&t.status===e7?{status:e8}:null};var n=t.prototype;return n.componentDidMount=function(){this.updateStatus(!0,this.appearStatus)},n.componentDidUpdate=function(e){var t=null;if(e!==this.props){var n=this.state.status;this.props.in?n!==e9&&n!==te&&(t=e9):(n===e9||n===te)&&(t=tt)}this.updateStatus(!1,t)},n.componentWillUnmount=function(){this.cancelNextCallback()},n.getTimeouts=function(){var e,t,n,i=this.props.timeout;return e=t=n=i,null!=i&&"number"!=typeof i&&(e=i.exit,t=i.enter,n=void 0!==i.appear?i.appear:t),{exit:e,enter:t,appear:n}},n.updateStatus=function(e,t){if(void 0===e&&(e=!1),null!==t){if(this.cancelNextCallback(),t===e9){if(this.props.unmountOnExit||this.props.mountOnEnter){var n=this.props.nodeRef?this.props.nodeRef.current:e3.findDOMNode(this);n&&e6(n)}this.performEnter(e)}else this.performExit()}else this.props.unmountOnExit&&this.state.status===e8&&this.setState({status:e7})},n.performEnter=function(e){var t=this,n=this.props.enter,i=this.context?this.context.isMounting:e,r=this.props.nodeRef?[i]:[e3.findDOMNode(this),i],o=r[0],a=r[1],l=this.getTimeouts(),s=i?l.appear:l.enter;if(!e&&!n||e4.disabled){this.safeSetState({status:te},function(){t.props.onEntered(o)});return}this.props.onEnter(o,a),this.safeSetState({status:e9},function(){t.props.onEntering(o,a),t.onTransitionEnd(s,function(){t.safeSetState({status:te},function(){t.props.onEntered(o,a)})})})},n.performExit=function(){var e=this,t=this.props.exit,n=this.getTimeouts(),i=this.props.nodeRef?void 0:e3.findDOMNode(this);if(!t||e4.disabled){this.safeSetState({status:e8},function(){e.props.onExited(i)});return}this.props.onExit(i),this.safeSetState({status:tt},function(){e.props.onExiting(i),e.onTransitionEnd(n.exit,function(){e.safeSetState({status:e8},function(){e.props.onExited(i)})})})},n.cancelNextCallback=function(){null!==this.nextCallback&&(this.nextCallback.cancel(),this.nextCallback=null)},n.safeSetState=function(e,t){t=this.setNextCallback(t),this.setState(e,t)},n.setNextCallback=function(e){var t=this,n=!0;return this.nextCallback=function(i){n&&(n=!1,t.nextCallback=null,e(i))},this.nextCallback.cancel=function(){n=!1},this.nextCallback},n.onTransitionEnd=function(e,t){this.setNextCallback(t);var n=this.props.nodeRef?this.props.nodeRef.current:e3.findDOMNode(this),i=null==e&&!this.props.addEndListener;if(!n||i){setTimeout(this.nextCallback,0);return}if(this.props.addEndListener){var r=this.props.nodeRef?[this.nextCallback]:[n,this.nextCallback],o=r[0],a=r[1];this.props.addEndListener(o,a)}null!=e&&setTimeout(this.nextCallback,e)},n.render=function(){var e=this.state.status;if(e===e7)return null;var t=this.props,n=t.children,i=(t.in,t.mountOnEnter,t.unmountOnExit,t.appear,t.enter,t.exit,t.timeout,t.addEndListener,t.onEnter,t.onEntering,t.onEntered,t.onExit,t.onExiting,t.onExited,t.nodeRef,eK(t,["children","in","mountOnEnter","unmountOnExit","appear","enter","exit","timeout","addEndListener","onEnter","onEntering","onEntered","onExit","onExiting","onExited","nodeRef"]));return z.createElement(e5.Provider,{value:null},"function"==typeof n?n(e,i):z.cloneElement(z.Children.only(n),i))},t}(z.Component);function ti(){}tn.contextType=e5,tn.propTypes={},tn.defaultProps={in:!1,mountOnEnter:!1,unmountOnExit:!1,appear:!1,enter:!0,exit:!0,onEnter:ti,onEntering:ti,onEntered:ti,onExit:ti,onExiting:ti,onExited:ti},tn.UNMOUNTED=e7,tn.EXITED=e8,tn.ENTERING=e9,tn.ENTERED=te,tn.EXITING=tt;let tr=tn;var to=function(e,t){return e&&t&&t.split(" ").forEach(function(t){return e0(e,t)})},ta=function(e,t){return e&&t&&t.split(" ").forEach(function(t){return e2(e,t)})},tl=function(e){function t(){for(var t,n=arguments.length,i=Array(n),r=0;r<n;r++)i[r]=arguments[r];return(t=e.call.apply(e,[this].concat(i))||this).appliedClasses={appear:{},enter:{},exit:{}},t.onEnter=function(e,n){var i=t.resolveArguments(e,n),r=i[0],o=i[1];t.removeClasses(r,"exit"),t.addClass(r,o?"appear":"enter","base"),t.props.onEnter&&t.props.onEnter(e,n)},t.onEntering=function(e,n){var i=t.resolveArguments(e,n),r=i[0],o=i[1]?"appear":"enter";t.addClass(r,o,"active"),t.props.onEntering&&t.props.onEntering(e,n)},t.onEntered=function(e,n){var i=t.resolveArguments(e,n),r=i[0],o=i[1]?"appear":"enter";t.removeClasses(r,o),t.addClass(r,o,"done"),t.props.onEntered&&t.props.onEntered(e,n)},t.onExit=function(e){var n=t.resolveArguments(e)[0];t.removeClasses(n,"appear"),t.removeClasses(n,"enter"),t.addClass(n,"exit","base"),t.props.onExit&&t.props.onExit(e)},t.onExiting=function(e){var n=t.resolveArguments(e)[0];t.addClass(n,"exit","active"),t.props.onExiting&&t.props.onExiting(e)},t.onExited=function(e){var n=t.resolveArguments(e)[0];t.removeClasses(n,"exit"),t.addClass(n,"exit","done"),t.props.onExited&&t.props.onExited(e)},t.resolveArguments=function(e,n){return t.props.nodeRef?[t.props.nodeRef.current,e]:[e,n]},t.getClassNames=function(e){var n=t.props.classNames,i="string"==typeof n,r=i&&n?n+"-":"",o=i?""+r+e:n[e],a=i?o+"-active":n[e+"Active"],l=i?o+"-done":n[e+"Done"];return{baseClassName:o,activeClassName:a,doneClassName:l}},t}eQ(t,e);var n=t.prototype;return n.addClass=function(e,t,n){var i=this.getClassNames(t)[n+"ClassName"],r=this.getClassNames("enter").doneClassName;"appear"===t&&"done"===n&&r&&(i+=" "+r),"active"===n&&e&&e6(e),i&&(this.appliedClasses[t][n]=i,to(e,i))},n.removeClasses=function(e,t){var n=this.appliedClasses[t],i=n.base,r=n.active,o=n.done;this.appliedClasses[t]={},i&&ta(e,i),r&&ta(e,r),o&&ta(e,o)},n.render=function(){var e=this.props,t=(e.classNames,eK(e,["classNames"]));return z.createElement(tr,eY({},t,{onEnter:this.onEnter,onEntered:this.onEntered,onEntering:this.onEntering,onExit:this.onExit,onExiting:this.onExiting,onExited:this.onExited}))},t}(z.Component);tl.defaultProps={classNames:""},tl.propTypes={};let ts=tl;var td=e=>(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:32,height:32,viewBox:"0 0 24 24",...e,children:(0,_.jsx)("path",{fill:"currentColor",d:"M16 7H3V5h13v2M3 19h13v-2H3v2m19-7-4-3v2H3v2h15v2l4-3Z"})}),tc=e=>(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:32,height:32,viewBox:"0 0 24 24",...e,children:(0,_.jsx)("path",{fill:"#22a041",d:"M21 5H3v2h18zM3 19h7v-2H3zm0-6h15c1 0 2 .43 2 2s-1 2-2 2h-2v-2l-4 3 4 3v-2h2c2.95 0 4-1.27 4-4 0-2.72-1-4-4-4H3z"})});let tu={javascript:["js"],markdown:["md"],tsx:["mdx"],typescript:["ts"]},tp={bash:n(4934).default,css:n(5690).default,diff:n(6719).default,javascript:n(2704).default,json:n(3603).default,less:n(8964).default,markdown:n(7366).default,sass:n(5210).default,scss:n(5048).default,tsx:n(4436).default,typescript:n(5592).default};function th(e,t){if(null==e)return{};var n,i,r=eK(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(i=0;i<o.length;i++)n=o[i],t.indexOf(n)>=0||({}).propertyIsEnumerable.call(e,n)&&(r[n]=e[n])}return r}function tf(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,i=Array(t);n<t;n++)i[n]=e[n];return i}function tm(e){if(Array.isArray(e))return tf(e)}function tg(e){if("undefined"!=typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}function tx(e,t){if(e){if("string"==typeof e)return tf(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?tf(e,t):void 0}}function tv(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function tb(e){return tm(e)||tg(e)||tx(e)||tv()}function ty(e){return(ty="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}function tw(e,t){if("object"!=ty(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var i=n.call(e,t||"default");if("object"!=ty(i))return i;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}function tk(e){var t=tw(e,"string");return"symbol"==ty(t)?t:t+""}function tj(e,t,n){return(t=tk(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function tI(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,i)}return n}function tP(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?tI(Object(n),!0).forEach(function(t){tj(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):tI(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}function tS(e){var t=e.length;return 0===t||1===t?e:2===t?[e[0],e[1],"".concat(e[0],".").concat(e[1]),"".concat(e[1],".").concat(e[0])]:3===t?[e[0],e[1],e[2],"".concat(e[0],".").concat(e[1]),"".concat(e[0],".").concat(e[2]),"".concat(e[1],".").concat(e[0]),"".concat(e[1],".").concat(e[2]),"".concat(e[2],".").concat(e[0]),"".concat(e[2],".").concat(e[1]),"".concat(e[0],".").concat(e[1],".").concat(e[2]),"".concat(e[0],".").concat(e[2],".").concat(e[1]),"".concat(e[1],".").concat(e[0],".").concat(e[2]),"".concat(e[1],".").concat(e[2],".").concat(e[0]),"".concat(e[2],".").concat(e[0],".").concat(e[1]),"".concat(e[2],".").concat(e[1],".").concat(e[0])]:t>=4?[e[0],e[1],e[2],e[3],"".concat(e[0],".").concat(e[1]),"".concat(e[0],".").concat(e[2]),"".concat(e[0],".").concat(e[3]),"".concat(e[1],".").concat(e[0]),"".concat(e[1],".").concat(e[2]),"".concat(e[1],".").concat(e[3]),"".concat(e[2],".").concat(e[0]),"".concat(e[2],".").concat(e[1]),"".concat(e[2],".").concat(e[3]),"".concat(e[3],".").concat(e[0]),"".concat(e[3],".").concat(e[1]),"".concat(e[3],".").concat(e[2]),"".concat(e[0],".").concat(e[1],".").concat(e[2]),"".concat(e[0],".").concat(e[1],".").concat(e[3]),"".concat(e[0],".").concat(e[2],".").concat(e[1]),"".concat(e[0],".").concat(e[2],".").concat(e[3]),"".concat(e[0],".").concat(e[3],".").concat(e[1]),"".concat(e[0],".").concat(e[3],".").concat(e[2]),"".concat(e[1],".").concat(e[0],".").concat(e[2]),"".concat(e[1],".").concat(e[0],".").concat(e[3]),"".concat(e[1],".").concat(e[2],".").concat(e[0]),"".concat(e[1],".").concat(e[2],".").concat(e[3]),"".concat(e[1],".").concat(e[3],".").concat(e[0]),"".concat(e[1],".").concat(e[3],".").concat(e[2]),"".concat(e[2],".").concat(e[0],".").concat(e[1]),"".concat(e[2],".").concat(e[0],".").concat(e[3]),"".concat(e[2],".").concat(e[1],".").concat(e[0]),"".concat(e[2],".").concat(e[1],".").concat(e[3]),"".concat(e[2],".").concat(e[3],".").concat(e[0]),"".concat(e[2],".").concat(e[3],".").concat(e[1]),"".concat(e[3],".").concat(e[0],".").concat(e[1]),"".concat(e[3],".").concat(e[0],".").concat(e[2]),"".concat(e[3],".").concat(e[1],".").concat(e[0]),"".concat(e[3],".").concat(e[1],".").concat(e[2]),"".concat(e[3],".").concat(e[2],".").concat(e[0]),"".concat(e[3],".").concat(e[2],".").concat(e[1]),"".concat(e[0],".").concat(e[1],".").concat(e[2],".").concat(e[3]),"".concat(e[0],".").concat(e[1],".").concat(e[3],".").concat(e[2]),"".concat(e[0],".").concat(e[2],".").concat(e[1],".").concat(e[3]),"".concat(e[0],".").concat(e[2],".").concat(e[3],".").concat(e[1]),"".concat(e[0],".").concat(e[3],".").concat(e[1],".").concat(e[2]),"".concat(e[0],".").concat(e[3],".").concat(e[2],".").concat(e[1]),"".concat(e[1],".").concat(e[0],".").concat(e[2],".").concat(e[3]),"".concat(e[1],".").concat(e[0],".").concat(e[3],".").concat(e[2]),"".concat(e[1],".").concat(e[2],".").concat(e[0],".").concat(e[3]),"".concat(e[1],".").concat(e[2],".").concat(e[3],".").concat(e[0]),"".concat(e[1],".").concat(e[3],".").concat(e[0],".").concat(e[2]),"".concat(e[1],".").concat(e[3],".").concat(e[2],".").concat(e[0]),"".concat(e[2],".").concat(e[0],".").concat(e[1],".").concat(e[3]),"".concat(e[2],".").concat(e[0],".").concat(e[3],".").concat(e[1]),"".concat(e[2],".").concat(e[1],".").concat(e[0],".").concat(e[3]),"".concat(e[2],".").concat(e[1],".").concat(e[3],".").concat(e[0]),"".concat(e[2],".").concat(e[3],".").concat(e[0],".").concat(e[1]),"".concat(e[2],".").concat(e[3],".").concat(e[1],".").concat(e[0]),"".concat(e[3],".").concat(e[0],".").concat(e[1],".").concat(e[2]),"".concat(e[3],".").concat(e[0],".").concat(e[2],".").concat(e[1]),"".concat(e[3],".").concat(e[1],".").concat(e[0],".").concat(e[2]),"".concat(e[3],".").concat(e[1],".").concat(e[2],".").concat(e[0]),"".concat(e[3],".").concat(e[2],".").concat(e[0],".").concat(e[1]),"".concat(e[3],".").concat(e[2],".").concat(e[1],".").concat(e[0])]:void 0}var tE={};function t_(e){if(0===e.length||1===e.length)return e;var t=e.join(".");return!tE[t]&&(tE[t]=tS(e)),tE[t]}function tC(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2?arguments[2]:void 0;return t_(e.filter(function(e){return"token"!==e})).reduce(function(e,t){return tP(tP({},e),n[t])},t)}function tz(e){return e.join(" ")}function tN(e,t){var n=0;return function(i){return n+=1,i.map(function(i,r){return tA({node:i,stylesheet:e,useInlineStyles:t,key:"code-segment-".concat(n,"-").concat(r)})})}}function tA(e){var t=e.node,n=e.stylesheet,i=e.style,r=void 0===i?{}:i,o=e.useInlineStyles,a=e.key,l=t.properties,s=t.type,d=t.tagName,c=t.value;if("text"===s)return c;if(d){var u,p=tN(n,o);if(o){var h=Object.keys(n).reduce(function(e,t){return t.split(".").forEach(function(t){!e.includes(t)&&e.push(t)}),e},[]),f=l.className&&l.className.includes("token")?["token"]:[],m=l.className&&f.concat(l.className.filter(function(e){return!h.includes(e)}));u=tP(tP({},l),{},{className:tz(m)||void 0,style:tC(l.className,Object.assign({},l.style,r),n)})}else u=tP(tP({},l),{},{className:tz(l.className)});var g=p(t.children);return z.createElement(d,eY({key:a},u),g)}}let tT=function(e,t){return -1!==e.listLanguages().indexOf(t)};var tO=["language","children","style","customStyle","codeTagProps","useInlineStyles","showLineNumbers","showInlineLineNumbers","startingLineNumber","lineNumberContainerStyle","lineNumberStyle","wrapLines","wrapLongLines","lineProps","renderer","PreTag","CodeTag","code","astGenerator"];function tM(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);t&&(i=i.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,i)}return n}function tL(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?tM(Object(n),!0).forEach(function(t){tj(e,t,n[t])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):tM(Object(n)).forEach(function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))})}return e}var t$=/\n/g;function tR(e){return e.match(t$)}function tH(e){var t=e.lines,n=e.startingLineNumber,i=e.style;return t.map(function(e,t){var r=t+n;return z.createElement("span",{key:"line-".concat(t),className:"react-syntax-highlighter-line-number",style:"function"==typeof i?i(r):i},"".concat(r,"\n"))})}function tB(e){var t=e.codeString,n=e.codeStyle,i=e.containerStyle,r=void 0===i?{float:"left",paddingRight:"10px"}:i,o=e.numberStyle,a=void 0===o?{}:o,l=e.startingLineNumber;return z.createElement("code",{style:Object.assign({},n,r)},tH({lines:t.replace(/\n$/,"").split("\n"),style:a,startingLineNumber:l}))}function tD(e){return"".concat(e.toString().length,".25em")}function tF(e,t){return{type:"element",tagName:"span",properties:{key:"line-number--".concat(e),className:["comment","linenumber","react-syntax-highlighter-line-number"],style:t},children:[{type:"text",value:e}]}}function tW(e,t,n){var i={display:"inline-block",minWidth:tD(n),paddingRight:"1em",textAlign:"right",userSelect:"none"},r="function"==typeof e?e(t):e;return tL(tL({},i),r)}function tq(e){var t=e.children,n=e.lineNumber,i=e.lineNumberStyle,r=e.largestLineNumber,o=e.showInlineLineNumbers,a=e.lineProps,l=void 0===a?{}:a,s=e.className,d=void 0===s?[]:s,c=e.showLineNumbers,u=e.wrapLongLines,p="function"==typeof l?l(n):l;if(p.className=d,n&&o){var h=tW(i,n,r);t.unshift(tF(n,h))}return u&c&&(p.style=tL(tL({},p.style),{},{display:"flex"})),{type:"element",tagName:"span",properties:p,children:t}}function tV(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],i=0;i<e.length;i++){var r=e[i];if("text"===r.type)n.push(tq({children:[r],className:tb(new Set(t))}));else if(r.children){var o=t.concat(r.properties.className);tV(r.children,o).forEach(function(e){return n.push(e)})}}return n}function tU(e,t,n,i,r,o,a,l,s){var d,c=tV(e.value),u=[],p=-1,h=0;function f(e,t){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];return tq({children:e,lineNumber:t,lineNumberStyle:l,largestLineNumber:a,showInlineLineNumbers:r,lineProps:n,className:o,showLineNumbers:i,wrapLongLines:s})}function m(e,t){if(i&&t&&r){var n=tW(l,t,a);e.unshift(tF(t,n))}return e}function g(e,n){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];return t||i.length>0?f(e,n,i):m(e,n)}for(var x=function(){var e=c[h],t=e.children[0].value;if(tR(t)){var n=t.split("\n");n.forEach(function(t,r){var a=i&&u.length+o,l={type:"text",value:"".concat(t,"\n")};if(0===r){var s=g(c.slice(p+1,h).concat(tq({children:[l],className:e.properties.className})),a);u.push(s)}else if(r===n.length-1){var d=c[h+1]&&c[h+1].children&&c[h+1].children[0],f={type:"text",value:"".concat(t)};if(d){var m=tq({children:[f],className:e.properties.className});c.splice(h+1,0,m)}else{var x=g([f],a,e.properties.className);u.push(x)}}else{var v=g([l],a,e.properties.className);u.push(v)}}),p=h}h++};h<c.length;)x();if(p!==c.length-1){var v=c.slice(p+1,c.length);if(v&&v.length){var b=g(v,i&&u.length+o);u.push(b)}}return t?u:(d=[]).concat.apply(d,u)}function tZ(e){var t=e.rows,n=e.stylesheet,i=e.useInlineStyles;return t.map(function(e,t){return tA({node:e,stylesheet:n,useInlineStyles:i,key:"code-segement".concat(t)})})}function tG(e){return e&&void 0!==e.highlightAuto}function tY(e){var t=e.astGenerator,n=e.language,i=e.code,r=e.defaultCodeValue;if(tG(t)){var o=tT(t,n);return"text"===n?{value:r,language:"text"}:o?t.highlight(n,i):t.highlightAuto(i)}try{return n&&"text"!==n?{value:t.highlight(i,n)}:{value:r}}catch(e){return{value:r}}}function tK(e,t){return function(n){var i=n.language,r=n.children,o=n.style,a=void 0===o?t:o,l=n.customStyle,s=void 0===l?{}:l,d=n.codeTagProps,c=void 0===d?{className:i?"language-".concat(i):void 0,style:tL(tL({},a['code[class*="language-"]']),a['code[class*="language-'.concat(i,'"]')])}:d,u=n.useInlineStyles,p=void 0===u||u,h=n.showLineNumbers,f=void 0!==h&&h,m=n.showInlineLineNumbers,g=void 0===m||m,x=n.startingLineNumber,v=void 0===x?1:x,b=n.lineNumberContainerStyle,y=n.lineNumberStyle,w=void 0===y?{}:y,k=n.wrapLines,j=n.wrapLongLines,I=void 0!==j&&j,P=n.lineProps,S=void 0===P?{}:P,E=n.renderer,_=n.PreTag,C=void 0===_?"pre":_,N=n.CodeTag,A=void 0===N?"code":N,T=n.code,O=void 0===T?(Array.isArray(r)?r[0]:r)||"":T,M=n.astGenerator,L=th(n,tO);M=M||e;var $=f?z.createElement(tB,{containerStyle:b,codeStyle:c.style||{},numberStyle:w,startingLineNumber:v,codeString:O}):null,R=a.hljs||a['pre[class*="language-"]']||{backgroundColor:"#fff"},H=tG(M)?"hljs":"prismjs",B=p?Object.assign({},L,{style:Object.assign({},R,s)}):Object.assign({},L,{className:L.className?"".concat(H," ").concat(L.className):H,style:Object.assign({},s)});if(I?c.style=tL(tL({},c.style),{},{whiteSpace:"pre-wrap"}):c.style=tL(tL({},c.style),{},{whiteSpace:"pre"}),!M)return z.createElement(C,B,$,z.createElement(A,c,O));(void 0===k&&E||I)&&(k=!0),E=E||tZ;var D=[{type:"text",value:O}],F=tY({astGenerator:M,language:i,code:O,defaultCodeValue:D});null===F.language&&(F.value=D);var W=F.value.length+v,q=tU(F,k,S,f,g,v,W,w,I);return z.createElement(C,B,z.createElement(A,c,!g&&$,E({rows:q,stylesheet:a,useInlineStyles:p})))}}var tJ=n("6778"),tQ=n.n(tJ),tX=tK(tQ(),{});tX.registerLanguage=function(e,t){return tQ().register(t)},tX.alias=function(e,t){return tQ().alias(e,t)};let t0=tX;var t1=n("9522"),t2=e=>(0,_.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:32,height:32,viewBox:"0 0 30 30",...e,children:[(0,_.jsx)("path",{fill:"currentColor",d:"M28 10v18H10V10h18m0-2H10a2 2 0 0 0-2 2v18a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2Z"}),(0,_.jsx)("path",{fill:"currentColor",d:"M4 18H2V4a2 2 0 0 1 2-2h14v2H4Z"})]}),t3=e=>(0,_.jsx)("svg",{width:32,height:32,viewBox:"0 0 30 30",...e,children:(0,_.jsx)("path",{fill:"#49cd37",d:"m13 24-9-9 1.414-1.414L13 21.171 26.586 7.586 28 9 13 24z"})}),t4=n("7841"),t5=n("6118"),t6=e=>(0,_.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:32,height:32,viewBox:"0 0 32 32",...e,children:[(0,_.jsx)("circle",{cx:8,cy:16,r:2,fill:"currentColor"}),(0,_.jsx)("circle",{cx:16,cy:16,r:2,fill:"currentColor"}),(0,_.jsx)("circle",{cx:24,cy:16,r:2,fill:"currentColor"})]});function t7(e){if(!Array.isArray(e))return Array.from(e);for(var t=0,n=Array(e.length);t<e.length;t++)n[t]=e[t];return n}var t8=!1;if("undefined"!=typeof window){var t9={get passive(){t8=!0;return}};window.addEventListener("testPassive",null,t9),window.removeEventListener("testPassive",null,t9)}var ne="undefined"!=typeof window&&window.navigator&&window.navigator.platform&&(/iP(ad|hone|od)/.test(window.navigator.platform)||"MacIntel"===window.navigator.platform&&window.navigator.maxTouchPoints>1),nt=[],nn=!1,ni=-1,nr=void 0,no=void 0,na=void 0,nl=function(e){return nt.some(function(t){return!!(t.options.allowTouchMove&&t.options.allowTouchMove(e))||!1})},ns=function(e){var t=e||window.event;return!!nl(t.target)||!!(t.touches.length>1)||(t.preventDefault&&t.preventDefault(),!1)},nd=function(e){if(void 0===na){var t=!!e&&!0===e.reserveScrollBarGap,n=window.innerWidth-document.documentElement.clientWidth;if(t&&n>0){var i=parseInt(window.getComputedStyle(document.body).getPropertyValue("padding-right"),10);na=document.body.style.paddingRight,document.body.style.paddingRight=i+n+"px"}}void 0===nr&&(nr=document.body.style.overflow,document.body.style.overflow="hidden")},nc=function(){void 0!==na&&(document.body.style.paddingRight=na,na=void 0),void 0!==nr&&(document.body.style.overflow=nr,nr=void 0)},nu=function(){return window.requestAnimationFrame(function(){if(void 0===no){no={position:document.body.style.position,top:document.body.style.top,left:document.body.style.left};var e=window,t=e.scrollY,n=e.scrollX,i=e.innerHeight;document.body.style.position="fixed",document.body.style.top=-t,document.body.style.left=-n,setTimeout(function(){return window.requestAnimationFrame(function(){var e=i-window.innerHeight;e&&t>=i&&(document.body.style.top=-(t+e))})},300)}})},np=function(){if(void 0!==no){var e=-parseInt(document.body.style.top,10),t=-parseInt(document.body.style.left,10);document.body.style.position=no.position,document.body.style.top=no.top,document.body.style.left=no.left,window.scrollTo(t,e),no=void 0}},nh=function(e){return!!e&&e.scrollHeight-e.scrollTop<=e.clientHeight},nf=function(e,t){var n=e.targetTouches[0].clientY-ni;return!nl(e.target)&&(t&&0===t.scrollTop&&n>0||nh(t)&&n<0?ns(e):(e.stopPropagation(),!0))},nm=function(e,t){if(!e){console.error("disableBodyScroll unsuccessful - targetElement must be provided when calling disableBodyScroll on IOS devices.");return}if(!nt.some(function(t){return t.targetElement===e})){var n={targetElement:e,options:t||{}};nt=[].concat(t7(nt),[n]),ne?nu():nd(t),ne&&(e.ontouchstart=function(e){1===e.targetTouches.length&&(ni=e.targetTouches[0].clientY)},e.ontouchmove=function(t){1===t.targetTouches.length&&nf(t,e)},!nn&&(document.addEventListener("touchmove",ns,t8?{passive:!1}:void 0),nn=!0))}},ng=function(){ne&&(nt.forEach(function(e){e.targetElement.ontouchstart=null,e.targetElement.ontouchmove=null}),nn&&(document.removeEventListener("touchmove",ns,t8?{passive:!1}:void 0),nn=!1),ni=-1),ne?np():nc(),nt=[]},nx=e=>(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",viewBox:"0 0 24 24",...e,children:(0,_.jsx)("path",{d:"M12 18c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6-2.7 6-6 6zm0-10c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zM12 4c-.6 0-1-.4-1-1V1c0-.6.4-1 1-1s1 .4 1 1v2c0 .6-.4 1-1 1zM12 24c-.6 0-1-.4-1-1v-2c0-.6.4-1 1-1s1 .4 1 1v2c0 .6-.4 1-1 1zM5.6 6.6c-.3 0-.5-.1-.7-.3L3.5 4.9c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l1.4 1.4c.4.4.4 1 0 1.4-.1.2-.4.3-.7.3zM19.8 20.8c-.3 0-.5-.1-.7-.3l-1.4-1.4c-.4-.4-.4-1 0-1.4s1-.4 1.4 0l1.4 1.4c.4.4.4 1 0 1.4-.2.2-.5.3-.7.3zM3 13H1c-.6 0-1-.4-1-1s.4-1 1-1h2c.6 0 1 .4 1 1s-.4 1-1 1zM23 13h-2c-.6 0-1-.4-1-1s.4-1 1-1h2c.6 0 1 .4 1 1s-.4 1-1 1zM4.2 20.8c-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4l1.4-1.4c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-1.4 1.4c-.2.2-.4.3-.7.3zM18.4 6.6c-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4l1.4-1.4c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-1.4 1.4c-.2.2-.5.3-.7.3z"})}),nv=e=>(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",viewBox:"0 0 24 24",...e,children:(0,_.jsx)("path",{d:"M12.1 22h-.9c-5.5-.5-9.5-5.4-9-10.9.4-4.8 4.2-8.6 9-9 .4 0 .8.2 1 .5.2.3.2.8-.1 1.1-2 2.7-1.4 6.4 1.3 8.4 2.1 1.6 5 1.6 7.1 0 .3-.2.7-.3 1.1-.1.3.2.5.6.5 1-.2 2.7-1.5 5.1-3.6 6.8-1.9 1.4-4.1 2.2-6.4 2.2zM9.3 4.4c-2.9 1-5 3.6-5.2 6.8-.4 4.4 2.8 8.3 7.2 8.7 2.1.2 4.2-.4 5.8-1.8 1.1-.9 1.9-2.1 2.4-3.4-2.5.9-5.3.5-7.5-1.1-2.8-2.2-3.9-5.9-2.7-9.2z"})});let nb=function e(e){return void 0===e};var ny=e=>(0,_.jsx)("svg",{width:"1em",height:"1em",viewBox:"0 0 32 32",...e,children:(0,_.jsx)("path",{fill:"currentColor",d:"M16 22 6 12l1.4-1.4 8.6 8.6 8.6-8.6L26 12z"})}),nw=e=>(0,_.jsx)("svg",{width:18,height:18,viewBox:"0 0 32 32",...e,children:(0,_.jsx)("path",{fill:"currentColor",d:"M27.85 29H30l-6-15h-2.35l-6 15h2.15l1.6-4h6.85zm-7.65-6 2.62-6.56L25.45 23zM18 7V5h-7V2H9v3H2v2h10.74a14.71 14.71 0 0 1-3.19 6.18A13.5 13.5 0 0 1 7.26 9h-2.1a16.47 16.47 0 0 0 3 5.58A16.84 16.84 0 0 1 3 18l.75 1.86A18.47 18.47 0 0 0 9.53 16a16.92 16.92 0 0 0 5.76 3.84L16 18a14.48 14.48 0 0 1-5.12-3.37A17.64 17.64 0 0 0 14.8 7z"})}),nk=e=>(0,_.jsx)("svg",{width:"1em",height:"1em",viewBox:"0 0 32 32",...e,children:(0,_.jsx)("path",{fill:"currentColor",d:"M16 22 6 12l1.4-1.4 8.6 8.6 8.6-8.6L26 12z"})}),nj=e=>(0,_.jsx)("svg",{width:24,height:24,viewBox:"0 0 32 32",...e,children:(0,_.jsx)("path",{fill:"var(--rp-c-gray)",d:"m29 27.586-7.552-7.552a11.018 11.018 0 1 0-1.414 1.414L27.586 29ZM4 13a9 9 0 1 1 9 9 9.01 9.01 0 0 1-9-9Z"})}),nI="[object AsyncFunction]",nP="[object Function]",nS="[object GeneratorFunction]",nE="[object Proxy]";let n_=function e(e){if(!D(e))return!1;var t=el(e);return t==nP||t==nS||t==nI||t==nE},nC=q["__core-js_shared__"];var nz=function(){var e=/[^.]+$/.exec(nC&&nC.keys&&nC.keys.IE_PROTO||"");return e?"Symbol(src)_1."+e:""}();let nN=function e(e){return!!nz&&nz in e};var nA=Function.prototype.toString;let nT=function e(e){if(null!=e){try{return nA.call(e)}catch(e){}try{return e+""}catch(e){}}return""};var nO=/[\\^$.*+?()[\]{}|]/g,nM=/^\[object .+?Constructor\]$/,nL=Object.prototype,n$=Function.prototype.toString,nR=nL.hasOwnProperty,nH=RegExp("^"+n$.call(nR).replace(nO,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");let nB=function e(e){return!(!D(e)||nN(e))&&(n_(e)?nH:nM).test(nT(e))},nD=function e(e,t){return null==e?void 0:e[t]},nF=function e(e,t){var n=nD(e,t);return nB(n)?n:void 0},nW=function(){try{var e=nF(Object,"defineProperty");return e({},"",{}),e}catch(e){}}(),nq=function e(e,t,n){"__proto__"==t&&nW?nW(e,t,{configurable:!0,enumerable:!0,value:n,writable:!0}):e[t]=n},nV=function e(e,t,n,i){for(var r=-1,o=null==e?0:e.length;++r<o;){var a=e[r];t(i,a,n(a),e)}return i},nU=function e(e){return function(t,n,i){for(var r=-1,o=Object(t),a=i(t),l=a.length;l--;){var s=a[e?l:++r];if(!1===n(o[s],s,o))break}return t}}(),nZ=function e(e,t){for(var n=-1,i=Array(e);++n<e;)i[n]=t(n);return i};var nG="[object Arguments]";let nY=function e(e){return es(e)&&el(e)==nG};var nK=Object.prototype,nJ=nK.hasOwnProperty,nQ=nK.propertyIsEnumerable;let nX=nY(function(){return arguments}())?nY:function(e){return es(e)&&nJ.call(e,"callee")&&!nQ.call(e,"callee")},n0=Array.isArray,n1=function e(){return!1};var n2="object"==typeof exports&&exports&&!exports.nodeType&&exports,n3=n2&&"object"==typeof module&&module&&!module.nodeType&&module,n4=n3&&n3.exports===n2?q.Buffer:void 0;let n5=(n4?n4.isBuffer:void 0)||n1;var n6=9007199254740991,n7=/^(?:0|[1-9]\d*)$/;let n8=function e(e,t){var n=typeof e;return!!(t=null==t?n6:t)&&("number"==n||"symbol"!=n&&n7.test(e))&&e>-1&&e%1==0&&e<t};var n9=9007199254740991;let ie=function e(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=n9};var it="[object Arguments]",ii="[object Array]",ir="[object Boolean]",io="[object Date]",ia="[object Error]",il="[object Function]",is="[object Map]",id="[object Number]",ic="[object Object]",iu="[object RegExp]",ip="[object Set]",ih="[object String]",im="[object WeakMap]",ig="[object ArrayBuffer]",ix="[object DataView]",iv="[object Float64Array]",ib="[object Int8Array]",iy="[object Int16Array]",iw="[object Int32Array]",ik="[object Uint8Array]",ij="[object Uint8ClampedArray]",iI="[object Uint16Array]",iP="[object Uint32Array]",iS={};iS["[object Float32Array]"]=iS[iv]=iS[ib]=iS[iy]=iS[iw]=iS[ik]=iS[ij]=iS[iI]=iS[iP]=!0,iS[it]=iS[ii]=iS[ig]=iS[ir]=iS[ix]=iS[io]=iS[ia]=iS[il]=iS[is]=iS[id]=iS[ic]=iS[iu]=iS[ip]=iS[ih]=iS[im]=!1;let iE=function e(e){return es(e)&&ie(e.length)&&!!iS[el(e)]},i_=function e(e){return function(t){return e(t)}};var iC="object"==typeof exports&&exports&&!exports.nodeType&&exports,iz=iC&&"object"==typeof module&&module&&!module.nodeType&&module,iN=iz&&iz.exports===iC&&F.process;let iA=function(){try{var e=iz&&iz.require&&iz.require("util").types;if(e)return e;return iN&&iN.binding&&iN.binding("util")}catch(e){}}();var iT=iA&&iA.isTypedArray;let iO=iT?i_(iT):iE;var iM=Object.prototype.hasOwnProperty;let iL=function e(e,t){var n=n0(e),i=!n&&nX(e),r=!n&&!i&&n5(e),o=!n&&!i&&!r&&iO(e),a=n||i||r||o,l=a?nZ(e.length,String):[],s=l.length;for(var d in e)(t||iM.call(e,d))&&!(a&&("length"==d||r&&("offset"==d||"parent"==d)||o&&("buffer"==d||"byteLength"==d||"byteOffset"==d)||n8(d,s)))&&l.push(d);return l};var i$=Object.prototype;let iR=function e(e){var t=e&&e.constructor;return e===("function"==typeof t&&t.prototype||i$)},iH=function e(e,t){return function(n){return e(t(n))}}(Object.keys,Object);var iB=Object.prototype.hasOwnProperty;let iD=function e(e){if(!iR(e))return iH(e);var t=[];for(var n in Object(e))iB.call(e,n)&&"constructor"!=n&&t.push(n);return t},iF=function e(e){return null!=e&&ie(e.length)&&!n_(e)},iW=function e(e){return iF(e)?iL(e):iD(e)},iq=function e(e,t){return function(n,i){if(null==n)return n;if(!iF(n))return e(n,i);for(var r=n.length,o=t?r:-1,a=Object(n);(t?o--:++o<r)&&!1!==i(a[o],o,a););return n}}(function e(e,t){return e&&nU(e,t,iW)}),iV=function e(e,t,n,i){return iq(e,function(e,r,o){t(i,e,n(e),o)}),i},iU=function e(){this.__data__=[],this.size=0},iZ=function e(e,t){return e===t||e!=e&&t!=t},iG=function e(e,t){for(var n=e.length;n--;)if(iZ(e[n][0],t))return n;return -1};var iY=Array.prototype.splice;let iK=function e(e){var t=this.__data__,n=iG(t,e);return!(n<0)&&(n==t.length-1?t.pop():iY.call(t,n,1),--this.size,!0)},iJ=function e(e){var t=this.__data__,n=iG(t,e);return n<0?void 0:t[n][1]},iQ=function e(e){return iG(this.__data__,e)>-1},iX=function e(e,t){var n=this.__data__,i=iG(n,e);return i<0?(++this.size,n.push([e,t])):n[i][1]=t,this};function i0(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var i=e[t];this.set(i[0],i[1])}}i0.prototype.clear=iU,i0.prototype.delete=iK,i0.prototype.get=iJ,i0.prototype.has=iQ,i0.prototype.set=iX;let i1=i0,i2=function e(){this.__data__=new i1,this.size=0},i3=function e(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},i4=function e(e){return this.__data__.get(e)},i5=function e(e){return this.__data__.has(e)},i6=nF(q,"Map"),i7=nF(Object,"create"),i8=function e(){this.__data__=i7?i7(null):{},this.size=0},i9=function e(e){var t=this.has(e)&&delete this.__data__[e];return this.size-=t?1:0,t};var re="__lodash_hash_undefined__",rt=Object.prototype.hasOwnProperty;let rn=function e(e){var t=this.__data__;if(i7){var n=t[e];return n===re?void 0:n}return rt.call(t,e)?t[e]:void 0};var ri=Object.prototype.hasOwnProperty;let rr=function e(e){var t=this.__data__;return i7?void 0!==t[e]:ri.call(t,e)};var ro="__lodash_hash_undefined__";let ra=function e(e,t){var n=this.__data__;return this.size+=this.has(e)?0:1,n[e]=i7&&void 0===t?ro:t,this};function rl(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var i=e[t];this.set(i[0],i[1])}}rl.prototype.clear=i8,rl.prototype.delete=i9,rl.prototype.get=rn,rl.prototype.has=rr,rl.prototype.set=ra;let rs=rl,rd=function e(){this.size=0,this.__data__={hash:new rs,map:new(i6||i1),string:new rs}},rc=function e(e){var t=typeof e;return"string"==t||"number"==t||"symbol"==t||"boolean"==t?"__proto__"!==e:null===e},ru=function e(e,t){var n=e.__data__;return rc(t)?n["string"==typeof t?"string":"hash"]:n.map},rp=function e(e){var t=ru(this,e).delete(e);return this.size-=t?1:0,t},rh=function e(e){return ru(this,e).get(e)},rf=function e(e){return ru(this,e).has(e)},rm=function e(e,t){var n=ru(this,e),i=n.size;return n.set(e,t),this.size+=n.size==i?0:1,this};function rg(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t<n;){var i=e[t];this.set(i[0],i[1])}}rg.prototype.clear=rd,rg.prototype.delete=rp,rg.prototype.get=rh,rg.prototype.has=rf,rg.prototype.set=rm;let rx=rg;var rv=200;let rb=function e(e,t){var n=this.__data__;if(n instanceof i1){var i=n.__data__;if(!i6||i.length<rv-1)return i.push([e,t]),this.size=++n.size,this;n=this.__data__=new rx(i)}return n.set(e,t),this.size=n.size,this};function ry(e){var t=this.__data__=new i1(e);this.size=t.size}ry.prototype.clear=i2,ry.prototype.delete=i3,ry.prototype.get=i4,ry.prototype.has=i5,ry.prototype.set=rb;let rw=ry;var rk="__lodash_hash_undefined__";let rj=function e(e){return this.__data__.set(e,rk),this},rI=function e(e){return this.__data__.has(e)};function rP(e){var t=-1,n=null==e?0:e.length;for(this.__data__=new rx;++t<n;)this.add(e[t])}rP.prototype.add=rP.prototype.push=rj,rP.prototype.has=rI;let rS=rP,rE=function e(e,t){for(var n=-1,i=null==e?0:e.length;++n<i;)if(t(e[n],n,e))return!0;return!1},r_=function e(e,t){return e.has(t)};var rC=1,rz=2;let rN=function e(e,t,n,i,r,o){var a=n&rC,l=e.length,s=t.length;if(l!=s&&!(a&&s>l))return!1;var d=o.get(e),c=o.get(t);if(d&&c)return d==t&&c==e;var u=-1,p=!0,h=n&rz?new rS:void 0;for(o.set(e,t),o.set(t,e);++u<l;){var f=e[u],m=t[u];if(i)var g=a?i(m,f,u,t,e,o):i(f,m,u,e,t,o);if(void 0!==g){if(g)continue;p=!1;break}if(h){if(!rE(t,function(e,t){if(!r_(h,t)&&(f===e||r(f,e,n,i,o)))return h.push(t)})){p=!1;break}}else if(!(f===m||r(f,m,n,i,o))){p=!1;break}}return o.delete(e),o.delete(t),p},rA=q.Uint8Array,rT=function e(e){var t=-1,n=Array(e.size);return e.forEach(function(e,i){n[++t]=[i,e]}),n},rO=function e(e){var t=-1,n=Array(e.size);return e.forEach(function(e){n[++t]=e}),n};var rM=1,rL=2,r$="[object Boolean]",rR="[object Date]",rH="[object Error]",rB="[object Map]",rD="[object Number]",rF="[object RegExp]",rW="[object Set]",rq="[object String]",rV="[object Symbol]",rU="[object ArrayBuffer]",rZ="[object DataView]",rG=K?K.prototype:void 0,rY=rG?rG.valueOf:void 0;let rK=function e(e,t,n,i,r,o,a){switch(n){case rZ:if(e.byteLength!=t.byteLength||e.byteOffset!=t.byteOffset)break;e=e.buffer,t=t.buffer;case rU:if(e.byteLength!=t.byteLength||!o(new rA(e),new rA(t)))break;return!0;case r$:case rR:case rD:return iZ(+e,+t);case rH:return e.name==t.name&&e.message==t.message;case rF:case rq:return e==t+"";case rB:var l=rT;case rW:var s=i&rM;if(l||(l=rO),e.size!=t.size&&!s)break;var d=a.get(e);if(d)return d==t;i|=rL,a.set(e,t);var c=rN(l(e),l(t),i,r,o,a);return a.delete(e),c;case rV:if(rY)return rY.call(e)==rY.call(t)}return!1},rJ=function e(e,t){for(var n=-1,i=t.length,r=e.length;++n<i;)e[r+n]=t[n];return e},rQ=function e(e,t,n){var i=t(e);return n0(e)?i:rJ(i,n(e))},rX=function e(e,t){for(var n=-1,i=null==e?0:e.length,r=0,o=[];++n<i;){var a=e[n];t(a,n,e)&&(o[r++]=a)}return o},r0=function e(){return[]};var r1=Object.prototype.propertyIsEnumerable,r2=Object.getOwnPropertySymbols;let r3=r2?function(e){return null==e?[]:rX(r2(e=Object(e)),function(t){return r1.call(e,t)})}:r0,r4=function e(e){return rQ(e,iW,r3)};var r5=1,r6=Object.prototype.hasOwnProperty;let r7=function e(e,t,n,i,r,o){var a=n&r5,l=r4(e),s=l.length;if(s!=r4(t).length&&!a)return!1;for(var d=s;d--;){var c=l[d];if(!(a?c in t:r6.call(t,c)))return!1}var u=o.get(e),p=o.get(t);if(u&&p)return u==t&&p==e;var h=!0;o.set(e,t),o.set(t,e);for(var f=a;++d<s;){var m=e[c=l[d]],g=t[c];if(i)var x=a?i(g,m,c,t,e,o):i(m,g,c,e,t,o);if(!(void 0===x?m===g||r(m,g,n,i,o):x)){h=!1;break}f||(f="constructor"==c)}if(h&&!f){var v=e.constructor,b=t.constructor;v!=b&&"constructor"in e&&"constructor"in t&&!("function"==typeof v&&v instanceof v&&"function"==typeof b&&b instanceof b)&&(h=!1)}return o.delete(e),o.delete(t),h},r8=nF(q,"DataView"),r9=nF(q,"Promise"),oe=nF(q,"Set"),ot=nF(q,"WeakMap");var on="[object Map]",oi="[object Object]",or="[object Promise]",oo="[object Set]",oa="[object WeakMap]",ol="[object DataView]",os=nT(r8),od=nT(i6),oc=nT(r9),ou=nT(oe),op=nT(ot),oh=el;(r8&&oh(new r8(new ArrayBuffer(1)))!=ol||i6&&oh(new i6)!=on||r9&&oh(r9.resolve())!=or||oe&&oh(new oe)!=oo||ot&&oh(new ot)!=oa)&&(oh=function(e){var t=el(e),n=t==oi?e.constructor:void 0,i=n?nT(n):"";if(i)switch(i){case os:return ol;case od:return on;case oc:return or;case ou:return oo;case op:return oa}return t});let of=oh;var om=1,og="[object Arguments]",ox="[object Array]",ov="[object Object]",ob=Object.prototype.hasOwnProperty;let oy=function e(e,t,n,i,r,o){var a=n0(e),l=n0(t),s=a?ox:of(e),d=l?ox:of(t);s=s==og?ov:s,d=d==og?ov:d;var c=s==ov,u=d==ov,p=s==d;if(p&&n5(e)){if(!n5(t))return!1;a=!0,c=!1}if(p&&!c)return o||(o=new rw),a||iO(e)?rN(e,t,n,i,r,o):rK(e,t,s,n,i,r,o);if(!(n&om)){var h=c&&ob.call(e,"__wrapped__"),f=u&&ob.call(t,"__wrapped__");if(h||f){var m=h?e.value():e,g=f?t.value():t;return o||(o=new rw),r(m,g,n,i,o)}}return!!p&&(o||(o=new rw),r7(e,t,n,i,r,o))};function ow(e,t,n,i,r){return e===t||(null!=e&&null!=t&&(es(e)||es(t))?oy(e,t,n,i,ow,r):e!=e&&t!=t)}let ok=ow;var oj=1,oI=2;let oP=function e(e,t,n,i){var r=n.length,o=r,a=!i;if(null==e)return!o;for(e=Object(e);r--;){var l=n[r];if(a&&l[2]?l[1]!==e[l[0]]:!(l[0]in e))return!1}for(;++r<o;){var s=(l=n[r])[0],d=e[s],c=l[1];if(a&&l[2]){if(void 0===d&&!(s in e))return!1}else{var u=new rw;if(i)var p=i(d,c,s,e,t,u);if(!(void 0===p?ok(c,d,oj|oI,i,u):p))return!1}}return!0},oS=function e(e){return e==e&&!D(e)},oE=function e(e){for(var t=iW(e),n=t.length;n--;){var i=t[n],r=e[i];t[n]=[i,r,oS(r)]}return t},o_=function e(e,t){return function(n){return null!=n&&n[e]===t&&(void 0!==t||e in Object(n))}},oC=function e(e){var t=oE(e);return 1==t.length&&t[0][2]?o_(t[0][0],t[0][1]):function(n){return n===e||oP(n,e,t)}};var oz=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,oN=/^\w*$/;let oA=function e(e,t){if(n0(e))return!1;var n=typeof e;return!!("number"==n||"symbol"==n||"boolean"==n||null==e||ec(e))||oN.test(e)||!oz.test(e)||null!=t&&e in Object(t)};var oT="Expected a function";function oO(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw TypeError(oT);var n=function(){var i=arguments,r=t?t.apply(this,i):i[0],o=n.cache;if(o.has(r))return o.get(r);var a=e.apply(this,i);return n.cache=o.set(r,a)||o,a};return n.cache=new(oO.Cache||rx),n}oO.Cache=rx;let oM=oO;var oL=500,o$=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,oR=/\\(\\)?/g;let oH=function e(e){var t=oM(e,function(e){return n.size===oL&&n.clear(),e}),n=t.cache;return t}(function(e){var t=[];return 46===e.charCodeAt(0)&&t.push(""),e.replace(o$,function(e,n,i,r){t.push(i?r.replace(oR,"$1"):n||e)}),t}),oB=function e(e,t){for(var n=-1,i=null==e?0:e.length,r=Array(i);++n<i;)r[n]=t(e[n],n,e);return r};var oD=1/0,oF=K?K.prototype:void 0,oW=oF?oF.toString:void 0;function oq(e){if("string"==typeof e)return e;if(n0(e))return oB(e,oq)+"";if(ec(e))return oW?oW.call(e):"";var t=e+"";return"0"==t&&1/e==-oD?"-0":t}let oV=oq,oU=function e(e){return null==e?"":oV(e)},oZ=function e(e,t){return n0(e)?e:oA(e,t)?[e]:oH(oU(e))};var oG=1/0;let oY=function e(e){if("string"==typeof e||ec(e))return e;var t=e+"";return"0"==t&&1/e==-oG?"-0":t},oK=function e(e,t){t=oZ(t,e);for(var n=0,i=t.length;null!=e&&n<i;)e=e[oY(t[n++])];return n&&n==i?e:void 0},oJ=function e(e,t,n){var i=null==e?void 0:oK(e,t);return void 0===i?n:i},oQ=function e(e,t){return null!=e&&t in Object(e)},oX=function e(e,t,n){t=oZ(t,e);for(var i=-1,r=t.length,o=!1;++i<r;){var a=oY(t[i]);if(!(o=null!=e&&n(e,a)))break;e=e[a]}return o||++i!=r?o:!!(r=null==e?0:e.length)&&ie(r)&&n8(a,r)&&(n0(e)||nX(e))},o0=function e(e,t){return null!=e&&oX(e,t,oQ)};var o1=1,o2=2;let o3=function e(e,t){return oA(e)&&oS(t)?o_(oY(e),t):function(n){var i=oJ(n,e);return void 0===i&&i===t?o0(n,e):ok(t,i,o1|o2)}},o4=function e(e){return e},o5=function e(e){return function(t){return null==t?void 0:t[e]}},o6=function e(e){return function(t){return oK(t,e)}},o7=function e(e){return oA(e)?o5(oY(e)):o6(e)},o8=function e(e){return"function"==typeof e?e:null==e?o4:"object"==typeof e?n0(e)?o3(e[0],e[1]):oC(e):o7(e)},o9=function e(e,t){return function(n,i){var r=n0(n)?nV:iV,o=t?t():{};return r(n,e,o8(i,2),o)}};var ae=Object.prototype.hasOwnProperty;let at=o9(function(e,t,n){ae.call(e,n)?e[n].push(t):nq(e,n,[t])}),an=()=>{};var ai=e=>(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 32 32",...e,children:(0,_.jsx)("path",{fill:"currentColor",d:"M24 9.4 22.6 8 16 14.6 9.4 8 8 9.4l6.6 6.6L8 22.6 9.4 24l6.6-6.6 6.6 6.6 1.4-1.4-6.6-6.6L24 9.4z"})}),ar=e=>(0,_.jsx)("svg",{width:32,height:32,viewBox:"0 0 24 24",...e,children:(0,_.jsxs)("g",{fill:"none",stroke:"var(--rp-c-brand)",strokeLinecap:"round",strokeWidth:2,children:[(0,_.jsx)("path",{strokeDasharray:60,strokeDashoffset:60,strokeOpacity:.3,d:"M12 3a9 9 0 1 1 0 18 9 9 0 0 1 0-18Z",children:(0,_.jsx)("animate",{fill:"freeze",attributeName:"stroke-dashoffset",dur:"1.3s",values:"60;0"})}),(0,_.jsxs)("path",{strokeDasharray:15,strokeDashoffset:15,d:"M12 3a9 9 0 0 1 9 9",children:[(0,_.jsx)("animate",{fill:"freeze",attributeName:"stroke-dashoffset",dur:"0.3s",values:"15;0"}),(0,_.jsx)("animateTransform",{attributeName:"transform",dur:"1.5s",repeatCount:"indefinite",type:"rotate",values:"0 12 12;360 12 12"})]})]})}),ao=e=>(0,_.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:48,height:48,fill:"none",viewBox:"0 0 48 48",...e,children:[(0,_.jsx)("path",{stroke:"currentColor",strokeWidth:4,d:"M24 5v6m7 1 4-4m-18 4-4-4m27 33H8a2 2 0 0 1-2-2v-8.46a2 2 0 0 1 .272-1.007l6.15-10.54A2 2 0 0 1 14.148 18H33.85a2 2 0 0 1 1.728.992l6.149 10.541A2 2 0 0 1 42 30.541V39a2 2 0 0 1-2 2Z"}),(0,_.jsx)("path",{stroke:"currentColor",strokeWidth:4,d:"M41.5 30H28s-1 3-4 3-4-3-4-3H6.5"})]}),aa=e=>(0,_.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 32 32",...e,children:[(0,_.jsx)("circle",{cx:22,cy:24,r:2,fill:"currentColor"}),(0,_.jsx)("path",{fill:"none",d:"M22 28a4 4 0 1 1 4-4 4.004 4.004 0 0 1-4 4Zm0-6a2 2 0 1 0 2 2 2.003 2.003 0 0 0-2-2Z"}),(0,_.jsx)("path",{fill:"currentColor",d:"M29.777 23.479A8.64 8.64 0 0 0 22 18a8.64 8.64 0 0 0-7.777 5.479L14 24l.223.521A8.64 8.64 0 0 0 22 30a8.64 8.64 0 0 0 7.777-5.479L30 24ZM22 28a4 4 0 1 1 4-4 4.005 4.005 0 0 1-4 4Z"}),(0,_.jsx)("path",{fill:"currentColor",d:"M12 28H8V4h8v6a2.006 2.006 0 0 0 2 2h6v4h2v-6a.91.91 0 0 0-.3-.7l-7-7A.909.909 0 0 0 18 2H8a2.006 2.006 0 0 0-2 2v24a2.006 2.006 0 0 0 2 2h4Zm6-23.6 5.6 5.6H18Z"})]}),al=e=>(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 32 32",...e,children:(0,_.jsx)("path",{fill:"currentColor",d:"M13.414 17.586 18 22.172V8H8V6h10a2.002 2.002 0 0 1 2 2v14.172l4.586-4.586L26 19l-7 7-7-7Z"})}),as=e=>(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 32 32",...e,children:(0,_.jsx)("path",{fill:"currentColor",d:"M28 12v-2h-6V4h-2v6h-8V4h-2v6H4v2h6v8H4v2h6v6h2v-6h8v6h2v-6h6v-2h-6v-8Zm-8 8h-8v-8h8Z"})}),ad=e=>(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",...e,children:(0,_.jsx)("path",{fill:"currentColor",d:"M4 4a2 2 0 0 1 2-2h8a1 1 0 0 1 .707.293l5 5A1 1 0 0 1 20 8v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4zm13.586 4L14 4.414V8h3.586zM12 4H6v16h12V10h-5a1 1 0 0 1-1-1V4z"})}),ac=e=>(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",...e,children:(0,_.jsx)("path",{fill:"currentColor",d:"M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"})}),au=e=>(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",...e,children:(0,_.jsx)("path",{fill:"currentColor",d:"m21.94 13.11-1.05-3.22c0-.03-.01-.06-.02-.09l-2.11-6.48a.859.859 0 0 0-.8-.57c-.36 0-.68.25-.79.58l-2 6.17H8.84L6.83 3.33a.851.851 0 0 0-.79-.58c-.37 0-.69.25-.8.58L3.13 9.82v.01l-1.07 3.28c-.16.5.01 1.04.44 1.34l9.22 6.71c.17.12.39.12.56-.01l9.22-6.7c.43-.3.6-.84.44-1.34M8.15 10.45l2.57 7.91-6.17-7.91m8.73 7.92 2.47-7.59.1-.33h3.61l-5.59 7.16m4.1-13.67 1.81 5.56h-3.62m-1.3.95-1.79 5.51L12 19.24l-2.86-8.79M6.03 3.94 7.84 9.5H4.23m-1.18 4.19c-.09-.07-.13-.19-.09-.29l.79-2.43 5.82 7.45m11.38-4.73-6.51 4.73.02-.03 5.79-7.42.79 2.43c.04.1 0 .22-.09.29"})}),ap=Object.defineProperty,ah=Object.defineProperties,af=Object.getOwnPropertyDescriptors,am=Object.getOwnPropertySymbols,ag=Object.prototype.hasOwnProperty,ax=Object.prototype.propertyIsEnumerable,av=(e,t,n)=>t in e?ap(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,ab=(e,t)=>{for(var n in t||(t={}))ag.call(t,n)&&av(e,n,t[n]);if(am)for(var n of am(t))ax.call(t,n)&&av(e,n,t[n]);return e},ay=(e,t)=>ah(e,af(t)),aw=(e,t)=>{var n={};for(var i in e)ag.call(e,i)&&0>t.indexOf(i)&&(n[i]=e[i]);if(null!=e&&am)for(var i of am(e))0>t.indexOf(i)&&ax.call(e,i)&&(n[i]=e[i]);return n},ak=(e,t,n)=>{if(!t.has(e))throw TypeError("Cannot "+n)},aj=(e,t,n)=>(ak(e,t,"read from private field"),n?n.call(e):t.get(e)),aI=(e,t,n)=>{if(t.has(e))throw TypeError("Cannot add the same private member more than once");t instanceof WeakSet?t.add(e):t.set(e,n)},aP=(e,t,n,i)=>(ak(e,t,"write to private field"),i?i.call(e,n):t.set(e,n),n),aS=(e,t,n)=>(ak(e,t,"access private method"),n),aE=(e,t,n)=>new Promise((i,r)=>{var o=e=>{try{l(n.next(e))}catch(e){r(e)}},a=e=>{try{l(n.throw(e))}catch(e){r(e)}},l=e=>e.done?i(e.value):Promise.resolve(e.value).then(o,a);l((n=n.apply(e,t)).next())});function a_(){let{siteData:e,page:t}=(0,S.Vi)(),n=e.lang,i=e.multiVersion.default;if(n&&"undefined"!=typeof window&&location.pathname.includes(`/${n}/`)){let e=location.pathname.replace(`/${n}/`,"/");return window.location.replace(e),(0,_.jsx)(_.Fragment,{})}let r="/";return i&&t.version!==i&&(r+=`${t.version}/`),n&&t.lang!==n&&(r+=`${t.lang}/`),(0,_.jsxs)("div",{className:"m-auto mt-50 p-16 sm:p-8 sm:pt-24 sm:pb-40 text-center flex-center flex-col",children:[(0,_.jsx)("p",{className:"text-6xl font-semibold",children:"404"}),(0,_.jsx)("h1",{className:"leading-5 pt-3 text-xl font-bold",children:"PAGE NOT FOUND"}),(0,_.jsx)("div",{style:{height:"1px"},className:"mt-6 mx-auto mb-4.5 w-16 bg-gray-light-1"}),(0,_.jsx)("div",{className:"pt-5",children:(0,_.jsx)("a",{className:"py-2 px-4 rounded-2xl inline-block border-solid border-brand text-brand font-medium hover:border-brand-dark hover:text-brand-dark transition-colors duration-300",href:(0,E.pJ)(r),"aria-label":"go to home",children:"Take me home"})})]})}function aC(){var e,t,n;let i=(0,S.Vi)(),{page:{lang:r}}=i,o=null!=(t=null==(e=null==i?void 0:i.siteData)?void 0:e.themeConfig)?t:{},a=null!=(n=i.siteData.lang)?n:"",l=null==o?void 0:o.locales;return l&&0!==l.length?ay(ab({},l.find(e=>e.lang===r)),{langRoutePrefix:r===a?"/":r}):{nav:o.nav,sidebar:o.sidebar,prevPageText:o.prevPageText,nextPageText:o.nextPageText,sourceCodeText:o.sourceCodeText,searchPlaceholderText:o.searchPlaceholderText,searchNoResultsText:o.searchNoResultsText,searchSuggestedQueryText:o.searchSuggestedQueryText}}var az=(e,t)=>{let n;for(let i of Object.keys(e)){if(n&&n!==i)continue;if((0,E.pV)((0,E.pJ)(i),t))return{group:"Documentation",items:e[i]};let r=e[i].find(r=>{let o=r=>{if(!t.startsWith((0,E.pJ)(i))){for(let r of Object.keys(e))if(r!==i&&t.startsWith((0,B.mi)((0,E.pJ)(r))))return n=r,!1}let a=()=>"link"in r&&""!==r.link&&(0,E.pV)((0,E.pJ)(r.link),t);if("items"in r)return!!a()||r.items.some(e=>o(e));return a()};return o(r)});if(r){let t=e[i];return{group:"text"in r&&r.text||"",items:t}}}return{group:"Documentation",items:[]}};function aN(){var e;let t=aC(),n=null!=(e=t.sidebar)?e:{},{pathname:i}=(0,N.TH)(),r=decodeURIComponent(i),[o,a]=(0,z.useState)(az(n,r));return(0,z.useEffect)(()=>{a(az(n,r))},[r,t.lang]),o}function aA(){let{pathname:e}=(0,N.TH)(),{items:t}=aN(),n=[],i=e=>{"items"in e?(e.link&&n.push({text:e.text,link:e.link}),e.items.forEach(e=>{"dividerType"in e||i(e)})):n.push(e)};t.forEach(e=>!("dividerType"in e)&&i(e));let r=n.findIndex(t=>(0,E.pV)((0,E.pJ)(t.link),e)),o=n[r-1]||null;return{prevPage:o,nextPage:n[r+1]||null}}function aT(){var e,t,n;let{siteData:i,page:r}=(0,S.Vi)(),o=null!=(n=null!=(t=aC().editLink)?t:null==(e=i.themeConfig)?void 0:e.editLink)?n:{};if(!o.docRepoBaseUrl||!o.text)return null;let{docRepoBaseUrl:a}=o;!a.endsWith("/")&&(a+="/");let l=r._relativePath.replace(/\\/g,"/"),s=`${a}${l}`;return{text:o.text,link:s}}function aO(){var e;let{siteData:{themeConfig:t},page:{frontmatter:n={}}}=(0,S.Vi)(),i=(null==(e=null==n?void 0:n.navbar)||e)&&(null==t?void 0:t.hideNavbar)!=="always",[r,o]=(0,z.useState)(i);return[r,o]}function aM(){var e;let{siteData:{themeConfig:t}}=(0,S.Vi)(),n=null!=(e=t.hideNavbar)?e:"never",[i,r]=(0,z.useState)(!1),{pathname:o}=(0,N.TH)(),a=(0,z.useRef)(0);return"never"!==n&&("always"===n||((0,z.useEffect)(()=>{r(!1);let e=ek(()=>{let{scrollTop:e}=document.documentElement;if(e!==a.current)r(a.current>0&&e-a.current>0),a.current=e<=0?0:e},200);return window.addEventListener("mousewheel",e),window.addEventListener("touchmove",e),()=>{window.removeEventListener("mousewheel",e),window.removeEventListener("touchmove",e)}},[o]),i))}var aL=72;function a$(e,t=aL){let n=Number.parseInt(window.getComputedStyle(e).paddingTop,10);return Math.round(window.scrollY+e.getBoundingClientRect().top-t-n)}function aR(e,t,n=aL){window.scrollTo(ab({left:0,top:a$(e,n)},t?{behavior:"smooth"}:{}))}function aH(){function e(t,n,i=!1){let r=null;try{r=t.classList.contains("header-anchor")?t:document.getElementById(decodeURIComponent(n.slice(1)))}catch(e){console.warn(e)}r&&aR(r,i)}window.addEventListener("click",t=>{let n=t.target.closest("a");if(n){let{origin:i,hash:r,target:o,pathname:a,search:l}=n,s=window.location;r&&"_blank"!==o&&i===s.origin&&(a===s.pathname&&l===s.search&&r&&n.classList.contains("header-anchor")?(t.preventDefault(),history.pushState(null,"",r),e(n,r,!0),window.dispatchEvent(new Event("hashchange"))):window.addEventListener("RspressReloadContent",()=>{location.hash.length>1&&aR(document.getElementById(location.hash.slice(1)),!1)}))}},{capture:!0}),window.addEventListener("hashchange",e=>{e.preventDefault()})}function aB(){function e(){return document.documentElement.scrollTop+window.innerHeight>=document.documentElement.scrollHeight}let t=document.getElementById("aside-container"),n=Array.from(document.querySelectorAll(".rspress-doc .header-anchor")).filter(e=>{var t;return(null==(t=e.parentElement)?void 0:t.tagName)!=="H1"});if(!t||!n.length)return;let i=null;if(!Array.from((null==t?void 0:t.getElementsByTagName("a"))||[]).map(e=>decodeURIComponent(e.hash)).length)return;let r=(e,n)=>{if(e[n]){let r=e[n].getAttribute("href"),o=null==t?void 0:t.querySelector(`a[href="#${null==r?void 0:r.slice(1)}"]`);o&&(i&&i.classList.remove("aside-active"),(i=o).classList.add("aside-active"))}},o=()=>{if(e())r(n,n.length-1);else for(let e=0;e<n.length;e++){let t=n[e],i=n[e+1],o=Math.ceil(window.scrollY),a=a$(t.parentElement);if(0===e&&o<a||0===o){r(n,0);break}if(!i){r(n,e);break}let l=a$(i.parentElement);if(o>=a&&o<l){r(n,e);break}}},a=ek(o,200);return window.addEventListener("scroll",a),o(),()=>{i&&i.classList.remove("aside-active"),window.removeEventListener("scroll",a)}}function aD(){if(!!(0,B._f)())aH()}function aF(){let e=(0,S.Jr)(),t=(0,S.aw)(),n=(0,S.Vi)(),i=n.siteData.lang,r=n.siteData.multiVersion.default;return{normalizeLinkHref:n=>{let o=n;if((i||r)&&!(0,B.xf)(o)&&!o.startsWith("#")){let n=(o=(0,E.E9)(o)).split("/").filter(Boolean),a="",l="",s="";return r&&(t!==r?(a=t,n[0]===t&&n.shift()):n[0]===r&&n.shift()),i&&(e!==i?(l=e,n[0]===e&&n.shift()):n[0]===i&&n.shift()),s=n.join("/"),(0,E.AP)((0,E.pJ)([a,l,s].filter(Boolean).join("/")))}return o}}}var aW="default",aq=/[\u3131-\u314e|\u314f-\u3163|\uac00-\ud7a3]/u,aV=/[\u0400-\u04FF]/u;function aU(e,t){let n=e[t],i=t,r=[n];for(;n&&n.depth>2;){let t=!1;for(let o=i-1;o>=0;o--){let a=e[o];if(a.depth>1&&a.depth===n.depth-1){n=a,i=o,r.unshift(n),t=!0;break}}if(!t)break}return r}function aZ(e){let t=e.toString().toLowerCase().normalize("NFD"),n=t,i=t.replace(/[\u0300-\u036f]/g,"");return aV.test(String(e))?n.normalize("NFC"):aq.test(String(e))?i.normalize("NFC"):i}function aG(e){return e.replace(/https?:\/\/[^/]+/,"")}function aY(e){return e.charCodeAt(0)>255?3:1}var aK=e=>e.map(e=>"string"==typeof e?{value:e,label:e}:e);function aJ(e,t,n){let i="",r=0,o=e.length;for(let a=0;a<o&&!((r+=aY(e.charAt(a)))>t+n);a++){;r>t&&(i+=e.charAt(a))}return i}function aQ(e,t){let n=0,i=0;for(let r=0;r<e.length&&!(i>=t);r++){;i+=aY(e.charAt(r)),n++}return n}function aX(e,t,n){return aJ(e.slice(t),0,n)}function a0(e){let t=0;for(let n=0;n<e.length;n++)t+=aY(e.charAt(n));return t}var a1=/[\u3131-\u314e|\u314f-\u3163|\uac00-\ud7a3]|[\u4E00-\u9FCC\u3400-\u4DB5\uFA0E\uFA0F\uFA11\uFA13\uFA14\uFA1F\uFA21\uFA23\uFA24\uFA27-\uFA29]|[\ud840-\ud868][\udc00-\udfff]|\ud869[\udc00-\uded6\udf00-\udfff]|[\ud86a-\ud86c][\udc00-\udfff]|\ud86d[\udc00-\udf34\udf40-\udfff]|\ud86e[\udc00-\udc1d]|[\u3041-\u3096]|[\u30A1-\u30FA]/giu,a2=/[\u0400-\u04FF]/g;function a3(e,t){let n=[],i=null;do(i=t.exec(e))&&n.push(i[0]);while(i);return n}var a4=class{constructor(){aI(this,a),aI(this,i,void 0),aI(this,r,void 0),aI(this,o,void 0)}init(e){return aE(this,null,function*(){let{currentLang:t,currentVersion:n}=e,s="remote"!==e.mode&&e.versioned,d=(yield aS(this,a,l).call(this,t,s?n:"")).map(e=>ay(ab({},e),{normalizedContent:aZ(e.content),headers:e.toc.map(e=>aZ(e.text)).join(" "),normalizedTitle:aZ(e.title)})),c={tokenize:"full",document:{id:"id",store:!0,index:["normalizedTitle","headers","normalizedContent"]},cache:100};for(let e of(aP(this,i,new eN(c)),aP(this,r,new eN(ay(ab({},c),{tokenize:e=>a3(e,a1)}))),aP(this,o,new eN(ay(ab({},c),{tokenize:e=>a3(e,a2)}))),d))aj(this,i).add(e),aj(this,r).add(e),aj(this,o).add(e)})}search(e){return aE(this,null,function*(){var t,n;let{keyword:a,limit:l}=e,s={enrich:!0,limit:l,index:["normalizedTitle","headers","normalizedContent"]},d=yield Promise.all([null==(t=aj(this,i))?void 0:t.search(a,l,s),null==(n=aj(this,r))?void 0:n.search(a,l,s),aj(this,o).search(a,l,s)]),c=[],u=new Set;function p(e){for(let t of e)t.result.forEach(e=>{let t=e.id;if(!u.has(t))u.add(t),c.push(e.doc)})}return d.forEach(e=>{p(e)}),[{index:aW,hits:c}]})}};function a5(e){return Object.entries(e).map(e=>e.map(encodeURIComponent).join("=")).join("&")}i=new WeakMap,r=new WeakMap,o=new WeakMap,a=new WeakSet,l=function(e,t){return aE(this,null,function*(){let i=`${t}###${e}`,r=t?`.${t.replace(".","_")}`:"",o=e?`.${e}`:"";return(yield fetch(`${(0,B.Qj)(n.p)}/static/${B.t6}${r}${o}.${eH[i]}.json`)).json()})};var a6=class{constructor(){aI(this,s,void 0)}init(e){return aE(this,null,function*(){aP(this,s,e)})}search(e){return aE(this,null,function*(){let{apiUrl:t,searchIndexes:n}=aj(this,s),{keyword:i,limit:r}=e,o=a5({keyword:i,limit:r.toString(),searchIndexes:(null==n?void 0:n.map(e=>"string"==typeof e?e:e.value).join(","))||"",lang:aj(this,s).currentLang});try{return(yield fetch(`${t}?${o}`)).json()}catch(e){return console.error(e),[]}})}};s=new WeakMap;var a7=(e=>(e.Default="default",e.Custom="custom",e))(a7||{}),a8=100,a9=class{constructor(e){if(aI(this,p),aI(this,f),aI(this,g),aI(this,v),aI(this,y),aI(this,k),aI(this,d,void 0),aI(this,c,aW),aI(this,u,void 0),aP(this,d,e),aP(this,c,e.indexName),"remote"===e.mode)aP(this,u,new a6);else aP(this,u,new a4)}init(){return aE(this,null,function*(){var e;yield null==(e=aj(this,u))?void 0:e.init(aj(this,d))})}match(e,t=7){return aE(this,null,function*(){var n;let i=yield null==(n=aj(this,u))?void 0:n.search({keyword:e,limit:t}),r=aZ(e),o=(null==i?void 0:i.find(e=>aS(this,k,j).call(this,e.index)))||{index:aW,renderType:"default",hits:[]};return[{group:aj(this,c),renderType:"default",result:aS(this,p,h).call(this,r,o)},...((null==i?void 0:i.filter(e=>!aS(this,k,j).call(this,e.index)))||[]).map(e=>({group:e.index,renderType:"default",result:aS(this,p,h).call(this,r,e)}))]})}};function le(){var e;let{siteData:t,page:n}=(0,S.Vi)(),[i,r]=(0,z.useState)(!1),{sidebar:o}=aC(),a=e=>az(o,e).group,l=(0,z.useRef)(null);return(0,z.useEffect)(()=>{(function e(){return aE(this,null,function*(){if(!i){let e=new a9(ay(ab({},t.search),{mode:"local",currentLang:n.lang,currentVersion:n.version,extractGroupName:a}));l.current=e,yield e.init(),r(!0)}})})()},[]),{initialized:i,search:null==(e=l.current)?void 0:e.match.bind(l.current)}}function lt(){let{siteData:e,page:t}=(0,S.Vi)(),n=e.lang||"",i=Object.values(e.themeConfig.locales||{}).map(e=>e.lang)||[],r=t.lang;(0,z.useEffect)(()=>{var t;let o;if("auto"!==(null!=(t=e.themeConfig.localeRedirect)?t:"auto")||!n||/bot|spider|crawl|lighthouse/i.test(window.navigator.userAgent))return;let{pathname:a,search:l}=window.location,s=(0,E.E9)(a),d="rspress-visited";if(localStorage.getItem(d))return;localStorage.setItem(d,"1");let c=window.navigator.language.split("-")[0];if(!!i.includes(c)&&c!==r)(o=c===n?a.replace(`/${r}`,""):r===n?(0,E.pJ)(`/${c}${s}`):a.replace(`/${r}`,`/${c}`))&&window.location.replace(o+l)},[])}d=new WeakMap,c=new WeakMap,u=new WeakMap,p=new WeakSet,h=function(e,t){let n=[];return null==t||t.hits.forEach(t=>{aS(this,f,m).call(this,t,e,n);let i=aS(this,g,x).call(this,t,e,n);aS(this,v,b).call(this,t,e,n,i)}),n},f=new WeakSet,m=function(e,t,n){let{title:i=""}=e,r=aZ(i);return!!r.includes(t)&&(n.push({type:"title",title:i,header:i,link:`${e.domain}${(0,E.AP)(e.routePath)}`,query:t,highlightInfoList:[{start:r.indexOf(t),length:a0(t)}],group:aj(this,d).extractGroupName(e.routePath)}),!0)},g=new WeakSet,x=function(e,t,n){let i=new WeakSet,{toc:r=[],domain:o="",title:a=""}=e;for(let[l,s]of r.entries())if(aZ(s.text).includes(t)){let c=aU(r,l).map(e=>e.text).join(" > "),u=aZ(c).indexOf(t),p=`${a} > `;n.push({type:"header",title:e.title,header:`${p}${c}`,highlightInfoList:[{start:u+p.length,length:a0(t)}],link:`${o}${(0,E.AP)(e.routePath)}#${s.id}`,query:t,group:aj(this,d).extractGroupName(e.routePath)}),i.add(s)}return i},v=new WeakSet,b=function(e,t,n,i){var r,o,a;let{content:l,toc:s,domain:c}=e;if(!l.length)return;let u=aZ(l),p=u.indexOf(t),h=s.map(e=>e.charIndex),f=e=>s[h.findIndex((t,n)=>{if(!(n<s.length-1))return t<e;{let i=h[n+1];if(t<=e&&i>=e)return!0}return!1})],m=e=>e&&(null==i?void 0:i.has(e));if(-1===p){let i=null==(r=e._matchesPosition)?void 0:r.content;if(!(null==i?void 0:i.length))return;let a=e._matchesPosition.content[0].start,s=f(a);if(m(s))return;let u=aQ(l,a),p=aQ(l,a+a8),h=l.slice(u,p),g=e._matchesPosition.content.filter(e=>e.start>=a&&e.start+e.length<=a+a8).map(e=>({start:aQ(l,e.start)-u+3,length:e.length}));n.push({type:"content",title:e.title,header:null!=(o=null==s?void 0:s.text)?o:e.title,link:`${c}${(0,E.AP)(e.routePath)}${s?`#${s.id}`:""}`,query:t,highlightInfoList:g,group:aj(this,d).extractGroupName(e.routePath),statement:`...${h}...`});return}for(;-1!==p;){let r=f(p),o=l.slice(0,p).lastIndexOf("\n");o=-1===o?0:o;let s=l.indexOf("\n\n",p+t.length),h=l.slice(o,s);h.length>a8&&(h=aS(this,y,w).call(this,h,t));let g=aZ(h).indexOf(t),x=[{start:g,length:a0(t)}];!m(r)&&(n.push({type:"content",title:e.title,header:null!=(a=null==r?void 0:r.text)?a:e.title,statement:h,highlightInfoList:x,link:`${c}${(0,E.AP)(e.routePath)}${r?`#${r.id}`:""}`,query:t,group:aj(this,d).extractGroupName(e.routePath)}),r&&(null==i||i.add(r))),p=u.indexOf(t,p+h.length-g)}},y=new WeakSet,w=function(e,t){let n=aZ(e).indexOf(aZ(t)),i=Math.floor((a8-t.length)/2),r=e.slice(0,n);r.length>i&&(r=`...${e.slice(n-i+3,n)}`);let o=e.slice(n+t.length);return o.length>i&&(o=`${e.slice(n+t.length,n+i-3)}...`),r+t+o},k=new WeakSet,j=function(e){return e===aj(this,c)||e===aW};var ln=e=>{let t=(0,z.useRef)(e);return t.current=e,(0,z.useRef)((...e)=>t.current(...e)).current},li=e=>{let[t,n]=(0,z.useState)(()=>"undefined"!=typeof window&&window.matchMedia(e).matches);return(0,z.useEffect)(()=>{let t=window.matchMedia(e),i=e=>n(e.matches);return t.addEventListener("change",i),()=>t.removeEventListener("change",i)},[e]),t},lr=(e,t=null)=>{let[n,i]=(0,z.useState)(()=>{var n;return"undefined"==typeof window?t:null!=(n=localStorage.getItem(e))?n:t}),r=(0,z.useCallback)(t=>{i(n=>{let i="function"==typeof t?t(n):t;return null==i?localStorage.removeItem(e):localStorage.setItem(e,i),i})},[e]);return(0,z.useEffect)(()=>{let n=n=>{var r;n.key===e&&i(null!=(r=localStorage.getItem(e))?r:t)};return window.addEventListener("storage",n),()=>{window.removeEventListener("storage",n)}},[e,t]),[n,r]},lo=e=>["light","dark","auto"].includes(e)?e:"auto",la=!1===T.Z.themeConfig.darkMode,ll=()=>{let e=li("(prefers-color-scheme: dark)"),[t,n]=lr(B.rp),i=ln(()=>{if(la)return"light";let n=lo(t);return"auto"===n?e?"dark":"light":n}),[r,o]=(0,z.useState)(()=>{var e;if("undefined"==typeof window)return"light";let t=null!=(e=window.RSPRESS_THEME)?e:window.MODERN_THEME;return t?"dark"===t?"dark":"light":i()}),a=(0,z.useCallback)((e,t=e)=>{if(!la)o(e),n(t),s(!0)},[]);(0,z.useEffect)(()=>{document.documentElement.classList.toggle("dark","dark"===r),document.documentElement.style.colorScheme=r},[r]);let[l,s]=(0,z.useState)(!0);return(0,z.useEffect)(()=>{s(!1)},[l]),(0,z.useEffect)(()=>{if(!l)a(i(),lo(t))},[t]),(0,z.useEffect)(()=>{if(!l)a(e?"dark":"light","auto")},[e]),[r,a]};function ls(e,t,n=!1){return!!t&&(n?(0,E.pV)(e,t):(0,E.pV)(e,t)||e.startsWith(t))}function ld(){return window.innerWidth<=1024}function lc(e){return e?eU(e)?e:eq(e)?eB(e):e:""}var lu=/`(.*?)`/g,lp=RegExp("\\*{2}(?!\\*)(.*?)(?<!\\*)\\*{2}","g"),lh=RegExp("\\*(?!\\*)(.*?)(?<!\\*)\\*","g");function lf(e){return lc(e.replace(/`[^`]+`/g,e=>e.replace(/</g,"&lt;")).replace(lp,"<strong>$1</strong>").replace(lh,"<em>$1</em>").replace(lu,"<code>$1</code>"))}function lm(e){return e.replace(lp,"$1").replace(lh,"$1").replace(lu,"$1")}function lg(e){var t;let{headers:n}=e,i=n.length>0,r=(null==(t=n[0])?void 0:t.depth)||2,o=aM();(0,z.useEffect)(()=>{let e;setTimeout(()=>{e=aB()},100);let t=decodeURIComponent(window.location.hash);if(t){let e=document.getElementById(t.slice(1));e&&aR(e,!1,o?0:aL)}else window.scrollTo(0,0);return()=>{e&&e()}},[n]);let a=e=>(0,_.jsx)("li",{children:(0,_.jsx)("a",{href:`#${e.id}`,title:lm(e.text),className:"aside-link transition-all duration-300 hover:text-text-1 text-text-2 block",style:{marginLeft:(e.depth-r)*12,fontWeight:"semibold"},onClick:t=>{t.preventDefault(),window.location.hash=e.id;let n=document.getElementById(e.id);n&&aR(n,!1,o?0:aL)},children:(0,_.jsx)("span",{className:"aside-link-text block",children:lf(e.text)})})},e.id);return(0,_.jsx)("div",{className:"flex flex-col",children:(0,_.jsx)("div",{className:i?"<lg:hidden":"hidden",children:(0,_.jsxs)("div",{id:"aside-container",className:"relative text-sm font-medium",children:[(0,_.jsx)("div",{className:"leading-7 block text-sm font-semibold pl-3",children:e.outlineTitle}),(0,_.jsx)("nav",{className:"mt-1",children:(0,_.jsx)("ul",{className:"relative",children:n.map(a)})})]})})})}var lx="prev_e7091",lv="next_e7091";function lb(){let{prevPage:e,nextPage:t}=aA(),{lastUpdated:n=!1}=aC(),{siteData:i}=(0,S.Vi)(),{themeConfig:r}=i,o=r.lastUpdated||n;return(0,_.jsxs)("footer",{className:"mt-8",children:[(0,_.jsx)("div",{className:"xs:flex pb-5 px-2 justify-end items-center",children:o&&(0,_.jsx)(sf,{})}),(0,_.jsx)("div",{className:"flex flex-col",children:(0,_.jsx)(si,{})}),(0,_.jsxs)("div",{className:"flex flex-col sm:flex-row sm:justify-around gap-4 pt-6",children:[(0,_.jsx)("div",{className:`${lx} flex flex-col`,children:e?(0,_.jsx)(s2,{type:"prev",text:e.text,href:(0,E.AP)(e.link)}):null}),(0,_.jsx)("div",{className:`${lv} flex flex-col`,children:t?(0,_.jsx)(s2,{type:"next",text:t.text,href:(0,E.AP)(t.link)}):null})]})]})}function ly(e){var t=e,{icon:n}=t,i=aw(t,["icon"]);return n?"string"==typeof n?(0,_.jsx)("img",ab({src:n,alt:""},i)):(0,_.jsx)(n,ab({},i)):null}function lw({outlineTitle:e,beforeSidebar:t,afterSidebar:n,uiSwitch:i}){let[r,o]=(0,z.useState)(!1),[a,l]=(0,z.useState)(!1),s=(0,z.useRef)(),d=(0,z.useRef)(),{pathname:c}=(0,N.TH)();function u(){o(!0)}function p(){o(!1)}(0,z.useEffect)(()=>{o(!1)},[c]),(0,z.useEffect)(()=>(document.addEventListener("mouseup",h),document.addEventListener("touchend",h),()=>{document.addEventListener("mouseup",h),document.removeEventListener("touchend",h)}),[]);let h=e=>{let{current:t}=d;if(null==t?void 0:t.contains(e.target))return;let{current:n}=s;n&&!n.contains(e.target)&&l(!1)};return(0,_.jsxs)(z.Fragment,{children:[(0,_.jsxs)("div",{className:"rspress-sidebar-menu",children:[i.showSidebar?(0,_.jsxs)("button",{onClick:u,className:"flex-center mr-auto",children:[(0,_.jsx)("div",{className:"text-md mr-2",children:(0,_.jsx)(ly,{icon:eZ})}),(0,_.jsx)("span",{className:"text-sm",children:"Menu"})]}):null,i.showAside?(0,_.jsxs)(z.Fragment,{children:[(0,_.jsxs)("button",{onClick:()=>l(e=>!e),className:"flex-center ml-auto",ref:d,children:[(0,_.jsx)("span",{className:"text-sm",children:e}),(0,_.jsx)("div",{className:"text-md mr-2",style:{transform:a?"rotate(90deg)":"rotate(0deg)",transition:"transform 0.2s ease-out",marginTop:"2px"},children:(0,_.jsx)(ly,{icon:eG})})]}),(0,_.jsx)(ts,{in:a,timeout:300,unmountOnExit:!0,classNames:"fly-in",nodeRef:s,children:(0,_.jsx)("div",{className:"rspress-local-toc-container",ref:s,children:(0,_.jsx)(d_,{onItemClick:()=>{l(!1)}})})})]}):null]}),i.showSidebar?(0,_.jsxs)(z.Fragment,{children:[(0,_.jsx)(dw,{isSidebarOpen:r,beforeSidebar:t,afterSidebar:n,uiSwitch:i}),r?(0,_.jsx)("div",{onClick:p,className:"rspress-sidebar-back-drop",style:{background:"rgba(0, 0, 0, 0.6)"}}):null]}):null]})}var lk=(0,z.createContext)({tabData:{},setTabData:()=>{}}),lj={asideContainer:"aside-container_edeb4",docLayout:"docLayout_edeb4",content:"content_edeb4"};function lI(e){var t,n;let{beforeDocFooter:i,afterDocFooter:r,beforeDoc:o,afterDoc:a,beforeDocContent:l,afterDocContent:s,beforeOutline:d,afterOutline:c,beforeSidebar:u,afterSidebar:p,uiSwitch:h}=e,{siteData:f,page:m}=(0,S.Vi)(),{toc:g=[],frontmatter:x}=m,[v,b]=(0,z.useState)({}),y=g,{themeConfig:w}=f,k=null!=(t=w.enableScrollToTop)&&t,j=aC(),I=(null==j?void 0:j.outlineTitle)||(null==w?void 0:w.outlineTitle)||"ON THIS PAGE",P=null!=(n=null==x?void 0:x.overview)&&n,E=(0,_.jsx)(lk.Provider,{value:{tabData:v,setTabData:b},children:(0,_.jsx)(R.Zo,{components:l7(),children:(0,_.jsx)($,{})})});return(0,_.jsxs)("div",{className:`${lj.docLayout} pt-0`,style:ab({},h.showNavbar?{}:{marginTop:0}),children:[o,(0,_.jsx)(lw,{outlineTitle:I,beforeSidebar:u,afterSidebar:p,uiSwitch:h}),(0,_.jsxs)("div",{className:`${lj.content} rspress-doc-container flex flex-shrink-0 mx-auto`,children:[(0,_.jsx)("div",{className:"w-full flex-1",children:P?(0,_.jsxs)(_.Fragment,{children:[l,(0,_.jsx)(sG,{content:E}),s]}):(0,_.jsxs)("div",{children:[(0,_.jsxs)("div",{className:"rspress-doc",children:[l,E,s]}),(0,_.jsxs)("div",{className:"rspress-doc-footer",children:[i,h.showDocFooter&&(0,_.jsx)(lb,{}),r]})]})}),k&&(0,_.jsx)(H,{children:(0,_.jsx)(s4,{})}),h.showAside?(0,_.jsx)("div",{className:lj.asideContainer,style:ab({},h.showNavbar?{}:{marginTop:0,paddingTop:"32px"}),children:(0,_.jsxs)("div",{children:[d,(0,_.jsx)(lg,{headers:y,outlineTitle:I}),c]})}):null]}),a]})}function lP(){var e,t;let{page:n,siteData:i}=(0,S.Vi)(),{frontmatter:r}=n,{themeConfig:o}=i,a=aC(),l=(0,N.TH)(),s=null!=(e=null==r?void 0:r.overview)&&e,d=()=>{var e,t;let n="undefined"==typeof window||window.top===window.self;return(null!=(t=null!=(e=null==r?void 0:r.outline)?e:null==o?void 0:o.outline)?t:n)&&!s},[c,u]=aO(),[p,h]=(0,z.useState)(d()),[f,m]=(0,z.useState)(null==(t=null==r?void 0:r.footer)||t),g=a.sidebar||{},x=(null==r?void 0:r.sidebar)!==!1&&Object.keys(g).length>0;return(0,z.useEffect)(()=>{h(d())},[n,i]),(0,z.useEffect)(()=>{let e=new URLSearchParams(l.search),t=document.documentElement.style,n=t.getPropertyValue("--rp-sidebar-width"),i=t.getPropertyValue("--rp-aside-width"),r=c,o=f,a=e.get("navbar"),s=e.get("sidebar"),d=e.get("outline"),p=e.get("footer");return"0"===a&&u(!1),"0"===s&&document.documentElement.style.setProperty("--rp-sidebar-width","0px"),"0"===d&&document.documentElement.style.setProperty("--rp-aside-width","0px"),"0"===p&&m(!1),()=>{document.documentElement.style.setProperty("--rp-sidebar-width",n),document.documentElement.style.setProperty("--rp-aside-width",i),u(r),m(o)}},[l.search]),(0,z.useEffect)(()=>{B._f&&history.scrollRestoration&&(history.scrollRestoration=l.hash.length?"manual":"auto")},[!l.hash.length]),{showAside:p,showNavbar:c,showSidebar:x,showDocFooter:f}}var lS=(e,t)=>t?(e=e.trim(),(t=t.trim()).startsWith("-")||t.startsWith("|"))?`${e} ${t}`:`${e} - ${t}`:e,lE=e=>{var t;let{top:n,bottom:i,beforeDocFooter:r,afterDocFooter:o,beforeDoc:a,afterDoc:l,beforeDocContent:s,afterDocContent:d,beforeSidebar:c,afterSidebar:u,beforeOutline:p,afterOutline:h,beforeNavTitle:f,afterNavTitle:m,beforeNav:g,beforeHero:x,afterHero:v,beforeFeatures:b,afterFeatures:y,afterNavMenu:w}=e,k={beforeDocFooter:r,afterDocFooter:o,beforeDocContent:s,afterDocContent:d,beforeDoc:a,afterDoc:l,beforeSidebar:c,afterSidebar:u,beforeOutline:p,afterOutline:h},j={beforeHero:x,afterHero:v,beforeFeatures:b,afterFeatures:y},{siteData:I,page:P}=(0,S.Vi)(),{pageType:E,lang:z,title:N,frontmatter:A={}}=P,T=aC();lt();let O=null!=(t=A.title)?t:N,M=I.title||T.title;O=O&&"doc"===E?lS(O,A.titleSuffix||M):"home"===E?lS(M,A.titleSuffix):"404"===E?lS("404",M):M;let L=(null==A?void 0:A.description)||I.description||T.description,R=ab(ab({},lP()),e.uiSwitch),H=()=>{switch(E){case"home":return(0,_.jsx)(dC.HomeLayout,ab({},j));case"doc":return(0,_.jsx)(lI,ay(ab({},k),{uiSwitch:R}));case"404":return(0,_.jsx)(dC.NotFoundLayout,{});case"custom":case"blank":return(0,_.jsx)($,{});default:return(0,_.jsx)(lI,ab({},k))}};return(0,_.jsxs)("div",{children:[(0,_.jsxs)(C.ql,{htmlAttributes:{lang:z||"en"},children:[O?(0,_.jsx)("title",{children:O}):null,L?(0,_.jsx)("meta",{name:"description",content:L}):null]}),n,"blank"!==E&&R.showNavbar&&(0,_.jsx)(sU,{beforeNavTitle:f,afterNavTitle:m,beforeNav:g,afterNavMenu:w}),(0,_.jsx)("section",{children:H()}),i]})};function l_(e){let{beforeHero:t,afterHero:n,beforeFeatures:i,afterFeatures:r}=e,{page:{frontmatter:o,routePath:a}}=(0,S.Vi)();return(0,_.jsxs)("div",{className:"relative",style:{minHeight:"calc(100vh - var(--rp-nav-height))",paddingBottom:"80px"},children:[(0,_.jsxs)("div",{className:"pb-12",children:[t,(0,_.jsx)(sp,{frontmatter:o,routePath:a}),n,i,(0,_.jsx)(sl,{frontmatter:o,routePath:a}),r]}),(0,_.jsx)(ss,{})]})}var lC={title:"title_3b154",blockquote:"blockquote_3b154",link:"link_3b154","inline-link":"inline-link_3b154"},lz=e=>(0,_.jsx)("h1",ay(ab({},e),{className:`text-3xl mb-10 leading-10 tracking-tight ${lC.title}`})),lN=e=>(0,_.jsx)("h2",ay(ab({},e),{className:`mt-12 mb-6 pt-8 text-2xl tracking-tight border-t-[1px] border-divider-light ${lC.title}`})),lA=e=>(0,_.jsx)("h3",ay(ab({},e),{className:`mt-10 mb-2 leading-7 text-xl ${lC.title}`})),lT=e=>(0,_.jsx)("h4",ay(ab({},e),{className:`mt-8 leading-6 text-lg ${lC.title}`})),lO=e=>(0,_.jsx)("h5",ay(ab({},e),{className:lC.title})),lM=e=>(0,_.jsx)("h6",ay(ab({},e),{className:lC.title})),lL=e=>(0,_.jsx)("ol",ay(ab({},e),{className:"list-decimal pl-5 my-4 leading-7"})),l$=e=>(0,_.jsx)("ul",ay(ab({},e),{className:"list-disc pl-5 my-4 leading-7"})),lR=e=>(0,_.jsx)("li",ay(ab({},e),{className:"[&:not(:first-child)]:mt-2"})),lH=e=>(0,_.jsx)("table",ay(ab({},e),{className:"block border-collapse text-base my-5 overflow-x-auto leading-7 border-gray-light-3 dark:border-divider"})),lB=e=>(0,_.jsx)("tr",ay(ab({},e),{className:"border border-solid transition-colors duration-500 even:bg-soft border-gray-light-3 dark:border-divider"})),lD=e=>(0,_.jsx)("td",ay(ab({},e),{className:"border border-solid px-4 py-2 border-gray-light-3 dark:border-divider"})),lF=e=>(0,_.jsx)("th",ay(ab({},e),{className:"border border-solid px-4 py-2 text-text-1 text-base font-semibold border-gray-light-3 dark:border-divider"})),lW=e=>(0,_.jsx)("hr",ay(ab({},e),{className:"my-12 border-t border-solid border-divider-light"})),lq=e=>{let{href:t="",className:n=""}=e,{normalizeLinkHref:i}=aF();return n.includes("header-anchor")||t.startsWith("#")?(0,_.jsx)("a",ay(ab({},e),{className:`${lC.link} ${n}`})):(0,_.jsx)(sg,ay(ab({},e),{className:`${n} ${lC.link} ${lC["inline-link"]}`,href:i(t)}))},lV=e=>(0,_.jsx)("p",ay(ab({},e),{className:"my-4 leading-7"})),lU=e=>(0,_.jsx)("blockquote",ay(ab({},e),{className:`border-l-2 border-solid border-divider pl-4 my-6 transition-colors duration-500 ${lC.blockquote}`})),lZ=e=>(0,_.jsx)("strong",ay(ab({},e),{className:"font-semibold"})),lG={"code-button-group":"code-button-group_15153",codeButtonGroup:"code-button-group_15153","code-copy-button":"code-copy-button_15153",codeCopyButton:"code-copy-button_15153","icon-success":"icon-success_15153",iconSuccess:"icon-success_15153","code-copied":"code-copied_15153",codeCopied:"code-copied_15153","icon-copy":"icon-copy_15153",iconCopy:"icon-copy_15153","icon-wrapped":"icon-wrapped_15153",iconWrapped:"icon-wrapped_15153","wrapped-btn":"wrapped-btn_15153",wrappedBtn:"wrapped-btn_15153","icon-wrap":"icon-wrap_15153",iconWrap:"icon-wrap_15153"},lY={doctype:{color:"var(--code-token-text)",fontStyle:"italic"},token:{color:"var(--code-token-text)"},comment:{color:"var(--code-token-comment)"},punctuation:{color:"var(--code-token-punctuation)"},property:{color:"var(--code-token-parameter)"},constant:{color:"var(--code-token-constant)"},string:{color:"var(--code-token-string)"},symbol:{color:"var(--code-token-symbol)"},variable:{color:"var(--code-token-variable)"},"attr-name":{color:"var(--code-token-symbol)"},"attr-value":{color:"var(--code-token-string-expression)"},builtin:{color:"var(--code-token-symbol)"},function:{color:"var(--code-token-function)"},keyword:{color:"var(--code-token-keyword)"},tag:{color:"var(--code-token-function)"},inserted:{color:"var(--code-token-inserted)"},deleted:{color:"var(--code-token-deleted)"},regex:{color:"var(--code-token-keyword)"},key:{color:"var(--code-token-variable)"},title:{color:"var(--code-token-keyword)"},important:{color:"#EBCB8B",fontWeight:"bold"},bold:{fontWeight:"bold"},italic:{fontStyle:"italic"},table:{display:"content"}},lK=!1;function lJ(){Object.keys(tp).forEach(e=>{t0.registerLanguage(e,tp[e])}),t0.alias(tu),lK=!0}function lQ(e){var t;let{siteData:n}=(0,S.Vi)(),{meta:i,language:r,codeWrap:o}=e,{showLineNumbers:a}=n.markdown,l="",s=[];return i&&(l=(null==(t=/{[\d,-]*}/i.exec(i))?void 0:t[0])||"")&&(s=l.replace(/[{}]/g,"").split(",").map(e=>{let[t,n]=e.split("-");return n?Array.from({length:Number(n)-Number(t)+1},(e,n)=>n+Number(t)):Number(t)}).flat()),!lK&&lJ(),(0,_.jsx)(t0,{language:r,style:lY,wrapLines:!0,className:"code",wrapLongLines:o,customStyle:{backgroundColor:"inherit"},showLineNumbers:a||s.length>0,lineProps:e=>({style:ay(ab({},s.includes(e)?{backgroundColor:"var(--rp-code-line-highlight-color)"}:{}),{display:"block",padding:"0 1.25rem"})}),children:String(e.children).trim()})}var lX=new Map;function l0(e,t){let n="",i=document.createTreeWalker(e,NodeFilter.SHOW_TEXT,null),r=i.nextNode();for(;r;)!r.parentElement.classList.contains("linenumber")&&(n+=r.nodeValue),r=i.nextNode();if(t1(n)&&t){t.classList.add(lG.codeCopied),clearTimeout(lX.get(t));let e=setTimeout(()=>{t.classList.remove(lG.codeCopied),t.blur(),lX.delete(t)},2e3);lX.set(t,e)}}function l1({codeBlockRef:e}){let t=(0,z.useRef)(null);return(0,_.jsxs)("button",{className:lG.codeCopyButton,onClick:()=>l0(e.current,t.current),ref:t,title:"Copy code",children:[(0,_.jsx)(ly,{icon:t2,className:lG.iconCopy}),(0,_.jsx)(ly,{icon:t3,className:lG.iconSuccess})]})}function l2(e){var t;let{siteData:n}=(0,S.Vi)(),i=null!=(t=e.codeHighlighter)?t:n.markdown.codeHighlighter,{defaultWrapCode:r}=n.markdown,[o,a]=(0,z.useState)(r),l=(0,z.useRef)(null),s=(0,z.useRef)(),{className:d}=e,c=null==d?void 0:d.replace(/language-/,"");if(!c)return(0,_.jsx)("code",ab({},e));let u=e=>{o?null==e||e.classList.remove(lG.wrappedBtn):null==e||e.classList.add(lG.wrappedBtn),a(!o)},p=()=>{if("prism"===i)return(0,_.jsx)(lQ,ay(ab({},e),{language:c,codeWrap:o}));return(0,_.jsx)("code",ab({},e))};return(0,_.jsxs)(_.Fragment,{children:[(0,_.jsx)("div",{ref:s,children:p()}),(0,_.jsxs)("div",{className:lG.codeButtonGroup,children:[(0,_.jsxs)("button",{ref:l,className:lG.codeWrapButton,onClick:()=>u(l.current),title:"Toggle code wrap",children:[(0,_.jsx)(ly,{icon:tc,className:lG.iconWrapped}),(0,_.jsx)(ly,{icon:td,className:lG.iconWrap})]}),(0,_.jsx)(l1,{codeBlockRef:s})]})]})}var l3="language-bash";function l4(e){var t,n;if(!e)return"";let i=e,r=/{[\d,-]*}/i;return(null==(t=r.exec(e))?void 0:t[0])&&(i=e.replace(r,"").trim()),null==(i=null!=(n=i.split("=")[1])?n:"")?void 0:i.replace(/["'`]/g,"")}function l5({children:e}){let t=e=>{let{className:t,meta:n}=e.props,i=l4(n);return(0,_.jsxs)("div",{className:t||l3,children:[i&&(0,_.jsx)("div",{className:"rspress-code-title",children:i}),(0,_.jsx)("div",{className:"rspress-code-content rspress-scrollbar",children:e})]})};return Array.isArray(e)?(0,_.jsx)("div",{children:e.map(e=>t(e))}):t(e)}var l6=e=>(0,_.jsx)("img",ay(ab({},e),{src:(0,E.i6)(e.src||"")}));function l7(){return{h1:lz,h2:lN,h3:lA,h4:lT,h5:lO,h6:lM,ul:l$,ol:lL,li:lR,table:lH,td:lD,th:lF,tr:lB,hr:lW,p:lV,blockquote:lU,strong:lZ,a:lq,code:l2,pre:l5,img:l6}}var l8={badge:"badge_99dcf",info:"info_99dcf",warning:"warning_99dcf",danger:"danger_99dcf"};function l9(e){let{text:t,type:n="info"}=e;return(0,_.jsx)("span",{className:`inline-block rounded-full border border-solid border-transparent font-medium ${l8.badge} ${l8[n]}`,children:t})}var se={button:"button_72e53",medium:"medium_72e53",big:"big_72e53",brand:"brand_72e53",alt:"alt_72e53"};function st(e){let{theme:t="brand",size:n="big",href:i="/",external:r=!1,className:o=""}=e,a=null;return"button"===e.type?a="button":"a"===e.type&&(a=r?"a":sg),z.createElement(null!=a?a:"a",{className:`${se.button} ${se[t]} ${se[n]} ${o}`,href:i},e.text)}var sn="editLink_2a169";function si(){let e=aT();if(!e)return null;let{text:t,link:n}=e;return(0,_.jsx)("a",{href:n,target:"_blank",className:sn,children:t})}var sr={"grid-2":"grid-2_d48e3",grid2:"grid-2_d48e3","grid-4":"grid-4_d48e3",grid4:"grid-4_d48e3","grid-6":"grid-6_d48e3",grid6:"grid-6_d48e3","grid-3":"grid-3_d48e3",grid3:"grid-3_d48e3",featureCard:"featureCard_d48e3"},so="grid-",sa=e=>{let{span:t}=e;return`${so}${t||4}`};function sl({frontmatter:e,routePath:t}){let n=null==e?void 0:e.features;return(0,_.jsx)("div",{className:"overflow-hidden m-auto flex flex-wrap max-w-6xl",children:null==n?void 0:n.map(e=>{let{icon:n,title:i,details:r,link:o}=e,a=o;return o&&(a=(0,B.xf)(o)?o:(0,E.AP)((0,B.pJ)(o,t))),(0,_.jsx)("div",{className:`${sr[sa(e)]} rounded hover:var(--rp-c-brand)`,children:(0,_.jsx)("div",{className:"h-full p-2",children:(0,_.jsxs)("article",{className:`rspress-home-feature-card ${sr.featureCard} h-full p-8 rounded-4xl border-transparent`,style:{cursor:a?"pointer":"auto"},onClick:()=>{a&&(window.location.href=a)},children:[n?(0,_.jsx)("div",{className:"flex-center",children:(0,_.jsx)("div",{className:"rspress-home-feature-icon w-12 h-12 text-3xl text-center",children:lc(n)})}):null,(0,_.jsx)("h2",{className:"rspress-home-feature-title font-bold text-center",children:i}),(0,_.jsx)("p",{className:"rspress-home-feature-detail leading-6 pt-2 text-sm text-text-2 font-medium",children:lc(r)})]},i)})},i)})})}function ss(){let{siteData:e}=(0,S.Vi)(),{message:t}=e.themeConfig.footer||{};return t?(0,_.jsx)("footer",{className:"absolute bottom-0 mt-12 py-8 px-6 sm:p-8 w-full border-t border-solid border-divider-light",children:(0,_.jsx)("div",{className:"m-auto w-full text-center",children:(0,_.jsx)("div",{className:"font-meduim text-sm text-text-2",dangerouslySetInnerHTML:{__html:t}})})}):null}var sd="clip_c867a",sc="mask_c867a",su={name:"modern",text:"modern ssg",tagline:"modern ssg",actions:[],image:void 0};function sp({frontmatter:e,routePath:t}){var n,i,r,o,a,l,s,d,c;let u=(null==e?void 0:e.hero)||su,p=void 0!==u.image,h=p?"sm:max-w-xl":"sm:max-w-4xl",f=u.text?u.text.toString().split(/\n/g).filter(e=>""!==e):[],m="string"==typeof(null==(n=u.image)?void 0:n.src)?{light:u.image.src,dark:u.image.src}:(null==(i=u.image)?void 0:i.src)||{light:"",dark:""};return(0,_.jsxs)("div",{className:"m-auto pt-0 px-6 pb-12 sm:pt-10 sm:px-16 md:pt-16 md:px-16 md:pb-16 relative",children:[(0,_.jsx)("div",{className:sc,style:{left:p?"75%":"50%"}}),(0,_.jsxs)("div",{className:"m-auto flex flex-col md:flex-row max-w-6xl min-h-[50vh] mt-12 sm:mt-0",children:[(0,_.jsxs)("div",{className:"flex flex-col justify-center items-center text-center max-w-xl sm:max-w-4xl m-auto order-2 md:order-1",children:[(0,_.jsx)("h1",{className:"font-bold text-3xl pb-2 sm:text-6xl md:text-7xl m-auto sm:m-4 md:m-0 md:pb-3 lg:pb-2 leading-tight z-10",children:(0,_.jsx)("span",{className:sd,style:{lineHeight:"1.3"},children:lc(u.name)})}),0!==f.length&&f.map(e=>(0,_.jsx)("p",{className:`rspress-home-hero-text mx-auto md:m-0 text-3xl sm:text-5xl md:text-6xl sm:pb-2 font-bold z-10 ${h}`,style:{lineHeight:"1.2"},children:lc(e)},e)),(0,_.jsx)("p",{className:`rspress-home-hero-tagline whitespace-pre-wrap pt-4 m-auto md:m-0 text-sm sm:tex-xl md:text-[1.5rem] text-text-2 font-medium z-10 ${h}`,children:lc(u.tagline)}),(null==(r=u.actions)?void 0:r.length)&&(0,_.jsx)("div",{className:"grid md:flex md:flex-wrap md:justify-center gap-3 m--1.5 pt-6 sm:pt-8 z-10",children:u.actions.map(e=>{let n=(0,B.xf)(e.link)?e.link:(0,E.AP)((0,B.pJ)(e.link,t));return(0,_.jsx)("div",{className:"flex flex-shrink-0 p-1",children:(0,_.jsx)(st,{type:"a",href:n,text:lc(e.text),theme:e.theme,className:"w-full"})},n)})})]}),p?(0,_.jsxs)("div",{className:"rspress-home-hero-image md:flex-center m-auto order-1 md:order-2 sm:flex md:none lg:flex",children:[(0,_.jsx)("img",{src:(0,E.i6)(m.light),alt:null==(o=u.image)?void 0:o.alt,srcSet:sh(null==(a=u.image)?void 0:a.srcset),sizes:sh(null==(l=u.image)?void 0:l.sizes),width:375,height:375,className:"dark:hidden"}),(0,_.jsx)("img",{src:(0,E.i6)(m.dark),alt:null==(s=u.image)?void 0:s.alt,srcSet:sh(null==(d=u.image)?void 0:d.srcset),sizes:sh(null==(c=u.image)?void 0:c.sizes),width:375,height:375,className:"hidden dark:block"})]}):null]})]})}function sh(e){return(Array.isArray(e)?e:[e]).filter(Boolean).join(", ")||void 0}function sf(){let{lastUpdatedText:e="Last Updated"}=aC(),{page:{lastUpdatedTime:t},siteData:n}=(0,S.Vi)(),{themeConfig:i}=n,r=(null==i?void 0:i.lastUpdatedText)||e;return(0,_.jsx)("div",{className:"flex text-sm text-text-2 leading-6 sm:leading-8 font-medium",children:(0,_.jsxs)("p",{children:[r,": ",(0,_.jsx)("span",{children:t})]})})}var sm={link:"link_03735"};function sg(e){let t=e,{href:n="/",children:i,className:r="",onNavigate:o,keepCurrentParams:a=!1}=t,l=aw(t,["href","children","className","onNavigate","keepCurrentParams"]),s=(0,B.xf)(n),d=s?"_blank":"",c=s?"noopener noreferrer":void 0,u=s?n:(0,E.pJ)((0,E.AP)(n)),p=(0,N.s0)(),{pathname:h,search:f}=(0,N.TH)(),m=a?u+f:u,g=(0,E.pV)(h,u),x=e=>aE(this,null,function*(){if(0!==e.button||e.currentTarget.target&&"_self"!==e.currentTarget.target||e.metaKey||e.shiftKey||e.altKey||e.ctrlKey)return;e.preventDefault();let t=u.split("#")[1];if(!s&&g&&t){let e=document.getElementById(t);e&&aR(e,!0);return}if(!g){let e=(0,A.fp)(t5.routes,(0,E.Tm)(u));if(null==e?void 0:e.length){let t=setTimeout(()=>{t4.start()},200);yield e[0].route.preload(),clearTimeout(t),t4.done()}null==o||o(),p(m,{replace:!1})}});return s?(0,_.jsx)("a",ay(ab({},l),{href:u,target:d,rel:c,className:`${sm.link} ${r}`,children:i})):(0,_.jsx)("a",ay(ab({},l),{className:`${sm.link} ${r} cursor-pointer`,rel:c,target:d,onClick:x,href:u,children:i}))}t4.configure({showSpinner:!1});var sx={hidden:"hidden_f6cde",container:"container_f6cde",navContainer:"navContainer_f6cde",leftNav:"leftNav_f6cde",rightNav:"rightNav_f6cde",singleItem:"singleItem_f6cde",activeItem:"activeItem_f6cde",navBarTitle:"navBarTitle_f6cde",menuItem:"menu-item_f6cde",mobileNavMenu:"mobileNavMenu_f6cde"};function sv(e){let{pathname:t,base:n}=e,i=new RegExp(e.activeMatch||e.link).test((0,B.tz)(t,n));return(0,_.jsx)(sg,{href:(0,E.AP)(e.link),children:(0,_.jsxs)("div",{className:`rspress-nav-menu-item ${sx.singleItem} ${i?sx.activeItem:""} text-sm font-medium mx-1.5 px-3 py-2 flex items-center`,children:[(0,_.jsx)(dS,{tag:e.tag}),e.text,e.rightIcon]},e.text)})}var sb=()=>!nb(document)&&document.startViewTransition&&!window.matchMedia("(prefers-reduced-motion: reduce)").matches,sy=()=>{let e=document.createElement("style");return e.innerHTML=`
3
+ .rspress-doc {
4
+ view-transition-name: none !important;
5
+ }
6
+ `,document.head.appendChild(e),()=>{document.head.removeChild(e)}};function sw({onClick:e}){let{theme:t,setTheme:n}=(0,z.useContext)(S.Ni),i=i=>{var r,o;let a=sb(),l=null==(o=null==(r=T.Z)?void 0:r.themeConfig)?void 0:o.enableAppearanceAnimation,s="dark"===t?"light":"dark",d="dark"===s;if(a&&l){let t=i.clientX,r=i.clientY,o=Math.hypot(Math.max(t,innerWidth-t+200),Math.max(r,innerHeight-r+200)),a=sy(),l=document.startViewTransition(()=>aE(this,null,function*(){(0,e3.flushSync)(()=>{n(s),null==e||e()})})),c=[`circle(0px at ${t}px ${r}px)`,`circle(${o}px at ${t}px ${r}px)`];l.ready.then(()=>{document.documentElement.animate({clipPath:d?[...c].reverse():c},{duration:400,easing:"ease-in",pseudoElement:d?"::view-transition-old(root)":"::view-transition-new(root)",id:""}).finished.then(()=>{a()})})}else n(s),null==e||e()};return(0,_.jsx)("div",{onClick:i,className:"md:mr-2 rspress-nav-appearance",children:(0,_.jsxs)("div",{className:"p-1 border border-solid border-gray-300 text-gray-400 cursor-pointer rounded-md hover:border-gray-600 hover:text-gray-600 dark:hover:border-gray-200 dark:hover:text-gray-200 transition-all duration-300 w-7 h-7",children:[(0,_.jsx)(ly,{className:"dark:hidden",icon:nx,width:"18",height:"18",fill:"currentColor"}),(0,_.jsx)(ly,{className:"hidden dark:block",icon:nv,width:"18",height:"18",fill:"currentColor"})]})})}var sk={socialLinksIcon:"social-links-icon_93d67",menuItem:"menu-item_93d67"},sj={discord:(0,_.jsxs)("svg",{role:"img",viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",children:[(0,_.jsx)("title",{children:"Discord"}),(0,_.jsx)("path",{d:"M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189Z"})]}),facebook:(0,_.jsxs)("svg",{role:"img",viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",children:[(0,_.jsx)("title",{children:"Facebook"}),(0,_.jsx)("path",{d:"M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"})]}),github:(0,_.jsxs)("svg",{role:"img",viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",children:[(0,_.jsx)("title",{children:"GitHub"}),(0,_.jsx)("path",{d:"M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"})]}),gitlab:(0,_.jsxs)("svg",{role:"img",viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",children:[(0,_.jsx)("title",{children:"GitLab"}),(0,_.jsx)("path",{fill:"currentColor",d:"m21.94 13.11l-1.05-3.22c0-.03-.01-.06-.02-.09l-2.11-6.48a.859.859 0 0 0-.8-.57c-.36 0-.68.25-.79.58l-2 6.17H8.84L6.83 3.33a.851.851 0 0 0-.79-.58c-.37 0-.69.25-.8.58L3.13 9.82v.01l-1.07 3.28c-.16.5.01 1.04.44 1.34l9.22 6.71c.17.12.39.12.56-.01l9.22-6.7c.43-.3.6-.84.44-1.34M8.15 10.45l2.57 7.91l-6.17-7.91m8.73 7.92l2.47-7.59l.1-.33h3.61l-5.59 7.16m4.1-13.67l1.81 5.56h-3.62m-1.3.95l-1.79 5.51L12 19.24l-2.86-8.79M6.03 3.94L7.84 9.5H4.23m-1.18 4.19c-.09-.07-.13-.19-.09-.29l.79-2.43l5.82 7.45m11.38-4.73l-6.51 4.73l.02-.03l5.79-7.42l.79 2.43c.04.1 0 .22-.09.29"})]}),instagram:(0,_.jsxs)("svg",{role:"img",viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",children:[(0,_.jsx)("title",{children:"Instagram"}),(0,_.jsx)("path",{d:"M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678c-3.405 0-6.162 2.76-6.162 6.162 0 3.405 2.76 6.162 6.162 6.162 3.405 0 6.162-2.76 6.162-6.162 0-3.405-2.76-6.162-6.162-6.162zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405c0 .795-.646 1.44-1.44 1.44-.795 0-1.44-.646-1.44-1.44 0-.794.646-1.439 1.44-1.439.793-.001 1.44.645 1.44 1.439z"})]}),linkedin:(0,_.jsxs)("svg",{role:"img",viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",children:[(0,_.jsx)("title",{children:"LinkedIn"}),(0,_.jsx)("path",{d:"M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"})]}),slack:(0,_.jsxs)("svg",{role:"img",viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",children:[(0,_.jsx)("title",{children:"Slack"}),(0,_.jsx)("path",{d:"M5.042 15.165a2.528 2.528 0 0 1-2.52 2.523A2.528 2.528 0 0 1 0 15.165a2.527 2.527 0 0 1 2.522-2.52h2.52v2.52zM6.313 15.165a2.527 2.527 0 0 1 2.521-2.52 2.527 2.527 0 0 1 2.521 2.52v6.313A2.528 2.528 0 0 1 8.834 24a2.528 2.528 0 0 1-2.521-2.522v-6.313zM8.834 5.042a2.528 2.528 0 0 1-2.521-2.52A2.528 2.528 0 0 1 8.834 0a2.528 2.528 0 0 1 2.521 2.522v2.52H8.834zM8.834 6.313a2.528 2.528 0 0 1 2.521 2.521 2.528 2.528 0 0 1-2.521 2.521H2.522A2.528 2.528 0 0 1 0 8.834a2.528 2.528 0 0 1 2.522-2.521h6.312zM18.956 8.834a2.528 2.528 0 0 1 2.522-2.521A2.528 2.528 0 0 1 24 8.834a2.528 2.528 0 0 1-2.522 2.521h-2.522V8.834zM17.688 8.834a2.528 2.528 0 0 1-2.523 2.521 2.527 2.527 0 0 1-2.52-2.521V2.522A2.527 2.527 0 0 1 15.165 0a2.528 2.528 0 0 1 2.523 2.522v6.312zM15.165 18.956a2.528 2.528 0 0 1 2.523 2.522A2.528 2.528 0 0 1 15.165 24a2.527 2.527 0 0 1-2.52-2.522v-2.522h2.52zM15.165 17.688a2.527 2.527 0 0 1-2.52-2.523 2.526 2.526 0 0 1 2.52-2.52h6.313A2.527 2.527 0 0 1 24 15.165a2.528 2.528 0 0 1-2.522 2.523h-6.313z"})]}),twitter:(0,_.jsxs)("svg",{role:"img",viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",children:[(0,_.jsx)("title",{children:"Twitter"}),(0,_.jsx)("path",{d:"M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 13.998-7.496 13.998-13.985 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59z"})]}),youtube:(0,_.jsxs)("svg",{role:"img",viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",children:[(0,_.jsx)("title",{children:"YouTube"}),(0,_.jsx)("path",{d:"M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"})]}),juejin:(0,_.jsxs)("svg",{className:"icon",viewBox:"0 0 1024 1024",version:"1.1",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg","data-spm-anchor-id":"a313x.7781069.0.i5",children:[(0,_.jsx)("path",{d:"M465.189 161.792c-22.967 18.14-44.325 35.109-47.397 37.742l-5.851 4.68 10.971 8.632c5.998 4.827 11.85 9.508 13.02 10.532 1.17 1.024 17.993 14.336 37.156 29.696l34.962 27.795 5.267-3.95c2.925-2.194 23.259-18.432 45.348-35.986 21.943-17.555 41.253-32.768 42.716-33.646 1.609-1.024 2.779-2.194 2.779-2.78 0-0.438-9.655-8.63-21.504-17.846-11.995-9.363-22.674-17.847-23.845-18.871-15.945-13.02-49.737-39.059-50.76-39.059-0.586 0.147-19.896 14.922-42.862 33.061z m233.325 180.37C507.465 493.275 508.928 492.105 505.417 489.911c-3.072-1.902-11.556-8.485-64.073-50.03-9.07-7.168-18.578-14.775-21.358-16.823-2.78-2.194-8.777-6.875-13.312-10.532-4.68-3.657-10.679-8.339-13.312-10.533-13.165-10.24-71.095-56.027-102.107-80.457-5.852-4.681-11.41-8.485-12.142-8.485-0.731 0-10.971 7.754-22.674 17.116-11.703 9.508-22.674 18.286-24.284 19.456-1.755 1.17-5.12 3.95-7.46 6.144-2.34 2.34-4.828 4.096-5.413 4.096-3.072 0-0.731 3.072 6.437 8.777 4.096 3.218 8.777 6.875 10.094 8.046 1.316 1.024 10.24 8.045 19.748 15.506s23.26 18.286 30.428 23.99c19.31 15.215 31.89 25.308 127.853 101.084 47.836 37.742 88.796 69.779 90.844 71.095 3.657 2.487 3.95 2.487 7.46-0.292a1041.42 1041.42 0 0 0 16.092-12.727c6.875-5.413 14.775-11.703 17.554-13.897 30.135-23.699 80.018-63.05 81.774-64.512 1.17-1.024 12.434-9.802 24.868-19.603s37.888-29.696 56.32-44.324c18.579-14.629 46.227-36.425 61.733-48.567 15.506-12.142 27.794-22.528 27.502-23.26-0.878-1.17-57.637-47.104-59.978-48.274-0.731-0.439-18.578 12.727-39.497 29.257z","data-spm-anchor-id":"a313x.7781069.0.i2"}),(0,_.jsx)("path",{d:"M57.93 489.326c-15.215 12.288-28.527 23.405-29.697 24.576-2.34 2.194-5.412-0.44 80.018 66.852 33.207 26.185 32.622 25.747 57.637 45.495 10.386 8.192 36.279 28.672 57.783 45.495 38.18 30.135 44.91 35.401 52.663 41.545 2.048 1.756 22.967 18.14 46.372 36.572 23.26 18.432 74.167 58.514 112.933 89.088 38.912 30.573 71.095 55.734 71.826 56.027 0.732 0.293 7.46-4.389 14.921-10.386 21.797-16.97 90.259-70.949 101.523-79.872 5.705-4.535 12.873-10.24 15.945-12.58 3.072-2.488 6.436-5.12 7.314-5.852 0.878-0.878 11.85-9.509 24.283-19.31 20.773-16.091 59.1-46.226 64.366-50.615 1.17-1.024 5.12-4.096 8.777-6.875 3.657-2.78 7.9-6.29 9.509-7.607 1.609-1.317 14.775-11.703 29.257-23.113 29.11-22.82 42.277-33.207 88.503-69.632 17.262-13.605 32.475-25.454 33.646-26.478 2.486-2.048 31.451-24.869 44.617-35.255 4.827-3.657 9.07-7.168 9.508-7.607 0.44-0.585 5.998-4.827 12.435-9.8 6.436-4.828 13.165-10.24 15.067-11.85l3.365-2.926-9.948-7.753c-5.412-4.388-10.24-8.192-10.679-8.63-1.17-1.317-22.381-18.433-30.135-24.284-3.95-3.072-7.314-5.998-7.606-6.73-1.317-3.071-6.73 0.147-29.258 17.994-13.458 10.532-25.746 20.187-27.355 21.504-1.61 1.463-10.533 8.338-19.749 15.652-9.216 7.168-17.115 13.459-17.554 13.898-0.439 0.438-6.583 5.412-13.897 10.971-7.168 5.559-15.214 11.703-17.7 13.75-4.974 4.097-5.413 4.39-20.334 16.239-5.56 4.388-11.264 8.777-12.435 9.8-1.17 1.025-20.333 16.092-42.422 33.354-22.09 17.408-41.546 32.768-43.155 34.084-1.609 1.463-14.482 11.557-28.525 22.528s-40.814 32.037-59.539 46.812c-18.578 14.775-42.276 33.353-52.516 41.399s-23.26 18.285-28.965 22.82l-10.386 8.339-4.389-3.072c-2.34-1.756-4.68-3.511-5.12-3.95-0.439-0.439-4.973-4.096-10.24-8.046-11.849-9.216-14.482-11.264-16.676-13.166-0.878-0.877-4.243-3.51-7.46-5.851-3.22-2.487-6.145-4.681-6.584-5.12-0.439-0.439-6.875-5.705-14.482-11.703-7.607-5.851-14.921-11.556-16.091-12.58-1.317-1.17-17.116-13.605-35.255-27.795-17.993-14.19-35.109-27.648-38.035-29.842-5.705-4.681-33.499-26.624-125.074-98.743-34.523-27.209-72.704-57.344-84.846-66.852-49.737-39.498-55.15-43.594-56.905-43.447-0.877 0-14.043 10.24-29.257 22.528z","data-spm-anchor-id":"a313x.7781069.0.i3"})]}),qq:(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",role:"img",className:"iconify iconify--ri",preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"24",height:"24",children:(0,_.jsx)("path",{fill:"currentColor",d:"M19.913 14.529a31.977 31.977 0 0 0-.675-1.886l-.91-2.246c0-.026.012-.468.012-.696C18.34 5.86 16.507 2 12 2S5.66 5.86 5.66 9.7c0 .229.011.671.012.697l-.91 2.246a32.777 32.777 0 0 0-.675 1.886c-.86 2.737-.581 3.87-.369 3.895c.455.054 1.771-2.06 1.771-2.06c0 1.224.637 2.822 2.016 3.976c-.515.157-1.147.399-1.554.695c-.365.267-.319.54-.253.65c.289.481 4.955.307 6.303.157c1.347.15 6.014.324 6.302-.158c.066-.11.112-.382-.253-.649c-.407-.296-1.039-.538-1.555-.696c1.379-1.153 2.016-2.751 2.016-3.976c0 0 1.316 2.115 1.771 2.06c.212-.025.49-1.157-.37-3.894"})}),wechat:(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",role:"img",className:"iconify iconify--ri",preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"24",height:"24",children:(0,_.jsx)("path",{fill:"currentColor",d:"M18.574 13.711a.91.91 0 0 0 .898-.898c0-.498-.399-.898-.898-.898s-.898.4-.898.898c0 .5.4.898.898.898zm-4.425 0a.91.91 0 0 0 .898-.898c0-.498-.4-.898-.898-.898c-.5 0-.898.4-.898.898c0 .5.399.898.898.898zm6.567 5.04a.347.347 0 0 0-.172.37c0 .048 0 .097.025.147c.098.417.294 1.081.294 1.106c0 .073.025.122.025.172a.22.22 0 0 1-.221.22c-.05 0-.074-.024-.123-.048l-1.449-.836a.799.799 0 0 0-.344-.098c-.073 0-.147 0-.196.024c-.688.197-1.4.295-2.161.295c-3.66 0-6.607-2.457-6.607-5.505c0-3.047 2.947-5.505 6.607-5.505c3.659 0 6.606 2.458 6.606 5.505c0 1.647-.884 3.146-2.284 4.154zM16.673 8.099a9.105 9.105 0 0 0-.28-.005c-4.174 0-7.606 2.86-7.606 6.505c0 .554.08 1.09.228 1.6h-.089a9.963 9.963 0 0 1-2.584-.368c-.074-.025-.148-.025-.222-.025a.832.832 0 0 0-.418.123l-1.748 1.005c-.05.025-.099.05-.148.05a.273.273 0 0 1-.27-.27c0-.074.024-.123.049-.197c.024-.024.246-.834.369-1.324c0-.05.024-.123.024-.172a.556.556 0 0 0-.221-.442C2.058 13.376 1 11.586 1 9.598C1 5.945 4.57 3 8.95 3c3.765 0 6.93 2.169 7.723 5.098zm-5.154.418c.573 0 1.026-.477 1.026-1.026c0-.573-.453-1.026-1.026-1.026s-1.026.453-1.026 1.026s.453 1.026 1.026 1.026zm-5.26 0c.573 0 1.027-.477 1.027-1.026c0-.573-.454-1.026-1.027-1.026c-.572 0-1.026.453-1.026 1.026s.454 1.026 1.026 1.026z"})}),weibo:(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",role:"img",className:"iconify iconify--ri",preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"24",height:"24",children:(0,_.jsx)("path",{fill:"currentColor",d:"M17.525 11.378c1.263.392 2.669 1.336 2.669 3.004c0 2.763-3.98 6.239-9.964 6.239c-4.565 0-9.23-2.213-9.23-5.852c0-1.902 1.204-4.102 3.277-6.177c2.773-2.77 6.004-4.033 7.219-2.816c.537.537.588 1.464.244 2.572c-.178.557.525.25.525.25c2.24-.938 4.196-.994 4.909.027c.38.543.343 1.306-.008 2.19c-.163.407.048.471.36.563zm-7.282 7.939c3.641-.362 6.401-2.592 6.167-4.983c-.237-2.391-3.382-4.038-7.023-3.677c-3.64.36-6.403 2.59-6.167 4.98c.237 2.394 3.382 4.039 7.023 3.68zM6.16 14.438c.754-1.527 2.712-2.39 4.446-1.94c1.793.463 2.707 2.154 1.976 3.8c-.744 1.682-2.882 2.578-4.695 1.993c-1.752-.566-2.493-2.294-1.727-3.853zm1.446 2.587c.568.257 1.325.013 1.676-.55c.346-.568.163-1.217-.407-1.459c-.563-.237-1.291.008-1.64.553c-.354.547-.189 1.202.371 1.456zm2.206-1.808c.219.092.501-.012.628-.231c.123-.22.044-.466-.178-.548c-.216-.084-.486.018-.613.232c-.123.214-.054.458.163.547zM19.873 9.5a.725.725 0 1 1-1.378-.451a1.38 1.38 0 0 0-.288-1.357a1.395 1.395 0 0 0-1.321-.425a.723.723 0 1 1-.303-1.416a2.836 2.836 0 0 1 3.29 3.649zm-3.916-6.575A5.831 5.831 0 0 1 21.5 4.72a5.836 5.836 0 0 1 1.22 5.704a.838.838 0 0 1-1.06.54a.844.844 0 0 1-.542-1.062a4.143 4.143 0 0 0-4.807-5.327a.845.845 0 0 1-.354-1.65z"})}),zhihu:(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",role:"img",className:"iconify iconify--ri",preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"24",height:"24",children:(0,_.jsx)("path",{fill:"currentColor",d:"m12.344 17.963l-1.688 1.074l-2.131-3.35c-.44 1.402-1.172 2.665-2.139 3.825c-.402.483-.82.918-1.301 1.375c-.155.147-.775.717-.878.82l-1.414-1.414c.139-.139.787-.735.915-.856c.43-.408.795-.79 1.142-1.206c1.266-1.518 2.03-3.21 2.137-5.231H3v-2h4V7h-.868c-.689 1.266-1.558 2.222-2.618 2.857L2.486 8.143c1.395-.838 2.425-2.604 3.038-5.36l1.952.434c-.14.633-.303 1.227-.489 1.783H11.5v2H9v4h2.5v2H9.185l3.159 4.963zm3.838-.07L17.298 17H19V7h-4v10h.736l.446.893zM13 5h8v14h-3l-2.5 2l-1-2H13V5z"})}),bilibili:(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg","aria-hidden":"true",role:"img",className:"iconify iconify--ri",preserveAspectRatio:"xMidYMid meet",viewBox:"0 0 24 24",width:"24",height:"24",children:(0,_.jsx)("path",{fill:"currentColor",d:"M18.223 3.086a1.25 1.25 0 0 1 0 1.768L17.08 5.996h1.17A3.75 3.75 0 0 1 22 9.747v7.5a3.75 3.75 0 0 1-3.75 3.75H5.75A3.75 3.75 0 0 1 2 17.247v-7.5a3.75 3.75 0 0 1 3.75-3.75h1.166L5.775 4.855a1.25 1.25 0 1 1 1.767-1.768l2.652 2.652c.079.079.145.165.198.257h3.213c.053-.092.12-.18.199-.258l2.651-2.652a1.25 1.25 0 0 1 1.768 0zm.027 5.42H5.75a1.25 1.25 0 0 0-1.247 1.157l-.003.094v7.5c0 .659.51 1.199 1.157 1.246l.093.004h12.5a1.25 1.25 0 0 0 1.247-1.157l.003-.093v-7.5c0-.69-.56-1.25-1.25-1.25zm-10 2.5c.69 0 1.25.56 1.25 1.25v1.25a1.25 1.25 0 1 1-2.5 0v-1.25c0-.69.56-1.25 1.25-1.25zm7.5 0c.69 0 1.25.56 1.25 1.25v1.25a1.25 1.25 0 1 1-2.5 0v-1.25c0-.69.56-1.25 1.25-1.25z"})}),lark:(0,_.jsxs)("svg",{viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",children:[(0,_.jsx)("title",{children:"Lark"}),(0,_.jsx)("path",{d:"M8.813 5.477c1.038.836 2.286 2.045 3.3 3.495.171.23.377.576.457.71l.034.056a8.803 8.803 0 0 0-.922 1.3l-.271-.494C9.655 7.53 6.3 5.477 6.137 5.377a.447.447 0 0 1-.006-.004l-.666-.393-.107-.086a.499.499 0 0 1 .306-.885L6.084 4h7.997c.159.006.318.037.47.092.174.064.317.174.458.308.134.143.272.296.403.448.622.675 1.324 1.688 1.324 1.688-.573.193-1.349.736-1.349.736a5.095 5.095 0 0 0-.348-.54 20.665 20.665 0 0 0-1.037-1.255H8.813Z",fill:"currentColor"}),(0,_.jsx)("path",{d:"M18.482 7.507a5.42 5.42 0 0 1 4.04.717c.248.168.788.635.242 1.233-1.7 1.67-2.194 3.225-2.63 4.599-.278.873-.541 1.697-1.066 2.424-1.813 2.508-4.114 4-6.837 4.434-.561.089-1.132.131-1.7.131-3.958 0-7.498-2.035-8.75-2.844h.003l-.161-.107c-.534-.378-.61-.723-.623-.989V7.055a.486.486 0 0 1 .827-.317l.482.589c5.082 6.201 9.126 8.063 11.626 8.53 2.246.424 3.631-.165 4.022-.37.333-.51.534-1.143.764-1.865l.006-.021c.406-1.276.898-2.821 2.322-4.477a3.93 3.93 0 0 0-2.28-.168c-1.761.394-3.403 1.96-4.89 4.643a8.27 8.27 0 0 0-.341.671c-.724-.107-1.334-.65-1.334-.65.128-.269.22-.455.345-.672 1.718-3.125 3.714-4.962 5.933-5.441ZM2.477 16.889c1.145.744 5.341 3.232 9.532 2.563 1.56-.247 2.963-.915 4.196-1.99-2.771.254-7.557-.753-13.728-7.666v7.093Z",fill:"currentColor"})]}),x:(0,_.jsxs)("svg",{role:"img",viewBox:"0 0 24 24",width:"24",height:"24",xmlns:"http://www.w3.org/2000/svg",children:[(0,_.jsx)("title",{children:"X"}),(0,_.jsx)("path",{d:"M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z"})]})},sI=e=>{let{link:t,popperStyle:n={}}=e,{icon:i,mode:r="link",content:o}=t,a=null;if("object"==typeof i)a=(0,_.jsx)("div",{dangerouslySetInnerHTML:{__html:i.svg}});else if(i){let e=i.toLowerCase();a="twitter"===e?sj.x:sj[e]}let[l,s]=(0,z.useState)(!1),d=()=>{s(!0)},c=()=>{s(!1)};return"link"===r?(0,_.jsx)("a",{href:o,target:"_blank",rel:"noopener noreferrer",className:"social-links",children:(0,_.jsx)("div",{className:`${sk.socialLinksIcon}`,children:a})},o):"text"===r?(0,_.jsxs)("div",{className:`${sk.socialLinksIcon} cursor-pointer relative mx-3`,onMouseEnter:d,onMouseLeave:c,children:[a,l?(0,_.jsx)("div",{style:ab({boxShadow:"var(--rp-shadow-3)",border:"1px solid var(--rp-c-divider-light)"},n),className:"z-[1] p-3 w-50 absolute right-0 bg-white dark:bg-dark",children:(0,_.jsx)("div",{className:"text-md",children:o})}):null]}):"img"===r?(0,_.jsxs)("div",{className:`${sk.socialLinksIcon} cursor-pointer relative`,onMouseEnter:d,onMouseLeave:c,children:[a,l?(0,_.jsx)("div",{className:"break-all z-[1] p-3 w-[50px] h-[50px] absolute right-0 bg-white dark:bg-dark rounded-xl",style:ab({boxShadow:"var(--rp-shadow-3)"},n),children:(0,_.jsx)("img",{src:o,alt:"img"})}):null]}):"dom"===r?(0,_.jsxs)("div",{className:`${sk.socialLinksIcon} cursor-pointer relative`,onMouseEnter:d,onMouseLeave:c,children:[a,l?(0,_.jsx)("div",{className:"break-all z-[1] p-3 absolute right-0 bg-white dark:bg-dark rounded-xl",style:ab({boxShadow:"var(--rp-shadow-3)"},n),children:(0,_.jsx)("div",{dangerouslySetInnerHTML:{__html:o}})}):null]}):(0,_.jsx)("div",{})},sP=e=>{let{links:t,moreIconVisible:n=!1,mouseEnter:i}=e;return(0,_.jsxs)(_.Fragment,{children:[(0,_.jsx)("div",{className:"flex-center h-full gap-x-4 transition-colors duration-300 md:mr-2",children:t.map((e,t)=>(0,_.jsx)(sI,{link:e,popperStyle:{top:"2.5rem"}},t))}),n?(0,_.jsx)("div",{className:"md:ml-1 p-2",onMouseEnter:i,children:(0,_.jsx)(ly,{icon:ny})}):null]})},sS=e=>{let{links:t}=e;return(0,_.jsx)("div",{style:{boxShadow:"var(--rp-shadow-3)",marginRight:"-2px",border:"1px solid var(--rp-c-divider-light)",background:"var(--rp-c-bg)"},className:"absolute top-8 right-0 z-1 p-3 w-32 rounded-2xl flex flex-wrap gap-4",children:t.map(e=>(0,_.jsx)(sI,{link:e,popperStyle:{top:"1.25rem"}},e.content))})},sE=({socialLinks:e})=>{let t=e.length>3,n=[],i=[];e.forEach((e,t)=>{t<3?n.push(e):i.push(e)});let[r,o]=(0,z.useState)(!1);return(0,_.jsxs)("div",{className:`social-links ${sk.menuItem} flex-center relative`,onMouseLeave:()=>o(!1),children:[(0,_.jsx)(sP,{links:n,moreIconVisible:t,mouseEnter:()=>o(!0)}),r?(0,_.jsx)(sS,{links:i}):null]})};function s_(){var e,t;let{siteData:n,page:i}=(0,S.Vi)(),r=(0,S.aw)(),{pathname:o,search:a}=(0,N.TH)(),l=n.lang||"",s=n.multiVersion.default||"",d=Object.values(n.locales||n.themeConfig.locales||{}),c=(null==(e=n.route)?void 0:e.cleanUrls)||!1,u=d.length>1,{lang:p,pageType:h}=i,{base:f}=n;return u?{text:(0,_.jsx)(ly,{icon:nw,style:{width:"18px",height:"18px"}}),items:d.map(e=>({text:null==e?void 0:e.label,link:(0,B.$U)(o+a,{current:p,target:e.lang,default:l},{current:r,default:s},f,c,"404"===h)})),activeValue:null==(t=d.find(e=>p===e.lang))?void 0:t.label}:null}function sC(){var e;let{siteData:t,page:n}=(0,S.Vi)(),i=(0,S.aw)(),{pathname:r}=(0,N.TH)(),o=(null==(e=t.route)?void 0:e.cleanUrls)||!1,a=t.multiVersion.default||"",l=t.multiVersion.versions||[],{base:s}=t;return{items:l.map(e=>({text:e,link:(0,B.xM)(r,{current:i,target:e,default:a},s,o,"404"===n.pageType)})),text:i,activeValue:i}}var sz={navScreen:"navScreen_457e8",active:"active_457e8",container:"container_457e8",navMenu:"navMenu_457e8",navMenuItem:"navMenuItem_457e8",navAppearance:"navAppearance_457e8",socialAndAppearance:"socialAndAppearance_457e8",navScreenMenuGroup:"navScreenMenuGroup_457e8",open:"open_457e8",button:"button_457e8",buttonSpan:"buttonSpan_457e8",items:"items_457e8",down:"down_457e8"};function sN(e){let{activeValue:t}=e,[n,i]=(0,z.useState)(!1);function r({item:e}){return(0,_.jsx)("div",{className:"p-1 text-center",children:(0,_.jsx)("span",{className:"text-brand",children:e.text})})}function o({item:e}){return(0,_.jsx)("div",{className:"py-1 font-medium",children:(0,_.jsx)(sg,{href:e.link,children:(0,_.jsx)("div",{children:(0,_.jsx)("div",{className:"flex justify-center",children:(0,_.jsx)("span",{children:e.text})})})})})}let a=e=>t===e.text?(0,_.jsx)(r,{item:e},e.link):(0,_.jsx)(o,{item:e},e.link),l=e=>(0,_.jsxs)("div",{children:["link"in e?a(e):(0,_.jsx)("p",{className:"font-bold text-gray-400 my-1 not:first:border",children:e.text}),e.items.map(a)]});return(0,_.jsxs)("div",{className:`${n?sz.open:""} ${sz.navScreenMenuGroup} relative`,children:[(0,_.jsxs)("button",{className:sz.button,onClick:()=>{i(!n)},children:[(0,_.jsx)("span",{className:sz.buttonSpan,children:e.text}),(0,_.jsx)(nk,{className:`${n?sz.open:""} ${sz.down} `})]}),(0,_.jsx)("div",{children:(0,_.jsx)("div",{className:sz.items,children:e.items.map(e=>(0,_.jsx)("div",{children:"items"in e?l(e):a(e)},e.text))})})]})}function sA(){let{pathname:e}=(0,N.TH)(),[t,n]=(0,z.useState)(!1);function i(){n(!0),window.addEventListener("resize",a)}function r(){n(!1),window.removeEventListener("resize",a)}function o(){t?r():i()}function a(){window.outerWidth>=768&&r()}return(0,z.useEffect)(()=>{r()},[e]),{isScreenOpen:t,openScreen:i,closeScreen:r,toggleScreen:o}}function sT(){let{nav:e}=aC(),t=(0,S.aw)();return Array.isArray(e)?e:[...e[t.length>0?t:"default"]]}var sO=()=>{let e=s_();return(0,_.jsx)("div",{className:"flex text-sm font-bold justify-center",children:(0,_.jsx)("div",{className:"mx-1.5 my-1",children:(0,_.jsx)(sN,ab({},e))})})},sM=()=>{let e=sC();return(0,_.jsx)("div",{className:`${sz.navTranslations} flex text-sm font-bold justify-center`,children:(0,_.jsx)("div",{className:"mx-1.5 my-1",children:(0,_.jsx)(sN,ab({},e))})})};function sL(e){var t;let{isScreenOpen:n,siteData:i,pathname:r}=e,o=(0,z.useRef)(null),a=i.themeConfig.locales||[],l=a.length>1,s=i.multiVersion.versions.length>1,d=sT(),c=!1!==i.themeConfig.darkMode,u=(null==(t=null==i?void 0:i.themeConfig)?void 0:t.socialLinks)||[],p=u.length>0,h=a.map(e=>e.lang||"zh")||[],{base:f}=i,m=()=>(0,_.jsx)("div",{className:`mt-2 ${sz.navAppearance} flex justify-center`,children:(0,_.jsx)(H,{children:(0,_.jsx)(sw,{})})}),g=({menuItems:e})=>(0,_.jsx)("div",{className:sz.navMenu,children:e.map(e=>(0,_.jsx)("div",{className:`${sz.navMenuItem} w-full`,children:"link"in e?(0,_.jsx)(sv,ab({pathname:r,base:f,langs:h},e),e.text):(0,_.jsx)("div",{className:"mx-3 last:mr-0",children:(0,_.jsx)(sN,ay(ab({},e),{items:"items"in e?e.items:e}))},e.text)},e.text))});return(0,z.useEffect)(()=>(o.current&&n&&nm(o.current,{reserveScrollBarGap:!0}),()=>{ng()}),[n]),(0,_.jsx)("div",{className:`${sz.navScreen} ${n?sz.active:""}`,ref:o,id:"navScreen",children:(0,_.jsxs)("div",{className:sz.container,children:[(0,_.jsx)(g,{menuItems:d}),(0,_.jsxs)("div",{className:"flex-center flex-col gap-2",children:[c&&(0,_.jsx)(m,{}),l&&(0,_.jsx)(sO,{}),s&&(0,_.jsx)(sM,{}),p&&(0,_.jsx)(sE,{socialLinks:u})]})]})})}var s$={navHamburger:"navHamburger_e7b06",active:"active_e7b06"};function sR(e){let{siteData:t,pathname:n}=e,{isScreenOpen:i,toggleScreen:r}=sA();return(0,_.jsxs)(z.Fragment,{children:[(0,_.jsx)(sL,{isScreenOpen:i,siteData:t,pathname:n}),(0,_.jsx)("button",{onClick:r,"aria-label":"mobile hamburger",className:`${i?s$.active:""} ${s$.navHamburger} text-gray-500`,children:(0,_.jsx)(ly,{icon:t6,fill:"currentColor"})})]})}function sH({item:e}){return(0,_.jsxs)("div",{className:"rounded-2xl my-1 flex",style:{padding:"0.4rem 1.5rem 0.4rem 0.75rem"},children:[e.tag&&(0,_.jsx)(dS,{tag:e.tag}),(0,_.jsx)("span",{className:"text-brand",children:e.text})]},e.link)}function sB({item:e}){return(0,_.jsx)("div",{className:"font-medium my-1",children:(0,_.jsx)(sg,{href:e.link,children:(0,_.jsx)("div",{className:"rounded-2xl hover:bg-mute",style:{padding:"0.4rem 1.5rem 0.4rem 0.75rem"},children:(0,_.jsxs)("div",{className:"flex",children:[e.tag&&(0,_.jsx)(dS,{tag:e.tag}),(0,_.jsx)("span",{children:e.text})]})})})},e.link)}function sD(e){let{activeValue:t,items:n,base:i="",link:r="",pathname:o=""}=e,[a,l]=(0,z.useState)(!1),s=e=>{let n=new RegExp(e.activeMatch||e.link).test((0,B.tz)(o,i));return t===e.text||!t&&n?(0,_.jsx)(sH,{item:e},e.link):(0,_.jsx)(sB,{item:e},e.link)},d=e=>(0,_.jsxs)("div",{children:["link"in e?s(e):(0,_.jsx)("p",{className:"font-bold text-gray-400 my-1 not:first:border",children:e.text}),e.items.map(s)]});return(0,_.jsxs)("div",{className:"relative flex-center h-14",onMouseLeave:()=>l(!1),children:[(0,_.jsx)("button",{onMouseEnter:()=>l(!0),className:"rspress-nav-menu-group-button flex-center items-center font-medium text-sm text-text-1 hover:text-text-2 transition-colors duration-200",children:r?(0,_.jsx)(sv,ay(ab({},e),{rightIcon:(0,_.jsx)(ly,{icon:nk})})):(0,_.jsxs)(_.Fragment,{children:[(0,_.jsxs)("span",{className:"text-sm font-medium flex",style:{marginRight:"2px"},children:[(0,_.jsx)(dS,{tag:e.tag}),e.text]}),(0,_.jsx)(ly,{icon:nk})]})}),(0,_.jsx)("div",{className:"rspress-nav-menu-group-content absolute mx-0.8 transition-opacity duration-300",style:{opacity:a?1:0,visibility:a?"visible":"hidden",right:0,top:"52px"},children:(0,_.jsx)("div",{className:"p-3 pr-2 w-full h-full max-h-100vh whitespace-nowrap",style:{boxShadow:"var(--rp-shadow-3)",zIndex:100,border:"1px solid var(--rp-c-divider-light)",borderRadius:"var(--rp-radius-large)",background:"var(--rp-c-bg)"},children:n.map(e=>(0,_.jsx)("div",{children:"items"in e?d(e):s(e)},e.text))})})]})}var sF=()=>{var e;let{siteData:t}=(0,S.Vi)(),n=aC(),{logo:i,logoText:r}=t,o=null!=(e=n.title)?e:t.title,a=(0,z.useMemo)(()=>i?"string"==typeof i?(0,_.jsx)("img",{src:(0,E.i6)(i),alt:"logo",id:"logo",className:"mr-4 rspress-logo"}):(0,_.jsxs)(_.Fragment,{children:[(0,_.jsx)("img",{src:(0,E.i6)(i.light),alt:"logo",id:"logo",className:"mr-4 rspress-logo dark:hidden"}),(0,_.jsx)("img",{src:(0,E.i6)(i.dark),alt:"logo",id:"logo",className:"mr-4 rspress-logo hidden dark:block"})]}):null,[i]);return(0,_.jsx)("div",{className:`${sx.navBarTitle}`,children:(0,_.jsxs)("a",{href:(0,E.pJ)(n.langRoutePrefix||"/"),className:"flex items-center w-full h-full text-base font-semibold transition-opacity duration-300 hover:opacity-60",children:[a,r&&(0,_.jsx)("span",{children:r}),!a&&!r&&(0,_.jsx)("span",{children:o})]})})};function sW(){let e=s_();return(0,_.jsx)("div",{className:`translation ${sx.menuItem} flex text-sm font-bold items-center px-3 py-2`,children:(0,_.jsx)("div",{children:(0,_.jsx)(sD,ab({},e))})})}function sq(){let e=sC();return(0,_.jsx)("div",{className:`translation ${sx.menuItem} flex text-sm font-bold items-center px-3 py-2`,children:(0,_.jsx)("div",{children:(0,_.jsx)(sD,ab({},e))})})}var sV="right";function sU(e){var t;let{beforeNavTitle:n,afterNavTitle:i,beforeNav:r,afterNavMenu:o}=e,{siteData:a}=(0,S.Vi)(),{base:l}=a,{pathname:s}=(0,N.TH)(),[d,c]=(0,z.useState)(!1),u=aM(),p=Object.values(a.locales||a.themeConfig.locales||{}),h=p.length>1,f=a.multiVersion.versions.length>1,m=a.themeConfig.socialLinks||[],g=m.length>0,x=p.map(e=>e.lang||"")||[],v=()=>{c(ld())};(0,z.useEffect)(()=>(window.addEventListener("resize",v),c(ld()),()=>{window.removeEventListener("resize",v)}),[]);let b=({menuItems:e})=>(0,_.jsx)("div",{className:"rspress-nav-menu menu h-14",children:e.map(e=>"items"in e||Array.isArray(e)?(0,_.jsx)("div",{className:"mx-3 last:mr-0",children:(0,_.jsx)(sD,ay(ab({},e),{base:l,pathname:s,langs:x,items:"items"in e?e.items:e}))},e.text):(0,_.jsx)(sv,ab({pathname:s,langs:x,base:l},e),e.link))}),y=sT(),w=e=>{var t;return null!=(t=e.position)?t:sV},k=y.filter(e=>"left"===w(e)),j=y.filter(e=>"right"===w(e)),I=(null==(t=null==a?void 0:a.themeConfig)?void 0:t.search)!==!1,P=!1!==a.themeConfig.darkMode,E=()=>k.length>0?(0,_.jsx)("div",{className:sx.leftNav,children:(0,_.jsx)(b,{menuItems:k})}):null,C=()=>(0,_.jsxs)("div",{className:sx.rightNav,children:[I&&(0,_.jsx)("div",{className:"flex sm:flex-1 items-center sm:pl-4 sm:pr-2",children:(0,_.jsx)(dd,{})}),(0,_.jsx)(b,{menuItems:j}),(0,_.jsxs)("div",{className:"flex-center flex-row",children:[h&&(0,_.jsx)(sW,{}),f&&(0,_.jsx)(sq,{}),P&&(0,_.jsx)("div",{className:"mx-2",children:(0,_.jsx)(sw,{})}),g&&(0,_.jsx)(sE,{socialLinks:m})]})]});return(0,_.jsxs)(_.Fragment,{children:[r,(0,_.jsx)("div",{className:`${sx.navContainer} rspress-nav px-6 ${u&&!d?sx.hidden:""}`,style:{position:d?"relative":"sticky"},children:(0,_.jsxs)("div",{className:`${sx.container} flex justify-between items-center h-full`,children:[n,(0,_.jsx)(sF,{}),i,(0,_.jsxs)("div",{className:"flex flex-1 justify-end items-center",children:[E(),C(),o,(0,_.jsxs)("div",{className:sx.mobileNavMenu,children:[d&&I&&(0,_.jsx)(dd,{}),(0,_.jsx)(sR,{siteData:a,pathname:s})]})]})]})})]})}var sZ={"header-anchor":"header-anchor_8f375",headerAnchor:"header-anchor_8f375","overview-groups":"overview-groups_8f375",overviewGroups:"overview-groups_8f375","overview-group-li":"overview-group-li_8f375",overviewGroupLi:"overview-group-li_8f375","level-2":"level-2_8f375",level2:"level-2_8f375","level-3":"level-3_8f375",level3:"level-3_8f375","level-4":"level-4_8f375",level4:"level-4_8f375","overview-group":"overview-group_8f375",overviewGroup:"overview-group_8f375",header:"header_8f375"};function sG(e){var t;let{siteData:n,page:{routePath:i,title:r,frontmatter:o}}=(0,S.Vi)(),{content:a,groups:l,defaultGroupTitle:s="Others"}=e,d=e=>(0,E.pJ)(e).startsWith(i.replace(/overview$/,""))&&!(0,E.pV)((0,E.pJ)(e),i),c=e=>"link"in e&&e.link?e.link:"items"in e?c(e.items[0]):"",u=(e,t,n)=>{for(let i of e){if((0,E.pJ)(i.link)===t)return[i];if(i.items){let e=u(i.items,t,n);if(e)return e}}return n},{pages:p}=n,h=p.filter(e=>d(e.routePath)),{items:f}=aN();function m(t,n,r){var o,a,l,s,d;if("dividerType"in t)return t;if((0,E.pJ)(t.link)===`${i}index`&&(null==r?void 0:r.overview)===!0)return!1;let u=null!=(s=null!=(l=null!=(a=null!=(o=null==e?void 0:e.overviewHeaders)?o:t.overviewHeaders)?a:null==r?void 0:r.overviewHeaders)?l:null==n?void 0:n.overviewHeaders)?s:[2],p=h.find(e=>(0,E.pV)(e.routePath,(0,E.pJ)(t.link||""))),f=c(t);return ay(ab({},t),{link:f,headers:(null==(d=null==p?void 0:p.toc)?void 0:d.filter(e=>u.some(t=>e.depth===t)))||[]})}(null==(t=f[0])?void 0:t.link)!==i&&(f=u(f,i,f));let g=e=>!("items"in e)&&"link"in e,x=null!=l?l:(0,z.useMemo)(()=>f.filter(e=>"items"in e&&e.items?e.items.filter(e=>d(c(e))).length>0:!!(g(e)&&d(c(e)))||!1).map(e=>{var t;let n=[];return(null==e?void 0:e.items)?n=null==(t=null==e?void 0:e.items)?void 0:t.map(t=>m(t,e,o)).filter(Boolean):g(e)&&(n=[m({link:e.link,text:e.text||"",tag:e.tag,_fileKey:e._fileKey,overviewHeaders:e.overviewHeaders},void 0,o)]),{name:e.text||"",items:n}}),[f,i,o]);return(0,_.jsxs)("div",{className:"overview-index mx-auto px-8",children:[(0,_.jsx)("div",{className:"flex items-center justify-between",children:!r&&(0,_.jsx)("h1",{className:"text-3xl leading-10 tracking-tight",children:"Overview"})}),a,x.map(e=>(0,_.jsxs)("div",{className:"mb-16",children:[e.name===s&&1===x.length?(0,_.jsx)("h2",{style:{paddingTop:0}}):(0,_.jsx)("h2",{children:lf(e.name)}),(0,_.jsx)("div",{className:sZ.overviewGroups,children:e.items.map(e=>{var t;return(0,_.jsxs)("div",{className:sZ.overviewGroup,children:[(0,_.jsx)("div",{className:"flex",children:(0,_.jsx)("h3",{style:{marginBottom:8},children:(0,_.jsx)(sg,{href:(0,E.AP)(e.link),children:lf(e.text)})})}),(0,_.jsx)("ul",{className:"list-none",children:null==(t=e.headers)?void 0:t.map(t=>(0,_.jsx)("li",{className:`${sZ.overviewGroupLi} ${sZ[`level${t.depth}`]} first:mt-2`,children:(0,_.jsx)(sg,{href:`${(0,E.AP)(e.link)}#${t.id}`,children:lf(t.text)})},t.id))})]},e.link)})})]},e.name))]})}function sY(e){return(0,_.jsxs)("svg",ay(ab({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 256 256"},e),{children:[(0,_.jsx)("path",{fill:"#C12127",d:"M0 256V0h256v256z"}),(0,_.jsx)("path",{fill:"#FFF",d:"M48 48h160v160h-32V80h-48v128H48z"})]}))}function sK(e){return(0,_.jsx)("svg",ay(ab({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 128 128"},e),{children:(0,_.jsxs)("g",{fill:"#2c8ebb",children:[(0,_.jsx)("path",{d:"M99.24 80.71C94.9 80.76 91.1 83 87.89 85c-6 3.71-9 3.47-9 3.47l-.1-.17c-.41-.67 1.92-6.68-.69-13.84c-2.82-7.83-7.3-9.72-6.94-10.32c1.53-2.59 5.36-6.7 6.89-14.36c.91-4.64.67-12.28-1.39-16.28c-.38-.74-3.78 1.24-3.78 1.24s-3.18-7.09-4.07-7.66c-2.87-1.84-6 7.61-6 7.61a14 14 0 0 0-11.71 4.5a9.64 9.64 0 0 1-3.85 2.27c-.41.14-.91.12-2.15 3.47c-1.9 5.07 3.24 10.81 3.24 10.81s-6.13 4.33-8.4 9.72a24.78 24.78 0 0 0-1.75 11.68s-4.36 3.78-4.64 7.68a12.87 12.87 0 0 0 1.77 7.83a1.94 1.94 0 0 0 2.63.91s-2.9 3.38-.19 4.81c2.47 1.29 6.63 2 8.83-.19c1.6-1.6 1.92-5.17 2.51-6.63c.14-.34.62.57 1.08 1a10 10 0 0 0 1.36 1s-3.9 1.68-2.3 5.51c.53 1.27 2.42 2.08 5.51 2.06c1.15 0 13.76-.72 17.12-1.53a4.33 4.33 0 0 0 2.61-1.46a63 63 0 0 0 15.49-7c4.74-3.09 6.68-3.93 10.51-4.84c3.16-.75 2.95-5.65-1.24-5.58z"}),(0,_.jsx)("path",{d:"M64 2a62 62 0 1 0 62 62A62 62 0 0 0 64 2zm37.3 87.83c-3.35.81-4.91 1.44-9.41 4.36a67 67 0 0 1-15.56 7.18a8.71 8.71 0 0 1-3.64 1.77c-3.81.93-16.88 1.63-17.91 1.63h-.24c-4 0-6.27-1.24-7.49-2.54c-3.4 1.7-7.8 1-11-.69a5.55 5.55 0 0 1-3-3.9a6 6 0 0 1 0-2.06a6.66 6.66 0 0 1-.79-1A16.38 16.38 0 0 1 30 84.52c.29-3.73 2.87-7.06 4.55-8.83A28.56 28.56 0 0 1 36.61 64a26.82 26.82 0 0 1 6.82-9c-1.65-2.78-3.33-7.06-1.7-11.42c1.17-3.11 2.13-4.84 4.24-5.58a6.84 6.84 0 0 0 2.51-1.34A17.65 17.65 0 0 1 60.34 31c.19-.48.41-1 .65-1.46c1.6-3.4 3.3-5.31 5.29-6a4.88 4.88 0 0 1 4.4.5c.65.43 1.48 1 3.9 6a4.69 4.69 0 0 1 2.85-.1a3.81 3.81 0 0 1 2.39 1.94c2.47 4.74 2.8 13.19 1.72 18.62a33.8 33.8 0 0 1-5.84 13.31a25.73 25.73 0 0 1 5.77 9.43a25.42 25.42 0 0 1 1.41 10.41A28.7 28.7 0 0 0 86 81.91c3.06-1.89 7.68-4.74 13.19-4.81a6.62 6.62 0 0 1 7 5.7a6.35 6.35 0 0 1-4.89 7.03z"})]})}))}function sJ(e){return(0,_.jsxs)("svg",ay(ab({xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 128 128"},e),{children:[(0,_.jsx)("path",{fill:"#f8ab00",d:"M0 .004V40h39.996V.004Zm43.996 0V40h40V.004Zm44.008 0V40H128V.004Zm0 43.996v39.996H128V44Z"}),(0,_.jsx)("path",{fill:"#4c4c4c",d:"M43.996 44v39.996h40V44ZM0 87.996v40h39.996v-40Zm43.996 0v40h40v-40Zm44.008 0v40H128v-40Z"})]}))}function sQ(e){return(0,_.jsxs)("svg",ay(ab({id:"Bun",width:"1.2em",height:"1.2em",viewBox:"0 0 80 70"},e),{children:[(0,_.jsx)("path",{id:"Shadow",d:"M71.09,20.74c-.16-.17-.33-.34-.5-.5s-.33-.34-.5-.5-.33-.34-.5-.5-.33-.34-.5-.5-.33-.34-.5-.5-.33-.34-.5-.5-.33-.34-.5-.5A26.46,26.46,0,0,1,75.5,35.7c0,16.57-16.82,30.05-37.5,30.05-11.58,0-21.94-4.23-28.83-10.86l.5.5.5.5.5.5.5.5.5.5.5.5.5.5C19.55,65.3,30.14,69.75,42,69.75c20.68,0,37.5-13.48,37.5-30C79.5,32.69,76.46,26,71.09,20.74Z"}),(0,_.jsxs)("g",{id:"Body",children:[(0,_.jsx)("path",{id:"Background",d:"M73,35.7c0,15.21-15.67,27.54-35,27.54S3,50.91,3,35.7C3,26.27,9,17.94,18.22,13S33.18,3,38,3s8.94,4.13,19.78,10C67,17.94,73,26.27,73,35.7Z",style:{fill:"#fbf0df"}}),(0,_.jsx)("path",{id:"Bottom_Shadow","data-name":"Bottom Shadow",d:"M73,35.7a21.67,21.67,0,0,0-.8-5.78c-2.73,33.3-43.35,34.9-59.32,24.94A40,40,0,0,0,38,63.24C57.3,63.24,73,50.89,73,35.7Z",style:{fill:"#f6dece"}}),(0,_.jsx)("path",{id:"Light_Shine","data-name":"Light Shine",d:"M24.53,11.17C29,8.49,34.94,3.46,40.78,3.45A9.29,9.29,0,0,0,38,3c-2.42,0-5,1.25-8.25,3.13-1.13.66-2.3,1.39-3.54,2.15-2.33,1.44-5,3.07-8,4.7C8.69,18.13,3,26.62,3,35.7c0,.4,0,.8,0,1.19C9.06,15.48,20.07,13.85,24.53,11.17Z",style:{fill:"#fffefc"}}),(0,_.jsx)("path",{id:"Top",d:"M35.12,5.53A16.41,16.41,0,0,1,29.49,18c-.28.25-.06.73.3.59,3.37-1.31,7.92-5.23,6-13.14C35.71,5,35.12,5.12,35.12,5.53Zm2.27,0A16.24,16.24,0,0,1,39,19c-.12.35.31.65.55.36C41.74,16.56,43.65,11,37.93,5,37.64,4.74,37.19,5.14,37.39,5.49Zm2.76-.17A16.42,16.42,0,0,1,47,17.12a.33.33,0,0,0,.65.11c.92-3.49.4-9.44-7.17-12.53C40.08,4.54,39.82,5.08,40.15,5.32ZM21.69,15.76a16.94,16.94,0,0,0,10.47-9c.18-.36.75-.22.66.18-1.73,8-7.52,9.67-11.12,9.45C21.32,16.4,21.33,15.87,21.69,15.76Z",style:{fill:"#ccbea7",fillRule:"evenodd"}}),(0,_.jsx)("path",{id:"Outline",d:"M38,65.75C17.32,65.75.5,52.27.5,35.7c0-10,6.18-19.33,16.53-24.92,3-1.6,5.57-3.21,7.86-4.62,1.26-.78,2.45-1.51,3.6-2.19C32,1.89,35,.5,38,.5s5.62,1.2,8.9,3.14c1,.57,2,1.19,3.07,1.87,2.49,1.54,5.3,3.28,9,5.27C69.32,16.37,75.5,25.69,75.5,35.7,75.5,52.27,58.68,65.75,38,65.75ZM38,3c-2.42,0-5,1.25-8.25,3.13-1.13.66-2.3,1.39-3.54,2.15-2.33,1.44-5,3.07-8,4.7C8.69,18.13,3,26.62,3,35.7,3,50.89,18.7,63.25,38,63.25S73,50.89,73,35.7C73,26.62,67.31,18.13,57.78,13,54,11,51.05,9.12,48.66,7.64c-1.09-.67-2.09-1.29-3-1.84C42.63,4,40.42,3,38,3Z"})]}),(0,_.jsxs)("g",{id:"Mouth",children:[(0,_.jsx)("g",{id:"Background-2","data-name":"Background",children:(0,_.jsx)("path",{d:"M45.05,43a8.93,8.93,0,0,1-2.92,4.71,6.81,6.81,0,0,1-4,1.88A6.84,6.84,0,0,1,34,47.71,8.93,8.93,0,0,1,31.12,43a.72.72,0,0,1,.8-.81H44.26A.72.72,0,0,1,45.05,43Z",style:{fill:"#b71422"}})}),(0,_.jsxs)("g",{id:"Tongue",children:[(0,_.jsx)("path",{id:"Background-3","data-name":"Background",d:"M34,47.79a6.91,6.91,0,0,0,4.12,1.9,6.91,6.91,0,0,0,4.11-1.9,10.63,10.63,0,0,0,1-1.07,6.83,6.83,0,0,0-4.9-2.31,6.15,6.15,0,0,0-5,2.78C33.56,47.4,33.76,47.6,34,47.79Z",style:{fill:"#ff6164"}}),(0,_.jsx)("path",{id:"Outline-2","data-name":"Outline",d:"M34.16,47a5.36,5.36,0,0,1,4.19-2.08,6,6,0,0,1,4,1.69c.23-.25.45-.51.66-.77a7,7,0,0,0-4.71-1.93,6.36,6.36,0,0,0-4.89,2.36A9.53,9.53,0,0,0,34.16,47Z"})]}),(0,_.jsx)("path",{id:"Outline-3","data-name":"Outline",d:"M38.09,50.19a7.42,7.42,0,0,1-4.45-2,9.52,9.52,0,0,1-3.11-5.05,1.2,1.2,0,0,1,.26-1,1.41,1.41,0,0,1,1.13-.51H44.26a1.44,1.44,0,0,1,1.13.51,1.19,1.19,0,0,1,.25,1h0a9.52,9.52,0,0,1-3.11,5.05A7.42,7.42,0,0,1,38.09,50.19Zm-6.17-7.4c-.16,0-.2.07-.21.09a8.29,8.29,0,0,0,2.73,4.37A6.23,6.23,0,0,0,38.09,49a6.28,6.28,0,0,0,3.65-1.73,8.3,8.3,0,0,0,2.72-4.37.21.21,0,0,0-.2-.09Z"})]}),(0,_.jsxs)("g",{id:"Face",children:[(0,_.jsx)("ellipse",{id:"Right_Blush","data-name":"Right Blush",cx:"53.22",cy:"40.18",rx:"5.85",ry:"3.44",style:{fill:"#febbd0"}}),(0,_.jsx)("ellipse",{id:"Left_Bluch","data-name":"Left Bluch",cx:"22.95",cy:"40.18",rx:"5.85",ry:"3.44",style:{fill:"#febbd0"}}),(0,_.jsx)("path",{id:"Eyes",d:"M25.7,38.8a5.51,5.51,0,1,0-5.5-5.51A5.51,5.51,0,0,0,25.7,38.8Zm24.77,0A5.51,5.51,0,1,0,45,33.29,5.5,5.5,0,0,0,50.47,38.8Z",style:{fillRule:"evenodd"}}),(0,_.jsx)("path",{id:"Iris",d:"M24,33.64a2.07,2.07,0,1,0-2.06-2.07A2.07,2.07,0,0,0,24,33.64Zm24.77,0a2.07,2.07,0,1,0-2.06-2.07A2.07,2.07,0,0,0,48.75,33.64Z",style:{fill:"#fff",fillRule:"evenodd"}})]})]}))}function sX(e){if(e.startsWith("yarn create"))return e.replace(/(yarn create [^\s]+)@latest/,"$1");if(!(null==e?void 0:e.includes("install")))return e;let t=e.split(" ").filter(e=>!e.startsWith("-")&&!e.startsWith("--")).join(" ");return"yarn install"===t||"bun install"===t?e:e.replace("install","add")}function s0({command:e,additionalTabs:t=[]}){let n;let i={npm:(0,_.jsx)(sY,{}),yarn:(0,_.jsx)(sK,{}),pnpm:(0,_.jsx)(sJ,{}),bun:(0,_.jsx)(sQ,{})};return t.forEach(e=>{i[e.tool]=e.icon}),"string"==typeof e?(n={npm:`npm ${e}`,yarn:`yarn ${e}`,pnpm:`pnpm ${e}`,bun:`bun ${e}`},t.forEach(t=>{n[t.tool]=`${t.tool} ${e}`})):n=e,n.yarn&&(n.yarn=sX(n.yarn)),n.bun&&(n.bun=sX(n.bun)),(0,_.jsx)(de,{groupId:"package.manager",values:Object.entries(n).map(([e])=>(0,_.jsxs)("div",{style:{display:"flex",alignItems:"center",fontSize:15},children:[i[e],(0,_.jsx)("span",{style:{marginLeft:6,marginBottom:2},children:e})]},e)),children:Object.entries(n).map(([e,t])=>(0,_.jsx)(dt,{children:(0,_.jsx)(l5,{children:(0,_.jsx)(l2,{className:"language-js",codeHighlighter:"prism",children:t})})},e))})}var s1={pagerLink:"pager-link_9b9a7",title:"title_9b9a7",next:"next_9b9a7",desc:"desc_9b9a7"};function s2(e){let{type:t,text:n,href:i}=e,{prevPageText:r="Previous Page",nextPageText:o="Next page"}=aC(),a="prev"===t?r:o,l="prev"===t?s1.pagerLink:`${s1.pagerLink} ${s1.next}`;return(0,_.jsxs)(sg,{href:i,className:l,children:[(0,_.jsx)("span",{className:s1.desc,children:a}),(0,_.jsx)("span",{className:s1.title,children:n})]})}var s3={scrollToTop:"scroll-to-top_1a167",entered:"entered_1a167"};function s4(){let[e,t]=(0,z.useState)(!1),n=()=>{t((window.scrollY||document.documentElement.scrollTop)>0)},i=()=>{window.scrollTo({top:0,behavior:"smooth"})};return(0,z.useEffect)(()=>{window.addEventListener("scroll",n)},[]),(0,_.jsx)("button",{className:`${s3.scrollToTop} ${e?s3.entered:""}`,onClick:i,children:(0,_.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",className:"w-6 h-6",children:(0,_.jsx)("path",{fillRule:"evenodd",d:"M11.47 2.47a.75.75 0 0 1 1.06 0l7.5 7.5a.75.75 0 1 1-1.06 1.06l-6.22-6.22V21a.75.75 0 0 1-1.5 0V4.81l-6.22 6.22a.75.75 0 1 1-1.06-1.06l7.5-7.5Z",clipRule:"evenodd"})})})}var s5={mask:"mask_6e282",modal:"modal_6e282",inputForm:"inputForm_6e282",input:"input_6e282",close:"close_6e282",searchHits:"searchHits_6e282",groupTitle:"groupTitle_6e282",navSearchButton:"navSearchButton_6e282",searchWord:"searchWord_6e282",suggestItem:"suggestItem_6e282",suggestItemContainer:"suggestItemContainer_6e282",contentWrapper:"contentWrapper_6e282",mark:"mark_6e282",titleForContent:"titleForContent_6e282",actionIcon:"actionIcon_6e282",current:"current_6e282",tabClassName:"tabClassName_6e282",mobileNavSearchButton:"mobileNavSearchButton_6e282"},s6={container:"container_fa768",tabList:"tab-list_fa768",tab:"tab_fa768",notSelected:"not-selected_fa768",selected:"selected_fa768",noScrollbar:"no-scrollbar_fa768"};function s7(e){return!!e&&"object"==typeof e&&"label"in e||!1}var s8=e=>s7(e)?e.label||e.value:e,s9="rspress.tabs.",de=(0,z.forwardRef)((e,t)=>{let{values:n,defaultValue:i,onChange:r,children:o,groupId:a,tabPosition:l="left",tabContainerClassName:s}=e,d=z.Children.toArray(o).filter(e=>!("string"==typeof e&&""===e.trim())),c=n||[];0===c.length&&(c=z.Children.map(d,e=>{var t,n,i;return(0,z.isValidElement)(e)?{label:null==(t=e.props)?void 0:t.label,value:(null==(n=e.props)?void 0:n.value)||(null==(i=e.props)?void 0:i.label)}:{label:void 0,value:void 0}}));let{tabData:u,setTabData:p}=(0,z.useContext)(lk),[h,f]=(0,z.useState)(()=>void 0===i?0:c.findIndex(e=>"string"==typeof e?e===i:!!e&&"object"==typeof e&&"value"in e&&e.value===i)),[m,g]=lr(`${s9}${a}`,h),x=(0,z.useMemo)(()=>{if(a)return void 0!==u[a]?u[a]:Number.parseInt(m);return h},[u[a]]);(0,z.useEffect)(()=>{if(a){let e=Number.parseInt(m);x!==e&&p(ay(ab({},u),{[a]:e}))}},[m]);let v=a?x:h;return(0,_.jsxs)("div",{className:s6.container,ref:t,children:[(0,_.jsx)("div",{className:s,children:c.length?(0,_.jsx)("div",{className:`${s6.tabList} ${s6.noScrollbar}`,style:{justifyContent:"center"===l?"center":"flex-start"},children:c.map((e,t)=>(0,_.jsx)("div",{className:`${s6.tab} ${v===t?s6.selected:s6.notSelected}`,onClick:()=>{null==r||r(t),a?(p(ay(ab({},u),{[a]:t})),g(t)):f(t)},children:s8(e)},t))}):null}),(0,_.jsx)("div",{children:z.Children.toArray(d)[v]})]})});function dt(e){var t=e,{children:n}=t,i=aw(t,["children"]);return(0,_.jsx)("div",ay(ab({},i),{className:"rounded px-2",children:n}))}function dn({query:e}){let{searchNoResultsText:t="No results for",searchSuggestedQueryText:n="Please try again with a different keyword"}=aC();return(0,_.jsxs)("div",{className:"flex flex-col items-center pt-8 pb-2",children:[(0,_.jsx)(ly,{icon:ao,className:"mb-4 opacity-80"}),(0,_.jsxs)("p",{className:"mb-2",children:[t," ",(0,_.jsxs)("b",{children:['"',e,'"']})]}),(0,_.jsx)("p",{children:n})]})}var di={title:ad,header:as,content:aa};function dr({suggestion:e,closeSearch:t,isCurrent:n,setCurrentSuggestionIndex:i,inCurrentDocIndex:r,scrollTo:o,onMouseMove:a}){var l,s;let d=di[e.type],c=r&&!(0,B.yv)()?aG(e.link):e.link,u=(0,z.useRef)(null);n&&o(null==(l=null==u?void 0:u.current)?void 0:l.offsetTop,null==(s=null==u?void 0:u.current)?void 0:s.offsetHeight);let p=(e,t)=>{let n=[],i=0;for(let r of t){let{start:t,length:o}=r,a=e.slice(i,t),l=aX(e,t,o);n.push(a),n.push((0,_.jsx)("span",{className:s5.mark,children:l},t)),i=t+l.length}return i<e.length&&n.push(e.slice(i)),n},h=()=>{if("header"===e.type||"title"===e.type){let{header:t,highlightInfoList:n}=e;return(0,_.jsx)("div",{className:"font-medium",children:p(t,n)})}return(0,_.jsx)("div",{className:"font-medium",children:e.header})},f=()=>{if("content"!==e.type)return(0,_.jsx)("div",{});let{statement:t,highlightInfoList:n}=e;return(0,_.jsx)("div",{className:"text-sm text-gray-light w-full",children:p(t,n)})},m=null;switch(e.type){case"title":case"header":m=h();break;case"content":m=(0,_.jsxs)(_.Fragment,{children:[f(),(0,_.jsx)("p",{className:s5.titleForContent,children:e.title})]})}return(0,_.jsx)("li",{className:`${s5.suggestItem} ${n?s5.current:""}`,onMouseEnter:i,onMouseMove:a,ref:u,children:(0,_.jsx)("a",{href:c,onClick:e=>{t(),e.stopPropagation()},target:r?"_self":"_blank",children:(0,_.jsxs)("div",{className:s5.suggestItemContainer,children:[(0,_.jsx)("div",{className:s5.hitIcon,children:(0,_.jsx)(ly,{icon:d})}),(0,_.jsx)("div",{className:s5.contentWrapper,children:(0,_.jsx)("span",{children:m})}),(0,_.jsx)("div",{className:s5.actionIcon,children:(0,_.jsx)(ly,{icon:al})})]})})},e.link)}var da={ARROW_UP:"ArrowUp",ARROW_DOWN:"ArrowDown",ENTER:"Enter",SEARCH:"KeyK",ESC:"Escape"},dl=e=>{let t=(0,z.useRef)(e);return t.current=e,(0,z.useCallback)(ey((...e)=>t.current(...e),150),[])};function ds({focused:e,setFocused:t}){var n,i,r,o;let[a,l]=(0,z.useState)(""),[s,d]=(0,z.useState)([]),c=(0,z.useRef)(null),[u,p]=(0,z.useState)(!0),[h,f]=(0,z.useState)(!1),[m,g]=(0,z.useState)(0),[x,v]=(0,z.useState)(0),b=(0,z.useRef)(null),y=(0,z.useRef)(null),w=(0,z.useRef)(null),k=(0,z.useRef)(null),j=(0,z.useRef)({pageX:null,pageY:null}),[I,E]=(0,z.useState)(!1),C=(e,t)=>{var n,i,r,o,a;if(I){let l=e+t-(null==(n=null==w?void 0:w.current)?void 0:n.offsetHeight)-(1===s.length?50:-10);l>(null==(i=null==w?void 0:w.current)?void 0:i.scrollTop)&&(null==(r=null==w?void 0:w.current)||r.scrollTo({top:l}));let d=1===s.length?e-70:e-10;d<(null==(o=null==w?void 0:w.current)?void 0:o.scrollTop)&&(null==(a=null==w?void 0:w.current)||a.scrollTo({top:d}))}},{siteData:N,page:{lang:A,version:T}}=(0,S.Vi)(),{sidebar:O,searchPlaceholderText:M="Search Docs"}=aC(),{search:L,title:$}=N,R=L&&"remote"!==L.mode&&L.versioned,H=[{group:$,result:[],renderType:"default"}],D=null!=(i=null==(n=s[m])?void 0:n.result)?i:[],F=null!=(o=null==(r=s[m])?void 0:r.renderType)?o:"default",W=e=>az(O,e).group;function q(){return aE(this,null,function*(){var e,t;if(!1===L)return;let n={currentLang:A,currentVersion:T,extractGroupName:W},i=new a9(ab(ab({indexName:$},L),n));b.current=i,y.current=n,yield b.current.init(),p(!1);let r=null==(e=c.current)?void 0:e.value;r&&(d((yield null==(t=b.current)?void 0:t.match(r))||H),f(!1))})}let V=()=>{t(!1),g(0),v(0)};(0,z.useEffect)(()=>{let n=n=>{switch(n.code){case da.SEARCH:(n.ctrlKey||n.metaKey)&&(n.preventDefault(),t(!e));break;case da.ARROW_DOWN:e&&(n.preventDefault(),D&&"default"===F&&(E(!0),v((x+1)%D.length)));break;case da.ARROW_UP:if(e&&(n.preventDefault(),"default"===F)){let e=D.length;E(!0),v((x-1+e)%e)}break;case da.ENTER:if(x>=0&&"default"===F){let e=[].concat(...Object.values(Z(D)))[x];0===m?window.location.href=(0,B.yv)()?e.link:aG(e.link):window.open(e.link),V()}break;case da.ESC:V()}};return document.addEventListener("keydown",n),()=>{document.removeEventListener("keydown",n)}},[v,t,e,m,D,x]),(0,z.useEffect)(()=>{e?(d(H),!b.current&&q()):l("")},[e]),(0,z.useEffect)(()=>{var e;let{currentLang:t,currentVersion:n}=null!=(e=y.current)?e:{},i=A!==t,r=R&&T!==n;!u&&(i||r)&&q()},[A,T,R]);let U=dl(e=>aE(this,null,function*(){var t,n;let i=e;if(l(i),L&&"remote"===L.mode&&L.searchLoading&&f(!0),i){let e=[];if("beforeSearch"in P){let e="beforeSearch",t=yield P[e](i);t&&(i=t)}let r=yield null==(t=b.current)?void 0:t.match(i);if(r&&e.push(...r),"onSearch"in P){let t="onSearch",n=yield P[t](i,e);n&&e.push(...n.map(e=>ab({renderType:"custom"},e)))}if("afterSearch"in P){let t="afterSearch";yield P[t](i,e)}(null==(n=c.current)?void 0:n.value)===i&&(d(e||H),f(!1))}})),Z=e=>at(e,"group"),G=(e,t,n)=>{if(1===e.length){let t=e[0].result;return 0!==t.length||n?(0,_.jsx)("div",{ref:k,children:Y(t,a,n)}):(0,_.jsx)(dn,{query:a})}let i=e.map(e=>t&&"remote"===t.mode?aK(t.searchIndexes||[]).find(t=>t.value===e.group).label:e.group),r="render";return(0,_.jsx)(de,{values:i,tabContainerClassName:s5.tabClassName,onChange:e=>{g(e),v(0)},ref:k,children:e.map(e=>(0,_.jsxs)(dt,{children:["default"===e.renderType&&Y(e.result,a,n),"custom"===e.renderType&&P[r](e.result)]},e.group))})},Y=(e,t,n)=>{if(n)return(0,_.jsx)("div",{className:"flex flex-col items-center",children:(0,_.jsx)(ly,{icon:ar,className:"m-8 opacity-80"})});if(0===e.length&&!u)return(0,_.jsx)(dn,{query:t});let i=Z(e),r=-1;return(0,_.jsx)("ul",{className:s5.suggestList,children:Object.keys(i).map(e=>{let t=i[e]||[];return(0,_.jsx)("li",{children:(0,_.jsx)("ul",{className:"pb-2",children:t.map(e=>{let t=++r;return(0,_.jsx)(dr,{suggestion:e,isCurrent:t===x,setCurrentSuggestionIndex:e=>{if(j.current.pageX!==e.pageX||j.current.pageY!==e.pageY)E(!1),v(t)},onMouseMove:e=>{j.current={pageX:e.pageX,pageY:e.pageY}},closeSearch:()=>{V()},inCurrentDocIndex:0===m,scrollTo:C},`${e.title}-${t}`)})})},e)})})};return(0,_.jsx)(_.Fragment,{children:e&&(0,e3.createPortal)((0,_.jsx)("div",{className:s5.mask,onClick:()=>{V()},children:(0,_.jsxs)("div",{className:`${s5.modal}`,onClick:e=>{t(!0),e.stopPropagation()},children:[(0,_.jsxs)("div",{className:"flex items-center",children:[(0,_.jsxs)("div",{className:s5.inputForm,children:[(0,_.jsx)("label",{children:(0,_.jsx)(ly,{icon:nj})}),(0,_.jsx)("input",{className:s5.input,ref:c,placeholder:M,"aria-label":"Search",autoComplete:"off",autoFocus:!0,onChange:e=>U(e.target.value)}),(0,_.jsx)("label",{children:(0,_.jsx)(ly,{icon:ai,className:s5.close,onClick:e=>{c.current&&(e.stopPropagation(),a?(c.current.value="",l("")):V())}})})]}),(0,_.jsx)("h2",{className:"text-brand ml-2 sm:hidden cursor-pointer",onClick:e=>{e.stopPropagation(),V()},children:"Cancel"})]}),a&&!u?(0,_.jsx)("div",{className:`${s5.searchHits} rspress-scrollbar`,ref:w,children:G(s,L,h)}):null]})}),document.getElementById("search-container"))})}function dd(){let[e,t]=(0,z.useState)(!1),[n,i]=(0,z.useState)(null),{searchPlaceholderText:r="Search Docs"}=aC();return(0,z.useEffect)(()=>{i(/(Mac|iPhone|iPod|iPad)/i.test(navigator.platform)?"⌘":"Ctrl")},[]),(0,_.jsxs)(_.Fragment,{children:[(0,_.jsx)("div",{className:`rspress-nav-search-button ${s5.navSearchButton}`,onClick:()=>t(!0),children:(0,_.jsxs)("button",{children:[(0,_.jsx)(ly,{icon:nj,width:"18",height:"18"}),(0,_.jsx)("p",{className:s5.searchWord,children:r}),(0,_.jsxs)("div",{style:{opacity:n?1:0},children:[(0,_.jsx)("span",{children:n}),(0,_.jsx)("span",{children:"K"})]})]})}),(0,_.jsx)("div",{className:s5.mobileNavSearchButton,onClick:()=>t(!0),children:(0,_.jsx)(ly,{icon:nj})}),(0,_.jsx)(ds,{focused:e,setFocused:t})]})}var dc={navTitleMask:"navTitleMask_71eca",sidebar:"sidebar_71eca",sidebarContent:"sidebarContent_71eca",open:"open_71eca",menuLink:"menuLink_71eca",menuItem:"menuItem_71eca",collapseContainer:"collapseContainer_71eca",menuItemActive:"menuItemActive_71eca"};function du(e){let{depth:t,dividerType:n}=e,i="dashed"===n?"border-dashed":"border-solid";return(0,_.jsx)("div",{className:`${i} border-t border-divider-light my-3`,style:{marginLeft:0===t?0:"18px"}})}function dp(e){var t;let{item:n,depth:i=0,activeMatcher:r,id:o,setSidebarData:a}=e,l=(0,N.s0)(),s=(0,z.useRef)(null),d=(0,z.useRef)(null),c=(0,z.useRef)(null),u=(0,z.useRef)(!0),p=(0,z.useRef)(n.collapsed),h=n.link&&r(n.link),{collapsed:f,collapsible:m=!0}=n,g=(0,_.jsx)("div",{style:{cursor:"pointer",transition:"transform 0.2s ease-out",transform:f?"rotate(0deg)":"rotate(90deg)"},children:(0,_.jsx)(ly,{icon:eG})});(0,z.useEffect)(()=>{if(u.current||!s.current||!c.current)return;d.current&&clearTimeout(d.current);let e=s.current,t=c.current,n=t.clientHeight+4;f?(e.style.maxHeight=`${n}px`,e.style.transitionDuration="0.5s",t.style.opacity="0",d.current=setTimeout(()=>{s.current&&(s.current.style.maxHeight="0px")},0)):(e.style.maxHeight=`${n}px`,e.style.transitionDuration="0.3s",t.style.opacity="1",d.current=setTimeout(()=>{s.current&&s.current.style.removeProperty("max-height")},300))},[f]),(0,z.useEffect)(()=>{u.current=!1},[]);let x=e=>{e.stopPropagation(),a(e=>{let t=[...e],n=o.split("-").map(Number),i=t[n.shift()];for(let e of n)i=i.items[e];return"items"in i&&(i.collapsed=!i.collapsed),t})};return(0,_.jsxs)("section",{className:"mt-0.5 block","data-context":n.context,style:{marginLeft:0===i?0:"18px"},children:[(0,_.jsxs)("div",{className:`flex justify-between items-center ${h?dc.menuItemActive:dc.menuItem}`,onMouseEnter:()=>n.link&&e.preloadLink(n.link),onClick:e=>{n.link&&l((0,E.pJ)((0,E.AP)(n.link))),m&&x(e)},style:{borderRadius:0===i?"0 var(--rp-radius) var(--rp-radius) 0":void 0,cursor:m||n.link?"pointer":"normal"},children:[(0,_.jsxs)("h2",{className:"py-2 px-3 text-sm font-medium flex",style:ab({},0===i?db:{}),children:[(0,_.jsx)(dS,{tag:n.tag}),(0,_.jsx)("span",{className:"flex-center",style:{fontSize:0===i?"14px":"13px"},children:lf(n.text)})]}),m&&(0,_.jsx)("div",{className:`${dc.collapseContainer} p-2 rounded-xl`,onClick:x,children:g})]}),(0,_.jsx)("div",{ref:s,className:"transition-all duration-300 ease-in-out",style:{overflow:"hidden",maxHeight:p.current?0:void 0},children:(0,_.jsx)("div",{ref:c,className:"rspress-sidebar-group transition-opacity duration-500 ease-in-out",style:{opacity:p.current?0:1,marginLeft:0===i?"12px":0},children:null==(t=null==n?void 0:n.items)?void 0:t.map((t,n)=>"dividerType"in t?(0,_.jsx)(du,{depth:i+1,dividerType:t.dividerType},n):(0,_.jsx)("div",{"data-context":t.context,children:(0,_.jsx)(dm,ay(ab({},e),{item:t,depth:i+1,id:`${o}-${n}`,preloadLink:e.preloadLink}))},n))})})]},o)}function dh(){let[,e]=(0,z.useState)(0);return()=>{e(e=>e+1)}}var df=e=>e.replace(/\.(mdx?)$/,"");function dm(e){let{item:t,depth:n=0,activeMatcher:i,id:r,setSidebarData:o}=e,a="link"in t&&t.link&&i(t.link),{page:l}=(0,S.Vi)(),s=(0,z.useRef)(null),d=(0,z.useRef)(t.text),c=dh();return((0,z.useEffect)(()=>{var e;a&&(null==(e=s.current)||e.scrollIntoView({block:"center"}))},[]),!(0,B.yv)()&&t._fileKey===df(l.pagePath)&&l.title&&(d.current=l.title),(0,z.useEffect)(()=>{if(t.text!==d.current)d.current=t.text,c()},[t.text]),"items"in t)?(0,_.jsx)(dp,{id:r,item:t,depth:n,activeMatcher:i,collapsed:t.collapsed,setSidebarData:o,preloadLink:e.preloadLink},`${t.text}-${r}`):(0,_.jsx)(sg,{href:(0,E.AP)(t.link),className:dc.menuLink,children:(0,_.jsxs)("div",{ref:s,onMouseEnter:()=>e.preloadLink(t.link),className:`${a?dc.menuItemActive:dc.menuItem} mt-0.5 py-2 px-3 font-medium flex`,style:ab({fontSize:0===n?"14px":"13px",marginLeft:0===n?0:"18px",borderRadius:"0 var(--rp-radius) var(--rp-radius) 0"},0===n?db:{}),children:[(0,_.jsx)(dS,{tag:t.tag}),(0,_.jsx)("span",{children:lf(d.current)})]})})}function dg({sectionHeaderText:e,tag:t}){return(0,_.jsxs)("div",{className:"rspress-sidebar-section-header",children:[(0,_.jsx)(dS,{tag:t}),(0,_.jsx)("span",{children:lf(e)})]})}var dx=e=>"dividerType"in e,dv=e=>"sectionHeaderText"in e,db={fontSize:"14px",paddingLeft:"24px",fontWeight:"bold"},dy=new WeakMap;function dw(e){let{isSidebarOpen:t,beforeSidebar:n,afterSidebar:i,uiSwitch:r}=e,{pathname:o}=(0,N.TH)(),{items:a}=aN(),[l,s]=(0,z.useState)(()=>a.filter(Boolean).flat()),d=aC(),c=decodeURIComponent(o),u=(0,B.Kw)(d.langRoutePrefix||"");(0,z.useEffect)(()=>{B._f&&(t?(I=document.body.style.overflow,document.body.style.overflow="hidden"):document.body.style.overflow=I||"")},[t]),(0,z.useEffect)(()=>{if(a===l)return;dy=new WeakMap;let e=t=>dy.has(t)?dy.get(t):"link"in t&&t.link&&h(t.link)||"items"in t&&t.items.some(t=>e(t))?(dy.set(t,!0),!0):(dy.set(t,!1),!1),t=n=>{"items"in n&&(n.items.forEach(t),e(n)&&(n.collapsed=!1))},n=a.filter(Boolean).flat();n.forEach(t),s(n)},[a,c]);let p=e=>e.replace(u,""),h=e=>ls((0,E.E9)(p(c)),p(e),!0),f=e=>{let t=(0,A.fp)(t5.routes,e);if(null==t?void 0:t.length){let{route:e}=t[0];e.preload()}},m=(e,t)=>{var n;return dx(e)?(0,_.jsx)(du,{depth:0,dividerType:e.dividerType},t):dv(e)?(0,_.jsx)(dg,{sectionHeaderText:e.sectionHeaderText,tag:e.tag},t):(0,_.jsx)(dm,{id:String(t),item:e,depth:0,activeMatcher:h,collapsed:null==(n=e.collapsed)||n,setSidebarData:s,preloadLink:f},t)};return(0,_.jsxs)("aside",{className:`${dc.sidebar} rspress-sidebar ${t?dc.open:""}`,children:[r.showNavbar?(0,_.jsx)("div",{className:dc.navTitleMask,children:(0,_.jsx)(sF,{})}):null,(0,_.jsx)("div",{className:`rspress-scrollbar ${dc.sidebarContent}`,children:(0,_.jsxs)("nav",{className:"pb-2",children:[n,l.map(m),i]})})]})}var dk="sourceCode_bf1b0";function dj(e){let{href:t,platform:n="github"}=e,{sourceCodeText:i="Source"}=aC();return(0,_.jsx)("div",{className:`inline-block rounded border border-solid border-gray-light-3 dark:border-divider text-gray-400 ${dk}`,children:(0,_.jsxs)("a",{href:t,target:"_blank",className:"flex items-center content-center transition-all duration-300 text-xs block px-2 py-1 ",children:[(0,_.jsx)("span",{className:"mr-2 inline-flex w-4 h-4",children:(0,_.jsx)(ly,{icon:"gitlab"===n?au:ac})}),(0,_.jsx)("span",{children:i})]})})}var dI="rspressSteps_38f64";function dP({children:e}){return(0,_.jsx)("div",{className:`ml-4 mb-11 border-l pl-6 ${dI} [counter-reset:step]`,children:e})}var dS=({tag:e})=>e?e.trim().startsWith("<svg")?(0,_.jsx)("div",{dangerouslySetInnerHTML:{__html:e},style:{width:20,marginRight:4}}):(0,_.jsx)("img",{src:e}):null,dE=({header:e,onItemClick:t})=>(0,_.jsx)("li",{children:(0,_.jsx)("a",{href:`#${e.id}`,className:"rspress-toc-link sm:text-normal text-sm",style:{marginLeft:(e.depth-2)*12},onClick:n=>{n.preventDefault(),window.location.hash=e.id;let i=document.getElementById(e.id);i&&aR(i,!1),null==t||t(e)},children:(0,_.jsx)("span",{className:"rspress-toc-link-text block",children:lf(e.text)})})},e.id);function d_({onItemClick:e}){let{page:t}=(0,S.Vi)();return(0,_.jsx)("ul",{children:t.toc.map(t=>(0,_.jsx)(dE,{header:t,onItemClick:e},t.id))})}var dC={Layout:lE,NotFoundLayout:a_,HomeLayout:l_,setup:aD}},924:function(e){"use strict";e.exports=JSON.parse('{"AElig":"\xc6","AMP":"&","Aacute":"\xc1","Acirc":"\xc2","Agrave":"\xc0","Aring":"\xc5","Atilde":"\xc3","Auml":"\xc4","COPY":"\xa9","Ccedil":"\xc7","ETH":"\xd0","Eacute":"\xc9","Ecirc":"\xca","Egrave":"\xc8","Euml":"\xcb","GT":">","Iacute":"\xcd","Icirc":"\xce","Igrave":"\xcc","Iuml":"\xcf","LT":"<","Ntilde":"\xd1","Oacute":"\xd3","Ocirc":"\xd4","Ograve":"\xd2","Oslash":"\xd8","Otilde":"\xd5","Ouml":"\xd6","QUOT":"\\"","REG":"\xae","THORN":"\xde","Uacute":"\xda","Ucirc":"\xdb","Ugrave":"\xd9","Uuml":"\xdc","Yacute":"\xdd","aacute":"\xe1","acirc":"\xe2","acute":"\xb4","aelig":"\xe6","agrave":"\xe0","amp":"&","aring":"\xe5","atilde":"\xe3","auml":"\xe4","brvbar":"\xa6","ccedil":"\xe7","cedil":"\xb8","cent":"\xa2","copy":"\xa9","curren":"\xa4","deg":"\xb0","divide":"\xf7","eacute":"\xe9","ecirc":"\xea","egrave":"\xe8","eth":"\xf0","euml":"\xeb","frac12":"\xbd","frac14":"\xbc","frac34":"\xbe","gt":">","iacute":"\xed","icirc":"\xee","iexcl":"\xa1","igrave":"\xec","iquest":"\xbf","iuml":"\xef","laquo":"\xab","lt":"<","macr":"\xaf","micro":"\xb5","middot":"\xb7","nbsp":"\xa0","not":"\xac","ntilde":"\xf1","oacute":"\xf3","ocirc":"\xf4","ograve":"\xf2","ordf":"\xaa","ordm":"\xba","oslash":"\xf8","otilde":"\xf5","ouml":"\xf6","para":"\xb6","plusmn":"\xb1","pound":"\xa3","quot":"\\"","raquo":"\xbb","reg":"\xae","sect":"\xa7","shy":"\xad","sup1":"\xb9","sup2":"\xb2","sup3":"\xb3","szlig":"\xdf","thorn":"\xfe","times":"\xd7","uacute":"\xfa","ucirc":"\xfb","ugrave":"\xf9","uml":"\xa8","uuml":"\xfc","yacute":"\xfd","yen":"\xa5","yuml":"\xff"}')},3222:function(e){"use strict";e.exports=JSON.parse('{"0":"�","128":"€","130":"‚","131":"ƒ","132":"„","133":"…","134":"†","135":"‡","136":"ˆ","137":"‰","138":"Š","139":"‹","140":"Œ","142":"Ž","145":"‘","146":"’","147":"“","148":"”","149":"•","150":"–","151":"—","152":"˜","153":"™","154":"š","155":"›","156":"œ","158":"ž","159":"Ÿ"}')},8606:function(e){"use strict";e.exports=JSON.parse('["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","link","main","map","mark","math","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rb","rp","rt","rtc","ruby","s","samp","script","search","section","select","slot","small","source","span","strong","style","sub","summary","sup","svg","table","tbody","td","template","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr"]')}}]);