<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1, shrink-to-fit=no"
    />
    <title>|APP_NAME|</title>
    <link
      rel="stylesheet"
      href="|STLITE_CSS|"
    />
  </head>
  <body>
    <div id="root"></div>
    <script type="module">
import { mount } from "|STLITE_JS|"
mount(
  {
    |SHARED_WORKER_OPTION|
    streamlitConfig : |CONFIG|,
    requirements: |APP_REQUIREMENTS|,
    entrypoint: "|APP_ENTRYPOINT|",
    |IDBFS_MOUNTPOINTS|
    |PYODIDE_VERSION|
    files: {
"|APP_ENTRYPOINT|": `
|APP_HOME|
`,
|APP_FILES|
},
  },
  document.getElementById("root")
)

function Ou(n){const i=window.atob(n),a=i.length,l=new Uint8Array(a);for(let u=0;u<a;u++)l[u]=i.charCodeAt(u);return l}
    </script>
  </body>
  <!-- We love stlite! https://github.com/whitphx/stlite and Pyodide https://github.com/pyodide/pyodide -->
</html>