instaui 0.1.3__py3-none-any.whl → 0.1.5__py3-none-any.whl

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 (93) hide show
  1. instaui/components/content.py +4 -4
  2. instaui/components/echarts/echarts.js +128 -0
  3. instaui/components/echarts/echarts.py +194 -0
  4. instaui/components/echarts/static/echarts.esm.min.js +45 -0
  5. instaui/components/element.py +103 -13
  6. instaui/components/html/__init__.py +31 -18
  7. instaui/components/html/_preset.py +4 -0
  8. instaui/components/html/heading.py +51 -0
  9. instaui/components/html/range.py +3 -0
  10. instaui/components/html/select.py +16 -35
  11. instaui/components/html/table.py +36 -0
  12. instaui/components/html/textarea.py +28 -0
  13. instaui/components/markdown/markdown.js +33 -0
  14. instaui/components/markdown/markdown.py +41 -0
  15. instaui/components/markdown/static/github-markdown.css +12 -0
  16. instaui/components/markdown/static/marked.esm.js +2579 -0
  17. instaui/components/shiki_code/shiki_code.js +126 -0
  18. instaui/components/shiki_code/shiki_code.py +99 -0
  19. instaui/components/shiki_code/static/langs/css.mjs +5 -0
  20. instaui/components/shiki_code/static/langs/markdown.mjs +5 -0
  21. instaui/components/shiki_code/static/langs/python.mjs +5 -0
  22. instaui/components/shiki_code/static/langs/shell.mjs +2 -0
  23. instaui/components/shiki_code/static/langs/shellscript.mjs +5 -0
  24. instaui/components/shiki_code/static/shiki-core.js +5784 -0
  25. instaui/components/shiki_code/static/shiki-style.css +175 -0
  26. instaui/components/shiki_code/static/shiki-transformers.js +461 -0
  27. instaui/components/shiki_code/static/themes/vitesse-dark.mjs +2 -0
  28. instaui/components/shiki_code/static/themes/vitesse-light.mjs +2 -0
  29. instaui/components/value_element.py +7 -3
  30. instaui/components/vfor.py +1 -1
  31. instaui/consts.py +2 -1
  32. instaui/daisyui/__init__.py +26 -0
  33. instaui/daisyui/_index.py +20 -0
  34. instaui/daisyui/button.py +38 -0
  35. instaui/daisyui/checkbox.py +17 -0
  36. instaui/daisyui/static/daisyui.css +1 -0
  37. instaui/daisyui/static/themes.css +1 -0
  38. instaui/daisyui/table.py +35 -0
  39. instaui/dependencies/component_dependency.py +11 -5
  40. instaui/event/js_event.py +1 -0
  41. instaui/event/web_event.py +6 -7
  42. instaui/fastapi_server/dependency_router.py +4 -3
  43. instaui/fastapi_server/resource.py +12 -16
  44. instaui/fastapi_server/server.py +34 -24
  45. instaui/handlers/event_handler.py +3 -1
  46. instaui/handlers/watch_handler.py +4 -0
  47. instaui/html_tools.py +44 -2
  48. instaui/inject.py +3 -3
  49. instaui/runtime/_app.py +43 -4
  50. instaui/runtime/_link_manager.py +89 -0
  51. instaui/runtime/resource.py +21 -8
  52. instaui/shadcn_classless/_index.py +42 -0
  53. instaui/shadcn_classless/static/shadcn-classless.css +403 -0
  54. instaui/spa_router/_functions.py +1 -1
  55. instaui/spa_router/_route_model.py +1 -1
  56. instaui/static/insta-ui.css +1 -1
  57. instaui/static/insta-ui.esm-browser.prod.js +1308 -1252
  58. instaui/static/insta-ui.js.map +1 -1
  59. instaui/static/instaui-tools-browser.js +511 -0
  60. instaui/static/templates/webview.html +78 -0
  61. instaui/systems/module_system.py +30 -0
  62. instaui/tailwind/__init__.py +6 -0
  63. instaui/tailwind/_index.py +24 -0
  64. instaui/{static/tailwindcss.min.js → tailwind/static/tailwindcss-v3.min.js} +62 -62
  65. instaui/tailwind/static/tailwindcss-v4.min.js +8 -0
  66. instaui/template/_utils.py +23 -0
  67. instaui/template/webview_template.py +50 -0
  68. instaui/template/zero_template.py +18 -17
  69. instaui/ui/__build_init.py +73 -0
  70. instaui/ui/__init__.py +74 -58
  71. instaui/ui/__init__.pyi +135 -0
  72. instaui/ui/events.py +1 -1
  73. instaui/ui_functions/server.py +3 -1
  74. instaui/vars/event_context.py +4 -0
  75. instaui/vars/web_computed.py +30 -30
  76. instaui/watch/web_watch.py +5 -6
  77. instaui/webview/__init__.py +1 -0
  78. instaui/webview/_utils.py +8 -0
  79. instaui/webview/api.py +72 -0
  80. instaui/webview/func.py +114 -0
  81. instaui/webview/index.py +162 -0
  82. instaui/webview/resource.py +172 -0
  83. instaui/zero/func.py +31 -23
  84. instaui/zero/scope.py +110 -4
  85. {instaui-0.1.3.dist-info → instaui-0.1.5.dist-info}/METADATA +4 -1
  86. {instaui-0.1.3.dist-info → instaui-0.1.5.dist-info}/RECORD +88 -44
  87. instaui/handlers/computed_handler.py +0 -42
  88. instaui/handlers/config_handler.py +0 -13
  89. instaui/static/insta-ui.iife.js +0 -29
  90. instaui/static/insta-ui.iife.js.map +0 -1
  91. instaui/zero/test.html +0 -44
  92. {instaui-0.1.3.dist-info → instaui-0.1.5.dist-info}/LICENSE +0 -0
  93. {instaui-0.1.3.dist-info → instaui-0.1.5.dist-info}/WHEEL +0 -0
@@ -0,0 +1,12 @@
1
+ /*
2
+ MIT License
3
+
4
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
7
+
8
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
9
+
10
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
11
+ */
12
+ .github-md-dark.markdown-body{color-scheme:dark;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;margin:0;color:#f0f6fc;background-color:#0d1117;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";font-size:16px;line-height:1.5;word-wrap:break-word}.github-md-dark.markdown-body .octicon{display:inline-block;fill:currentColor;vertical-align:text-bottom}.github-md-dark.markdown-body h1:hover .anchor .octicon-link:before,.github-md-dark.markdown-body h2:hover .anchor .octicon-link:before,.github-md-dark.markdown-body h3:hover .anchor .octicon-link:before,.github-md-dark.markdown-body h4:hover .anchor .octicon-link:before,.github-md-dark.markdown-body h5:hover .anchor .octicon-link:before,.github-md-dark.markdown-body h6:hover .anchor .octicon-link:before{width:16px;height:16px;content:' ';display:inline-block;background-color:currentColor;-webkit-mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>")}.github-md-dark.markdown-body details,.github-md-dark.markdown-body figcaption,.github-md-dark.markdown-body figure{display:block}.github-md-dark.markdown-body summary{display:list-item}.github-md-dark.markdown-body [hidden]{display:none!important}.github-md-dark.markdown-body a{background-color:transparent;color:#4493f8;text-decoration:none}.github-md-dark.markdown-body abbr[title]{border-bottom:none;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.github-md-dark.markdown-body b,.github-md-dark.markdown-body strong{font-weight:600}.github-md-dark.markdown-body dfn{font-style:italic}.github-md-dark.markdown-body h1{margin:.67em 0;font-weight:600;padding-bottom:.3em;font-size:2em;border-bottom:1px solid #3d444db3}.github-md-dark.markdown-body mark{background-color:#bb800926;color:#f0f6fc}.github-md-dark.markdown-body small{font-size:90%}.github-md-dark.markdown-body sub,.github-md-dark.markdown-body sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.github-md-dark.markdown-body sub{bottom:-.25em}.github-md-dark.markdown-body sup{top:-.5em}.github-md-dark.markdown-body img{border-style:none;max-width:100%;box-sizing:content-box}.github-md-dark.markdown-body code,.github-md-dark.markdown-body kbd,.github-md-dark.markdown-body pre,.github-md-dark.markdown-body samp{font-family:monospace;font-size:1em}.github-md-dark.markdown-body figure{margin:1em 2.5rem}.github-md-dark.markdown-body hr{box-sizing:content-box;overflow:hidden;background:0 0;border-bottom:1px solid #3d444db3;height:.25em;padding:0;margin:1.5rem 0;background-color:#3d444d;border:0}.github-md-dark.markdown-body input{font:inherit;margin:0;overflow:visible;font-family:inherit;font-size:inherit;line-height:inherit}.github-md-dark.markdown-body [type=button],.github-md-dark.markdown-body [type=reset],.github-md-dark.markdown-body [type=submit]{-webkit-appearance:button;appearance:button}.github-md-dark.markdown-body [type=checkbox],.github-md-dark.markdown-body [type=radio]{box-sizing:border-box;padding:0}.github-md-dark.markdown-body [type=number]::-webkit-inner-spin-button,.github-md-dark.markdown-body [type=number]::-webkit-outer-spin-button{height:auto}.github-md-dark.markdown-body [type=search]::-webkit-search-cancel-button,.github-md-dark.markdown-body [type=search]::-webkit-search-decoration{-webkit-appearance:none;appearance:none}.github-md-dark.markdown-body ::-webkit-input-placeholder{color:inherit;opacity:.54}.github-md-dark.markdown-body ::-webkit-file-upload-button{-webkit-appearance:button;appearance:button;font:inherit}.github-md-dark.markdown-body a:hover{text-decoration:underline}.github-md-dark.markdown-body ::placeholder{color:#9198a1;opacity:1}.github-md-dark.markdown-body hr::before{display:table;content:""}.github-md-dark.markdown-body hr::after{display:table;clear:both;content:""}.github-md-dark.markdown-body table{border-spacing:0;border-collapse:collapse;display:block;width:max-content;max-width:100%;overflow:auto;font-variant:tabular-nums}.github-md-dark.markdown-body td,.github-md-dark.markdown-body th{padding:0}.github-md-dark.markdown-body details summary{cursor:pointer}.github-md-dark.markdown-body [role=button]:focus,.github-md-dark.markdown-body a:focus,.github-md-dark.markdown-body input[type=checkbox]:focus,.github-md-dark.markdown-body input[type=radio]:focus{outline:2px solid #1f6feb;outline-offset:-2px;box-shadow:none}.github-md-dark.markdown-body [role=button]:focus:not(:focus-visible),.github-md-dark.markdown-body a:focus:not(:focus-visible),.github-md-dark.markdown-body input[type=checkbox]:focus:not(:focus-visible),.github-md-dark.markdown-body input[type=radio]:focus:not(:focus-visible){outline:solid 1px transparent}.github-md-dark.markdown-body [role=button]:focus-visible,.github-md-dark.markdown-body a:focus-visible,.github-md-dark.markdown-body input[type=checkbox]:focus-visible,.github-md-dark.markdown-body input[type=radio]:focus-visible{outline:2px solid #1f6feb;outline-offset:-2px;box-shadow:none}.github-md-dark.markdown-body a:not([class]):focus,.github-md-dark.markdown-body a:not([class]):focus-visible,.github-md-dark.markdown-body input[type=checkbox]:focus,.github-md-dark.markdown-body input[type=checkbox]:focus-visible,.github-md-dark.markdown-body input[type=radio]:focus,.github-md-dark.markdown-body input[type=radio]:focus-visible{outline-offset:0}.github-md-dark.markdown-body kbd{display:inline-block;padding:.25rem;font:11px ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;line-height:10px;color:#f0f6fc;vertical-align:middle;background-color:#151b23;border:solid 1px #3d444db3;border-bottom-color:#3d444db3;border-radius:6px;box-shadow:inset 0 -1px 0 #3d444db3}.github-md-dark.markdown-body h1,.github-md-dark.markdown-body h2,.github-md-dark.markdown-body h3,.github-md-dark.markdown-body h4,.github-md-dark.markdown-body h5,.github-md-dark.markdown-body h6{margin-top:1.5rem;margin-bottom:1rem;font-weight:600;line-height:1.25}.github-md-dark.markdown-body h2{font-weight:600;padding-bottom:.3em;font-size:1.5em;border-bottom:1px solid #3d444db3}.github-md-dark.markdown-body h3{font-weight:600;font-size:1.25em}.github-md-dark.markdown-body h4{font-weight:600;font-size:1em}.github-md-dark.markdown-body h5{font-weight:600;font-size:.875em}.github-md-dark.markdown-body h6{font-weight:600;font-size:.85em;color:#9198a1}.github-md-dark.markdown-body p{margin-top:0;margin-bottom:10px}.github-md-dark.markdown-body blockquote{margin:0;padding:0 1em;color:#9198a1;border-left:.25em solid #3d444d}.github-md-dark.markdown-body ol,.github-md-dark.markdown-body ul{margin-top:0;margin-bottom:0;padding-left:2em}.github-md-dark.markdown-body ol ol,.github-md-dark.markdown-body ul ol{list-style-type:lower-roman}.github-md-dark.markdown-body ol ol ol,.github-md-dark.markdown-body ol ul ol,.github-md-dark.markdown-body ul ol ol,.github-md-dark.markdown-body ul ul ol{list-style-type:lower-alpha}.github-md-dark.markdown-body dd{margin-left:0}.github-md-dark.markdown-body code,.github-md-dark.markdown-body samp,.github-md-dark.markdown-body tt{font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;font-size:12px}.github-md-dark.markdown-body pre{margin-top:0;margin-bottom:0;font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;font-size:12px;word-wrap:normal}.github-md-dark.markdown-body .octicon{display:inline-block;overflow:visible!important;vertical-align:text-bottom;fill:currentColor}.github-md-dark.markdown-body input::-webkit-inner-spin-button,.github-md-dark.markdown-body input::-webkit-outer-spin-button{margin:0;appearance:none}.github-md-dark.markdown-body .mr-2{margin-right:.5rem!important}.github-md-dark.markdown-body::before{display:table;content:""}.github-md-dark.markdown-body::after{display:table;clear:both;content:""}.github-md-dark.markdown-body>:first-child{margin-top:0!important}.github-md-dark.markdown-body>:last-child{margin-bottom:0!important}.github-md-dark.markdown-body a:not([href]){color:inherit;text-decoration:none}.github-md-dark.markdown-body .absent{color:#f85149}.github-md-dark.markdown-body .anchor{float:left;padding-right:.25rem;margin-left:-20px;line-height:1}.github-md-dark.markdown-body .anchor:focus{outline:0}.github-md-dark.markdown-body blockquote,.github-md-dark.markdown-body details,.github-md-dark.markdown-body dl,.github-md-dark.markdown-body ol,.github-md-dark.markdown-body p,.github-md-dark.markdown-body pre,.github-md-dark.markdown-body table,.github-md-dark.markdown-body ul{margin-top:0;margin-bottom:1rem}.github-md-dark.markdown-body blockquote>:first-child{margin-top:0}.github-md-dark.markdown-body blockquote>:last-child{margin-bottom:0}.github-md-dark.markdown-body h1 .octicon-link,.github-md-dark.markdown-body h2 .octicon-link,.github-md-dark.markdown-body h3 .octicon-link,.github-md-dark.markdown-body h4 .octicon-link,.github-md-dark.markdown-body h5 .octicon-link,.github-md-dark.markdown-body h6 .octicon-link{color:#f0f6fc;vertical-align:middle;visibility:hidden}.github-md-dark.markdown-body h1:hover .anchor,.github-md-dark.markdown-body h2:hover .anchor,.github-md-dark.markdown-body h3:hover .anchor,.github-md-dark.markdown-body h4:hover .anchor,.github-md-dark.markdown-body h5:hover .anchor,.github-md-dark.markdown-body h6:hover .anchor{text-decoration:none}.github-md-dark.markdown-body h1:hover .anchor .octicon-link,.github-md-dark.markdown-body h2:hover .anchor .octicon-link,.github-md-dark.markdown-body h3:hover .anchor .octicon-link,.github-md-dark.markdown-body h4:hover .anchor .octicon-link,.github-md-dark.markdown-body h5:hover .anchor .octicon-link,.github-md-dark.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.github-md-dark.markdown-body h1 code,.github-md-dark.markdown-body h1 tt,.github-md-dark.markdown-body h2 code,.github-md-dark.markdown-body h2 tt,.github-md-dark.markdown-body h3 code,.github-md-dark.markdown-body h3 tt,.github-md-dark.markdown-body h4 code,.github-md-dark.markdown-body h4 tt,.github-md-dark.markdown-body h5 code,.github-md-dark.markdown-body h5 tt,.github-md-dark.markdown-body h6 code,.github-md-dark.markdown-body h6 tt{padding:0 .2em;font-size:inherit}.github-md-dark.markdown-body summary h1,.github-md-dark.markdown-body summary h2,.github-md-dark.markdown-body summary h3,.github-md-dark.markdown-body summary h4,.github-md-dark.markdown-body summary h5,.github-md-dark.markdown-body summary h6{display:inline-block}.github-md-dark.markdown-body summary h1 .anchor,.github-md-dark.markdown-body summary h2 .anchor,.github-md-dark.markdown-body summary h3 .anchor,.github-md-dark.markdown-body summary h4 .anchor,.github-md-dark.markdown-body summary h5 .anchor,.github-md-dark.markdown-body summary h6 .anchor{margin-left:-40px}.github-md-dark.markdown-body summary h1,.github-md-dark.markdown-body summary h2{padding-bottom:0;border-bottom:0}.github-md-dark.markdown-body ol.no-list,.github-md-dark.markdown-body ul.no-list{padding:0;list-style-type:none}.github-md-dark.markdown-body ol[type="a s"]{list-style-type:lower-alpha}.github-md-dark.markdown-body ol[type="A s"]{list-style-type:upper-alpha}.github-md-dark.markdown-body ol[type="i s"]{list-style-type:lower-roman}.github-md-dark.markdown-body ol[type="I s"]{list-style-type:upper-roman}.github-md-dark.markdown-body ol[type="1"]{list-style-type:decimal}.github-md-dark.markdown-body div>ol:not([type]){list-style-type:decimal}.github-md-dark.markdown-body ol ol,.github-md-dark.markdown-body ol ul,.github-md-dark.markdown-body ul ol,.github-md-dark.markdown-body ul ul{margin-top:0;margin-bottom:0}.github-md-dark.markdown-body li>p{margin-top:1rem}.github-md-dark.markdown-body li+li{margin-top:.25em}.github-md-dark.markdown-body dl{padding:0}.github-md-dark.markdown-body dl dt{padding:0;margin-top:1rem;font-size:1em;font-style:italic;font-weight:600}.github-md-dark.markdown-body dl dd{padding:0 1rem;margin-bottom:1rem}.github-md-dark.markdown-body table th{font-weight:600}.github-md-dark.markdown-body table td,.github-md-dark.markdown-body table th{padding:6px 13px;border:1px solid #3d444d}.github-md-dark.markdown-body table td>:last-child{margin-bottom:0}.github-md-dark.markdown-body table tr{background-color:#0d1117;border-top:1px solid #3d444db3}.github-md-dark.markdown-body table tr:nth-child(2n){background-color:#151b23}.github-md-dark.markdown-body table img{background-color:transparent}.github-md-dark.markdown-body img[align=right]{padding-left:20px}.github-md-dark.markdown-body img[align=left]{padding-right:20px}.github-md-dark.markdown-body .emoji{max-width:none;vertical-align:text-top;background-color:transparent}.github-md-dark.markdown-body span.frame{display:block;overflow:hidden}.github-md-dark.markdown-body span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #3d444d}.github-md-dark.markdown-body span.frame span img{display:block;float:left}.github-md-dark.markdown-body span.frame span span{display:block;padding:5px 0 0;clear:both;color:#f0f6fc}.github-md-dark.markdown-body span.align-center{display:block;overflow:hidden;clear:both}.github-md-dark.markdown-body span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.github-md-dark.markdown-body span.align-center span img{margin:0 auto;text-align:center}.github-md-dark.markdown-body span.align-right{display:block;overflow:hidden;clear:both}.github-md-dark.markdown-body span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.github-md-dark.markdown-body span.align-right span img{margin:0;text-align:right}.github-md-dark.markdown-body span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.github-md-dark.markdown-body span.float-left span{margin:13px 0 0}.github-md-dark.markdown-body span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.github-md-dark.markdown-body span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.github-md-dark.markdown-body code,.github-md-dark.markdown-body tt{padding:.2em .4em;margin:0;font-size:85%;white-space:break-spaces;background-color:#656c7633;border-radius:6px}.github-md-dark.markdown-body code br,.github-md-dark.markdown-body tt br{display:none}.github-md-dark.markdown-body del code{text-decoration:inherit}.github-md-dark.markdown-body samp{font-size:85%}.github-md-dark.markdown-body pre code{font-size:100%}.github-md-dark.markdown-body pre>code{padding:0;margin:0;word-break:normal;white-space:pre;background:0 0;border:0}.github-md-dark.markdown-body .highlight{margin-bottom:1rem}.github-md-dark.markdown-body .highlight pre{margin-bottom:0;word-break:normal}.github-md-dark.markdown-body .highlight pre,.github-md-dark.markdown-body pre{padding:1rem;overflow:auto;font-size:85%;line-height:1.45;color:#f0f6fc;background-color:#151b23;border-radius:6px}.github-md-dark.markdown-body pre code,.github-md-dark.markdown-body pre tt{display:inline;max-width:auto;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.github-md-dark.markdown-body .csv-data td,.github-md-dark.markdown-body .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.github-md-dark.markdown-body .csv-data .blob-num{padding:10px .5rem 9px;text-align:right;background:#0d1117;border:0}.github-md-dark.markdown-body .csv-data tr{border-top:0}.github-md-dark.markdown-body .csv-data th{font-weight:600;background:#151b23;border-top:0}.github-md-dark.markdown-body [data-footnote-ref]::before{content:"["}.github-md-dark.markdown-body [data-footnote-ref]::after{content:"]"}.github-md-dark.markdown-body .footnotes{font-size:12px;color:#9198a1;border-top:1px solid #3d444d}.github-md-dark.markdown-body .footnotes ol{padding-left:1rem}.github-md-dark.markdown-body .footnotes ol ul{display:inline-block;padding-left:1rem;margin-top:1rem}.github-md-dark.markdown-body .footnotes li{position:relative}.github-md-dark.markdown-body .footnotes li:target::before{position:absolute;top:calc(.5rem*-1);right:calc(.5rem*-1);bottom:calc(.5rem*-1);left:calc(1.5rem*-1);pointer-events:none;content:"";border:2px solid #1f6feb;border-radius:6px}.github-md-dark.markdown-body .footnotes li:target{color:#f0f6fc}.github-md-dark.markdown-body .footnotes .data-footnote-backref g-emoji{font-family:monospace}.github-md-dark.markdown-body body:has(:modal){padding-right:var(--dialog-scrollgutter)!important}.github-md-dark.markdown-body .pl-c{color:#9198a1}.github-md-dark.markdown-body .pl-c1,.github-md-dark.markdown-body .pl-s .pl-v{color:#79c0ff}.github-md-dark.markdown-body .pl-e,.github-md-dark.markdown-body .pl-en{color:#d2a8ff}.github-md-dark.markdown-body .pl-s .pl-s1,.github-md-dark.markdown-body .pl-smi{color:#f0f6fc}.github-md-dark.markdown-body .pl-ent{color:#7ee787}.github-md-dark.markdown-body .pl-k{color:#ff7b72}.github-md-dark.markdown-body .pl-pds,.github-md-dark.markdown-body .pl-s,.github-md-dark.markdown-body .pl-s .pl-pse .pl-s1,.github-md-dark.markdown-body .pl-sr,.github-md-dark.markdown-body .pl-sr .pl-cce,.github-md-dark.markdown-body .pl-sr .pl-sra,.github-md-dark.markdown-body .pl-sr .pl-sre{color:#a5d6ff}.github-md-dark.markdown-body .pl-smw,.github-md-dark.markdown-body .pl-v{color:#ffa657}.github-md-dark.markdown-body .pl-bu{color:#f85149}.github-md-dark.markdown-body .pl-ii{color:#f0f6fc;background-color:#8e1519}.github-md-dark.markdown-body .pl-c2{color:#f0f6fc;background-color:#b62324}.github-md-dark.markdown-body .pl-sr .pl-cce{font-weight:700;color:#7ee787}.github-md-dark.markdown-body .pl-ml{color:#f2cc60}.github-md-dark.markdown-body .pl-mh,.github-md-dark.markdown-body .pl-mh .pl-en,.github-md-dark.markdown-body .pl-ms{font-weight:700;color:#1f6feb}.github-md-dark.markdown-body .pl-mi{font-style:italic;color:#f0f6fc}.github-md-dark.markdown-body .pl-mb{font-weight:700;color:#f0f6fc}.github-md-dark.markdown-body .pl-md{color:#ffdcd7;background-color:#67060c}.github-md-dark.markdown-body .pl-mi1{color:#aff5b4;background-color:#033a16}.github-md-dark.markdown-body .pl-mc{color:#ffdfb6;background-color:#5a1e02}.github-md-dark.markdown-body .pl-mi2{color:#f0f6fc;background-color:#1158c7}.github-md-dark.markdown-body .pl-mdr{font-weight:700;color:#d2a8ff}.github-md-dark.markdown-body .pl-ba{color:#9198a1}.github-md-dark.markdown-body .pl-sg{color:#3d444d}.github-md-dark.markdown-body .pl-corl{text-decoration:underline;color:#a5d6ff}.github-md-dark.markdown-body [role=button]:focus:not(:focus-visible),.github-md-dark.markdown-body [role=tabpanel][tabindex="0"]:focus:not(:focus-visible),.github-md-dark.markdown-body a:focus:not(:focus-visible),.github-md-dark.markdown-body button:focus:not(:focus-visible),.github-md-dark.markdown-body summary:focus:not(:focus-visible){outline:0;box-shadow:none}.github-md-dark.markdown-body [tabindex="0"]:focus:not(:focus-visible),.github-md-dark.markdown-body details-dialog:focus:not(:focus-visible){outline:0}.github-md-dark.markdown-body g-emoji{display:inline-block;min-width:1ch;font-family:"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1em;font-style:normal!important;font-weight:400;line-height:1;vertical-align:-.075em}.github-md-dark.markdown-body g-emoji img{width:1em;height:1em}.github-md-dark.markdown-body .task-list-item{list-style-type:none}.github-md-dark.markdown-body .task-list-item label{font-weight:400}.github-md-dark.markdown-body .task-list-item.enabled label{cursor:pointer}.github-md-dark.markdown-body .task-list-item+.task-list-item{margin-top:.25rem}.github-md-dark.markdown-body .task-list-item .handle{display:none}.github-md-dark.markdown-body .task-list-item-checkbox{margin:0 .2em .25em -1.4em;vertical-align:middle}.github-md-dark.markdown-body ul:dir(rtl) .task-list-item-checkbox{margin:0 -1.6em .25em .2em}.github-md-dark.markdown-body ol:dir(rtl) .task-list-item-checkbox{margin:0 -1.6em .25em .2em}.github-md-dark.markdown-body .contains-task-list:focus-within .task-list-item-convert-container,.github-md-dark.markdown-body .contains-task-list:hover .task-list-item-convert-container{display:block;width:auto;height:24px;overflow:visible;clip:auto}.github-md-dark.markdown-body ::-webkit-calendar-picker-indicator{filter:invert(50%)}.github-md-dark.markdown-body .markdown-alert{padding:.5rem 1rem;margin-bottom:1rem;color:inherit;border-left:.25em solid #3d444d}.github-md-dark.markdown-body .markdown-alert>:first-child{margin-top:0}.github-md-dark.markdown-body .markdown-alert>:last-child{margin-bottom:0}.github-md-dark.markdown-body .markdown-alert .markdown-alert-title{display:flex;font-weight:500;align-items:center;line-height:1}.github-md-dark.markdown-body .markdown-alert.markdown-alert-note{border-left-color:#1f6feb}.github-md-dark.markdown-body .markdown-alert.markdown-alert-note .markdown-alert-title{color:#4493f8}.github-md-dark.markdown-body .markdown-alert.markdown-alert-important{border-left-color:#8957e5}.github-md-dark.markdown-body .markdown-alert.markdown-alert-important .markdown-alert-title{color:#ab7df8}.github-md-dark.markdown-body .markdown-alert.markdown-alert-warning{border-left-color:#9e6a03}.github-md-dark.markdown-body .markdown-alert.markdown-alert-warning .markdown-alert-title{color:#d29922}.github-md-dark.markdown-body .markdown-alert.markdown-alert-tip{border-left-color:#238636}.github-md-dark.markdown-body .markdown-alert.markdown-alert-tip .markdown-alert-title{color:#3fb950}.github-md-dark.markdown-body .markdown-alert.markdown-alert-caution{border-left-color:#da3633}.github-md-dark.markdown-body .markdown-alert.markdown-alert-caution .markdown-alert-title{color:#f85149}.github-md-dark.markdown-body>:first-child>.heading-element:first-child{margin-top:0!important}.github-md-dark.markdown-body .highlight pre:has(+.zeroclipboard-container){min-height:52px}.markdown-body{color-scheme:light;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;margin:0;color:#1f2328;background-color:#fff;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";font-size:16px;line-height:1.5;word-wrap:break-word}.markdown-body .octicon{display:inline-block;fill:currentColor;vertical-align:text-bottom}.markdown-body h1:hover .anchor .octicon-link:before,.markdown-body h2:hover .anchor .octicon-link:before,.markdown-body h3:hover .anchor .octicon-link:before,.markdown-body h4:hover .anchor .octicon-link:before,.markdown-body h5:hover .anchor .octicon-link:before,.markdown-body h6:hover .anchor .octicon-link:before{width:16px;height:16px;content:' ';display:inline-block;background-color:currentColor;-webkit-mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");mask-image:url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>")}.markdown-body details,.markdown-body figcaption,.markdown-body figure{display:block}.markdown-body summary{display:list-item}.markdown-body [hidden]{display:none!important}.markdown-body a{background-color:transparent;color:#0969da;text-decoration:none}.markdown-body abbr[title]{border-bottom:none;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.markdown-body b,.markdown-body strong{font-weight:600}.markdown-body dfn{font-style:italic}.markdown-body h1{margin:.67em 0;font-weight:600;padding-bottom:.3em;font-size:2em;border-bottom:1px solid #d1d9e0b3}.markdown-body mark{background-color:#fff8c5;color:#1f2328}.markdown-body small{font-size:90%}.markdown-body sub,.markdown-body sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.markdown-body sub{bottom:-.25em}.markdown-body sup{top:-.5em}.markdown-body img{border-style:none;max-width:100%;box-sizing:content-box}.markdown-body code,.markdown-body kbd,.markdown-body pre,.markdown-body samp{font-family:monospace;font-size:1em}.markdown-body figure{margin:1em 2.5rem}.markdown-body hr{box-sizing:content-box;overflow:hidden;background:0 0;border-bottom:1px solid #d1d9e0b3;height:.25em;padding:0;margin:1.5rem 0;background-color:#d1d9e0;border:0}.markdown-body input{font:inherit;margin:0;overflow:visible;font-family:inherit;font-size:inherit;line-height:inherit}.markdown-body [type=button],.markdown-body [type=reset],.markdown-body [type=submit]{-webkit-appearance:button;appearance:button}.markdown-body [type=checkbox],.markdown-body [type=radio]{box-sizing:border-box;padding:0}.markdown-body [type=number]::-webkit-inner-spin-button,.markdown-body [type=number]::-webkit-outer-spin-button{height:auto}.markdown-body [type=search]::-webkit-search-cancel-button,.markdown-body [type=search]::-webkit-search-decoration{-webkit-appearance:none;appearance:none}.markdown-body ::-webkit-input-placeholder{color:inherit;opacity:.54}.markdown-body ::-webkit-file-upload-button{-webkit-appearance:button;appearance:button;font:inherit}.markdown-body a:hover{text-decoration:underline}.markdown-body ::placeholder{color:#59636e;opacity:1}.markdown-body hr::before{display:table;content:""}.markdown-body hr::after{display:table;clear:both;content:""}.markdown-body table{border-spacing:0;border-collapse:collapse;display:block;width:max-content;max-width:100%;overflow:auto;font-variant:tabular-nums}.markdown-body td,.markdown-body th{padding:0}.markdown-body details summary{cursor:pointer}.markdown-body [role=button]:focus,.markdown-body a:focus,.markdown-body input[type=checkbox]:focus,.markdown-body input[type=radio]:focus{outline:2px solid #0969da;outline-offset:-2px;box-shadow:none}.markdown-body [role=button]:focus:not(:focus-visible),.markdown-body a:focus:not(:focus-visible),.markdown-body input[type=checkbox]:focus:not(:focus-visible),.markdown-body input[type=radio]:focus:not(:focus-visible){outline:solid 1px transparent}.markdown-body [role=button]:focus-visible,.markdown-body a:focus-visible,.markdown-body input[type=checkbox]:focus-visible,.markdown-body input[type=radio]:focus-visible{outline:2px solid #0969da;outline-offset:-2px;box-shadow:none}.markdown-body a:not([class]):focus,.markdown-body a:not([class]):focus-visible,.markdown-body input[type=checkbox]:focus,.markdown-body input[type=checkbox]:focus-visible,.markdown-body input[type=radio]:focus,.markdown-body input[type=radio]:focus-visible{outline-offset:0}.markdown-body kbd{display:inline-block;padding:.25rem;font:11px ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;line-height:10px;color:#1f2328;vertical-align:middle;background-color:#f6f8fa;border:solid 1px #d1d9e0b3;border-bottom-color:#d1d9e0b3;border-radius:6px;box-shadow:inset 0 -1px 0 #d1d9e0b3}.markdown-body h1,.markdown-body h2,.markdown-body h3,.markdown-body h4,.markdown-body h5,.markdown-body h6{margin-top:1.5rem;margin-bottom:1rem;font-weight:600;line-height:1.25}.markdown-body h2{font-weight:600;padding-bottom:.3em;font-size:1.5em;border-bottom:1px solid #d1d9e0b3}.markdown-body h3{font-weight:600;font-size:1.25em}.markdown-body h4{font-weight:600;font-size:1em}.markdown-body h5{font-weight:600;font-size:.875em}.markdown-body h6{font-weight:600;font-size:.85em;color:#59636e}.markdown-body p{margin-top:0;margin-bottom:10px}.markdown-body blockquote{margin:0;padding:0 1em;color:#59636e;border-left:.25em solid #d1d9e0}.markdown-body ol,.markdown-body ul{margin-top:0;margin-bottom:0;padding-left:2em}.markdown-body ol ol,.markdown-body ul ol{list-style-type:lower-roman}.markdown-body ol ol ol,.markdown-body ol ul ol,.markdown-body ul ol ol,.markdown-body ul ul ol{list-style-type:lower-alpha}.markdown-body dd{margin-left:0}.markdown-body code,.markdown-body samp,.markdown-body tt{font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;font-size:12px}.markdown-body pre{margin-top:0;margin-bottom:0;font-family:ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;font-size:12px;word-wrap:normal}.markdown-body .octicon{display:inline-block;overflow:visible!important;vertical-align:text-bottom;fill:currentColor}.markdown-body input::-webkit-inner-spin-button,.markdown-body input::-webkit-outer-spin-button{margin:0;appearance:none}.markdown-body .mr-2{margin-right:.5rem!important}.markdown-body::before{display:table;content:""}.markdown-body::after{display:table;clear:both;content:""}.markdown-body>:first-child{margin-top:0!important}.markdown-body>:last-child{margin-bottom:0!important}.markdown-body a:not([href]){color:inherit;text-decoration:none}.markdown-body .absent{color:#d1242f}.markdown-body .anchor{float:left;padding-right:.25rem;margin-left:-20px;line-height:1}.markdown-body .anchor:focus{outline:0}.markdown-body blockquote,.markdown-body details,.markdown-body dl,.markdown-body ol,.markdown-body p,.markdown-body pre,.markdown-body table,.markdown-body ul{margin-top:0;margin-bottom:1rem}.markdown-body blockquote>:first-child{margin-top:0}.markdown-body blockquote>:last-child{margin-bottom:0}.markdown-body h1 .octicon-link,.markdown-body h2 .octicon-link,.markdown-body h3 .octicon-link,.markdown-body h4 .octicon-link,.markdown-body h5 .octicon-link,.markdown-body h6 .octicon-link{color:#1f2328;vertical-align:middle;visibility:hidden}.markdown-body h1:hover .anchor,.markdown-body h2:hover .anchor,.markdown-body h3:hover .anchor,.markdown-body h4:hover .anchor,.markdown-body h5:hover .anchor,.markdown-body h6:hover .anchor{text-decoration:none}.markdown-body h1:hover .anchor .octicon-link,.markdown-body h2:hover .anchor .octicon-link,.markdown-body h3:hover .anchor .octicon-link,.markdown-body h4:hover .anchor .octicon-link,.markdown-body h5:hover .anchor .octicon-link,.markdown-body h6:hover .anchor .octicon-link{visibility:visible}.markdown-body h1 code,.markdown-body h1 tt,.markdown-body h2 code,.markdown-body h2 tt,.markdown-body h3 code,.markdown-body h3 tt,.markdown-body h4 code,.markdown-body h4 tt,.markdown-body h5 code,.markdown-body h5 tt,.markdown-body h6 code,.markdown-body h6 tt{padding:0 .2em;font-size:inherit}.markdown-body summary h1,.markdown-body summary h2,.markdown-body summary h3,.markdown-body summary h4,.markdown-body summary h5,.markdown-body summary h6{display:inline-block}.markdown-body summary h1 .anchor,.markdown-body summary h2 .anchor,.markdown-body summary h3 .anchor,.markdown-body summary h4 .anchor,.markdown-body summary h5 .anchor,.markdown-body summary h6 .anchor{margin-left:-40px}.markdown-body summary h1,.markdown-body summary h2{padding-bottom:0;border-bottom:0}.markdown-body ol.no-list,.markdown-body ul.no-list{padding:0;list-style-type:none}.markdown-body ol[type="a s"]{list-style-type:lower-alpha}.markdown-body ol[type="A s"]{list-style-type:upper-alpha}.markdown-body ol[type="i s"]{list-style-type:lower-roman}.markdown-body ol[type="I s"]{list-style-type:upper-roman}.markdown-body ol[type="1"]{list-style-type:decimal}.markdown-body div>ol:not([type]){list-style-type:decimal}.markdown-body ol ol,.markdown-body ol ul,.markdown-body ul ol,.markdown-body ul ul{margin-top:0;margin-bottom:0}.markdown-body li>p{margin-top:1rem}.markdown-body li+li{margin-top:.25em}.markdown-body dl{padding:0}.markdown-body dl dt{padding:0;margin-top:1rem;font-size:1em;font-style:italic;font-weight:600}.markdown-body dl dd{padding:0 1rem;margin-bottom:1rem}.markdown-body table th{font-weight:600}.markdown-body table td,.markdown-body table th{padding:6px 13px;border:1px solid #d1d9e0}.markdown-body table td>:last-child{margin-bottom:0}.markdown-body table tr{background-color:#fff;border-top:1px solid #d1d9e0b3}.markdown-body table tr:nth-child(2n){background-color:#f6f8fa}.markdown-body table img{background-color:transparent}.markdown-body img[align=right]{padding-left:20px}.markdown-body img[align=left]{padding-right:20px}.markdown-body .emoji{max-width:none;vertical-align:text-top;background-color:transparent}.markdown-body span.frame{display:block;overflow:hidden}.markdown-body span.frame>span{display:block;float:left;width:auto;padding:7px;margin:13px 0 0;overflow:hidden;border:1px solid #d1d9e0}.markdown-body span.frame span img{display:block;float:left}.markdown-body span.frame span span{display:block;padding:5px 0 0;clear:both;color:#1f2328}.markdown-body span.align-center{display:block;overflow:hidden;clear:both}.markdown-body span.align-center>span{display:block;margin:13px auto 0;overflow:hidden;text-align:center}.markdown-body span.align-center span img{margin:0 auto;text-align:center}.markdown-body span.align-right{display:block;overflow:hidden;clear:both}.markdown-body span.align-right>span{display:block;margin:13px 0 0;overflow:hidden;text-align:right}.markdown-body span.align-right span img{margin:0;text-align:right}.markdown-body span.float-left{display:block;float:left;margin-right:13px;overflow:hidden}.markdown-body span.float-left span{margin:13px 0 0}.markdown-body span.float-right{display:block;float:right;margin-left:13px;overflow:hidden}.markdown-body span.float-right>span{display:block;margin:13px auto 0;overflow:hidden;text-align:right}.markdown-body code,.markdown-body tt{padding:.2em .4em;margin:0;font-size:85%;white-space:break-spaces;background-color:#818b981f;border-radius:6px}.markdown-body code br,.markdown-body tt br{display:none}.markdown-body del code{text-decoration:inherit}.markdown-body samp{font-size:85%}.markdown-body pre code{font-size:100%}.markdown-body pre>code{padding:0;margin:0;word-break:normal;white-space:pre;background:0 0;border:0}.markdown-body .highlight{margin-bottom:1rem}.markdown-body .highlight pre{margin-bottom:0;word-break:normal}.markdown-body .highlight pre,.markdown-body pre{padding:1rem;overflow:auto;font-size:85%;line-height:1.45;color:#1f2328;background-color:#f6f8fa;border-radius:6px}.markdown-body pre code,.markdown-body pre tt{display:inline;max-width:auto;padding:0;margin:0;overflow:visible;line-height:inherit;word-wrap:normal;background-color:transparent;border:0}.markdown-body .csv-data td,.markdown-body .csv-data th{padding:5px;overflow:hidden;font-size:12px;line-height:1;text-align:left;white-space:nowrap}.markdown-body .csv-data .blob-num{padding:10px .5rem 9px;text-align:right;background:#fff;border:0}.markdown-body .csv-data tr{border-top:0}.markdown-body .csv-data th{font-weight:600;background:#f6f8fa;border-top:0}.markdown-body [data-footnote-ref]::before{content:"["}.markdown-body [data-footnote-ref]::after{content:"]"}.markdown-body .footnotes{font-size:12px;color:#59636e;border-top:1px solid #d1d9e0}.markdown-body .footnotes ol{padding-left:1rem}.markdown-body .footnotes ol ul{display:inline-block;padding-left:1rem;margin-top:1rem}.markdown-body .footnotes li{position:relative}.markdown-body .footnotes li:target::before{position:absolute;top:calc(.5rem*-1);right:calc(.5rem*-1);bottom:calc(.5rem*-1);left:calc(1.5rem*-1);pointer-events:none;content:"";border:2px solid #0969da;border-radius:6px}.markdown-body .footnotes li:target{color:#1f2328}.markdown-body .footnotes .data-footnote-backref g-emoji{font-family:monospace}.markdown-body body:has(:modal){padding-right:var(--dialog-scrollgutter)!important}.markdown-body .pl-c{color:#59636e}.markdown-body .pl-c1,.markdown-body .pl-s .pl-v{color:#0550ae}.markdown-body .pl-e,.markdown-body .pl-en{color:#6639ba}.markdown-body .pl-s .pl-s1,.markdown-body .pl-smi{color:#1f2328}.markdown-body .pl-ent{color:#0550ae}.markdown-body .pl-k{color:#cf222e}.markdown-body .pl-pds,.markdown-body .pl-s,.markdown-body .pl-s .pl-pse .pl-s1,.markdown-body .pl-sr,.markdown-body .pl-sr .pl-cce,.markdown-body .pl-sr .pl-sra,.markdown-body .pl-sr .pl-sre{color:#0a3069}.markdown-body .pl-smw,.markdown-body .pl-v{color:#953800}.markdown-body .pl-bu{color:#82071e}.markdown-body .pl-ii{color:#f6f8fa;background-color:#82071e}.markdown-body .pl-c2{color:#f6f8fa;background-color:#cf222e}.markdown-body .pl-sr .pl-cce{font-weight:700;color:#116329}.markdown-body .pl-ml{color:#3b2300}.markdown-body .pl-mh,.markdown-body .pl-mh .pl-en,.markdown-body .pl-ms{font-weight:700;color:#0550ae}.markdown-body .pl-mi{font-style:italic;color:#1f2328}.markdown-body .pl-mb{font-weight:700;color:#1f2328}.markdown-body .pl-md{color:#82071e;background-color:#ffebe9}.markdown-body .pl-mi1{color:#116329;background-color:#dafbe1}.markdown-body .pl-mc{color:#953800;background-color:#ffd8b5}.markdown-body .pl-mi2{color:#d1d9e0;background-color:#0550ae}.markdown-body .pl-mdr{font-weight:700;color:#8250df}.markdown-body .pl-ba{color:#59636e}.markdown-body .pl-sg{color:#818b98}.markdown-body .pl-corl{text-decoration:underline;color:#0a3069}.markdown-body [role=button]:focus:not(:focus-visible),.markdown-body [role=tabpanel][tabindex="0"]:focus:not(:focus-visible),.markdown-body a:focus:not(:focus-visible),.markdown-body button:focus:not(:focus-visible),.markdown-body summary:focus:not(:focus-visible){outline:0;box-shadow:none}.markdown-body [tabindex="0"]:focus:not(:focus-visible),.markdown-body details-dialog:focus:not(:focus-visible){outline:0}.markdown-body g-emoji{display:inline-block;min-width:1ch;font-family:"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";font-size:1em;font-style:normal!important;font-weight:400;line-height:1;vertical-align:-.075em}.markdown-body g-emoji img{width:1em;height:1em}.markdown-body .task-list-item{list-style-type:none}.markdown-body .task-list-item label{font-weight:400}.markdown-body .task-list-item.enabled label{cursor:pointer}.markdown-body .task-list-item+.task-list-item{margin-top:.25rem}.markdown-body .task-list-item .handle{display:none}.markdown-body .task-list-item-checkbox{margin:0 .2em .25em -1.4em;vertical-align:middle}.markdown-body ul:dir(rtl) .task-list-item-checkbox{margin:0 -1.6em .25em .2em}.markdown-body ol:dir(rtl) .task-list-item-checkbox{margin:0 -1.6em .25em .2em}.markdown-body .contains-task-list:focus-within .task-list-item-convert-container,.markdown-body .contains-task-list:hover .task-list-item-convert-container{display:block;width:auto;height:24px;overflow:visible;clip:auto}.markdown-body ::-webkit-calendar-picker-indicator{filter:invert(50%)}.markdown-body .markdown-alert{padding:.5rem 1rem;margin-bottom:1rem;color:inherit;border-left:.25em solid #d1d9e0}.markdown-body .markdown-alert>:first-child{margin-top:0}.markdown-body .markdown-alert>:last-child{margin-bottom:0}.markdown-body .markdown-alert .markdown-alert-title{display:flex;font-weight:500;align-items:center;line-height:1}.markdown-body .markdown-alert.markdown-alert-note{border-left-color:#0969da}.markdown-body .markdown-alert.markdown-alert-note .markdown-alert-title{color:#0969da}.markdown-body .markdown-alert.markdown-alert-important{border-left-color:#8250df}.markdown-body .markdown-alert.markdown-alert-important .markdown-alert-title{color:#8250df}.markdown-body .markdown-alert.markdown-alert-warning{border-left-color:#9a6700}.markdown-body .markdown-alert.markdown-alert-warning .markdown-alert-title{color:#9a6700}.markdown-body .markdown-alert.markdown-alert-tip{border-left-color:#1a7f37}.markdown-body .markdown-alert.markdown-alert-tip .markdown-alert-title{color:#1a7f37}.markdown-body .markdown-alert.markdown-alert-caution{border-left-color:#cf222e}.markdown-body .markdown-alert.markdown-alert-caution .markdown-alert-title{color:#d1242f}.markdown-body>:first-child>.heading-element:first-child{margin-top:0!important}.markdown-body .highlight pre:has(+.zeroclipboard-container){min-height:52px}