package spin

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file spa.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
(* Generated by: ocaml-crunch
   Creation date: Sat, 17 May 2025 18:22:18 GMT *)

module Internal = struct
  let d_007c596d694b72da2350c24abcc053f6 = "module Model = struct\n  type t = int [@@deriving sexp_of]\n\n  let cutoff : t -> t -> bool = ( = )\n\n  let empty = 0\nend\n\nmodule State = struct\n  type t = unit [@@deriving sexp_of]\nend\n\nmodule Action = struct\n  type t =\n    | Increment\n    | Decrement\n  [@@deriving sexp_of]\n\n  let apply model action _state ~schedule_action:_ =\n    match action with Increment -> model + 1 | Decrement -> model - 1\nend\n\nlet on_startup ~schedule_action:_ _ : State.t Async_kernel.Deferred.t =\n  Async_kernel.return ()\n\nlet view model ~inject =\n  let open Incr_dom.Tyxml.Html in\n  div\n    ~a:[ a_class [ \n      {%- if css_framework == 'TailwindCSS' -%}\n      \"text-center mt-12\"\n      {%- else -%}\n      \"greet__container\"\n      {%- endif %} ] ]\n    [ p\n        ~a:[ a_class [ \n          {%- if css_framework == 'TailwindCSS' -%}\n          \"text-3xl text-gray-900 mb-4\"\n          {%- else -%}\n          \"greet__welcome-message\"\n          {%- endif %}\n         ] ]\n        [ txt \"\240\159\145\139 Welcome Visitor! You can edit me in\"\n        ; code\n            [ txt\n                {|\n  lib/components/greet.{% if syntax == 'Reason' %}re{% else %}ml{% endif %}|}\n            ]\n        ]\n    ; p\n        ~a:[ a_class [ \n          {%- if css_framework == 'TailwindCSS' -%}\n          \"text-xl text-gray-900 mb-4\"\n          {%- else -%}\n          \"greet__text\"\n          {%- endif %}  \n         ] ]\n        [ txt\n            \"Here a simple counter example that you can look at to get started:\"\n        ]\n    ; div\n        ~a:[ a_class [ \n          {%- if css_framework == 'TailwindCSS' -%}\n          \"space-x-6 mb-4\"\n          {%- else -%}\n          \"greet__button-container\"\n          {%- endif %}  \n         ] ]\n        [ button\n            ~a:\n              [ a_button_type `Button\n              ; a_onclick (fun _event -> inject Action.Decrement)\n              ; a_class\n                  [ \n                    {%- if css_framework == 'TailwindCSS' -%}\n                      \"inline-flex items-center px-4 py-2 border border-gray-300 \\\n                       text-sm leading-5 font-medium rounded-md text-gray-700 \\\n                       bg-white hover:text-gray-500\"\n                    {%- else -%}\n                    \"greet__button\"\n                    {%- endif %}    \n                  ]\n              ]\n            [ txt \"-\" ]\n        ; span\n            ~a:\n              [ a_class\n                [ \n                  {%- if css_framework == 'TailwindCSS' -%}\n                  \"inline-flex items-center px-4 py-2 border border-gray-300 \\\n                    text-sm leading-5 font-medium rounded-md text-gray-700 \\\n                    bg-white hover:text-gray-500\"\n                  {%- else -%}\n                  \"greet__button\"\n                  {%- endif %}    \n                ]\n              ]\n            [ txt (Int.to_string model) ]\n        ; button\n            ~a:\n              [ a_button_type `Button\n              ; a_onclick (fun _event -> inject Action.Increment)\n              ; a_class\n                [ \n                  {%- if css_framework == 'TailwindCSS' -%}\n                  \"inline-flex items-center px-4 py-2 border border-gray-300 \\\n                   text-sm leading-5 font-medium rounded-md text-gray-700 \\\n                   bg-white hover:text-gray-500\"\n                  {%- else -%}\n                  \"greet__button\"\n                  {%- endif %}    \n                ]\n              ]\n            [ txt \"+\" ]\n        ]\n    ; div\n        [ span\n            ~a:[ a_class [\n              {%- if css_framework == 'TailwindCSS' -%}\n              \"text-xl text-gray-900 mb-4\"\n              {%- else -%}\n              \"greet__text\"\n              {%- endif %}\n              ] ]\n            [ txt \"And here's a link to demonstrate navigation: \"\n            ; Router.link ~route:Home [ txt \"Home\" ]\n            ]\n        ]\n    ]\n\nlet create model ~old_model:_ ~inject =\n  let open Incr_dom in\n  let%map.Incr model = model in\n  let view = view model ~inject in\n  Component.create\n    model\n    (Tyxml.Html.toelt view)\n    ~apply_action:(Action.apply model)\n"

  let d_05bc28281fccafa118c931f2512d488d = "# This file is generated by dune, edit dune-project instead\nopam-version: \"2.0\"\nsynopsis: \"{{ project_description }}\"\ndescription: \"\"\"\n{{ project_description }}\n\"\"\"\nmaintainer: [\"{{ username }}{% if author_email %} <{{ author_email }}>{% endif %}\"]\nauthors: [\"{{ username }}{% if author_email %} <{{ author_email }}>{% endif %}\"]\nlicense: \"MIT\"\nhomepage: \"https://github.com/{{ github_username }}/{{ project_slug }}\"\ndoc: \"https://{{ github_username }}.github.io/{{ project_slug }}\"\nbug-reports: \"https://github.com/{{ github_username }}/{{ project_slug }}/issues\"\ndepends: [\n  \"ocaml\" {>= \"4.08.0\"}\n  \"dune\" {>= \"2.0\"}\n  {% if test_framework == 'Alcotest' -%}\n  \"alcotest\" {with-test}\n  {% endif -%}\n  \"odoc\" {with-doc}\n  {% if syntax == 'Reason' -%}\n  \"reason\" {build}\n  {%- endif %}\n  \"async_kernel\"\n  \"incr_dom\" {>= \"0.14\"}\n  \"js_of_ocaml\"\n  \"ppx_jane\"\n  \"ppx_deriving\"\n]\nbuild: [\n  [\"dune\" \"subst\"] {pinned}\n  [\n    \"dune\"\n    \"build\"\n    \"-p\"\n    name\n    \"-j\"\n    jobs\n    \"@install\"\n    \"@runtest\" {with-test}\n    \"@doc\" {with-doc}\n  ]\n]\ndev-repo: \"git+https://github.com/{{ github_username }}/{{ project_slug }}.git\"\n"

  let d_090aed3b33b3458b37c3b9be3088d204 = "module Model = struct\n  type t =\n    { url : Router.url\n    ; page_home_model : Page_home.Model.t\n    }\n  [@@deriving sexp_of]\n\n  let cutoff\n      { url = url_1; page_home_model = page_home_model_1 }\n      { url = url_2; page_home_model = page_home_model_2 }\n    =\n    Router.compare_url url_1 url_2 = 0\n    && Page_home.Model.cutoff page_home_model_1 page_home_model_2\n\n  let update_url t url = { t with url }\n\n  let empty () =\n    { url = Router.current_url (); page_home_model = Page_home.Model.empty }\nend\n\nmodule Action = struct\n  type t =\n    | UrlChange of Router.url\n    | Page_home_action of Page_home.Action.t\n  [@@deriving sexp_of]\n\n  let apply model action _state ~schedule_action : Model.t =\n    match action with\n    | UrlChange url ->\n      Model.update_url model url\n    | Page_home_action action ->\n      { model with\n        page_home_model =\n          Page_home.Action.apply\n            model.Model.page_home_model\n            action\n            ()\n            ~schedule_action:(fun action ->\n              schedule_action (Page_home_action action))\n      }\nend\n\nmodule State = struct\n  type t = { schedule : Action.t -> unit } [@@deriving sexp_of, fields]\nend\n\nlet on_startup ~schedule_action:schedule _ =\n  let state = { State.schedule } in\n  let _event =\n    Router.on_url_change ~f:(fun loc -> schedule (Action.UrlChange loc))\n  in\n  Async_kernel.return state\n\nlet on_display ~old_model:_ _ ~schedule_action:_ = ()\n\nlet view model ~inject =\n  let open Incr_dom.Incr.Let_syntax in\n  let%map model = model in\n  match Router.route_of_url model.Model.url with\n  | Some Home ->\n    Page_home.view model.page_home_model ~inject:(fun action ->\n        inject (Action.Page_home_action action))\n  | None ->\n    Page_not_found.view ()\n\nlet create model ~old_model ~inject =\n  let open Incr_dom.Incr.Let_syntax in\n  let%map apply_action =\n    let%map model = model in\n    Action.apply model\n  and on_display =\n    let%map old_model = old_model in\n    on_display ~old_model\n  and view = view model ~inject\n  and model = model in\n  Incr_dom.Component.create\n    ~apply_action\n    ~on_display\n    model\n    (Incr_dom.Tyxml.Html.toelt view)\n"

  let d_10521f9319bdbb5befd93d65cb23d18d = "let view () =\n  let open Incr_dom.Tyxml.Html in\n  div\n    ~a:[ a_class [ \"py-4 sm:py-8\" ] ]\n    [ div\n        ~a:[ a_class [ \"max-w-8xl mx-auto px-4 sm:px-6 lg:px-8\" ] ]\n        [ h2\n            ~a:\n              [ a_class\n                  [ \"text-2xl leading-8 font-semibold font-display \\\n                     text-gray-900 sm:text-3xl sm:leading-9\"\n                  ]\n              ]\n            [ txt \"Not found!\" ]\n        ; div\n            ~a:[ a_class [ \"mt-0 mb-4 text-gray-600\" ] ]\n            [ txt \"The page you are looking for cannot be found\" ]\n        ]\n    ]\n"

  let d_12d9e28f342afe47d787703349cc39c2 = "(name spa)\n(description \"Single page application with Js_of_ocaml\")\n\n(config project_name\n  (input (prompt \"Project name\")))\n\n(config project_slug\n  (input (prompt \"Project slug\"))\n  (default (slugify :project_name))\n  (rules\n    (\"The project slug must be lowercase and contain ASCII characters and '-' only.\"\n      (eq :project_slug (slugify :project_slug)))))\n\n(config project_snake\n  (default (snake_case :project_slug)))\n\n(config project_description\n  (input (prompt \"Description\"))\n  (default \"A short, but powerful statement about your project\")\n  (rules\n    (\"The last character of the description cannot be a \\\".\\\" to comply with Opam\"\n      (neq . (last_char :project_description)))))\n\n(config username\n  (input (prompt \"Name of the author\")))\n\n(config github_username\n  (input (prompt \"Github username\"))\n  (default :username))\n\n(config npm_username\n  (input (prompt \"NPM username\"))\n  (default :username))\n\n(config syntax\n  (select\n    (prompt \"Which syntax do you use?\")\n    (values OCaml Reason)))\n\n(config package_manager\n  (select\n    (prompt \"Which package manager do you use?\")\n    (values Opam Esy))\n  (default (if (eq :syntax Reason) Esy Opam)))\n\n(config ci_cd\n  (select\n    (prompt \"Which CI/CD do you use\")\n    (values Github None))\n  (default Github))\n\n(config css_framework\n  (select\n    (prompt \"Which CSS framework do you use?\")\n    (values TailwindCSS None))\n  (default None))\n\n(ignore \n  (files asset/tailwind.config.js)\n  (enabled_if (neq :css_framework TailwindCSS)))\n\n(ignore \n  (files asset/static/main.css)\n  (enabled_if (eq :css_framework TailwindCSS)))\n\n(ignore \n  (files .ocamlformat)\n  (enabled_if (neq :syntax OCaml)))\n\n(ignore\n  (files github/*)\n  (enabled_if (neq :ci_cd Github)))\n\n(ignore\n  (files esy.json)\n  (enabled_if (neq :package_manager Esy)))\n\n(ignore\n  (files asset/package.json Makefile)\n  (enabled_if (neq :package_manager Opam)))\n\n; We need to do this because Dune won't copy .github during build\n(post_gen\n  (actions \n    (run mv github .github))\n  (enabled_if (eq :ci_cd Github)))\n\n(post_gen\n  (actions \n    (run esy install)\n    (run esy dune build))\n  (message \"\240\159\142\129  Installing packages. This might take a couple minutes.\")\n  (enabled_if (eq :package_manager Esy)))\n\n(post_gen\n  (actions \n    (run make dev)\n    (run make build))\n  (message \"\240\159\142\129  Installing packages. This might take a couple minutes.\")\n  (enabled_if (eq :package_manager Opam)))\n\n(post_gen\n  (actions\n    (refmt bin/*.ml bin/*.mli lib/*.ml lib/*.mli test/*.ml test/*.mli bin/*/*.ml bin/*/*.mli))\n  (enabled_if (eq :syntax Reason)))\n\n(example_commands\n  (commands \n    (\"esy install\" \"Download and lock the dependencies.\")\n    (\"esy build\" \"Build the dependencies and the project.\")\n    (\"esy test\" \"Starts the test runner.\"))\n  (enabled_if (eq :package_manager Esy)))\n\n(example_commands\n  (commands\n    (\"make dev\" \"Download runtime and development dependencies.\")\n    (\"make build\" \"Build the dependencies and the project.\")\n    (\"make test\" \"Starts the test runner.\"))\n  (enabled_if (eq :package_manager Opam)))\n"

  let d_132072893c4898750d2418b319b29683 = "# 0.1.0 - 2020-01-01\n\n## Added\n\n- Initial release\n"

  let d_16ee82abed3c0308a995af7fe8f8aec5 = "{%- if css_framework == 'TailwindCSS' -%}\n(rule\n (targets main.css)\n (deps\n  (:data\n   tailwind.config.js\n   {%- if package_manager == 'Opam' %}\n   package-lock.json\n   {%- endif %}\n   (source_tree node_modules)))\n (mode\n  (promote-until-clean-into static/))\n (action\n  (run %{bin:npx} tailwindcss build -c tailwind.config.js -o %{targets})))\n{%- endif %}\n\n(rule\n (target main.js)\n (deps ../bin/main.bc.js)\n (mode\n  (promote-until-clean-into static/))\n (action\n  (copy %{deps} %{target})))\n"

  let d_199926ab09583e9379d28dfbcb3f5e70 = "(lang dune 2.0)\n\n(name {{ project_slug }})\n\n(source \n (github {{ github_username }}/{{ project_slug }}))\n\n(license MIT)\n\n(authors \"{{ username }}{% if author_email %} <{{ author_email }}>{% endif %}\")\n\n(maintainers \"{{ username }}{% if author_email %} <{{ author_email }}>{% endif %}\")\n\n(generate_opam_files true)\n\n(package\n (name {{ project_slug }})\n (synopsis \"{{ project_description }}\")\n (description \"{{ project_description }}\")\n (depends\n  (ocaml\n   (>= 4.08.0))\n  (dune\n   (>= 2.0))\n  (alcotest :with-test)\n  (odoc :with-doc)\n  async_kernel\n  (incr_dom\n   (>= 0.14))\n  js_of_ocaml\n  ppx_jane\n  ppx_deriving))\n"

  let d_24f32b5af6d3d096754eeb11c51f7356 = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\000\031\255\255\255\255\255\255\003\255\255\255\000\007\255\160\000\000\000?\255\255\255\192\000_\255\192\023@\000\t\255\255\250\003\255\255\252\005\255\255\254\002 \007\160P\000\000\001 \000\000\000\144\000_\250(\000\000\016\128\000\000\000\011\255\232)\000\000_\254@\000\000\000\000\000\000\000\000\000\000@\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\250\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\249\000\000\000\000\000\000\000\000\000\000\000\000\000\000_\249\000\000\000\000\000\000\000\000\000\000\000\000\000\000\159\249\000\000\000\000\000\000\000\000\000\000\000\000\000\000\159\253\000\000\000\000\000\000\000\000\000\000\000\000\000\000\191\252\128\000\000\000\000\000\000\000\000\000\000\000\000\001?\252\128\000\000\000\000\000\000\000\000\000\000\000\000\001?\252@\000\000\000\000\000\000\000\000\000\000\000\000\002?\254@\000\000\000\000\000\000\000\000\000\000\000\000\002\127\254\160\000\000\000\000\000\000\000\000\000\000\000\000\005\127\255P\000\000\000\000\000\000\000\000\000\000\000\000\n\255\255\160\000\000\000\000\000\000\000\000\000\000\000\000\021\255\255\210\000\000\000\000\000\000\000\000\000\000\000\000K\255\255\232\128\000\000\000\000\000\000\000\000\000\000\001\023\255\255\242o\255\255\255\255\255\255\255\255\255\255\246O\255\255\252\000\000\000\000\000\000\000\000\000\000\000\000?\255\255\255\224\000\000\000\000\000\000\000\000\000\000\007\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255"

  let d_26624629ac302b31c7028b2f85d1437f = "MIT License\n\nCopyright (c) 2020 {{ username }}\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE."

  let d_26e30ba4efddcec175c53696337e9192 = "name: CI\n\non: [push, pull_request]\n\n{% if package_manager == 'Esy' -%}\n{% raw -%}\njobs:\n  build:\n    name: Build and test\n    runs-on: ${{ matrix.os }}\n    strategy:\n      matrix:\n        os: [ubuntu-latest, macos-latest, windows-latest]\n    steps:\n      - uses: actions/setup-node@v1\n        with:\n          node-version: 12\n\n      - uses: actions/checkout@v2\n      - name: Cache esy dependencies\n        uses: actions/cache@v1\n        id: cache\n        with:\n          path: _export\n          key: ${{ runner.OS }}-build-${{ hashFiles('esy.lock/index.json') }}\n          restore-keys: |\n            ${{ runner.OS }}-build-${{ env.cache-name }}-\n            ${{ runner.OS }}-build-\n            ${{ runner.OS }}-\n\n      - name: Install esy\n        run: npm install -g esy@latest\n\n      - name: Import dependencies\n        if: steps.cache.outputs.cache-hit == 'true'\n        run: esy import-build _export/*\n\n      - name: Install dependencies\n        run: esy install\n\n      - name: Build\n        run: esy build --release\n\n      - name: Check formatting\n        run: esy format\n\n      - name: Run tests\n        run: esy test\n        \n      - name: Export dependencies\n        run: esy export-dependencies\n{%- endraw %}\n{% else -%}\n{% raw -%}\njobs:\n  build:\n    name: Build and test\n\n    runs-on: ${{ matrix.os }}\n\n    strategy:\n      fail-fast: false\n      matrix:\n        os:\n          - macos-latest\n          - ubuntu-latest\n          - windows-latest\n        ocaml-version:\n          - 4.11.1\n\n    steps:\n      - name: Checkout code\n        uses: actions/checkout@v2\n\n      - name: Retrieve opam cache\n        uses: actions/cache@v2\n        if: runner.os != 'Windows'\n        id: cache-opam\n        with:\n          path: ~/.opam\n          key: v1-${{ runner.os }}-opam-${{ matrix.ocaml-version }}-${{ hashFiles('{% endraw %}{{ project_slug }}{% raw %}.opam.locked') }}\n          restore-keys: |\n            v1-${{ runner.os }}-opam-${{ matrix.ocaml-version }}-\n\n      - name: Use OCaml ${{ matrix.ocaml-version }}\n        uses: avsm/setup-ocaml@v1\n        with:\n          ocaml-version: ${{ matrix.ocaml-version }}\n\n      - name: Pin package\n        run: opam pin add {% endraw %}{{ project_slug }}{% raw %}.dev . --no-action\n\n      - name: Query and install external dependencies\n        run: opam depext {% endraw %}{{ project_slug }}{% raw %} --yes --with-doc --with-test\n\n      - name: Install dependencies\n        if: steps.cache-opam.outputs.cache-hit != 'true'\n        run: |\n          opam install . --deps-only --with-doc --with-test --locked --unlock-base\n          opam install ocamlformat\n\n      - name: Upgrade dependencies\n        run: opam upgrade --fixup\n        if: steps.cache-opam.outputs.cache-hit == 'true'\n\n      - name: Build\n        run: make build\n\n      - name: Check formatting\n        run: make format\n\n      - name: Run tests\n        run: make test\n{%- endraw %}\n{% endif %}"

  let d_2953c63d6b7001b2333aa6d1f0fa49a7 = "# {{ project_name }}\n\n{%- if ci_cd == 'Github' %}\n\n[![Actions Status](https://github.com/{{ github_username }}/{{ project_slug }}/workflows/CI/badge.svg)](https://github.com/{{ github_username }}/{{ project_slug }}/actions)\n{%- endif %}\n\n{%- if project_description %}\n\n{{ project_description }}\n{%- endif %}\n\n## Contributing\n\nTake a look at our [Contributing Guide](CONTRIBUTING.md).\n"

  let d_2ed2515ca03cb509874496d3990be200 = "# Contributing\n\n## Setup your development environment\n\nFirst, you will need to install [npm](https://npmjs.com) to install Javascript dependencies.\n\nIn `asset/`:\n\n```\nnpm install\n```\n\n{% if package_manager == 'Esy' -%}\nYou need Esy, you can install the latest version from [npm](https://npmjs.com):\n\n```bash\nyarn global add esy@latest\n# Or\nnpm install -g esy@latest\n```\n\nThen run the `esy` command from this project root to install and build depenencies.\n\n```bash\nesy\n```\n\nThis project uses [Dune](https://dune.build/) as a build system, if you add a dependency in your `package.json` file, don't forget to add it to your `dune` and `dune-project` files too.\n{%- else -%}\nYou need Opam, you can install it by following [Opam's documentation](https://opam.ocaml.org/doc/Install.html).\n\nWith Opam installed, you can install the dependencies with:\n\n```bash\nmake dev\n```\n\nThen, build the project with:\n\n```bash\nmake build\n```\n{%- endif %}\n\n### Running the app\n\nBuilding the project will perform the following steps:\n\n- Generate a file `main.js` that will inject our application in the `#root` element of `index.html`.\n- Generate a file `main.css` that is required by `index.html`\n\nTo run the application, we install `serve` as a dev dependencies. You can run a web server with the content of `asset/static` with:\n\n```sh\ncd asset && npm start\n```\n\nOr, alternatively, you can use the {% if package_manager == 'Esy' -%}`esy`{%- else %}`make`{%- endif %} alias: \n\n{% if package_manager == 'Esy' -%}\n```bash\nesy start\n```\n{%- else %}\n```bash\nmake start\n```\n{%- endif %}\n\n### Running Tests\n\nYou can run the test compiled executable:\n\n{% if package_manager == 'Esy' -%}\n\n```bash\nesy test\n```\n{%- else %}\n```bash\nmake test\n```\n{%- endif %}\n\n### Building documentation\n\nDocumentation for the libraries in the project can be generated with:\n\n{% if package_manager == 'Esy' -%}\n```bash\nesy doc\nopen-cli $(esy doc-path)\n```\n\nThis assumes you have a command like [open-cli](https://github.com/sindresorhus/open-cli) installed on your system.\n\n> NOTE: On macOS, you can use the system command `open`, for instance `open $(esy doc-path)`\n{%- else %}\n```bash\nmake doc\nopen-cli $(make doc-path)\n```\n\nThis assumes you have a command like [open-cli](https://github.com/sindresorhus/open-cli) installed on your system.\n\n> NOTE: On macOS, you can use the system command `open`, for instance `open $(make doc-path)`\n{%- endif %}\n\n### Repository Structure\n\nThe following snippet describes {{ project_name }}'s repository structure.\n\n```text\n.\n\226\148\156\226\148\128\226\148\128 asset/\n|   Contains the javascript environment and the static assets.\n\n\226\148\156\226\148\128\226\148\128 asset/static/\n|   Static assets of the application.\n\226\148\130\n\226\148\156\226\148\128\226\148\128 bin/\n|   Source for {{ project_slug }}'s compiled application. This links to the library defined in `lib/`.\n\226\148\130\n\226\148\156\226\148\128\226\148\128 lib/\n|   Source for {{ project_name }}'s library. Contains {{ project_name }}'s core functionnalities.\n\226\148\130\n\226\148\156\226\148\128\226\148\128 test/\n|   Unit tests and integration tests for {{ project_name }}.\n\226\148\130\n\226\148\156\226\148\128\226\148\128 dune-project\n|   Dune file used to mark the root of the project and define project-wide parameters.\n|   For the documentation of the syntax, see https://dune.readthedocs.io/en/stable/dune-files.html#dune-project\n\226\148\130\n\226\148\156\226\148\128\226\148\128 LICENSE\n\226\148\130\n{%- if package_manager == 'Esy' %}\n\226\148\156\226\148\128\226\148\128 package.json\n|   Esy package definition.\n|   To know more about creating Esy packages, see https://esy.sh/docs/en/configuration.html.\n{%- else %}\n\226\148\156\226\148\128\226\148\128 Makefile\n|   Make file containing common development command.\n{%- endif %}\n\226\148\130\n\226\148\156\226\148\128\226\148\128 README.md\n\226\148\130\n\226\148\148\226\148\128\226\148\128 {{ project_slug }}.opam\n    Opam package definition.\n    To know more about creating and publishing opam packages, see https://opam.ocaml.org/doc/Packaging.html.\n```\n"

  let d_33fcddc15fc77f1455b42ef5dcbc42d8 = "\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020i\236\255\017g\236\255\020i\236\255\207\224\251\254\255\255\255\255\253\254\255\255\252\253\255\255\255\255\255\255\151\200\248\201\000v\238\248\015\129\239\255\011\127\239\255\011\127\239\255\011\127\239\255\011\127\239\255\011\127\239\255\011\127\239\255\011\127\239\255\011\127\239\255\011\127\239\255\011\127\239\255\011\127\239\255\011\127\239\255\011\127\239\255\011\127\239\255\011\127\239\255\011\127\239\255\012\128\239\255\006|\239\253\204\228\252\252\255\255\255\255\252\254\255\255\253\254\255\255\255\255\255\250O\142\241\239\007`\235\255\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\023j\236\255\006`\235\255F\137\240\254\255\255\255\255\254\255\255\255\254\254\255\254\255\255\255\255\254\254\255\222\023\135\240\213\007\127\240\255\011\129\240\254\n\129\240\255\n\129\240\255\n\129\240\255\n\129\240\255\n\129\240\255\n\129\240\255\n\129\240\255\n\129\240\255\n\129\240\255\n\129\240\255\n\129\240\255\n\129\240\255\n\129\240\255\n\129\240\255\012\130\240\255\002|\239\2550\148\242\252\253\254\255\254\255\255\255\255\252\253\255\255\255\255\255\255\205\223\251\241\nb\235\248\021i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\nb\235\255\192\215\250\254\255\255\255\255\252\253\255\255\252\254\255\255\255\255\255\255\163\207\249\196\000y\239\244\014\132\240\255\n\130\240\255\n\130\240\255\n\130\240\255\n\130\240\255\n\130\240\255\n\130\240\255\n\130\240\255\n\130\240\255\n\130\240\255\n\130\240\255\n\130\240\255\n\130\240\255\n\130\240\255\n\130\240\255\014\132\240\255\000y\239\255}\188\247\251\255\255\255\255\251\253\255\255\251\253\255\255\255\255\255\254v\167\244\237\003^\235\255\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\021i\236\001\023k\236\000\024k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\023j\236\255\004^\235\255l\161\243\254\255\255\255\255\252\253\255\255\255\255\255\254\253\254\255\255\255\255\255\2310\150\242\203\002\128\240\255\011\132\240\254\t\131\240\255\t\131\240\255\t\131\240\255\t\131\240\255\t\131\240\255\t\131\240\255\t\131\240\255\t\131\240\255\t\131\240\255\t\131\240\255\t\131\240\255\t\131\240\255\t\131\240\255\t\131\240\255\006\130\240\253\209\232\252\252\255\255\255\255\253\254\255\255\255\255\255\255\255\255\255\2476~\239\238\012c\235\255\021i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\012d\235\001\004_\235\000\002]\235\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020i\236\255\014e\236\255*w\238\254\242\247\254\255\255\255\255\255\254\254\255\255\253\254\255\254\255\255\255\255\210\233\252\203\000~\239\229\011\134\240\255\t\133\240\254\t\133\240\255\t\133\240\255\t\133\240\255\t\133\240\255\t\133\240\255\t\133\240\255\t\133\240\255\t\133\240\255\t\133\240\255\t\133\240\255\t\133\240\255\011\134\240\255\000\127\239\255E\162\244\251\255\255\255\254\254\254\255\255\254\254\255\254\255\255\255\255\235\242\253\239\023k\236\243\018g\236\255\020h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\0007\127\239\001j\160\243\000\127\173\244\006\022j\236\219\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\021i\236\255\ba\235\255\185\210\249\255\255\255\255\255\252\253\255\255\255\255\255\255\252\253\255\255\255\255\255\246t\186\246\194\000\127\239\252\011\136\240\255\b\134\240\255\b\134\240\255\b\134\240\255\b\134\240\255\b\134\240\255\b\134\240\255\b\134\240\255\b\134\240\255\b\134\240\255\b\134\240\255\b\134\240\255\012\136\240\255\000~\239\254\168\212\250\250\255\255\255\255\252\253\255\255\253\254\255\254\255\255\255\255\213\228\252\233\nb\235\243\021i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\244\248\254\001\255\255\255\000\255\255\255\r\\\151\242\212\ba\235\255\022j\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\023j\236\255\004^\235\255n\162\243\254\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\254\255\255\255\255\252\254\255\220\021\141\241\213\005\134\241\255\t\136\241\254\b\135\241\255\b\135\241\255\b\135\241\255\b\135\241\255\b\135\241\255\b\135\241\255\b\135\241\255\b\135\241\255\b\135\241\255\n\136\241\255\001\131\240\255*\150\243\249\248\252\255\252\255\255\255\255\254\255\255\255\252\253\255\254\255\255\255\255\186\211\249\229\005_\235\250\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\254\255\255\001\255\255\255\000\255\255\255\021\234\241\253\215\027m\237\235\016f\236\255\020i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020i\236\255\rd\236\255,x\238\254\244\248\254\255\255\255\255\255\254\255\255\255\255\255\255\255\252\254\255\255\255\255\255\255\163\210\250\198\000\128\240\244\011\138\241\255\007\136\241\255\007\137\241\255\007\137\241\255\007\137\241\255\007\137\241\255\007\137\241\255\007\137\241\255\007\137\241\255\007\137\241\255\011\138\241\255\000\129\240\252\173\215\250\247\255\255\255\255\252\254\255\255\255\255\255\255\251\253\255\255\255\255\255\254\135\178\245\226\002]\235\255\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h"

  let d_34c93a60b9d696d0bbad4fa2fc60fcd8 = "(executable\n (name main)\n (libraries {{ project_snake }})\n (modules main)\n (modes js))\n"

  let d_42fbb9ce3c61ec4fca33db3338e457d3 = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\006[\249\000\022j\233\000\022j\233\000\018g\237\000\019h\236\000\019i\236\000\021h\234\000\020i\235\000\018h\237\000\019h\236\000\019h\236\000\019h\236\000\019h\236\000\019h\236\000\021h\234\000\017d\239\000\015e\240\000\017f\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\025m\230\000\017f\238\000\017f\238\000\019g\236\000\019h\236\000\020h\236\000\019h\236\000\019h\236\000\019h\237\000\000~\255\000\000n\255\000\025f\231\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000$m\219\000\018h\237\000\017f\238\000\019g\236\000\019i\236\000\020h\235\000\019h\236\001\019h\236\001\019h\236\001\020h\235\001\019h\236\001\019h\236\001\019h\236\001\019h\236\000\020h\235\000\019h\236\000\018g\237\000\019g\236\000\021j\234\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019e\236\000\019j\236\000\018^\242\000\019k\235\000\019i\236\002\019i\236\004\019i\236\004\019i\236\003\019i\236\002\016j\238\001\018i\237\002\019i\236\002\019i\236\003\019i\236\003\019i\236\003\019i\236\004\019i\236\004\019i\236\004\019i\236\004\019i\236\004\019i\236\004\019i\236\004\019i\236\004\019i\236\004\017h\236\003\027n\237\003\218\232\252\002\255\255\255\001\255\255\255\001g\158\242\001\006_\235\001!q\238\000\018d\237\000\020j\235\000\018g\237\000\019h\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\016h\239\000\021g\234\000\015i\239\000\019g\237\000\019g\236\001\019h\236\002\019h\236\003\019h\236\004\019h\236\004\019h\236\003\019h\236\003\019h\236\003\019h\236\003\019h\236\004\019h\236\004\019h\236\003\019g\236\000\019h\236\000\019h\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\018k\237\000\020h\235\000\017f\238\000\020j\235\000\019h\236\001\019h\236\002\019h\236\004\019h\236\004\019h\236\003\017h\238\001\018f\237\000\018g\237\000\rn\242\000\000\000\000\000)~\214\000\018g\237\000\018g\237\000\020i\236\001\021j\236\003\nb\235\004\164\196\248\003\255\255\255\002\251\253\255\001\203\222\251\001\te\235\001\021l\236\001\018j\236\000\017i\236\000\018k\236\000\018k\236\000\019k\237\000\017k\235\000\018j\236\001\018j\236\003\018j\236\003\019i\236\000\020h\236\000\017l\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\000\020h\235\000\020h\235\000\020h\235\001\019h\236\004\019h\236\003\019h\236\002\019h\236\000\018h\237\000\019h\236\000\018A\237\000\017d\238\000\020k\235\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\020g\235\000\014l\241\000\022f\233\000\018h\237\000\019h\236\001\019h\236\002\019h\236\004\019h\236\003\018h\237\000\018h\237\000\019h\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\018k\237\000\019h\236\000\017i\238\000\020i\235\000\018h\237\000\019h\236\001\019h\236\003\019h\236\004\018g\237\000\018g\237\000\018g\237\000\019h\236\000\014l\241\000\011k\244\000\018g\237\007\019h\237\015\019h\236\023\020h\235\025\019h\236\022\019h\236\015\018i\237\006\000b\255\000Or\176\000\014h\241\000\000\000\000\000\000\000\000\000\000\000\000\000\017\143\241\000\017l\240\000\017n\241\000\016s\241\000\018m\238\002\018k\237\003\018k\237\003\018k\237\003\018l\238\002\ri\229\000\018i\236\001\018j\236\000\019i\236\025\019i\236\\\019h\236\144\019h\236\175\019h\236\191\019h\236\196\019h\236\195\019h\236\188\019h\236\179\019h\236\171\019h\236\162\019h\236\154\019h\236\146\019h\236\137\019h\236\129\019h\236y\019i\236q\019h\236h\019h\236`\019i\236W\019i\236P\024h\236E\205\219\250!\255\255\255\025\255\255\255\020_\153\242\024\005_\235\022\000\003\214\000%b\218\000\018i\237\000\020h\235\000\021h\234\000\019h\236\003\019h\236\004\019h\236\004\019h\236\004\019h\236\003\019h\236\003\019h\236\003\019h\236\003\019h\236\002\019h\236\002\019h\236\002\019h\236\002\019h\236\002\019h\236\002\019h\236\001\019h\236\001\019h\236\001\019g\236\000\020i\235\000\017i\238\000\019h\236\000\019h\236\000\019h\236\001\019h\236\001\019h\236\002\019h\236\003\019h\236\004\019h\236\002\019h\236\000\019g\236\000\019g\236\000\019f\236\000\018f\237\003\019h\236 \019h\236G\019h\236n\019h"

  let d_458bbcda3bdfab601c4c60af9bc378cf = "{\n  \"short_name\": \"{{ project_slug }}\",\n  \"name\": \"{{ project_name }}\",\n  \"icons\": [\n    {\n      \"src\": \"favicon.ico\",\n      \"sizes\": \"64x64 32x32 24x24 16x16\",\n      \"type\": \"image/x-icon\"\n    }\n  ],\n  \"start_url\": \".\",\n  \"display\": \"standalone\",\n  \"theme_color\": \"#ffffff\",\n  \"background_color\": \"#ffffff\"\n}"

  let d_4b07836e20a5e3e29cc7c82f4db2fe39 = "\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020i\236\255\016f\236\255\029n\237\253\230\239\253\253\255\255\255\255\255\255\255\254\148\193\247\207\000j\237\249\019w\238\255\014t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\015t\238\255\018v\238\255\000j\237\252\165\203\249\246\255\255\255\255\250\252\255\254\255\255\255\255\201\221\251\230\007`\235\245\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\005_\235\254\173\203\248\252\255\255\255\255\251\253\255\255\255\255\255\230'\131\240\214\br\238\255\016w\238\254\014u\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014v\238\255\014u\238\255\017w\238\255\000m\237\254p\173\245\238\255\255\255\253\253\254\255\255\251\253\255\255\255\255\255\255\154\190\247\228\002]\235\252\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\023k\236\255\001]\235\255\135\178\245\253\255\255\255\255\249\251\255\254\255\255\255\255\208\228\252\207\001o\237\229\015x\238\255\014w\238\254\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\014w\238\255\015x\238\255\006r\237\2554\140\241\246\251\253\255\248\255\255\255\255\254\255\255\255\251\253\255\255\255\255\255\252n\162\243\230\004_\235\255\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\023k\236\255\001]\235\255\135\178\245\255\255\255\255\255\251\253\255\255\252\253\255\255\255\255\255\252\156\199\248\194\000p\237\243\016z\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\rx\238\255\017z\238\255\000o\237\255\139\190\247\249\255\255\255\255\251\253\255\255\255\255\255\255\252\253\255\255\255\255\255\251Y\149\242\227\006`\235\255\022j\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\023j\236\255\003^\235\254\152\190\247\247\255\255\255\255\251\253\255\255\255\255\255\254\251\253\255\255\255\255\255\234?\149\242\205\004u\238\255\015{\239\254\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\rz\239\255\014{\239\255\003t\238\254\192\220\251\252\255\255\255\255\252\254\255\255\255\255\255\255\252\253\255\255\255\255\255\251U\146\241\232\007`\235\255\022j\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\023j\236\255\003^\235\254\153\190\247\250\255\255\255\255\251\253\255\255\255\255\255\255\252\254\255\254\255\255\255\255\175\211\250\207\000r\238\246\015}\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\012{\239\255\r|\239\255\by\239\255\026\131\240\253\235\244\254\253\255\255\255\255\254\254\255\255\255\255\255\255\252\253\255\255\255\255\255\245?\132\240\236\nb\235\255\021i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\007`\235\255S\145\241\254\255\255\255\255\252\253\255\255\255\255\255\255\254\254\255\254\255\255\255\255\239\246\254\224\012}\239\229\011|\239\255\012}\239\254\012|\239\255\012|\239\255\012|\239\255\012|\239\255\012|\239\255\012|\239\255\012|\239\255\012|\239\255\012|\239\255\012|\239\255\012|\239\255\012|\239\255\012|\239\255\012|\239\255\012|\239\255\012|\239\255\014~\239\255\000v\238\255G\157\243\252\255\255\255\254\253\254\255\255\255\255\255\255\252\253\255\255\255\255\255\255\176\205\249\241\014e\236\249\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\021i\236\255\007`\235\255\162\196\248\254\255\255\255\255\252\253\255\255\255\255\255\255\253\254\255\255\255\255\255\2407\149\242\214\003z\238\255\r\127\239\254\011~\239\255\011~\239\255\011~\239\255\011~\239\255\011~\239\255\011~\239\255\011~\239\255\011~\239\255\011~\239\255\011~\239\255\011~\239\255\011~\239\255\011~\239\255\011~\239\255\011~\239\255\011~\239\255\015\128\239\255\000u\238\255\136\192\247\252\255\255\255\255\251\253\255\255\253\254\255\255\255\255\255\255\212\227\252\241\014e\236\246\016f\236\255\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h"

  let d_4bcae49e7687815b0d71ac41088d2bd5 = "\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\252\253\255\255\255\255\255\243F\136\240\212\006`\235\255\026l\237\254\025l\236\255\005_\235\2550z\238\247\219\232\252\246\255\255\255\254\254\254\255\255\254\254\255\255\251\253\255\255\253\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\245\248\254\247\240\246\254\241\242\247\254\240\243\247\254\246\245\249\254\248\250\252\255\245\254\254\255\243\255\255\255\243\254\254\255\243\249\251\254\244\239\245\254\237\219\232\252\233\187\211\250\232\132\176\245\230>\132\239\233\011c\235\245\005_\235\255\020i\236\255\021j\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\253\254\255\254\255\255\255\255\210\226\251\217\017g\236\228\002]\235\255\000[\234\254D\135\240\244\237\243\254\248\255\255\255\255\251\252\255\255\253\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\255\255\255\246\217\231\252\233i\159\243\227\012c\235\242\nb\235\255\023j\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\254\254\255\255\255\255\255\253\233\241\253\230\140\182\246\231\150\188\247\243\246\250\254\250\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\255\254\254\255\254\254\254\255\254\254\254\255\255\254\254\255\255\254\255\255\255\254\255\255\255\255\255\255\255\254\255\255\255\254\255\255\255\254\254\255\254\253\254\255\254\252\253\255\254\251\253\255\255\253\254\255\255\254\254\255\255\255\255\255\251\220\233\252\228?\132\239\225\003^\235\252\022j\236\255\020h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\254\254\254\255\255\255\255\255\254\255\255\255\254\253\254\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\254\252\253\255\255\254\255\255\255\255\255\255\241{\171\244\216\003^\235\247\021i\236\255\020i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\254\251\253\255\255\251\253\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\254\251\253\255\255\255\255\255\249\161\195\247\219\006`\235\244\020i\236\255\020i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\255\255\254\250\252\255\255\255\255\255\252\167\199\248\222\005_\235\245\021i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\250\252\255\255\255\255\255\251\142\183\246\221\003^\235\250\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\251\253\255\255\255\255\255\245Z\150\242\224\006`\235\255\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h"

  let d_4f530746e559df45e30369595788f919 = "\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\024k\236\253\003^\235\255_\153\242\253\255\255\255\254\253\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\255\255\255\255\243\247\254\249\211\227\251\250\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\2462|\238\240\rd\235\255\021i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\006`\235\255\178\205\249\252\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\255\250\252\255\255\255\255\255\249N\142\241\235\ba\235\255\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\023k\236\255\002]\235\254\139\181\246\253\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\255\255\255\255\215\229\252\2422|\238\242\005_\235\253k\161\243\253\255\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\255\255\255\255\184\210\249\234\006`\235\249\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\006_\235\255\134\178\245\253\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\255\255\255\253\254\255\255\251\253\255\255\252\253\255\255\255\255\255\255\185\210\249\239\nb\235\248\021i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\020h\236\255\020h\236\255\012d\235\254\202\221\251\253\255\255\255\255\253\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\255\255\255\255\255\240\245\254\246(u\238\242\006`\235\255\024k\236\255\000[\234\254\168\199\248\253\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\253\255\255\255\255\255\250Q\144\241\234\007`\235\255\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020h\236\255\019h\236\255\011c\235\253\184\210\249\253\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\252\253\255\255\252\253\255\255\253\254\255\255\253\254\255\255\253\253\255\255\252\253\255\255\251\253\255\255\254\255\255\255\255\255\255\255\255\255\255\255\254\254\255\252\156\192\247\244\020i\236\249\017g\236\255\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\022j\236\255\007a\235\255I\138\240\252\255\255\255\254\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\253\255\255\255\255\255\251`\153\242\240\003^\235\255\025l\236\255\022j\236\255\nb\235\255A\133\240\253\255\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\255\255\255\255\209\226\251\244\015e\236\247\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\ba\235\255>\132\240\253\255\255\255\254\253\253\255\255\251\252\255\255\253\254\255\255\254\254\255\255\254\255\255\255\254\255\255\255\255\255\255\255\253\254\255\255\253\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\250\252\255\252\213\228\252\250\152\189\247\249:\129\239\248\004^\235\253\018g\236\255\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\022j\236\255\006`\235\254\180\207\249\252\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\255\255\255\255\187\211\250\240\006_\235\250\022j\236\255\019h\236\255\019h\236\255\020i\236\255\014e\236\254\200\220\251\253\255\255\255\255\253\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\255\255\255\252e\156\243\242\005_\235\255\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\nb\235\254\149\187\246\252\255\255\255\254\253\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\209\226\251\250\172\202\248\253\189\213\250\253\211\227\251\249\213\228\252\246\203\222\251\250\173\203\248\248x\169\244\2477\127\239\249\014e\236\252\003^\235\254\011c\235\255\022j\236\255\020h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\022j\236\255\007a\235\255K\140\241\252\255\255\255\254\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\255\255\255\255\247=\131\239\239\nb\235\255\021j\236\255\019h\236\255\019h\236\255\023j\236\255\004^\235\255k\160\243\253\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\255\255\255\255\221\233\252\242\018g\236\247\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\nb\235\254R\145\241\250\172\202\248\250\216\230\252\251\240\245\254\254\249\251\255\251\252\253\255\252\255\255\255\252\233\241\253\248e\156\243\243\nb\235\252\006_\235\255\ba\235\254\014e\236\251\016f\236\250\nc\235\252\005_\235\254\002]\235\255\011c\235\255\020h\236\255\023j\236\255\021i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\020i\236\255\015e\236\254\206\224\251\253\255\255\255\255\253\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\255\255\255\255\173\203\248\236\005_\235\250\022j\236\255\019h\236\255\019h\236\255\019h\236\255\020i\236\255\016f\236\255\029n\237\254\228\238\253\254\255\255\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\251\253\255\255\255\255\255\254y\169\244\236\003^\235\255\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\021i\236\255\007`\235\255\004^\235\254\018g\236\253#r\237\253-x\238\2485~\239\2507\127\239\249\026m\237\250\005_\235\254\020i\236\255\022j\236\255\021i\236\255\020i\236\255\019h\236\255\021i\236\255\022j\236\255\023j\236\255\021i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\023j\236\255\003^\235\255{\171\244\252\255\255\255\255\251\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\248\251\254\243-y\238\239\rd\235\255\021i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\023j\236\255\003^\235\255\139\181\246\253\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\255\255\255\255\255\237\243\254\247!q\237\245\016f\236\255\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\022j\236\255\019h\236\255\015e\236\255\rd\236\255\012c\235\255\011c\235\255\017g\236\255\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h"

  let d_54e9894651b10f0b2c82abc5399431eb = "<!DOCTYPE html>\n<html lang=\"en\">\n\n<head>\n  <meta charset=\"utf-8\" />\n  <link rel=\"icon\" href=\"favicon.ico\" />\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" />\n  <meta name=\"theme-color\" content=\"#000000\" />\n  <meta name=\"description\" content=\"{{ project_description }}\" />\n  <!--\n    manifest.json provides metadata used when your web app is installed on a\n    user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/\n  -->\n  <link rel=\"manifest\" href=\"manifest.json\" />\n\n  <!-- Inter font -->\n  <link rel=\"stylesheet\" href=\"https://rsms.me/inter/inter.css\">\n  <style>\n    html {\n      font-family: 'Inter', sans-serif;\n    }\n\n    @supports (font-variation-settings: normal) {\n      html {\n        font-family: 'Inter var', sans-serif;\n      }\n    }\n  </style>\n\n  <link rel=\"stylesheet\" href=\"main.css\">\n\n  <title>{{ project_name }}</title>\n</head>\n\n<body class=\"antialiased\">\n  <noscript>\n    You need to enable JavaScript to run this app.\n  </noscript>\n  <div id=\"root\"></div>\n  <script type='text/javascript' src='main.js'></script>\n</body>\n\n</html>"

  let d_61a33b4684d0ddbbc5be366ccc3c9464 = "let () =\n  Incr_dom.Start_app.start\n    ~bind_to_element_with_id:\"root\"\n    ~initial_model:({{ project_snake | capitalize }}.App.Model.empty ())\n    (module {{ project_snake | capitalize }}.App)\n"

  let d_620f0b67a91f7f74151bc5be745b7110 = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"

  let d_71cd6bd4609ece92a8949844a24765e7 = "(library\n (name {{ project_snake }}_test)\n (inline_tests\n  (modes js))\n (libraries {{ project_snake }} incr_dom.testing)\n (preprocess\n  (pps ppx_expect)))\n"

  let d_759d34a49dddf92ff6b9e75648904325 = "# https://www.robotstxt.org/robotstxt.html\nUser-agent: *"

  let d_780d569e2f40ff4c904fdd695fd3ec25 = "\236(\019h\236\000\019h\236\003\019h\236\002\019h\236\000\019h\236\000\019h\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\022f\233\000\019h\236\000\019h\236\000\019h\236\001\019h\236\003\019h\236\001\018h\237\000\019h\236\017\019h\236N\019h\236\136\019h\236\175\019h\236\194\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\199\019h\236\194\019h\236\175\019h\236\137\019h\236Q\019h\236\018\020g\235\000\019h\236\001\019h\236\003\019h\236\001\019h\236\000\019h\236\000\017i\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\000\020h\235\000\020h\235\000\019h\236\002\019h\236\003\000k\255\000\023g\232\000\020h\235\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\018h\237\000\bh\246\000\028h\228\000\019h\236\003\019h\236\002\018i\236\000\017i\237\000\020g\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\018k\237\000\019h\236\000\017g\238\000\030x\225\000\019h\236\001\019h\236\003\019h\236\004\019h\236\003\018h\237\002\017g\238\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\018g\237\001\017g\238\001\018h\237\002\019h\236\003\019h\236\004\019h\236\003\019h\236\001\022k\235\000\017d\237\000\020h\235\000\021h\234\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\rf\242\000\020h\235\000\020h\235\000\019h\236\000\019h\236\000\020h\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020i\235\000\020h\235\000\020h\235\000\019h\236\000\018g\237\000\018g\237\000\019g\236\000\rf\242\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"

  let d_7b7d37b74ac4e69ce312aa77b5e6ee66 = "\000\000\001\000\001\000\128\128\000\000\001\000 \000(\b\001\000\022\000\000\000(\000\000\000\128\000\000\000\000\001\000\000\001\000 \000\000\000\000\000\000\000\001\0008\236\000\0008\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000"

  let d_7dac9287d26607df70f2976523248bfb = "type t = Home\n\nlet from_url = function [] -> Some Home | _ -> None\n\nlet to_string = function Home -> \"/\"\n"

  let d_83b8c3fe2a69cd901807bde6388a92e6 = "{\n  \"name\": \"{{ project_slug }}\",\n  \"esy\": {\n    \"build\": \"dune build -p #{self.name}\",\n    {%- if syntax == 'Reason' %}\n    \"buildDev\": \"refmterr dune build --root . --only-package #{self.name}\",\n    {% else %}\n    \"buildDev\": \"dune build --root . --only-package #{self.name}\",\n    {% endif -%}\n    \"buildEnv\": {\n      \"ODOC_SYNTAX\": \"{% if syntax == 'Reason' %}re{% else %}ml{% endif %}\"\n    }\n  },\n  \"dependencies\": {\n    \"@opam/dune\": \">= 2.0\",\n    \"@opam/async_kernel\": \"*\",\n    \"@opam/incr_dom\": \">= 0.14\",\n    \"@opam/js_of_ocaml\": \"*\",\n    \"@opam/ppx_jane\": \"*\",\n    \"@opam/ppx_deriving\": \"*\",\n    {%- if syntax == 'Reason' %}\n    \"@opam/reason\": \"*\",\n    {%- endif %}\n    \"ocaml\": \">= 4.8.0\"\n  },\n  \"devDependencies\": {\n    \"@opam/dune-release\": \"*\",\n    \"@opam/merlin\": \"*\",\n    {% if syntax == 'OCaml' -%}\n    \"@opam/ocamlformat\": \"*\",\n    {% endif -%}\n    \"@opam/odoc\": \"*\",\n    \"@opam/utop\": \"*\",\n    {%- if syntax == 'Reason' %}\n    \"refmterr\": \"*\",\n    {%- endif %}\n    \"ocaml\": \"~4.10.0\",\n    {%- if css_framework == 'TailwindCSS' %}\n    \"libnpx\": \"^10.2.4\",\n    \"@fullhuman/postcss-purgecss\": \"^2.3.0\",\n    \"@tailwindcss/ui\": \"^0.5.0\",\n    \"autoprefixer\": \"^9.8.6\",\n    \"cssnano\": \"^4.1.10\",\n    \"cross-env\": \"^7.0.2\",\n    \"serve\": \"^11.3.2\",\n    \"tailwindcss\": \"^1.6.2\"\n    {%- else -%}\n    \"serve\": \"^11.3.2\"\n    {%- endif %}\n  },\n  \"scripts\": {\n    \"start\": \"esy serve -s asset/static/\",\n    \"test\": \"esy dune build @test/runtest -f\",\n    \"doc\": \"esy dune build @doc\",\n    \"doc-path\": \"esy echo #{self.target_dir}/default/_doc/_html/index.html\",\n    \"format\": \"esy dune build @fmt --auto-promote\",\n    \"watch\": \"esy dune build -p #{self.name} --watch\",\n    \"utop\": \"esy dune utop lib -- -implicit-bindings\"\n  }\n}"

  let d_870bbfd68ecd85df28ee971c23ea7a50 = "\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\251\019h\236*\019h\236\000\019h\236\002\020h\235\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019j\236\000\019g\236\000\019h\236\002\019h\236\000\019h\236\167\019h\236\255\019h\236\252\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\252\019h\236\255\019h\236\180\019h\236\000\019h\236\002\019h\236\000\019h\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\000\019h\236\002\019h\236\000\019h\2365\019h\236\251\019h\236\254\019h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\253\019h\236\255\019h\236>\019h\236\000\019h\236\003\018h\237\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\000\019i\236\000\019h\236\003\019h\236\000\019h\236\141\019h\236\255\019h\236\250\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\250\019h\236\255\019h\236\151\019h\236\000\019h\236\003\019g\236\000\020h\235\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\024f\231\000\019h\236\000\019h\236\001\020k\235\000\019h\236\007\019h\236\196\019h\236\255\019h\236\250\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\250\019h\236\255\019h\236\204\019h\236\n\018h\237\000\019h\236\001\020h\235\000\018j\237\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\000\019h\236\000\019h\236\002\019h\236\000\019h\236\025\019h\236\213\019h\236\255\019h\236\250\019h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\250\019h\236\255\019h\236\217\019h\236\029\019h\236\000\019h\236\002\019h\236\000\019h\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\016p\239\000\019h\236\000\019h\236\000\019h\236\002\019h\236\000\019h\236\022\019h\236\194\019h\236\255\019h\236\252\019h\236\251\019h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\251\019h\236\252\019h\236\255\019h\236\199\019h\236\025\018h\237\000\019h\236\002\019h\236\000\019h\236\000\020e\235\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\021i\234\000\019h\236\000\019h\236\000\019h\236\002\016j\238\000\020h\235\005\019h\236\130\019h\236\248\019h\236\255\019h\236\254\019h\236\252\019h\236\251\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\252\019h\236\251\019h\236\252\019h\236\254\019h\236\255\019h\236\249\019h\236\134\018h\237\007\006c\248\000\019h\236\002\019h\236\000\019h\236\000\019h\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\000\019h\236\000\019h\236\000\019h\236\002\019h\236\003\019h\236\000\019h\236%\019h\236\151\019h\236\236\019h\236\255\019h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\238\019h\236\155\019h"

  let d_875b95eaa65d235910eb523e0dea7578 = "type t = Home\n\nval from_url : string list -> t option\n\nval to_string : t -> string\n"

  let d_8eefe3a0a4163e673c80a0ea1ea1b728 = "\236\141\019h\236\164\019h\236\177\019h\236\177\019h\236\168\019h\236\146\019h\236t\019h\236C\020g\235\002\019g\236\000\019h\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\000\019h\236\000\020g\235\000\019h\236\003\019h\236\002\018j\237\000\019h\236\000\019h\236\000\019h\236\004\019h\236&\019h\236Y\019h\236\134\019h\236\176\019h\236\202\019h\236\223\019h\236\236\019h\236\242\019h\236\243\019h\236\242\019h\236\236\019h\236\221\019h\236\203\020h\236\172\014e\236\138\164\196\247P\255\255\255,\245\249\254\022\169\195\243\006\016f\233\012\022l\233\004\015d\239\000\029k\238\000\tc\228\000\017c\232\000\018l\237\000\019n\238\000\018i\235\012\018j\236F\018j\236\165\018i\236\243\018i\236\255\018i\236\254\018i\236\255\018i\236\255\018i\236\255\018i\236\255\018i\236\255\018i\236\255\018i\236\255\018i\236\255\018i\236\255\018i\236\255\018i\236\255\018i\236\255\018i\236\255\018i\236\255\018i\236\255\018i\236\255\020k\236\255\nd\235\2556\128\239\255\251\252\255\247\253\254\255\245\255\255\255\234\\\151\242\211\007`\235\243\022j\236\199\019h\236\142\019h\236O\019h\236\029\019h\236\002\020g\235\000\019h\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\018j\237\000\017j\238\000\018l\237\000\018g\237\002\020h\235\002\019h\236\002\019i\236\000\019l\236\000\019k\236\000\000\n\255\000\012o\243\000\020h\235\000\022h\233\000\019i\236\n\019h\2364\019h\236j\019h\236\163\019h\236\215\019h\236\248\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\016e\239\000\020i\235\000\022k\233\000\019h\236\017\019h\236H\019h\236\149\019h\236\216\019h\236\251\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\023j\236\255\003^\235\255\146\185\246\255\255\255\255\253\255\255\255\246\234\242\253\193\014h\236\208\019k\236\222\018k\236\203\018k\236\191\018k\236\176\018k\236\158\018k\236\161\018k\236\191\018k\236\232\018k\236\255\018k\236\255\018k\236\255\018k\236\252\018k\236\251\018k\236\252\018k\236\252\018k\236\252\018k\236\252\018k\236\252\018k\236\252\018k\236\252\018k\236\251\018k\236\251\018k\236\251\018k\236\251\018k\236\251\018k\236\251\018k\236\251\018k\236\251\018k\236\252\022m\237\252\001`\235\252\130\177\245\247\255\255\255\254\255\255\255\255\230\239\253\229\018g\236\237\019h\236\255\020h\236\254\019h\236\255\019h\236\255\019h\236\246\019h\236\211\019h\236\175\019h\236\144\019h\236v\019h\236c\019h\236R\019h\236F\019h\236=\019h\2367\019h\2362\019h\236.\019h\236*\019h\236%\019h\236!\019h\236\028\019h\236\020\019h\236\r\019g\236\005\000\000\255\000;\158\196\000\rc\242\000\025k\230\0007r\200\000\020g\235\005\019h\236\021\019h\236.\019h\236S\019h\236\130\019h\236\181\019h\236\229\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\253\019h\236\251\019h\236\251\019h\236\251\019h\236\252\019h\236\252\019h\236\252\019h\236\250\019h\236\255\019h\236\238\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\000\018i\237\000\018i\237\003\019h\236~\019h\236\192\019h\236\236\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\252\019h\236\251\019h\236\252\019h\236\252\019h\236\253\019h\236\254\019h\236\254\019h\236\254\019h\236\254\019h\236\254\019h\236\253\019h\236\252\022j\236\252\005_\235\251Z\149\242\249\255\255\255\254\252\253\255\255\255\255\255\234'z\239\222\ri\237\255\018m\237\254\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\253\017l\237\251\017l\237\254\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\017l\237\255\018l\237\255\016l\237\255\019m\237\252\219\233\252\251\255\255\255\255\255\255\255\254\138\180\246\218\002]\235\252\023j\236\254\019h\236\252\019h\236\251\019h\236\252\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\253\019h\236\250\019h\236\248\019h\236\245\019h\236\241\019h\236\232\019h\236\218\019h\236\207\019h\236\196\019h\236\192\019h\236\194\019h\236\205\019h\236\220\019h\236\240\019h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\251\019h\236\251\019h\236\253\019h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\t\019h\236\226\019h\236\255\019h\236\254\019h\236\253\019h\236\251\019h\236\253\019h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\021i\236\255\011c\235\2556~\239\253\252\253\255\253\253\254\255\255\255\255\255\244K\145\241\220\006g\236\255\019o\237\252\017n\237\252\017n\237\252\017n\237\251\017n\237\251\017n\237\252\017n\237\254\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\017n\237\255\020o\237\255\004e\236\255Y\154\242\250\255\255\255\253\252\253\255\255\255\255\255\2403|\239\226\rd\235\255\021i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\253\019h\236\252\019h\236\251\019h\236\251\019h\236\252\019h\236\252\019h\236\252\019h\236\253\019h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\252\019h\236\251\019h\236\252\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\220\019h\236\255\019h\236\252\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020h\236\255\017g\236\255\027m\237\254\229\238\253\253\255\255\255\255\255\255\255\251p\168\244\223\002f\236\255\020q\237\254\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\016o\237\255\017o\237\255\019q\237\255\004g\236\254\177\208\249\250\255\255\255\255\255\255\255\255\212\227\251\226\tb\235\242\021i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\254\019h\236\254\019h\236\254\019h\236\254\019h\236\254\019h\236\254\019h\236\253\019h\236\253\019h\236\252\019h\236\252\019h\236\252\019h\236\253\019h\236\253\019h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\021i\236\255\nb\235\254\197\218\250\253\255\255\255\255\255\255\255\255\147\190\247\223\000f\236\252\020s\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\016p\237\255\017q\237\255\011m\237\255%}\239\252\242\247\254\253\254\254\255\255\255\255\255\254\137\180\246\222\003^\235\254\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\023j\236\255\003^\235\255\154\190\247\252\255\255\255\254\255\255\255\255\196\220\251\213\000h\236\242\019t\237\255\015q\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\016r\237\255\015q\237\255\020t\237\255\000g\236\254\128\180\245\249\255\255\255\255\250\252\255\255\255\255\255\245E\136\240\227\nb\235\255\021i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\019h\236\000\019h\236\b\019h\236\224\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\006_\235\255Z\150\242\253\255\255\255\254\253\253\255\255\255\255\255\231!}\239\218\011q\238\255\016s\238\254\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\015s\238\255\017t\238\255\011p\238\255!}\239\249\238\245\254\251\255\255\255\255\255\255\255\255\242\247\254\235\026m\237\236\017g\236\255\020h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h"

  let d_9259c59c4360d349661ec1b827f8b459 = "{% if package_manager == 'Esy' -%}\n# Supresses the lock folder from the diffs\nesy.lock/* linguist-generated=true\n\n{% endif -%}\n\n{% if syntax == 'Reason' -%}\n# Tell github that .re and .rei files are Reason\n*.re linguist-language=Reason\n*.rei linguist-language=Reason\n{%- else -%}\n# Tell github that .ml and .mli files are OCaml\n*.ml linguist-language=OCaml\n*.mli linguist-language=OCaml\n{%- endif %}\n\n# Disable syntax detection for .spin\n.spin linguist-language=Text\n\n# Declare shell files to have LF endings on checkout\n# On Windows, the default git setting for `core.autocrlf`\n# means that when checking out code, LF endings get converted\n# to CRLF. This causes problems for shell scripts, as bash\n# gets choked up on the extra `\\r` character.\n* text eol=lf\n"

  let d_98d8046a1f282904b063eed1cd2c7531 = "open Js_of_ocaml\n\ntype url =\n  { path : string list\n  ; hash : string\n  ; search : string\n  }\n[@@deriving sexp, compare]\n\ntype location =\n  { href : string\n  ; host : string\n  ; hostname : string\n  ; protocol : string\n  ; origin : string option\n  ; port_ : string\n  ; pathname : string\n  ; search : string\n  ; hash : string\n  }\n\nlet path_of_location location_opt =\n  match location_opt with\n  | None ->\n    []\n  | Some location ->\n    (match location.pathname with\n    | \"\" | \"/\" ->\n      []\n    | raw ->\n      let raw = String.sub raw ~pos:1 ~len:(String.length raw - 1) in\n      let raw =\n        match raw.[String.length raw - 1] with\n        | '/' ->\n          String.sub raw ~pos:0 ~len:(String.length raw - 1)\n        | _ ->\n          raw\n      in\n      String.split raw ~on:'/')\n\nlet hash_of_location location_opt =\n  match location_opt with\n  | None ->\n    \"\"\n  | Some location ->\n    (match location.hash with\n    | \"\" | \"#\" ->\n      \"\"\n    | raw ->\n      String.sub raw ~pos:1 ~len:(String.length raw - 1))\n\nlet search_of_location location_opt =\n  match location_opt with\n  | None ->\n    \"\"\n  | Some location ->\n    (match location.search with\n    | \"\" | \"?\" ->\n      \"\"\n    | raw ->\n      String.sub raw ~pos:1 ~len:(String.length raw - 1))\n\nlet current_url () =\n  let js_location_opt =\n    Js.some Dom_html.window##.location |> Js.Opt.to_option\n  in\n  let location_opt =\n    Option.map js_location_opt ~f:(fun js_location ->\n        { href = js_location##.href |> Js.to_string\n        ; host = js_location##.host |> Js.to_string\n        ; hostname = js_location##.hostname |> Js.to_string\n        ; protocol = js_location##.protocol |> Js.to_string\n        ; origin =\n            Js.Optdef.map js_location##.origin Js.to_string\n            |> Js.Optdef.to_option\n        ; port_ = js_location##.port |> Js.to_string\n        ; pathname = js_location##.pathname |> Js.to_string\n        ; search = js_location##.search |> Js.to_string\n        ; hash = js_location##.hash |> Js.to_string\n        })\n  in\n  let path = path_of_location location_opt in\n  let hash = hash_of_location location_opt in\n  let search = search_of_location location_opt in\n  { path; hash; search }\n\n(** Listen for the Dom hash change event. This binds to the event for the\n    lifecycle of the application. *)\nlet on_url_change ~f =\n  let open Js_of_ocaml in\n  Js.some\n    (Dom.addEventListener\n       Dom_html.window\n       Dom_html.Event.popstate\n       (Dom_html.handler (fun (_ev : #Dom_html.event Js.t) ->\n            f (current_url ());\n            Js._true))\n       Js._false)\n\nlet route_of_url url = Route.from_url url.path\n\nlet push url =\n  let url' = Js.string url in\n  Dom_html.window##.history##pushState Js.null (Js.string \"\") (Js.some url');\n  let event = Dom.createCustomEvent (Dom.Event.make \"popstate\") in\n  Dom_html.window##dispatchEvent (event :> Dom_html.event Js.t)\n\nlet replace url =\n  let url' = Js.string url in\n  Dom_html.window##.history##replaceState Js.null url' Js.null;\n  let event = Dom.createCustomEvent (Dom.Event.make \"popstate\") in\n  Dom_html.window##dispatchEvent (event :> Dom_html.event Js.t)\n\nlet link ~route content =\n  let open Incr_dom.Tyxml.Html in\n  let location = Route.to_string route in\n  a\n    ~a:\n      [ a_onclick (fun event ->\n            Dom.preventDefault event;\n            let (_ : bool Js.t) = push location in\n            Ui_event.Ignore)\n      ; a_href location\n      ]\n    content\n"

  let d_a5911c9e2e2f3bab2501238bebbdaa80 = "\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\254\255\255\255\255\240\246\254\234\031p\237\234\016f\236\255\020i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\255\255\255\255\163\196\248\222\003^\235\249\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\255\255\255\255\2393}\239\227\012d\235\255\021i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\255\254\254\255\255\254\254\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\255\255\255\255\164\197\248\220\003^\235\249\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\255\255\255\252\253\255\255\251\253\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\253\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\254\255\255\255\255\238\244\254\232\023k\236\235\018g\236\255\020h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\245\248\254\252\234\242\253\255\236\243\253\255\247\250\254\253\255\255\255\254\254\254\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\255\255\255\244C\134\240\225\nb\235\255\021i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\253\253\255\255\255\255\255\255\255\255\255\255\246\249\254\254\191\214\250\251v\167\244\249B\134\240\250&t\238\251\031p\237\255 p\237\255*w\238\251I\139\240\252\206\224\251\253\255\255\255\255\253\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\251\253\255\255\255\255\255\253~\172\245\221\004^\235\255\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\254\254\255\255\255\255\255\253\214\228\252\250|\171\244\250-y\238\253\ba\235\254\003^\235\255\tb\235\255\014e\236\255\016f\236\255\016f\236\255\015f\236\255\001\\\235\255(u\238\253\237\244\254\254\255\255\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\254\255\255\255\255\206\224\251\224\004_\235\242\024k\236\255\020h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h"

  let d_ac919bd35be2d11e351d365203d71de3 = "# ocamlbuild working directory\n_build/\n\n# ocamlbuild targets\n*.byte\n*.native\n\n# Merlin configuring file for Vim and Emacs\n.merlin\n\n# Dune generated files\n*.install\n\n# Local OPAM switch\n_opam/\n\n"

  let d_ada646288dc3fdd569756a66b8430826 = "profile = sparse\nbreak-cases = nested\nbreak-fun-decl = smart\ncases-exp-indent = 2\nif-then-else = fit-or-vertical\nparens-tuple = multi-line-only\nparens-tuple-patterns = multi-line-only\nparens-ite = false\ninfix-precedence = parens\nbreak-infix-before-func = false\nsequence-style = terminator\nsequence-blank-line = compact\nindicate-multiline-delimiters = no\nocp-indent-compat = true\nwrap-comments = true\nparse-docstrings = true\nlet-binding-spacing = compact\ntype-decl = sparse"

  let d_b2b28d3fb0735c9fb13b222e33594327 = "module Model = struct\n  type t = { greet_model : Greet.Model.t } [@@deriving sexp_of]\n\n  let cutoff { greet_model = greet_model_1 } { greet_model = greet_model_2 } =\n    Greet.Model.cutoff greet_model_1 greet_model_2\n\n  let empty = { greet_model = Greet.Model.empty }\nend\n\nmodule State = struct\n  type t = unit [@@deriving sexp_of]\nend\n\nmodule Action = struct\n  type t = Greet_action of Greet.Action.t [@@deriving sexp_of]\n\n  let apply model action _state ~schedule_action =\n    match action with\n    | Greet_action action ->\n      Model.\n        { greet_model =\n            Greet.Action.apply\n              model.greet_model\n              action\n              ()\n              ~schedule_action:(fun action ->\n                schedule_action (Greet_action action))\n        }\nend\n\nlet on_startup ~schedule_action:_ _ = Async_kernel.return ()\n\nlet view model ~inject =\n  let open Incr_dom.Tyxml.Html in\n  div\n    [ Greet.view model.Model.greet_model ~inject:(fun action ->\n          inject (Action.Greet_action action))\n    ]\n\nlet create model ~old_model:_ ~inject =\n  let open Incr_dom in\n  let%map.Incr model = model in\n  let view = view model ~inject in\n  Component.create\n    model\n    (Tyxml.Html.toelt view)\n    ~apply_action:(Action.apply model)\n"

  let d_b60ef67a1d5d91ff1ec047be6167b48f = ".DEFAULT_GOAL := all\n\ndefine BROWSER_PYSCRIPT\nimport os, webbrowser, sys\n\nfrom urllib.request import pathname2url\n\nwebbrowser.open(\"file://\" + pathname2url(os.path.abspath(sys.argv[1])))\nendef\nexport BROWSER_PYSCRIPT\n\ndefine PRINT_HELP_PYSCRIPT\nimport re, sys\n\nfor line in sys.stdin:\n\tmatch = re.match(r'^([a-zA-Z_-]+):.*?## (.*)$$', line)\n\tif match:\n\t\ttarget, help = match.groups()\n\t\tprint(\"%-20s %s\" % (target, help))\nendef\nexport PRINT_HELP_PYSCRIPT\n\nBROWSER := python -c \"$$BROWSER_PYSCRIPT\"\n\nARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))\n$(eval $(ARGS):;@:)\n\n.PHONY: help\nhelp: ## Print this help message\n\t@python -c \"$$PRINT_HELP_PYSCRIPT\" < $(MAKEFILE_LIST)\n\nARGS := $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))\n$(eval $(ARGS):;@:)\n\n.PHONY: all\nall:\n\topam exec -- dune build --root . @install\n\n.PHONY: dev\ndev: ## Install development dependencies\n\topam pin add -y ocaml-lsp-server https://github.com/ocaml/ocaml-lsp.git\n\topam install -y dune-release merlin ocamlformat utop ocaml-lsp-server\n\tcd asset && npm install\n\topam install --deps-only --with-test --with-doc -y .\n\n.PHONY: build\nbuild: ## Build the project, including non installable libraries and executables\n\topam exec -- dune build --root .\n\n.PHONY: install\ninstall: all ## Install the packages on the system\n\topam exec -- dune install --root .\n\n.PHONY: start\nstart: all ## Serve the application with a local HTTP server\n\tcd asset && npm start\n\n.PHONY: test\ntest: ## Run the unit tests\n\topam exec -- dune build --root . @test/runtest -f\n\n.PHONY: clean\nclean: ## Clean build artifacts and other generated files\n\topam exec -- dune clean --root .\n\n.PHONY: doc\ndoc: ## Generate odoc documentation\n\topam exec -- dune build --root . @doc\n\n.PHONY: servedoc\nservedoc: doc ## Open odoc documentation with default web browser\n\t$(BROWSER) _build/default/_doc/_html/index.html\n\n.PHONY: format\nformat: ## Format the codebase with ocamlformat\n\topam exec -- dune build --root . --auto-promote @fmt\n\n.PHONY: watch\nwatch: ## Watch for the filesystem and rebuild on every change\n\topam exec -- dune build --root . --watch\n\n.PHONY: utop\nutop: ## Run a REPL and link with the project's libraries\n\topam exec -- dune utop --root . lib -- -implicit-bindings\n"

  let d_b7dd92d1afcf7a08a8c6d217e73db2b0 = "module.exports = {\n  purge: {\n    enabled: process.env.NODE_ENV === 'production',\n    mode: 'all',\n    content: [\n      '../lib/**/*.{% if syntax == 'Reason' %}re{% else %}ml{% endif %}',\n      'static/index.html'\n    ],\n  },\n  theme: {\n    extend: {\n      fontFamily: {\n        sans: ['Inter var'],\n      },\n    },\n  }\n}\n"

  let d_c86dfd344792588122d003bd04a93bf6 = "\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\020i\236\255\016f\236\255 p\237\253\230\239\253\254\255\255\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\251\253\255\255\255\255\255\253\131\176\245\233\003]\235\253\023k\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020i\236\255\014e\236\255)v\238\253\238\244\254\254\255\255\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\251\252\255\255\255\255\255\255\129\175\245\246\003^\235\254\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020i\236\255\020i\236\255\021i\236\255\021i\236\255\020h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\023k\236\255\002]\235\255~\172\245\253\255\255\255\255\251\252\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\255\255\255\255\209\226\251\238\014e\236\245\020h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\023k\236\255\002]\235\255\137\180\246\253\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\251\253\255\255\255\255\255\255\203\222\251\249\017g\236\251\019h\236\255\020h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020i\236\255\017g\236\255\028n\237\254\224\235\253\254\255\255\255\255\251\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\253\254\255\255\251\253\255\2469\128\239\239\nb\235\255\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020i\236\255\rd\236\255+w\238\253\242\247\254\254\255\255\255\255\253\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\251\253\255\255\255\255\255\255\231\240\253\248*w\238\249\012c\235\255\021i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\006_\235\255]\151\242\253\255\255\255\254\254\255\255\255\253\254\255\255\252\253\255\255\252\253\255\255\252\253\255\255\255\255\255\253{\171\244\237\002]\235\254\023k\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\004_\235\255\143\183\246\252\255\255\255\255\252\253\255\255\253\253\255\255\251\253\255\255\251\252\255\255\251\252\255\255\255\255\255\255\232\240\253\2462|\238\246\ta\235\255\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\007`\235\254d\156\243\253\231\240\253\253\255\255\255\254\254\254\255\254\255\255\255\254\250\252\255\251\135\178\245\242\nb\235\251\021i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\017g\236\254\135\179\245\252\242\246\254\253\255\255\255\254\254\255\255\255\254\254\255\255\255\255\255\255\212\228\252\246)v\238\245\ba\235\255\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\021i\236\255\006`\235\255\025l\236\253G\137\240\254W\148\241\249W\147\241\249*w\238\250\005_\235\253\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020h\236\255\019h\236\255\004^\235\255$s\237\253Z\150\242\250\128\174\245\253\147\186\246\251h\158\243\249\018g\236\250\012d\235\255\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\017g\236\255\ba\235\255\006`\235\255\006_\235\255\014e\236\255\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\015e\236\255\005_\235\255\002]\235\255\001]\235\254\004_\235\255\019h\236\255\021i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020h\236\255\021j\236\255\022j\236\255\022j\236\255\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020i\236\255\022j\236\255\023j\236\255\023k\236\255\022j\236\255\020h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h"

  let d_ca7f0aabfd740be9696608b68ee6333f = "\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\255\255\255\254\215\229\252\248Z\150\242\247\015e\236\252\002]\235\255\rd\236\255\021i\236\255\023j\236\255\021i\236\255\020i\236\255\020i\236\255\020i\236\255\020i\236\255\026l\237\255\001]\235\255\128\174\245\252\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\255\255\255\244S\145\241\217\000Y\234\255\021i\236\255\023j\236\255\022j\236\255\021i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\254\255\255\001\254\254\255\000\254\254\255\016\255\255\255\238\255\255\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\255\255\255\252\144\184\246\244\014e\236\251\005_\235\255\020i\236\255\023j\236\255\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020i\236\255\014e\236\255(v\238\253\241\246\254\253\255\255\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\248\251\254\236k\160\243\216\015f\236\238\002]\235\252\005_\235\255\012c\235\255\019h\236\255\023j\236\255\021i\236\254\019h\236\255\019h\236\255\021i\236\254\023j\236\255\021i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\253\254\255\238\253\254\255\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\255\255\255\252x\168\244\240\000Z\234\253\020i\236\255\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\005_\235\254\175\204\249\252\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\253\254\255\255\255\255\255\249\233\241\253\231\163\196\248\228f\157\243\2317\127\239\236\018g\236\242\002]\235\252\012c\235\255\018h\236\255\018h\236\255\011c\235\255\002]\235\255\nb\235\255\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\245\249\254\001\237\243\254\000\235\242\254\016\252\253\255\237\255\255\255\255\253\254\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\255\255\255\255\175\204\249\238\001]\235\250\023k\236\255\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\023j\236\255\003^\235\255r\165\244\252\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\254\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\252\255\255\255\246\231\240\253\236\154\190\247\2235~\239\229\021i\236\243\020h\236\2458\128\239\241\131\176\245\234O\142\241\229\012d\235\255\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\0001{\239\001\0004\230\000\000>\231\tG\138\240\222\208\225\251\255\255\255\255\254\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\255\255\255\255\255\233\241\253\241\029n\237\242\016f\236\255\021i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\021j\236\255\ba\235\255F\137\240\253\255\255\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\254\252\253\255\255\251\253\255\255\254\254\255\255\255\255\255\255\255\255\255\254\254\255\255\243\235\242\253\235\232\240\253\237\250\252\255\249\255\255\255\253\147\186\246\222\003^\235\253\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\011d\235\001\026o\236\000I\142\240\007\004^\235\222\026m\237\255\205\223\251\251\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\255\255\255\251e\157\243\232\004^\235\255\023k\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020i\236\255\015e\236\255$s\237\254\240\245\254\254\255\255\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\254\252\253\255\255\254\254\255\255\255\255\255\255\255\255\255\255\252\253\255\254\255\255\255\255\198\219\250\224\rd\236\245\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\021j\236\001\018i\236\000\nd\235\b\024l\236\223\012c\235\255\030o\237\251\219\232\252\253\255\255\255\255\253\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\255\255\255\253\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\254\255\255\255\255\219\232\252\238\015e\236\244\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020i\236\255\014e\236\254\205\223\251\254\255\255\255\255\253\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\254\254\254\255\254\253\254\255\254\255\255\255\255\225\236\253\234\016f\236\243\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\020k\236\b\019h\236\223\023k\236\255\ba\235\2537\127\239\253\243\248\254\254\255\255\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\255\254\254\255\255\255\255\255\255\253\254\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\255\255\255\254\128\174\245\237\003^\235\254\023j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\004^\235\254\161\195\247\250\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\255\255\255\255\168\199\248\233\004^\235\252\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h"

  let d_cce69634d80f599965738980c43ba1f6 = "open! Incr_dom_testing\nopen {{ project_snake | capitalize }}\n\nlet%expect_test \"can render home page\" =\n  let driver =\n    Driver.create\n      ~initial_model:Page_home.Model.empty\n      ~initial_state:()\n      ~sexp_of_model:Page_home.Model.sexp_of_t\n      (module Page_home)\n  in\n  let module H = (val Helpers.make driver) in\n  H.show_view ();\n  [%expect\n  {%- if css_framework == 'None' -%}\n  {% raw -%}\n    {|\n    <div>\n      <div class=\"greet__container\">\n        <p class=\"greet__welcome-message\">\n          \240\159\145\139 Welcome Visitor! You can edit me in\n          <code>\n      lib/components/greet.{% endraw %}{% if syntax == 'Reason' %}re{% else %}ml{% endif %}{% raw %} </code>\n        </p>\n        <p class=\"greet__text\"> Here a simple counter example that you can look at to get started: </p>\n        <div class=\"greet__button-container\">\n          <button type=\"button\" class=\"greet__button\" onclick={handler}> - </button>\n          <span class=\"greet__button\"> 0 </span>\n          <button type=\"button\" class=\"greet__button\" onclick={handler}> + </button>\n        </div>\n        <div>\n          <span class=\"greet__text\">\n            And here's a link to demonstrate navigation:\n            <a href=\"/\" onclick={handler}> Home </a>\n          </span>\n        </div>\n      </div>\n    </div>\n|}\n  {%- endraw %}\n  {%- else -%}\n  {% raw -%}\n  {|\n  <div>\n    <div class=\"text-center mt-12\">\n      <p class=\"text-3xl text-gray-900 mb-4\">\n        \240\159\145\139 Welcome Visitor! You can edit me in\n        <code>\n    lib/components/greet.{% endraw %}{% if syntax == 'Reason' %}re{% else %}ml{% endif %}{% raw %} </code>\n      </p>\n      <p class=\"text-xl text-gray-900 mb-4\"> Here a simple counter example that you can look at to get started: </p>\n      <div class=\"space-x-6 mb-4\">\n        <button type=\"button\" class=\"inline-flex items-center px-4 py-2 border border-gray-300 text-sm leading-5 font-medium rounded-md text-gray-700 bg-white hover:text-gray-500\" onclick={handler}> - </button>\n        <span class=\"inline-flex items-center px-4 py-2 border border-gray-300 text-sm leading-5 font-medium rounded-md text-gray-700 bg-white hover:text-gray-500\"> 0 </span>\n        <button type=\"button\" class=\"inline-flex items-center px-4 py-2 border border-gray-300 text-sm leading-5 font-medium rounded-md text-gray-700 bg-white hover:text-gray-500\" onclick={handler}> + </button>\n      </div>\n      <div>\n        <span class=\"text-xl text-gray-900 mb-4\">\n          And here's a link to demonstrate navigation:\n          <a href=\"/\" onclick={handler}> Home </a>\n        </span>\n      </div>\n    </div>\n  </div>\n|}\n  {%- endraw %}\n  {%- endif %}];\n  H.do_actions [ Page_home.Action.Greet_action Greet.Action.Increment ];\n  H.perform_update ();\n  H.show_model ();\n  [%expect {| ((greet_model 1)) |}];\n  H.show_view ();\n  [%expect\n  {%- if css_framework == 'None' -%}\n  {% raw -%}\n    {|\n    <div>\n      <div class=\"greet__container\">\n        <p class=\"greet__welcome-message\">\n          \240\159\145\139 Welcome Visitor! You can edit me in\n          <code>\n      lib/components/greet.{% endraw %}{% if syntax == 'Reason' %}re{% else %}ml{% endif %}{% raw %} </code>\n        </p>\n        <p class=\"greet__text\"> Here a simple counter example that you can look at to get started: </p>\n        <div class=\"greet__button-container\">\n          <button type=\"button\" class=\"greet__button\" onclick={handler}> - </button>\n          <span class=\"greet__button\"> 1 </span>\n          <button type=\"button\" class=\"greet__button\" onclick={handler}> + </button>\n        </div>\n        <div>\n          <span class=\"greet__text\">\n            And here's a link to demonstrate navigation:\n            <a href=\"/\" onclick={handler}> Home </a>\n          </span>\n        </div>\n      </div>\n    </div>\n|}\n  {%- endraw %}\n  {%- else -%}\n  {% raw -%}\n  {|\n  <div>\n    <div class=\"text-center mt-12\">\n      <p class=\"text-3xl text-gray-900 mb-4\">\n        \240\159\145\139 Welcome Visitor! You can edit me in\n        <code>\n    lib/components/greet.{% endraw %}{% if syntax == 'Reason' %}re{% else %}ml{% endif %}{% raw %} </code>\n      </p>\n      <p class=\"tex"

  let d_d171486544dcbe78f38c1a38010b058d = "(** Main entry point for our application. *)\n"

  let d_d4793d6aed9c55204aac8e9a6605bc57 = ".greet__container {\n  text-align: center;\n  margin-top: 3rem;\n}\n\n.greet__welcome-message {\n  --text-opacity: 1;\n  color: rgba(22, 30, 46, var(--text-opacity));\n  margin-bottom: 1rem;\n  font-size: 1.875rem;\n}\n\n.greet__text {\n  margin-bottom: 1rem;\n  --text-opacity: 1;\n  color: rgba(22, 30, 46, var(--text-opacity));\n  margin-bottom: 1rem;\n  font-size: 1.26rem;\n}\n\n.greet__button-container {\n  margin-bottom: 1rem;\n}\n\n.greet__button-container>.greet_button {\n  margin-bottom: 1rem;\n}\n\n.greet__button-container>.greet_button:last-child {\n  margin-right: 0;\n}\n\n.greet__button {\n  --text-opacity: 1;\n  color: #374151;\n  color: rgba(55, 65, 81, var(--text-opacity));\n  padding-left: 1rem;\n  padding-right: 1rem;\n  padding-top: 0.5rem;\n  padding-bottom: 0.5rem;\n  line-height: 1.25rem;\n  font-size: 0.875rem;\n  font-weight: 500;\n  align-items: center;\n  display: inline-flex;\n  border-width: 1px;\n  border-radius: 0.375rem;\n  --border-opacity: 1;\n  border-color: #d2d6dc;\n  border-color: rgba(210, 214, 220, var(--border-opacity));\n  --bg-opacity: 1;\n  background-color: #ffffff;\n  background-color: rgba(255, 255, 255, var(--bg-opacity));\n}"

  let d_df53c1bb1c1c3bc1c5f46a0aa939f199 = "# spa\n\nSingle page application with Js_of_ocaml\n\n```bash\nspin new spa\n```\n\n## Acknowledgments\n\nThis template is inspired by these awesome projects:\n\n- [incr_dom_navigation_example](https://github.com/anuragsoni/incr_dom_navigation_example) - Client side navigation example\n"

  let d_e2e64317d44808ba27c958acd22362ad = "{\n  \"devDependencies\": {\n    {% if css_framework == 'TailwindCSS' -%}\n    \"@fullhuman/postcss-purgecss\": \"^2.3.0\",\n    \"autoprefixer\": \"^9.8.6\",\n    \"cssnano\": \"^4.1.10\",\n    \"cross-env\": \"^7.0.2\",\n    \"serve\": \"^11.3.2\",\n    \"tailwindcss\": \"^1.6.2\"\n    {%- else -%}\n    \"serve\": \"^11.3.2\"\n    {%- endif %}\n  },\n  \"scripts\": {\n    \"start\": \"serve -s static\"\n  }\n}\n"

  let d_eace912d8b7af6ba58dad0cbadb6657f = "\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h"

  let d_ec1db8eec44d717f3291c4b6e5b7f75b = "t-xl text-gray-900 mb-4\"> Here a simple counter example that you can look at to get started: </p>\n      <div class=\"space-x-6 mb-4\">\n        <button type=\"button\" class=\"inline-flex items-center px-4 py-2 border border-gray-300 text-sm leading-5 font-medium rounded-md text-gray-700 bg-white hover:text-gray-500\" onclick={handler}> - </button>\n        <span class=\"inline-flex items-center px-4 py-2 border border-gray-300 text-sm leading-5 font-medium rounded-md text-gray-700 bg-white hover:text-gray-500\"> 1 </span>\n        <button type=\"button\" class=\"inline-flex items-center px-4 py-2 border border-gray-300 text-sm leading-5 font-medium rounded-md text-gray-700 bg-white hover:text-gray-500\" onclick={handler}> + </button>\n      </div>\n      <div>\n        <span class=\"text-xl text-gray-900 mb-4\">\n          And here's a link to demonstrate navigation:\n          <a href=\"/\" onclick={handler}> Home </a>\n        </span>\n      </div>\n    </div>\n  </div>\n|}\n  {%- endraw %}\n  {%- endif %}];\n"

  let d_f3e77221cd11b4fa7a54276cc80c2180 = "\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\254\255\255\001\254\254\255\000\217\230\252\016\255\255\255\239\184\210\249\228\004^\235\245\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\022j\236\255\007`\235\255\175\204\249\255\255\255\255\255\252\253\255\255\255\255\255\255\255\255\255\254\253\254\255\255\255\255\255\229(\152\243\207\001\135\241\255\b\139\241\254\007\138\241\255\007\138\241\255\007\138\241\255\007\138\241\255\007\138\241\255\007\138\241\255\006\138\241\255\012\140\241\255\000\129\240\254d\181\246\244\255\255\255\253\252\254\255\255\255\255\255\255\255\255\255\255\252\253\255\255\255\255\255\249R\145\241\229\007a\235\255\022j\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\016\251\253\255\239\255\255\255\255\131\175\245\230\002]\235\253\023k\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\021i\236\255\nb\235\255<\131\239\254\250\252\255\254\255\255\255\255\254\254\255\255\255\255\255\255\253\254\255\254\255\255\255\255\192\225\251\202\000\131\240\237\n\141\241\255\006\139\241\254\006\139\241\255\006\139\241\255\006\139\241\255\006\139\241\255\006\139\241\255\011\142\241\255\000\132\240\255;\162\244\243\249\252\255\249\255\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\243+w\238\234\014e\236\255\020i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\253\253\255\255\255\255\255\248X\148\242\233\006_\235\254\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020h\236\255\021i\236\255\022j\236\255\023j\236\255\023j\236\255\026l\237\255\007`\235\255z\169\244\255\255\255\255\255\253\254\255\255\255\255\255\255\255\255\255\255\252\254\255\255\255\255\255\242Y\177\245\198\000\134\240\255\011\143\241\254\005\140\241\255\006\141\241\255\006\140\241\255\006\140\241\255\011\143\241\255\000\134\240\2551\159\243\242\238\247\254\247\255\255\255\255\253\254\255\255\255\255\255\255\255\255\255\255\254\254\255\254\255\255\255\255\242\247\254\240\028n\237\242\017f\236\255\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\239\254\254\255\255\255\255\255\255\248\250\254\233&t\237\226\014e\236\255\020i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\021i\236\255\022j\236\255\023j\236\255\021i\236\255\017g\236\255\011c\235\255\005_\235\255\002]\235\254\002]\235\252\004^\235\252\ta\235\253\000Y\234\247\143\183\246\249\255\255\255\255\253\254\255\255\255\255\255\255\254\255\255\254\255\255\255\255\250\253\255\222 \152\243\207\000\137\241\255\n\145\242\254\006\142\242\253\007\143\242\254\t\144\242\255\000\133\241\254:\165\244\239\240\249\254\246\255\255\255\255\253\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\254\255\255\255\255\238\244\254\239\026l\237\246\017g\236\255\020h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\252\253\255\253\255\255\255\255\176\205\249\223\004_\235\247\022j\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\021i\236\255\023j\236\255\020i\236\255\012d\235\255\005_\235\255\002]\235\254\ba\235\251\026l\237\246:\129\239\244^\152\242\239\133\177\245\242\159\193\247\235\172\202\248\233\189\213\250\243\208\225\251\241\224\235\253\245\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\254\255\255\255\255\239\248\254\216(\158\244\205\000\134\241\252\002\141\242\255\001\139\242\255\000\136\241\248d\186\247\233\249\252\255\247\254\255\255\255\253\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\255\255\255\255\255\240\246\254\243\029o\237\246\016f\236\255\020i\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\253\253\254\255\255\255\255\255\242>\131\239\223\011c\235\255\021i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\020h\236\255\023j\236\255\021i\236\255\011c\235\255\002]\235\254\rd\236\2502|\239\245b\154\242\241\152\189\247\241\199\219\250\243\235\242\253\245\255\255\255\249\255\255\255\253\255\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\254\254\254\255\255\254\254\255\231\148\208\249\201\031\156\243\2150\164\244\229\191\227\252\232\255\255\255\251\252\254\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\254\255\255\255\255\238\244\254\237\026l\237\243\018g\236\255\020i\236\254\020i\236\255\020i\236\255\020i\236\254\020i\236\254\020i\236\254\020i\236\254\020i\236\254\020h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\252\253\255\254\255\255\255\255\168\199\248\210\003^\235\248\023j\236\255\019h\236\255\019h\236\255\019h\236\255\021i\236\255\018g\236\255\003^\235\255\nb\235\2509\128\239\244\137\179\245\242\213\228\252\245\252\253\255\249\255\255\255\253\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\255\252\253\255\255\251\253\255\255\252\253\255\255\252\253\255\255\252\253\255\255\253\254\255\254\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\254\255\254\253\254\255\255\255\255\255\253\254\255\255\235\254\255\255\243\255\255\255\255\252\254\255\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\254\255\255\255\255\205\223\251\237\005_\235\247\019h\236\255\017f\236\255\016f\236\255\015f\236\255\015e\236\255\014e\236\255\014e\236\255\014e\236\255\015f\236\255\017g\236\255\020i\236\255\022j\236\255\023j\236\255\021i\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\255\255\255\001\255\255\255\000\255\255\255\017\255\255\255\238\255\255\255\255\255\255\255\254\254\254\255\254\255\255\255\255\233\241\253\222\016f\236\230\021i\236\255\019h\236\254\019h\236\255\023j\236\255\011c\235\255\021i\236\250t\166\244\243\206\224\251\243\253\254\255\250\255\255\255\255\255\255\255\255\255\255\255\255\252\253\255\255\251\253\255\255\252\253\255\255\254\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\254\251\253\255\254\253\254\255\255\253\254\255\255\252\254\255\254\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\255\253\254\255\254\255\255\255\255\207\224\251\232\025l\236\239\030o\237\246\029n\237\242 p\237\246#r\237\244%t\238\237*w\238\234,x\238\233)v\238\233#r\237\237\026l\237\242\012c\235\243\005_\235\250\002]\235\254\nb\235\255\020i\236\255\022j\236\254\019h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h"

  let d_fb85140c35d440c8641b38ffccd2de20 = "\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019j\236\007\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019j\236\000\019k\236\b\019h\236\223\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\019i\236\020\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019i\236\001\019i\236\000\019j\236\007\019h\236\222\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\240\018i\237\019\019i\236\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\001\020h\235\000\020i\235\004\019h\236\216\019h\236\255\019h\236\253\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\254\019h\236\255\019h\236\233\019h\236\014\019h\236\000\019h\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\000\019g\236\001\019h\236\000\019h\236\198\019h\236\255\019h\236\252\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\253\019h\236\255\019h\236\212\022m\233\002\021k\234\000\019i\236\001\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019h\236\000\019h\236\003\019h\236\000\019h\236\159\019h\236\255\019h\236\251\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\252\019h\236\255\019h\236\176\019h\236\000\019h\236\003\019g\236\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\019g\236\000\019h\236\004\019h\236\000\019h\236d\019h\236\255\019h\236\252\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\251\019h\236\255\019h\236s\019h\236\000\019h\236\004\017h\238\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\018f\237\000\019h\236\002\019h\236\000\019h\236 \019h\236\244\019h\236\255\019h\236\254\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h\236\255\019h"

  let d_fbc677acbb59d0713caa4d6e6039f6d9 = "# Normal npm stuff\nnpm-debug.log\n/node_modules/\n/.cache/\n/dist/\n/build/\n\n# Generated static assets\nstatic/main.js\nstatic/main.css\n"

  let d_ff0184c441b47c099c866758fb72e8a8 = "(library\n (name {{ project_snake }})\n (public_name {{ project_slug }})\n (libraries async_kernel incr_dom js_of_ocaml)\n (preprocess\n  (pps ppx_jane js_of_ocaml-ppx))\n (flags\n  (:standard -open Base)))\n\n(include_subdirs unqualified)\n"

  let file_chunks = function
    | "README.md" | "/README.md" -> Some [ d_df53c1bb1c1c3bc1c5f46a0aa939f199; ]
    | "spin" | "/spin" -> Some [ d_12d9e28f342afe47d787703349cc39c2; ]
    | "template/.gitattributes" | "/template/.gitattributes" -> Some [ d_9259c59c4360d349661ec1b827f8b459; ]
    | "template/.gitignore" | "/template/.gitignore" -> Some [ d_ac919bd35be2d11e351d365203d71de3; ]
    | "template/.ocamlformat" | "/template/.ocamlformat" -> Some [ d_ada646288dc3fdd569756a66b8430826; ]
    | "template/CHANGES.md" | "/template/CHANGES.md" -> Some [ d_132072893c4898750d2418b319b29683; ]
    | "template/CONTRIBUTING.md" | "/template/CONTRIBUTING.md" -> Some [ d_2ed2515ca03cb509874496d3990be200; ]
    | "template/LICENSE" | "/template/LICENSE" -> Some [ d_26624629ac302b31c7028b2f85d1437f; ]
    | "template/Makefile" | "/template/Makefile" -> Some [ d_b60ef67a1d5d91ff1ec047be6167b48f; ]
    | "template/README.md" | "/template/README.md" -> Some [ d_2953c63d6b7001b2333aa6d1f0fa49a7; ]
    | "template/asset/.gitignore" | "/template/asset/.gitignore" -> Some [ d_fbc677acbb59d0713caa4d6e6039f6d9; ]
    | "template/asset/dune" | "/template/asset/dune" -> Some [ d_16ee82abed3c0308a995af7fe8f8aec5; ]
    | "template/asset/package.json" | "/template/asset/package.json" -> Some [ d_e2e64317d44808ba27c958acd22362ad; ]
    | "template/asset/static/favicon.ico" | "/template/asset/static/favicon.ico" -> Some [ d_7b7d37b74ac4e69ce312aa77b5e6ee66; d_42fbb9ce3c61ec4fca33db3338e457d3; d_8eefe3a0a4163e673c80a0ea1ea1b728; d_4b07836e20a5e3e29cc7c82f4db2fe39; d_33fcddc15fc77f1455b42ef5dcbc42d8; d_f3e77221cd11b4fa7a54276cc80c2180; d_4bcae49e7687815b0d71ac41088d2bd5; d_a5911c9e2e2f3bab2501238bebbdaa80; d_ca7f0aabfd740be9696608b68ee6333f; d_4f530746e559df45e30369595788f919; d_c86dfd344792588122d003bd04a93bf6; d_eace912d8b7af6ba58dad0cbadb6657f; d_fb85140c35d440c8641b38ffccd2de20; d_870bbfd68ecd85df28ee971c23ea7a50; d_780d569e2f40ff4c904fdd695fd3ec25; d_620f0b67a91f7f74151bc5be745b7110; d_24f32b5af6d3d096754eeb11c51f7356; ]
    | "template/asset/static/index.html" | "/template/asset/static/index.html" -> Some [ d_54e9894651b10f0b2c82abc5399431eb; ]
    | "template/asset/static/main.css" | "/template/asset/static/main.css" -> Some [ d_d4793d6aed9c55204aac8e9a6605bc57; ]
    | "template/asset/static/manifest.json" | "/template/asset/static/manifest.json" -> Some [ d_458bbcda3bdfab601c4c60af9bc378cf; ]
    | "template/asset/static/robots.txt" | "/template/asset/static/robots.txt" -> Some [ d_759d34a49dddf92ff6b9e75648904325; ]
    | "template/asset/tailwind.config.js" | "/template/asset/tailwind.config.js" -> Some [ d_b7dd92d1afcf7a08a8c6d217e73db2b0; ]
    | "template/bin/dune" | "/template/bin/dune" -> Some [ d_34c93a60b9d696d0bbad4fa2fc60fcd8; ]
    | "template/bin/main.ml" | "/template/bin/main.ml" -> Some [ d_61a33b4684d0ddbbc5be366ccc3c9464; ]
    | "template/bin/main.mli" | "/template/bin/main.mli" -> Some [ d_d171486544dcbe78f38c1a38010b058d; ]
    | "template/dune-project" | "/template/dune-project" -> Some [ d_199926ab09583e9379d28dfbcb3f5e70; ]
    | "template/esy.json" | "/template/esy.json" -> Some [ d_83b8c3fe2a69cd901807bde6388a92e6; ]
    | "template/github/workflows/ci.yml" | "/template/github/workflows/ci.yml" -> Some [ d_26e30ba4efddcec175c53696337e9192; ]
    | "template/lib/app.ml" | "/template/lib/app.ml" -> Some [ d_090aed3b33b3458b37c3b9be3088d204; ]
    | "template/lib/components/greet.ml" | "/template/lib/components/greet.ml" -> Some [ d_007c596d694b72da2350c24abcc053f6; ]
    | "template/lib/dune" | "/template/lib/dune" -> Some [ d_ff0184c441b47c099c866758fb72e8a8; ]
    | "template/lib/pages/page_home.ml" | "/template/lib/pages/page_home.ml" -> Some [ d_b2b28d3fb0735c9fb13b222e33594327; ]
    | "template/lib/pages/page_not_found.ml" | "/template/lib/pages/page_not_found.ml" -> Some [ d_10521f9319bdbb5befd93d65cb23d18d; ]
    | "template/lib/route.ml" | "/template/lib/route.ml" -> Some [ d_7dac9287d26607df70f2976523248bfb; ]
    | "template/lib/route.mli" | "/template/lib/route.mli" -> Some [ d_875b95eaa65d235910eb523e0dea7578; ]
    | "template/lib/router.ml" | "/template/lib/router.ml" -> Some [ d_98d8046a1f282904b063eed1cd2c7531; ]
    | "template/test/dune" | "/template/test/dune" -> Some [ d_71cd6bd4609ece92a8949844a24765e7; ]
    | "template/test/page_home_test.ml" | "/template/test/page_home_test.ml" -> Some [ d_cce69634d80f599965738980c43ba1f6; d_ec1db8eec44d717f3291c4b6e5b7f75b; ]
    | "template/{{ project_slug }}.opam" | "/template/{{ project_slug }}.opam" -> Some [ d_05bc28281fccafa118c931f2512d488d; ]
    | _ -> None

  let file_list = [ "README.md"; "spin"; "template/.gitattributes"; "template/.gitignore"; "template/.ocamlformat"; "template/CHANGES.md"; "template/CONTRIBUTING.md"; "template/LICENSE"; "template/Makefile"; "template/README.md"; "template/asset/.gitignore"; "template/asset/dune"; "template/asset/package.json"; "template/asset/static/favicon.ico"; "template/asset/static/index.html"; "template/asset/static/main.css"; "template/asset/static/manifest.json"; "template/asset/static/robots.txt"; "template/asset/tailwind.config.js"; "template/bin/dune"; "template/bin/main.ml"; "template/bin/main.mli"; "template/dune-project"; "template/esy.json"; "template/github/workflows/ci.yml"; "template/lib/app.ml"; "template/lib/components/greet.ml"; "template/lib/dune"; "template/lib/pages/page_home.ml"; "template/lib/pages/page_not_found.ml"; "template/lib/route.ml"; "template/lib/route.mli"; "template/lib/router.ml"; "template/test/dune"; "template/test/page_home_test.ml"; "template/{{ project_slug }}.opam"; ]
end

let file_list = Internal.file_list

let read name =
  match Internal.file_chunks name with
  | None -> None
  | Some c -> Some (String.concat "" c)

let hash = function
  | "README.md" | "/README.md" -> Some "df53c1bb1c1c3bc1c5f46a0aa939f199"
  | "spin" | "/spin" -> Some "12d9e28f342afe47d787703349cc39c2"
  | "template/.gitattributes" | "/template/.gitattributes" -> Some "9259c59c4360d349661ec1b827f8b459"
  | "template/.gitignore" | "/template/.gitignore" -> Some "ac919bd35be2d11e351d365203d71de3"
  | "template/.ocamlformat" | "/template/.ocamlformat" -> Some "ada646288dc3fdd569756a66b8430826"
  | "template/CHANGES.md" | "/template/CHANGES.md" -> Some "132072893c4898750d2418b319b29683"
  | "template/CONTRIBUTING.md" | "/template/CONTRIBUTING.md" -> Some "2ed2515ca03cb509874496d3990be200"
  | "template/LICENSE" | "/template/LICENSE" -> Some "26624629ac302b31c7028b2f85d1437f"
  | "template/Makefile" | "/template/Makefile" -> Some "b60ef67a1d5d91ff1ec047be6167b48f"
  | "template/README.md" | "/template/README.md" -> Some "2953c63d6b7001b2333aa6d1f0fa49a7"
  | "template/asset/.gitignore" | "/template/asset/.gitignore" -> Some "fbc677acbb59d0713caa4d6e6039f6d9"
  | "template/asset/dune" | "/template/asset/dune" -> Some "16ee82abed3c0308a995af7fe8f8aec5"
  | "template/asset/package.json" | "/template/asset/package.json" -> Some "e2e64317d44808ba27c958acd22362ad"
  | "template/asset/static/favicon.ico" | "/template/asset/static/favicon.ico" -> Some "d2f2837cdfbe3814d11314ee39576d7b"
  | "template/asset/static/index.html" | "/template/asset/static/index.html" -> Some "54e9894651b10f0b2c82abc5399431eb"
  | "template/asset/static/main.css" | "/template/asset/static/main.css" -> Some "d4793d6aed9c55204aac8e9a6605bc57"
  | "template/asset/static/manifest.json" | "/template/asset/static/manifest.json" -> Some "458bbcda3bdfab601c4c60af9bc378cf"
  | "template/asset/static/robots.txt" | "/template/asset/static/robots.txt" -> Some "759d34a49dddf92ff6b9e75648904325"
  | "template/asset/tailwind.config.js" | "/template/asset/tailwind.config.js" -> Some "b7dd92d1afcf7a08a8c6d217e73db2b0"
  | "template/bin/dune" | "/template/bin/dune" -> Some "34c93a60b9d696d0bbad4fa2fc60fcd8"
  | "template/bin/main.ml" | "/template/bin/main.ml" -> Some "61a33b4684d0ddbbc5be366ccc3c9464"
  | "template/bin/main.mli" | "/template/bin/main.mli" -> Some "d171486544dcbe78f38c1a38010b058d"
  | "template/dune-project" | "/template/dune-project" -> Some "199926ab09583e9379d28dfbcb3f5e70"
  | "template/esy.json" | "/template/esy.json" -> Some "83b8c3fe2a69cd901807bde6388a92e6"
  | "template/github/workflows/ci.yml" | "/template/github/workflows/ci.yml" -> Some "26e30ba4efddcec175c53696337e9192"
  | "template/lib/app.ml" | "/template/lib/app.ml" -> Some "090aed3b33b3458b37c3b9be3088d204"
  | "template/lib/components/greet.ml" | "/template/lib/components/greet.ml" -> Some "007c596d694b72da2350c24abcc053f6"
  | "template/lib/dune" | "/template/lib/dune" -> Some "ff0184c441b47c099c866758fb72e8a8"
  | "template/lib/pages/page_home.ml" | "/template/lib/pages/page_home.ml" -> Some "b2b28d3fb0735c9fb13b222e33594327"
  | "template/lib/pages/page_not_found.ml" | "/template/lib/pages/page_not_found.ml" -> Some "10521f9319bdbb5befd93d65cb23d18d"
  | "template/lib/route.ml" | "/template/lib/route.ml" -> Some "7dac9287d26607df70f2976523248bfb"
  | "template/lib/route.mli" | "/template/lib/route.mli" -> Some "875b95eaa65d235910eb523e0dea7578"
  | "template/lib/router.ml" | "/template/lib/router.ml" -> Some "98d8046a1f282904b063eed1cd2c7531"
  | "template/test/dune" | "/template/test/dune" -> Some "71cd6bd4609ece92a8949844a24765e7"
  | "template/test/page_home_test.ml" | "/template/test/page_home_test.ml" -> Some "67e1ae61ee5d5aaa39c8512cdd2da42d"
  | "template/{{ project_slug }}.opam" | "/template/{{ project_slug }}.opam" -> Some "05bc28281fccafa118c931f2512d488d"
  | _ -> None

let size = function
  | "README.md" | "/README.md" -> Some 273
  | "spin" | "/spin" -> Some 3041
  | "template/.gitattributes" | "/template/.gitattributes" -> Some 760
  | "template/.gitignore" | "/template/.gitignore" -> Some 193
  | "template/.ocamlformat" | "/template/.ocamlformat" -> Some 472
  | "template/CHANGES.md" | "/template/CHANGES.md" -> Some 50
  | "template/CONTRIBUTING.md" | "/template/CONTRIBUTING.md" -> Some 3711
  | "template/LICENSE" | "/template/LICENSE" -> Some 1070
  | "template/Makefile" | "/template/Makefile" -> Some 2227
  | "template/README.md" | "/template/README.md" -> Some 384
  | "template/asset/.gitignore" | "/template/asset/.gitignore" -> Some 130
  | "template/asset/dune" | "/template/asset/dune" -> Some 490
  | "template/asset/package.json" | "/template/asset/package.json" -> Some 364
  | "template/asset/static/favicon.ico" | "/template/asset/static/favicon.ico" -> Some 67646
  | "template/asset/static/index.html" | "/template/asset/static/index.html" -> Some 1120
  | "template/asset/static/main.css" | "/template/asset/static/main.css" -> Some 1135
  | "template/asset/static/manifest.json" | "/template/asset/static/manifest.json" -> Some 309
  | "template/asset/static/robots.txt" | "/template/asset/static/robots.txt" -> Some 56
  | "template/asset/tailwind.config.js" | "/template/asset/tailwind.config.js" -> Some 322
  | "template/bin/dune" | "/template/bin/dune" -> Some 87
  | "template/bin/main.ml" | "/template/bin/main.ml" -> Some 195
  | "template/bin/main.mli" | "/template/bin/main.mli" -> Some 45
  | "template/dune-project" | "/template/dune-project" -> Some 616
  | "template/esy.json" | "/template/esy.json" -> Some 1731
  | "template/github/workflows/ci.yml" | "/template/github/workflows/ci.yml" -> Some 2906
  | "template/lib/app.ml" | "/template/lib/app.ml" -> Some 2149
  | "template/lib/components/greet.ml" | "/template/lib/components/greet.ml" -> Some 4058
  | "template/lib/dune" | "/template/lib/dune" -> Some 231
  | "template/lib/pages/page_home.ml" | "/template/lib/pages/page_home.ml" -> Some 1251
  | "template/lib/pages/page_not_found.ml" | "/template/lib/pages/page_not_found.ml" -> Some 576
  | "template/lib/route.ml" | "/template/lib/route.ml" -> Some 105
  | "template/lib/route.mli" | "/template/lib/route.mli" -> Some 83
  | "template/lib/router.ml" | "/template/lib/router.ml" -> Some 3421
  | "template/test/dune" | "/template/test/dune" -> Some 155
  | "template/test/page_home_test.ml" | "/template/test/page_home_test.ml" -> Some 5092
  | "template/{{ project_slug }}.opam" | "/template/{{ project_slug }}.opam" -> Some 1126
  | _ -> None
OCaml

Innovation. Community. Security.