Source file share.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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
module Internal = struct
let d_008d98ed0045f4549c6da22cf704ac97 = "!{header-ml}\n\nlet () = !{project-name:alpha:cap}.Main.main ()\n"
let d_02889faef9f674a5df45ec5b6d728f87 = "[skeleton]\nname = \"js_lib\"\ninherits = \"virtual\"\n"
let d_03a8a76fb0527fba3c7169a8c8500faa = "; generated by drom from package skeleton 'driver'\n(library\n (name main)\n (public_name !{name})\n (kind ppx_deriver)\n (libraries !{dune-libraries} !(package-dune-libraries))\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n\n"
let d_067d4caa027d43cab2fe939077286f7e = "tions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties with this License.\n\n11. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Library at all. For example, if a patent license would not permit royalty-free redistribution of the Library by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Library.\n\nIf any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances.\n\nIt is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.\n\nThis section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.\n\n12. If the distribution and/or use of the Library is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Library under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License.\n\n13. The Free Software Foundation may publish revised and/or new versions of the Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.\n\nEach version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and \"any later version\", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation.\n\n14. If you wish to incorporate parts of the Library into other free programs whose distribution conditions are incompatible with these, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally.\n\nNO WARRANTY\n\n15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD TH"
let d_077a72a34156d87e40254dba6660b3de = "; generated by drom from package skeleton 'js_program'\n\n(executable\n (name main)\n (libraries !{dune-libraries} !(package-dune-libraries))\n (modes js)\n (preprocess (pps js_of_ocaml-ppx)) \n !{dune-stanzas}\n )\n\n(install\n (files (main.bc.js as www/js/!{name}.js))\n (section share)\n (package !{name}))\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n\n"
let d_092690ce81dafbdcde0466d2417a1234 = "module Apply (F : Cstubs.FOREIGN) = struct\n open Ctypes\n open F\n open Gsl_types\n\n module Gsl_cheb = struct\n let alloc =\n foreign \"gsl_cheb_alloc\" (size_t @-> returning (ptr Gsl_cheb_series.t))\n\n let free = foreign \"gsl_cheb_free\" (ptr Gsl_cheb_series.t @-> returning void)\n\n let init =\n foreign \"gsl_cheb_init\"\n ( ptr Gsl_cheb_series.t @-> ptr Gsl_function.t @-> double @-> double\n @-> returning int )\n\n let order =\n foreign \"gsl_cheb_order\" (ptr Gsl_cheb_series.t @-> returning size_t)\n\n let size =\n foreign \"gsl_cheb_size\" (ptr Gsl_cheb_series.t @-> returning size_t)\n\n let coeffs =\n foreign \"gsl_cheb_coeffs\"\n (ptr Gsl_cheb_series.t @-> returning (ptr double))\n\n let eval =\n foreign \"gsl_cheb_eval\"\n (ptr Gsl_cheb_series.t @-> double @-> returning double)\n\n let eval_n =\n foreign \"gsl_cheb_eval_n\"\n (ptr Gsl_cheb_series.t @-> size_t @-> double @-> returning double)\n end\nend\n"
let d_09ddaed920fa39313905634cb86bdaeb = "#!/bin/sh\n\n# Read more on this file in before.sh\n\nCOMMAND=$1\nshift\nSCRIPT=./scripts/after-${COMMAND}.sh\n\nif [ -f ${SCRIPT} ]; then\n exec ${SCRIPT} $*\nfi\n"
let d_09ea530dd8784bec50de9997ba2c8853 = "# Everything above is inherited from 'virtual' package skeleton\n\nskeleton := \"menhir_lib\"\nkind := \"library\"\ngenerators = [\"ocamllex\", \"menhir\"]\n\n[dependencies]\nmenhirLib = \">2019\"\n\n[tools]\nmenhir = \">2019\"\n"
let d_0af30ef989a8b082612e99f6230f8892 = "!{header-ml}\n\nmodule C = Configurator.V1\n\nlet () =\n C.main ~name:\"gsl\" (fun c ->\n let default : C.Pkg_config.package_conf =\n { libs = [ \"-lgsl\"; \"-lgslcblas\"; \"-lm\" ]; cflags = [] }\n in\n let conf =\n match C.Pkg_config.get c with\n | None -> default\n | Some pc ->\n match C.Pkg_config.query pc ~package:\"gsl\" with\n | None -> default\n | Some deps -> deps\n in\n C.Flags.write_sexp \"ccopt.sexp\" conf.cflags;\n C.Flags.write_sexp \"cclib.sexp\" conf.libs)\n"
let d_0b317039617d56e132a56ff0a9c96c08 = "# Everything above is inherited from 'virtual' package skeleton\n\nkind := \"program\"\nskeleton := \"js_program\"\n\n[dependencies]\njs_of_ocaml = \"3.0\"\n\n[tools]\njs_of_ocaml-ppx = \"3.0\"\n"
let d_0c259933bb778c33d3438fffa4f23079 = "; generated by drom from package skeleton 'js_library'\n\n(library\n (name !{library-name})\n (public_name !{name})\n (wrapped !{pack-modules})\n (libraries !{dune-libraries} !(package-dune-libraries))\n (preprocess (pps js_of_ocaml-ppx))\n (modes byte)\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n"
let d_0cf52103c366f56eea830f1fa2b81444 = "<h1>Sphinx doc for !{name}</h1>\n<p>You need to run the following commands in the project to generate this doc:\n<pre>\nmake sphinx\n</pre>\nor\n<pre>\ndrom sphinx\n</pre>\nand then:\n<pre>\ngit add docs/sphinx\n</pre>\n</p>\n"
let d_0d72c63ed47cf72799dd13a51d9590cc = "d Program. The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work. This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force. You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright. Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n Conveying under any other circumstances is permitted solely under\nthe conditions stated below. Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n 3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n 4. Conveying Verbatim Copies.\n\n You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n 5. Conveying Modified Source Versions.\n\n You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n a) The work must carry prominent notices stating that you modified\n it, and giving a relevant date.\n\n b) The work must carry prominent notices stating that it is\n released under this License and any conditions added under section\n 7. This requirement modifies the requirement in section 4 to\n \"keep intact all notices\".\n\n c) You must license the entire work, as a whole, under this\n License to anyone who comes into possession of a copy. This\n License will therefore apply, along with any applicable section 7\n additional terms, to the whole of the work, and all its parts,\n regardless of how they are packaged. This License gives no\n permission to license the work in any other way, but it does not\n invalidate such permission if you have separately received it.\n\n d) If the work has interactive user interfaces, each must display\n Appropriate Legal Notices; however, if the Program has interactive\n interfaces that do not display Appropriate Legal Notices, your\n work need not make them do so.\n\n A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if"
let d_0e1dfe5ab2b7dd3417ce3a03823ed6cd = "# Everything above is inherited from 'virtual' package skeleton\n\nskeleton := \"ctypes_lib_foreign\"\nkind := \"library\"\n\npack-modules = false\n\n[dependencies]\nctypes = \"\"\nctypes-foreign = { libname = \"ctypes.foreign\" }\n\n[tools]\ndune-configurator = \"\"\nconf-gsl = \"\"\n"
let d_17799aeb2a3684b565725290ec32e65b = "To build the documentation:\n~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n* Run `make doc` or `drom doc`\n* Then, check the documentation in _drom/docs/\n\nxdg-open file:///$(pwd)/_drom/docs/index.html\n\n"
let d_19cfbc621370630ff410cba006e368f7 = "# This package skeleton is inherited by most other package skeletons\n\nname = \"!{name}\"\ndir = \"!{dir}\"\nskeleton = \"virtual\"\nkind = \"virtual\"\ngen-version = \"version.ml\"\n"
let d_1a393408f2fac647f911a4133cb08232 = "vendor/**\n!{ocamlformat-ignore-share}\n\n"
let d_1cf19ff03d92da1f89a6f483db9d34d3 = "# Generated by \"drom project\"\n.PHONY: all build build-deps fmt fmt-check install dev-deps test\n.PHONY: clean distclean\n\nDEV_DEPS := merlin ocamlformat odoc![if:gen:test] ppx_expect ppx_inline_test![fi]\n\n![if:gen:docs]![if:gen:sphinx]\nSPHINX_TARGET:=_drom/docs/!{sphinx-target}\n![fi]\nODOC_TARGET:=_drom/docs/!{odoc-target}/.\n![fi]\n\n# Use these non-generated files to include more rules here (and\n# Makefile.trailer at the end)\n-include Makefile.header\n-include Makefile.config\n\nall: build\n\nbuild:\n\t./scripts/before.sh build\n\topam exec -- dune build!{build-profile} @install\n\t./scripts/copy-bin.sh !{packages}\n\t./scripts/after.sh build\n\nbuild-deps:\n\tif ! [ -e _opam ]; then \\\n\t opam switch create . !{edition} ; \\\n\tfi\n\topam install ./*.opam --deps-only\n\n![if:gen:docs]\n.PHONY: doc-common odoc view![if:gen:sphinx] sphinx![fi]\ndoc-common: build\n\tmkdir -p _drom/docs\n\trsync -auv docs/. _drom/docs/.\n![if:gen:sphinx]\nsphinx: doc-common\n\t./scripts/before.sh sphinx ${SPHINX_TARGET}\n\tsphinx-build sphinx ${SPHINX_TARGET}\n\t./scripts/after.sh sphinx ${SPHINX_TARGET}\n![fi]\nodoc: doc-common\n\tmkdir -p ${ODOC_TARGET}\n\t./scripts/before.sh odoc ${ODOC_TARGET}\n\topam exec -- dune build @doc\n\trsync -auv --delete _build/default/_doc/_html/. ${ODOC_TARGET}\n\t./scripts/after.sh odoc ${ODOC_TARGET}\n\ndoc: doc-common odoc![if:gen:sphinx] sphinx![fi]\n\nview:\n\txdg-open file://$$(pwd)/_drom/docs/index.html\n![fi]\nfmt:\n\topam exec -- dune build @fmt --auto-promote\n\nfmt-check:\n\topam exec -- dune build @fmt\n\ninstall:\n\topam pin -y --no-action -k path .\n\topam install -y .\n\nopam:\n\topam pin -k path .\n\nuninstall:\n\topam uninstall .\n\ndev-deps:\n\topam install ./*.opam --deps-only --with-doc --with-test\n\ntest:\n\t./scripts/before.sh test\n\topam exec -- dune build @runtest\n\t./scripts/after.sh test\n\nclean:\n\trm -rf _build\n\t./scripts/after.sh clean\n\ndistclean: clean\n\trm -rf _opam _drom\n\t./scripts/after.sh distclean\n\n-include Makefile.trailer\n!(makefile-trailer)\n"
let d_1d91a76a1c4054b1b81e31827bed2625 = "[skeleton]\nname = \"ctypes_lib_foreign\"\ninherits = \"virtual\"\n\n[file]\n\"dune_\" = { file = \"dune\", skips = [ \"@dune\" ] }\n\"index.mld\" = { skips = [ \"@docs\" ] }\n\"lib.ml\" = { file = \"!{name}.ml\", skips = [ \"@code\" ] }\n\"discover/dune_\" = { file = \"discover/dune\", skips = [ \"@dune\" ] }\n\"discover/discover.ml\" = { skips = [ \"@code\" ] }\n"
let d_1e0c9ac981542efc8aa70bb5fcb19b03 = "; generated by drom from package skeleton 'driver'\n(executable\n (name main)\n (public_name !{program-name})\n (package !{name})\n (libraries !{dune-libraries} !(package-dune-libraries))\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n\n"
let d_1eb62145308aed80e0f86b959d6f7fd0 = "body {\n color: #444;\n background-color: #EEEEEE;\n line-height:1.6;\n font-size:18px;\n}\n.content {\n width: 80%;\n margin-left: 100px;\n margin-top: 100px;\n font-family: sans-serif;\n}\na:link{\n color:#5bf\n}\na:visited{\n color:#55f\n}\n\n\n"
let d_1fd011afa1a0fb1452daf307e865706e = "[skeleton]\nname = \"ctypes_stubs\"\ninherits = \"virtual\"\n"
let d_235ce7a0906934d666bbb19d9483de19 = "//Provides: walloc_u8\nfunction walloc_u8(w, o) {\n var p = w._malloc(o.data.length * o.data.BYTES_PER_ELEMENT);\n w.HEAPU8.set(o.data, p);\n return p;\n}\n\n//Provides: wextract_u8\nfunction wextract_u8(w, o, p) {\n var d = new joo_global_object.Uint8Array(w.HEAPU8.buffer, p, o.data.length);\n for (var i = 0; i < o.data.length; i++) { o.data[i] = d[i]; };\n w._free(p);\n return 0;\n}\n\n//Provides: walloc_u32\nfunction walloc_u32(w, o) {\n var d = new joo_global_object.Uint32Array(o.data.buffer);\n var p = w._malloc(d.length * d.BYTES_PER_ELEMENT);\n w.HEAPU32.set(d, p >> 2);\n return p;\n}\n\n//Provides: wextract_u32\nfunction wextract_u32(w, o, p) {\n o.data = new joo_global_object.Uint8Array(w.HEAPU32.buffer, p, o.data.length);\n w._free(p);\n return 0;\n}\n\n//Provides: wfree\nfunction wfree(w, p) {\n w._free(p);\n return 0;\n}\n\n//Provides: wu32\n//Requires: caml_failwith\nfunction wu32(i32) {\n var u32 = i32 >>> 0;\n if (i32 != u32) caml_failwith(\"length is not a uint32\");\n return u32;\n}\n\n//Provides: wu64\n//Requires: caml_failwith\nfunction wu64(i32) {\n var u64 = joo_global_object.BigInt(i32 >>> 0);\n if (i32 != u64) caml_failwith(\"length is not a uint64\");\n return u64;\n}\n"
let d_250b377dfc07ff08faf007b5ab0fe904 = "!{header-ml}\n\nmodule Gsl = !(lib-name:alpha:cap)\n\nlet () =\n let order = 10 in\n let f x = if x < 0.5 then 0. else 1. in\n let cs = Gsl.Functions.Gsl_cheb.make ~a:0. ~b:1. f order in\n let x = 0.3 in\n let y = Gsl.Functions.Gsl_cheb.eval cs x in\n Printf.printf\n \"Evaluation of Chebishev series at order %d for x = %.1f -> %.4f\\n\"\n order x y\n"
let d_25b1865d6e997b02089f48d883e3a6de = "[skeleton]\nname = \"ppx_deriver\"\ninherits = \"library\"\n"
let d_2709ad7b7de31da05ca80c0206135a92 = "[skeleton]\nname = \"ppx_rewriter\"\ninherits = \"library\"\n"
let d_2c94d9ad68932bb7cdb40dacf6d4c032 = "; if you modify this file, add 'test' to the 'skip' field in drom.toml\n\n; a first example where we would test the behavior of one of the executables\n; that we generate else-where\n\n(rule\n (deps test1.expected)\n (action\n (with-stdout-to\n test1.output\n (run cat test1.expected))))\n\n(rule\n (alias runtest)\n (action\n (diff test1.expected test1.output)))\n\n; a second example where we generate a file and test its output\n\n(executable\n (name test2)\n (libraries !{libraries}) ; add your own library here\n )\n\n(alias\n (name buildtest)\n (deps test2.exe))\n\n(rule\n (with-stdout-to\n test2.output\n (run %{exe:test2.exe})))\n\n(rule\n (alias runtest)\n (action\n (diff test2.expected test2.output)))\n"
let d_2cc167aaee42e067caf6bd988fb5819e = "[skeleton]\nname = \"js_prg\"\ninherits = \"program\"\n\n[file]\n\"share/js_prg/www/index.html\" = { file = \"share/!{name}/www/index.html\" }\n"
let d_2d4277bc95487c21d0b2e163aa9d4901 = "is License, they do not\nexcuse you from the conditions of this License. If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all. For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n 13. Use with the GNU Affero General Public License.\n\n Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work. The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n 14. Revised Versions of this License.\n\n The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time. Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n Each version is given a distinguishing version number. If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation. If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n Later license versions may give you additional or different\npermissions. However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n 15. Disclaimer of Warranty.\n\n THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n 16. Limitation of Liability.\n\n IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n 17. Interpretation of Sections 15 and 16.\n\n If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n END OF TERMS AND CONDITIONS\n\n How to Apply These Terms to Your New "
let d_30c53988da37e45bfdfc951cb2cce112 = "![skip:license]Copyright (c) !{years} !{copyright}\n\n!{license}\n"
let d_31093901fd9b1800ce1bc46d8de764b5 = "; generated by drom from package skeleton 'library'\n\n(library\n (name !{library-name})\n (public_name !{name})\n (wrapped !{pack-modules})\n (libraries !{dune-libraries} !(package-dune-libraries))\n (foreign_stubs\n (language c)\n (names !(c-names))\n !(c-flags))\n (c_library_flags !(c-library-flags))\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n"
let d_3139e10846d9a2d62acde6bdd072a5ac = "; generated by drom from package skeleton 'rust_binding_lib'\n\n(rule\n (targets lib!{library-name}.a dll!{library-name}.so)\n (deps (glob_files *.rs))\n (action\n (progn\n (run cargo build --target-dir %{project_root}/../../_build/target --release)\n (run sh -c\n \"mv %{project_root}/../../_build/target/release/lib!{library-name}.so ./dll!{library-name}.so 2> /dev/null || \\\n mv %{project_root}/../../_build/target/release/lib!{library-name}.dylib ./dll!{library-name}.so\")\n (run mv %{project_root}/../../_build/target/release/lib!{library-name}.a lib!{library-name}.a))))\n\n(library\n (name !{library-name})\n (public_name !{name})\n (wrapped !{pack-modules})\n (libraries !{dune-libraries} !(package-dune-libraries))\n (foreign_archives !{library-name})\n (c_library_flags\n (-lpthread -lc -lm !(package-c-libraries)))\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n"
let d_331c7b10b7216bba7ac47fb51462cd9d = "name: Main Workflow\n\non:\n pull_request:\n branches:\n - master\n push:\n branches:\n - master\n\njobs:\n build:\n strategy:\n fail-fast: false\n matrix:\n os:\n - !{ci-systems}\n ocaml-compiler:\n - !{edition}\n skip_test:\n - false\n![if:min-edition]\n include:\n - os: !{ci-first-system}\n ocaml-compiler: !{min-edition}\n skip_test: true\n![fi]\n\n runs-on: ${{ matrix.os }}\n!(github-worlflow-env)\n steps:\n - name: Checkout code\n uses: actions/checkout@v2\n\n - name: Retrieve opam cache\n uses: actions/cache@v2\n id: cache-opam\n with:\n path: ~/.opam\n key: v2-${{ runner.os }}-!{name}-${{ matrix.ocaml-compiler }}-${{ hashFiles('opam/*.opam') }}\n# restore-keys: |\n# v2-${{ runner.os }}-opam-${{ matrix.ocaml-compiler }}-\n\n - name: Use OCaml ${{ matrix.ocaml-compiler }}\n uses: avsm/setup-ocaml@v2\n with:\n ocaml-compiler: ${{ matrix.ocaml-compiler }}\n opam-pin: false\n opam-depext: false\n\n - name: Set git user\n run: |\n git config --global user.name github-actions\n git config --global user.email github-actions-bot@users.noreply.github.com\n![if:field:opam-repo]\n - run: |\n opam repo add extra !(opam-repo)\n sudo apt-get update\n\n![else]\n # define opam-repo = \"git+https://\" to add an extra opam repo\n![fi]\n - run: opam pin add . -y --no-action\n\n - run: opam depext -y !{packages}\n# if: steps.cache-opam.outputs.cache-hit != 'true'\n\n - run: opam install -y opam/*.opam --deps-only --with-test\n# if: steps.cache-opam.outputs.cache-hit != 'true'\n\n# - run: opam upgrade --fixup\n# if: steps.cache-opam.outputs.cache-hit == 'true'\n\n - run: dos2unix scripts/*.sh\n if: matrix.os == 'windows-latest'\n!(github-workflow-before-build)\n - run: make build\n!(github-workflow-after-build)\n - name: run test suite\n run: |\n ./scripts/before.sh test\n opam exec -- dune build @runtest\n ./scripts/after.sh test\n if: matrix.skip_test != 'true'\n\n - name: test source is well formatted\n run: make fmt\n continue-on-error: true\n if: matrix.ocaml-compiler == '!{edition}' && matrix.os == '!{ci-first-system}'\n\n - name: build-doc\n if: github.ref == 'refs/heads/master' && matrix.ocaml-compiler == '!{edition}' && matrix.os == '!{ci-first-system}'\n run: |\n sudo apt install -yqq python3-sphinx python3-sphinx-rtd-theme\n opam install -y dune odoc\n make doc\n touch _drom/docs/.nojekyll\n touch _drom/docs/!{sphinx-target}/.nojekyll\n touch _drom/docs/!{odoc-target}/.nojekyll\n\n - name: deploy-doc\n uses: JamesIves/github-pages-deploy-action@3.6.2\n if: github.ref == 'refs/heads/master' && matrix.ocaml-compiler == '!{edition}' && matrix.os == '!{ci-first-system}'\n with:\n GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n BRANCH: gh-pages\n FOLDER: _drom/docs/\n CLEAN: true\n"
let d_33521fad75f50c5ef7550708d809f168 = "# Everything above is inherited from 'virtual' package skeleton\n\nkind := \"library\"\nskeleton := \"js_library\"\n\n[dependencies]\njs_of_ocaml = \"3.0\"\n\n[tools]\njs_of_ocaml-ppx = \"3.0\"\n"
let d_37f7addf2635acd5c7bd36b2f5466ab5 = "# Everything above is inherited from 'virtual' package skeleton\n\nskeleton := \"program\"\nkind := \"program\"\n\n"
let d_38c778bd8b4aeda957ee9424c997c849 = "[skeleton]\nname = \"library\"\ninherits = \"virtual\"\n"
let d_39d07c60ead044e539b4d8ea1766f0bc = "[skeleton]\nname = \"menhir_lib\"\ninherits = \"virtual\"\n\n[file]\n\"package.toml\" = { create = true }\ndune_ = { file = \"dune\", skips = \"@dune\" }\n\"index.mld\" = { skips = [ \"@docs\" ] }\n\"main.ml\" = { skips = [ \"@code\" ], create = true }\n\"lexer.mll\" = { skips = [ \"@code\" ], create = true }\n\"parser.mly\" = { skips = [ \"@code\" ], create = true }\n\"printer.ml\" = { skips = [ \"@code\" ], create = true }\n\"types.ml\" = { skips = [ \"@code\" ], create = true }\n"
let d_3be95b646bb48617a08f7df0cea3fd55 = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"wasm_binding\"\n\n[dependencies]\nbigstring = \"0.3\"\n\n[[package]]\nskeleton = \"wasm_binding\"\ndir = \"src/!{name}\"\nname = \"!{name}\"\n"
let d_3e5c31c4a049d92792c10cd897037de4 = "# Everything above is inherited from 'virtual' package skeleton\n\nskeleton := \"rust_binding\"\nkind := \"library\"\n"
let d_3e5f241618485824a3a14ebb519b90ab = "let () =\n Ctypes_stubgen.make_types_stubs\n [ \"stddef.h\"; \"gsl/gsl_math.h\"; \"gsl/gsl_chebyshev.h\" ]\n (module Gsl_types_functor.Apply)\n"
let d_40eb4d3e58c30f4460ee367d2a94613d = "; generated by drom from package skeleton '!{skeleton}'\n\n(executable\n (name main)\n (public_name !{name})\n (package !{name})\n (libraries !{dune-libraries} !(package-dune-libraries))\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n"
let d_42506933290bc6fcc594ed53465da250 = "!{header-ml}\n\nopen Js_of_ocaml\n\nlet main () =\n Dom_html.window##alert (Js.string \"hello, world\")\n"
let d_430d9c126b9a6ff54f978dc13ed9ed3c = "[license]\n\nkey = \"BSD3\"\nname = \"BSD-3-Clause\"\nheader = \"\"\"\nThis source code is licensed under the BSD3 style license found in the\nLICENSE.md file in the root directory of this source tree.\n\"\"\"\ncontents = \"\"\"\nAll rights reserved.\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of Jeremie Dimino nor the names of his\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n\nTHIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY\nEXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE AUTHOR AND CONTRIBUTORS BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\nLOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\nON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\nSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\"\"\"\n"
let d_43c971bb85dcb6b52587872964bab005 = "[skeleton]\nname = \"menhir\"\ninherits = \"virtual\"\n"
let d_45a896d4a15cd700ba30050cf1f0aa88 = "#!/usr/bin/env python3\n# -*- coding: utf-8 -*-\n#\n# !{name} documentation build configuration file, created by\n# sphinx-quickstart.\n#\n# This file is execfile()d with the current directory set to its\n# containing dir.\n#\n# Note that not all possible configuration values are present in this\n# autogenerated file.\n#\n# All configuration values have a default; values that are commented out\n# serve to show the default.\n\n# If extensions (or modules to document with autodoc) are in another directory,\n# add these directories to sys.path here. If the directory is relative to the\n# documentation root, use os.path.abspath to make it absolute, like shown here.\n#\n# sys.path.insert(0, os.path.abspath('.'))\n\nimport os\nimport sys\nimport datetime\nimport subprocess\nfrom os import environ\nsys.path.insert(0, os.path.abspath('.') + '/_extensions')\n\n# -- General configuration ------------------------------------------------\n\n# If your documentation needs a minimal Sphinx version, state it here.\n#\n# needs_sphinx = '1.0'\n\n# Add any Sphinx extension module names here, as strings. They can be\n# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom\n# ones.\n#extensions = ['sphinx.ext.extlinks']\n\n# Add any paths that contain templates here, relative to this directory.\ntemplates_path = ['_templates']\n\n# The suffix(es) of source filenames.\n# You can specify multiple suffix as a list of string:\n#\nsource_suffix = ['.rst', '.md']\n# source_suffix = '.rst'\n\n# The master toctree document.\nmaster_doc = 'index'\n\n# General information about the project.\nproject = '!{name}'\ncopyright = '!{sphinx-copyright}'\nauthor = '!{authors-ampersand}'\n\n# The version info for the project you're documenting, acts as replacement for\n# |version| and |release|, also used in various other places throughout the\n# built documents.\n#\n# The short X.Y version.\n\ngit = subprocess.check_output(\"git describe --always\", shell=True).decode(\"utf-8\")\nbranch= subprocess.check_output(\"git rev-parse --abbrev-ref HEAD\", shell=True).decode(\"utf-8\")\nversion = branch + \" (\" + git + \")\"\n# version = os.environ.get('CI_COMMIT_REF_NAME', 'v1.0')\n# The full version, including alpha/beta/rc tags.\nrelease = version + datetime.datetime.now().strftime(\" (%Y/%m/%d %H:%M)\")\n# The language for content autogenerated by Sphinx. Refer to documentation\n# for a list of supported languages.\n#\n# This is also used if you do content translation via gettext catalogs.\n# Usually you set \"language\" from the command line for these cases.\nlanguage = None\n\n# List of patterns, relative to source directory, that match files and\n# directories to ignore when looking for source files.\n# This patterns also effect to html_static_path and html_extra_path\nexclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'doc_gen']\n\n# The name of the Pygments (syntax highlighting) style to use.\npygments_style = 'lovelace'\n\n# Deactivate syntax highlighting\n# - http://www.sphinx-doc.org/en/stable/markup/code.html#code-examples\n# - http://www.sphinx-doc.org/en/stable/config.html#confval-highlight_language\nhighlight_language = 'ocaml'\n# TODO write a Pygments lexer for Michelson\n# cf. http://pygments.org/docs/lexerdevelopment/ and http://pygments.org/docs/lexers/\n\n\n# If true, `todo` and `todoList` produce output, else they produce nothing.\ntodo_include_todos = False\n\n\n# -- Options for HTML output ----------------------------------------------\n\n# The theme to use for HTML and HTML Help pages. See the documentation for\n# a list of builtin themes.\n#\nhtml_theme = \"sphinx_rtd_theme\"\n\n# Theme options are theme-specific and customize the look and feel of a theme\n# further. For a list of options available for each theme, see the\n# documentation.\n#\nhtml_theme_options = {'logo_only': True}\n# html_logo = \"logo.svg\"\n# Add any paths that contain custom static files (such as style sheets) here,\n# relative to this directory. They are copied after the builtin static files,\n# so a file named \"default.css\" will overwrite the builtin \"default.css\".\nhtml_static_path = ['_static']\n\n# Custom sidebar templates, must be a dictionary that maps document names\n# to "
let d_46a196fb5d89fd25f9a01fbd4e6c550c = "[license]\n\nkey = \"ISC\"\nname = \"ISC\"\nheader = \"\"\"\nPermission to use, copy, modify, and distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\"\"\"\ncontents = \"\"\"\nPermission to use, copy, modify, and distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\"\"\"\n"
let d_46c51d88f42d8578e90a9880b2ed9932 = "; generated by drom from package skeleton 'library'\n\n(library\n (name !{library-name})\n (public_name !{name})\n (wrapped !{pack-modules})\n (libraries !{dune-libraries} !(package-dune-libraries))\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n"
let d_46d17a172aa99735ed7765ed770e6eed = "tion is included without limitation in the term \"modification\".)\n\n\"Source code\" for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library.\n\nActivities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does.\n\n1. You may copy and distribute verbatim copies of the Library's complete source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and distribute a copy of this License along with the Library.\n\nYou may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.\n\n2. You may modify your copy or copies of the Library or any portion of it, thus forming a work based on the Library, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:\n\n a) The modified work must itself be a software library.\n b) You must cause the files modified to carry prominent notices stating that you changed the files and the date of any change.\n c) You must cause the whole of the work to be licensed at no charge to all third parties under the terms of this License.\n d) If a facility in the modified Library refers to a function or a table of data to be supplied by an application program that uses the facility, other than as an argument passed when the facility is invoked, then you must make a good faith effort to ensure that, in the event an application does not supply such function or table, the facility still operates, and performs whatever part of its purpose remains meaningful.\n\n (For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.)\n\nThese requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.\n\nThus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library.\n\nIn addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.\n\n3. You may opt to apply the terms of the ordinary GNU General Public License instead of this License to a given copy of the Library. To do this, you must alter all the notices that refer to this License, so that they refer to the ordinary GNU General "
let d_4a10ad44aad7eee394d2ec95112a1ddb = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"ppx_rewriter\"\n\n[[package]]\nskeleton = \"ppx_rewriter\"\ndir = \"src/!{name}\"\nname = \"!{name}\"\n\n[package.fields]\ndune-stanzas = \"\"\"\n ; add here in package.toml any runtime library of your ppx,\n ; also add it to the [tools] section\n (ppx_runtime_libraries )\n\"\"\"\n"
let d_4b89600c30a24efa809ef6dc2c9055de = "[skeleton]\nname = \"js_driver\"\ninherits = \"virtual\"\n\n[file]\ndune_ = { file = \"dune\", skips = [ \"@dune\" ] }\n\"main.ml\" = { skips = [ \"@code\" ] }\n"
let d_4c3ddc5d1f15374a6ae8f8359f43a19a = "\136\145y\017#\000\"\133 \1379\130\1645q\n\146\006\134\225\129\155\179\029#\029\185L=Fr\153`?6/\142N\201\133\209\138XD\140\000\136\028\130$\230\b\146\214\1961Hfb\024\030\184\03012/b\004@$\017$1G\144\180&\238A2S\028\134\2255F\244\145.\230M\224\151\129\231\251\228\221\147\199\197\022=\236puW>\2461\2268r&\159\207l\217>P*\t\000D\012A\018s\004Ik\146\020$31\012\1434\242#F\238\188\165 A#F\000\164\rA\018s\004Ik\146\026$3i\152D}\222D\227D\183\017\190\219\196\t\243&X,=\232\240\207\254u\159\156\251\222kb\203\138\142\156\172\233\014>Ftx]\127gm1\247#^no\207\236\"F\000D\025A\018s\004Ik\254\246\191\255\194\\\204X}F;\178\2262\012\223\1527a\024\030\011\1611\242\199\191\253\176\\>\251\142\216\178\178\179MVu\230%h~\196H\223\224\2406\001\128\136#Hb\142 i\205\255\241\253\159\152\021\146J\253\209\140\238|F\242\001o\231\025\022\141\147\203&L\222\159\1681\012\143\216\026y\239\188|w\247\163\177\143\145\154\235\201\217R\185~\195\192\162\131O\158\030\222%\000\016\003\004I\204\017$\173\209 \249\217\229\137k\255\186+\159\173\199\201\178BV\178\153t\252z4\230M\024\134G\156h\140\232\202\136~\183%\172\024\249\225\007\1472^\181\247\187gVF\1583+#{\005\000b\130 \1379\130\1645\179\131\164!\2318Rl\207\202\242\250\202IV\210\130ax\196ARb\164bV*\207^!F\000\128 \1379\130\1645\243\005\201Lz:\179\174\156\164)N\170\230\174\173\158\b\2070<\162\198\143\024\209\157\180te4H\026#\1862bsU\146\024\001\016W\004I\204\017$\173YH\144\204\164q\178\162\163M\150\153\213\1474\205\1550\012\143( F\230g>\204\159\254\198\233\225\003\002\0001D\144\196\028A\210\154\197\006\201L\141y\019\134\225\163G\231Mz~ez\230\004\201\160\131\235\026#\186\171\150\r\250X\166\158\190\222\209\022\236\239\174?+#\222\246\190\193\145c\002\0001E\144\196\028A\210\154V\130d\166b!W_5\t\250Nk\152\024\134GP\146\018#\019Sn}7-[\191/\230\205\191dj\228ib\004@\220\017$1G\144\180\198V\1444\164u\024\1904Y\149+\229\154\2133\020lk\012\195\175\255\250\014Y~\215zA<\188{\242\0219}p\143\181\024\209\199.\215\022\195\137\017]\025\177\181Y\132\198\136[\173my\234\141\1773\002\0001G\144\196\028A\210\026\219A2Sc\024\254\182\1426Y\218\150\142G\186\2264\012\191\254\235}\245\243M\1527\137.\141\145\129\231w\136-\250;\169+#\133,1\002\000QB\144\196\028A\210\026?\131d\1664\015\195_\026\155\178\186\173\169m\012\195G\211;\223zI^?\176Gl\t+Ft\213PO`\183h\200\243*[\250\006'\135\004\000\018\130 \1379\130\1645A\005\201Li\029\134\1914V1\171'\209\1577Q\012\195G\195\155G\246\201[G\246\139-\196\b\000D\027A\018s\004Ik\194\b\146\153\024\134g\024\030\031g;F:r\025Y\187\172\016x\140\\\028\157\146\011\163\021\177\136\024\001\144X\004I\204\017$\173\t;H\026\024\134g\024\030\254\196\136\174\140\2282\193~\212\017#\000\1768\004I\204\017$\173\137J\144\204\1960<\195\240i\244\250\193\221\242\206\031\244\139-]\249L}7\173\184\199\136\185Wq\198u+[\137\017\000IF\144\196\028A\210\154?\253\139\139g~\242\179\209\r\018Q\012\1953\012\159\006\003\207\247\201\187'\143\139-\250\b\164\158\192\0304?b$\159\207l\217>P*\t\000$\024A\018s\004Ik<O\182\028\251\246\223\014\137\212z3\142\179\211\252\205\140l\1560\012\2070|\210\232\217\"\167\205\202H\018b\228\252H\165\030\209\246x'\n\133\236vb\004@\026\016$1G\144\180F\131d\201\1587\007\026\255\186\127c\177\199q\220]\230\199_3_=\018Q\012\1953\012\031w\026#z\250\186\158\194n\203\202\2066Y\213\153\151\160\233NZ6\231\160\204\251\210\203}\131\195\219\004\000R\130 \1379\130\1645\179\131d\166\254\141\157\189\"\153m\142#\191\"\017\141\019\134\225\025\134\143\163\164\196H\205\245\234+#\150_\135\007\159<=\188K\000 E\b\146\152#HZs\163 \153\233\165M]\1438\158\243\136\185\254\127\\\"\138ax\134\225\227`\228\189\243\245\024\209\239\182\132\021#z\250\186\2059'\243~\244\156Y\025\217+\000\1442\004I\204\017$\173Yh\1444\028\237-\022''kW\195\196\233\149\136b\024\158a\248(\"F\230G\140\000H3\130$\230\b\146\214,6Hf\210y\019\134\225\163\137a\248\232\241#Ftx=\2329\170Jm:Fl\190\174\136\017\000iG\144\196\028A\210\154V\130d&\134\225\163\139a\248\240\017#\243#F\000\128 \137=\130\1645\182\130d&\134\225\163\139a\248\224\233\224\186\198\136\014\178\219\160\175\221\181\203\n\245\149\191 \249\019#\222\246\190\193\145c\002\000)G\144\196\028A\210\026?\130d&\134\225\163\137a\248`\248\017#\235>\209.\029\001\191N\137\017\000\240\023A\018s\004Ik\252\014\146\006\134\225\163\139ax\127\188{\242\0219}p\143\181\024\209\215\230\218b\240121\229\214c\164\234\217y\1715\127\149\146x\238\214\190\193\209\001\001\000\212\017$1G\144\180&\168 \153\137a\248\232b\024\222\014\141\145\129\231w\136-\026#\1862R\200\198?F\220jm\203So\140\157\017\000\1925\004I\204\017$\173\t#Hfb\024>\186\024\134o\206;\223zI^?\176Gl\t+F\244\159\253O\134+\214b\196\024\170Uk[\137\017\000\184\030A\018s\004Ik\194\014\146\153\024\134\143.\134\225\023\230\205#\251\228\173#\251\197\1500c\228\220\135e\177h\200\243*[\250\006'\135\004\000p\029\130$\230\b\146\214D)Hfb\024>\154\024\134\159\159\237\024\233\200e\234\187i\005\029#\151\198\170r~\132\024\001\128 \017$1G\144\180&\170A\210\1920|t1\012\255\017?bDWFr\153`?\162.\142N\201\133\209\138XD\140\000\192\002\016$1G\144\180&\234A2\019\195\240\209\021\167a\248u\015?&=_|Xl!F\230fn\"\156q\221\202Vb\004\000n\142 \1379\130\1645q\n\146\153\024\134\143\1748\012\1957\230MZ\029\134\031x\190O\222=y\\l\209\215\137\158\192\0304?b$\159\207l\217>P*\t\000\224\166\b\146\152#HZ\019\215 \153\137a\248\232J\2420<12\031o\160P\200n%F\000`\225\b\146\152#HZ\147\132 \153\137a\248hj\204\155D}\024^\131D\135\225o4o\162\007\029\234\233\235z\n\187-+;\219dUg^\130\166;i\217\140E\243~\242r\223\224\2406\001\000,\nA\018sQ\014\018\243\225\252\156\227\185%\201d^\144\136JZ\1444\196e\024^\231\005V,mK\221\188I\\\135\225\137\145\249\017#\000\208<\130$\230\162\026$\158\231l_\178\231\141c\250\243\248\254{\015d\196\217)\017\148\212 \153\137a\248\232\026\159r\229\210\248T\164\231M\148\014\195\223\249+_\169\015\176\143\188w^l\t#Fj\174'gK\229z\020\218\1627_L\140\236\021\000@S\b\146\152\139\\\1448^\201\169\201\246\194\255\242\214\137\153\127xr\223}o\155W[\228.\134\211\016$3\197i\024\254\214\142\172,+0\012\159Ta\197\200\015?\152\180\1862E\140\000@\235\210\243i\015\255\153\024\169:\181-\157\255\203\1533\179\255-O\170[\029'\247\182\249\161(\bM\223`i\200|\211 \217\021\229a\248R\185Z\255*d+\245\149\1474\012\195\235\255\206\174\171\255\027u\024\254\023\019\213\250!\140I\180\166+_\127T/H\149\154Y\025\185B\140\000@\020\177B\018s\209Y!\241\134<\175fV\027\206\012\205\247gL\236\187\175\215\\\252\158\146\bI\219\n\201|t\024>#\245y\147G$\162\024\134O\198\170\137\238\164\021\2446\208\026#\1862bs\229\137\024\001\000{\b\146\152\139F\144\220<F\026L\148\2365Q\242\172D\004A\242q\141y\019\134\225\163'.\195\240\243\209\173\159Ww\231\019\017#\230\131\243\233o\156\030> \000\000+\b\146\152\011;H\028O\206\228\203\213-\206\2223\011\222s\223\252w\214U\146^\137\000\130d~\012\195GW\\\134\225\0274F\244\244\245\142\128W\182\252Y\025\241\182\247\r\142\028\019\000\1285\204\144\160\021\003&F\182.&F\212\196du\235\146\246\236\219&gz\004\145uu\222\228\152~\189x\255\210\r\153lvW\020\231Mt\213\160\177cRZ\134\225\245\194\190q\136`c\024\1904Y\147\170\023\189M\247\194\138\145\t\019m\186\155\150\173\0241\127gK\166F\158&F\000\192>VHb.\172\021\018s\151\240\229%{\222\218&M\026\253\189\2517\228\\\239m\t\025+$\139\023\135\147\225\027\243&i;\025^\195\228\202dt\134\225\245\159\131\198H!\027|\140\232\202\136\173@\211\024q\171\181-O\1891vF\000\000\214\017$1\023F\144\2320\167\185\136\223+-\154\2527\247\236\n\251\208D\130\1645q\025\134/\022\178r\251\210\182\212\205\155\1329\012\031V\140\012\155\255\221\127w\165L\140\000@\140\016$1\023t\144\216\138\145\134\137}\247\030s\028\231q\t\tAb\007\195\240\209\165q\162\219\b_\026\175\0066o\018V\140\232\n\145\158\192n\209\144\231U\182\244\rN\014\t\000\1927\004I\204\005\026$\142<\221\254\255y\211\234\2062W\246n(\1349OB\144\216\023\183a\248ef\245$\155I\199[a\016\195\240\196\b\000`\177\b\146\152\011$H\028\175\228\185\153\167\151\236y\227\152\248`b\223\134\030'\019\206\161\137\004\137\191\162<\012?\147\134I\177=\157'\195\219\028\134\215\021(\141\145\\\192\129wqtJ.\140V\196\"b\004\000\002D\144\196\156\239A\2108}\253_\158\241\245\249\233\137}\247ls\156\204Q\t\024A\018\156\1980\188y\215\2495\243\198\019x|.\004\195\240\205\015\195\019#\000\128f\017$1\231o\144,\252\192C\027\198\247\223{ #\206N\t\016A\018\142\254\141]\186K\215\1751\012\031-\205\014\195\235\n\211\234\174|\236c\196\188&\207\228\243\153-\219\007J\139\218\202\028\000\208\026\130$\230\252\011\146`c\164ar\223}o\155We`s\007\004I\184\024\134\143\174\133\014\195k\1404\206D\t\0181\002\000\201\193\193\136\184\142\158\190\238Jmk\2081\162<\169nu\156p\230I\016\188\153\135/j\156x\158\251H&#\186J\214#\0172^u\175\rL\167e\024^W\1364\194\244k\190a\248\021\0299Y\211\029|\140\232?\011}\204\204\022sc\226\229B!\179\139\024\001\128p\176B\018s>\172\144\012\020&\023\127\250\186M\019\251\238\211;\230\167$\000\172\144D\019\195\240\209\213\024\134\207\155`Y\213\153\151\160\249\017#}\131\195\219\004\000\016\026\130$\230l\006I\171\167\175\219d\162d\175\185\024}V|F\144D\031\195\240P5\21531R\145+e{1b\028|\242\244\240.\001\000\132\138 \1379[Ab\251\192C\027\204\2556]%\233\021\031\017$\241\1940|:i\140\252\240\131\201\250\163s\182\232{\158Y\025\217+\000\128\208\241i\137H\198\136\154\152\172n\213\225z\001\174\234\027\0289\246\228\233\145\173\158\151\185\211\172\232m7\175\143\001\137\024\029\006\215A\240\191\250\197\132\252\224\253\137\250\227E\149\128NHO\162J\141\024\001\128\164c\133$\230Z^!\241\225\244u\155F\127\239\254\r9\215{[|\194\nI\252Ey\024~\1664\158\012\223\170F\140\216<U\158\024\001\128\232\225S1\230Z\t\018\207s\182\251u\250\186M\147\255\230\158]\146\201\188 > H\146\133a\248\228 F\000 =\b\146\152k*H\002:}\221\166\137}\247\030s\028\231q\177\140 I.\134\225\227\203\159\024\241\182\235#\127\002\000\136\028n\207\165\1427dbdk\156bDM\150k\187\150\180g\205]o\167G\128\005\232\027\028\0290\223\244+\178\195\240:oR\158\168\214\231L\024\134\159F\140\000@\250\176B\018s\139[!\t\231\244u[&\246m\232q2v\015Md\133$]8\025>\218&\166\220z\140T=;\187\153\155\191J\201\173\214\182<\245\198X\172n\192\000@\218\016$1\183\240 \137w\1404L\236\187\199\220\233\206\028\021K\b\146\244b\024>Z\136\017\000H/\130$\230\022\018$\142'g\242\229\234\1500O_\183i|\255\189\0072\226\236\020\011\b\018(\134\225\195\165\143\172\253d\184b-F\140\161Z\181\182\149\024\001\128x Hb\238fA\162\167\175\183\151k\187\146\018#\r\147\251\238{\219\188z7H\139\b\018\204\1980|\1764F\206}X\022\139\204jpeK\223\224\228\144\000\000b\129\161\246$\243\188\131K\246\188\181K\018\200\147\234V\199\177;O\002(\134\225\131si\172*\231G\136\017\000H;NjO(\221o\191=\1611\162t\022\198se\171\000>\226dx\255\\\028\157\"F\000\000u<\178\021ss=\178\1651\178d\207\155{%\005&\246\221\183\215\220\193~V\154\196#[X,\134\225[\1671ra\180\"\182\152\247\1283\174[\217J\140\000@<\017$17;H\226r\250\186M\230\239\193)\243\173W\154@\144\160\021\012\195/\158\0311\146\207g\182l\031(%jN\014\000\210\132\025\146\164p\188\146\231:[M\140\012H\202LLV\183.i\207\190\205\161\137\b\218\213]\156\182\233\207Q\030\134\127\255\218\188I%\212a\248\243#\021\18546%\246x\003\249|v+1\002\000\241\198\nI\204M\175\144xC\213L\252N_\183i\244\247\238\223\144s\189\183e\145X!\129\031\162:\012?S\208\195\240\186\147\150F\145-\230w\247\229\190\193\225m\002\000\136=\134\218co\250\192\1954\199\136\234\252\151o\156\017\215}Z\128\b`\024\254#5\215#F\000\0007\196\nI\204M\236\219\208\019\247\211\215m\154\216w\2391\199q\030_\232\159\207\n\t\130\146\198ax\141\017=}}\188j/tt\211\014\019#{\005\000\144\024\004\t\018\229\202\222\r\197\197\204\147\016$\bC\026\134\225+f\005\230\236\021b\004\000ps\004\t\018GW\141\156\204\194\014M$H\016\182$\158\012?\\\169\201\208\135\021)\215\136\017\000\192\205\017$H\164\137}\247ls\156\204\209\155\253y\004\t\162$N\195\240\197\246\156,\205e\234\143u\233\163Y\147fEd\212\132\200\149r"
let d_4cef0498a4f70cc3df44826c7db12b17 = "Copyright and License\n=====================\n\nCopyright (c) !{years} !{copyright}\n\n!{license}\n"
let d_4d45902d7c13c6345bed73209853d7da = "\n; ---------- CONFIGURATION ----------\n\n(rule\n (targets ccopt.sexp cclib.sexp)\n (deps discover/discover.exe)\n (action (run %{deps})))\n\n; ---------- TYPES ----------\n\n(library\n (name gsl_types_functor)\n (public_name !{name}.gsl_types_functor)\n (modules gsl_types_functor)\n (libraries ctypes ctypes.stubs)\n (wrapped false))\n\n(executable\n (name gen_types)\n (modules gen_types)\n (libraries gsl_types_functor ctypes_stubgen ctypes ctypes.stubs))\n\n(rule\n (target gen_types_step2.c)\n (deps gen_types.exe)\n (action (with-stdout-to %{target} (run %{deps}))))\n\n(rule\n (target gen_types_step2.exe)\n (deps gen_types_step2.c)\n (action (run %{cc} %{deps} -o %{target} -I %{lib:ctypes:} -I %{ocaml_where})))\n\n(rule\n (target gsl_types_stubs.ml)\n (deps gen_types_step2.exe)\n (action (with-stdout-to %{target} (run %{deps}))))\n\n(library\n (name gsl_types)\n (public_name !{name}.gsl_types)\n (modules gsl_types_stubs gsl_types)\n (flags (:standard -w -9-16-27))\n (libraries gsl_types_functor ctypes ctypes.stubs)\n (wrapped false))\n\n; ---------- FUNCTIONS ----------\n\n(library\n (name gsl_functions_functor)\n (public_name !{name}.gsl_functions_functor)\n (modules gsl_functions_functor)\n (libraries gsl_types ctypes ctypes.stubs)\n (wrapped false))\n\n(executable\n (name gen_functions)\n (modules gen_functions)\n (libraries gsl_functions_functor ctypes_stubgen ctypes ctypes.stubs))\n\n(rule\n (target gsl_functions_c_stubs.c)\n (deps gen_functions.exe)\n (action (with-stdout-to %{target} (run %{deps} c))))\n\n(rule\n (target gsl_functions_stubs.ml)\n (deps gen_functions.exe)\n (action (with-stdout-to %{target} (run %{deps} ml))))\n\n(library\n (name gsl_functions)\n (public_name !{name}.gsl_functions)\n (modules gsl_functions_stubs gsl_functions)\n (libraries gsl_functions_functor gsl_types ctypes ctypes.stubs)\n (foreign_stubs\n (language c) (names gsl_functions_c_stubs)\n (flags (:standard (:include ccopt.sexp))))\n (c_library_flags (:standard (:include cclib.sexp)))\n (wrapped false))\n"
let d_4ebb7411f262486b95d943373112ceb5 = "; generated by drom from package skeleton 'vue_library'\n\n(library\n (name !{library-name})\n (public_name !{name})\n (wrapped !{pack-modules})\n (libraries templates !{dune-libraries} !(package-dune-libraries))\n (preprocess (pps js_of_ocaml-ppx))\n (modes byte)\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n"
let d_4ff9c90865d3cf2ac055fa173ba1e2bc = "[skeleton]\nname = \"wasm_binding\"\ninherits = \"virtual\"\n\n[file]\ndune_ = { file = \"dune\", skips = \"@dune\" }\n\"index.mld\" = { skips = [ \"@docs\" ] }\n\"main.ml\" = { skips = [ \"@code\" ] }\n\"main.c\" = { skips = [ \"@code\" ] }\n\"main.h\" = { skips = [ \"@code\" ] }\n\"stubs.c\" = { skips = [ \"@code\" ] }\n\"stubs.js\" = { skips = [ \"@code\" ] }\n\"wasm_utils.js\" = { skips = [ \"@code\" ] }\n\"build_wasm.sh\" = { skips = [ \"@code\" ] }\n"
let d_5134e8e8e6f66c3642693979966c0401 = "[skeleton]\nname = \"rust_binding_test\"\ninherits = \"virtual\"\n\n[file]\ndune_ = { file = \"dune\", skips = [ \"@dune\" ] }\n\"index.mld\" = { skips = [ \"@docs\" ] }\n\"main.ml\" = { skips = [ \"@code\" ], create = true }\n\n"
let d_5183529886acccf57803666f3208cc3d = "[skeleton]\nname = \"vue_library\"\ninherits = \"virtual\"\n\n[file]\ndune_ = { file = \"dune\", skips = [ \"@dune\" ] }\n\"main.ml\" = { skips = [ \"@code\" ], create = true }\n\"templates/dune_\" = { file = \"templates/dune\" }\n"
let d_5315497c5fe97dcd490da1339d986bcc = "[package]\nname = \"!{name}\"\nversion = \"!{version}\"\nedition = \"2018\"\nauthors = [!{authors-for-toml}]\n\n[lib]\ncrate-type = [\"staticlib\", \"cdylib\"]\npath = \"src/!{name}/lib.rs\"\n\n[dependencies]\nocaml = \"*\"\n# Or use the development version:\n# ocaml = {git = \"git://github.com/zshipko/ocaml-rs\"}\n!(cargo-dependencies)\n\n!(cargo-trailer)\n"
let d_540bbbc98a2c566691dd94a76674e911 = "!{header-ml}\n\nopen Ppxlib\nopen Ast_builder.Default\n\nlet verbose = match Sys.getenv_opt \"!{name:upp}_DEBUG\" with\n | None | Some \"0\" | Some \"false\" | Some \"no\" -> 0\n | Some s ->\n match s with\n | \"true\" -> 1\n | s -> match int_of_string_opt s with\n | Some i -> i\n | None -> 0\n\nlet dprintf ?(v=1) ?(force=false) fmt =\n if force || verbose >= v then Format.ksprintf (fun s -> Format.eprintf \"%s@.\" s) fmt\n else Printf.ifprintf () fmt\n\nlet expand_ext ~loc ~path:_ expr = match expr.pexp_desc with\n | Pexp_record (l, _) ->\n let e = pexp_tuple ~loc (List.map snd l) in\n dprintf \"%s\\nchanged in\\n%s\\n\"\n (Pprintast.string_of_expression expr)\n (Pprintast.string_of_expression e);\n e\n | _ -> expr\n\nlet extension_ext =\n Extension.declare \"ext\"\n Extension.Context.expression\n Ast_pattern.(single_expr_payload __)\n expand_ext\n\nlet rule_ext = Context_free.Rule.extension extension_ext\n\nlet () =\n Driver.register_transformation \"ppx_ext\" ~rules:[rule_ext]\n"
let d_552b601352278875479d711814b12af5 = "!{header-ml}\n\n(* If you delete or rename this file, you should add 'src/!{name}/types.ml' to the 'skip' field in \"drom.toml\" *)\n\ntype literal =\n | Unit\n | Bool of Bool.t\n | Int of Int.t\n | Float of Float.t\n | String of String.t\n\ntype const =\n | Literal of literal\n | Var of String.t\n\ntype e =\n | Const of const\n | Bind of String.t * e * e\n | Abstract of String.t * e\n | Apply of e * e\n"
let d_58d72b4c13131f7fe42c3b16d5d93fd3 = " the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit. Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n 6. Conveying Non-Source Forms.\n\n You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n a) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by the\n Corresponding Source fixed on a durable physical medium\n customarily used for software interchange.\n\n b) Convey the object code in, or embodied in, a physical product\n (including a physical distribution medium), accompanied by a\n written offer, valid for at least three years and valid for as\n long as you offer spare parts or customer support for that product\n model, to give anyone who possesses the object code either (1) a\n copy of the Corresponding Source for all the software in the\n product that is covered by this License, on a durable physical\n medium customarily used for software interchange, for a price no\n more than your reasonable cost of physically performing this\n conveying of source, or (2) access to copy the\n Corresponding Source from a network server at no charge.\n\n c) Convey individual copies of the object code with a copy of the\n written offer to provide the Corresponding Source. This\n alternative is allowed only occasionally and noncommercially, and\n only if you received the object code with such an offer, in accord\n with subsection 6b.\n\n d) Convey the object code by offering access from a designated\n place (gratis or for a charge), and offer equivalent access to the\n Corresponding Source in the same way through the same place at no\n further charge. You need not require recipients to copy the\n Corresponding Source along with the object code. If the place to\n copy the object code is a network server, the Corresponding Source\n may be on a different server (operated by you or a third party)\n that supports equivalent copying facilities, provided you maintain\n clear directions next to the object code saying where to find the\n Corresponding Source. Regardless of what server hosts the\n Corresponding Source, you remain obligated to ensure that it is\n available for as long as needed to satisfy these requirements.\n\n e) Convey the object code using peer-to-peer transmission, provided\n you inform other peers where the object code and Corresponding\n Source of the work are being offered to the general public at no\n charge under subsection 6d.\n\n A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling. In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage. For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product. A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modifi"
let d_59c986be51b17417905767be0ff45118 = "; generated by drom from package skeleton 'driver'\n(executable\n (name main)\n (public_name !{name})\n (package !{name})\n (libraries !{dune-libraries} !(package-dune-libraries))\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n\n"
let d_5b254520f2a05d2e15f32a7696b3889e = "; if you modify this file, add 'test' to the 'skip' field in drom.toml\n\n(library\n (name lib_inline_tests)\n (preprocess\n (pps ppx_inline_test))\n (inline_tests\n (modes best)) ; add js for testing with nodejs\n (libraries !{libraries}))\n"
let d_5dd119d509bf16e1fd60049c0a9a98e3 = "/or source code, so that the user can modify the Library and then relink to produce a modified executable containing the modified Library. (It is understood that the user who changes the contents of definitions files in the Library will not necessarily be able to recompile the application to use the modified definitions.)\n b) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (1) uses at run time a copy of the library already present on the user's computer system, rather than copying library functions into the executable, and (2) will operate properly with a modified version of the library, if the user installs one, as long as the modified version is interface-compatible with the version that the work was made with.\n c) Accompany the work with a written offer, valid for at least three years, to give the same user the materials specified in Subsection 6a, above, for a charge no more than the cost of performing this distribution.\n d) If distribution of the work is made by offering access to copy from a designated place, offer equivalent access to copy the above specified materials from the same place.\n e) Verify that the user has already received a copy of these materials or that you have already sent this user a copy.\n\nFor an executable, the required form of the \"work that uses the Library\" must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the materials to be distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.\n\nIt may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute.\n\n7. You may place library facilities that are a work based on the Library side-by-side in a single library together with other library facilities not covered by this License, and distribute such a combined library, provided that the separate distribution of the work based on the Library and of the other library facilities is otherwise permitted, and provided that you do these two things:\n\n a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities. This must be distributed under the terms of the Sections above.\n b) Give prominent notice with the combined library of the fact that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.\n\n8. You may not copy, modify, sublicense, link with, or distribute the Library except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, link with, or distribute the Library is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance.\n\n9. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Library or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Library (or any work based on the Library), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Library or works based on it.\n\n10. Each time you redistribute the Library (or any work based on the Library), the recipient automatically receives a license from the original licensor to copy, distribute, link with or modify the Library subject to these terms and conditions. You may not impose any further restric"
let d_5ef3033b0ba92cb6b630f7e09fc39a98 = "<html>\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n <title>!{name}</title>\n <meta name=\"Description\" content=\"!{name}\">\n <meta name=\"author\" content=\"!{name}\">\n <meta name=\"keywords\" content=\"!{name}\">\n <link rel=\"icon\" href=\"images/favicon.png\" />\n\n <link rel=\"stylesheet\" type=\"text/css\" href=\"css/style.css\" />\n <script src=\"js/!{name}.js\" defer></script>\n </head>\n <body>\n <h1>!{name}</h1>\n </body>\n</html>\n"
let d_5f2f3061381bcc4424bcee64f69eccd8 = "\137PNG\r\n\026\n\000\000\000\rIHDR\000\000\003$\000\000\003$\b\006\000\000\000I\n\228\004\000\000\000\tpHYs\000\000\011\019\000\000\011\019\001\000\154\156\024\000\000\000\001sRGB\000\174\206\028\233\000\000\000\004gAMA\000\000\177\143\011\252a\005\000\000\146\242IDATx\001\236\253\015p\156\231}\216\251\254\222\221\197.\b\002\208\210\148E\1374i\168C\137n\028\186\180\254\220\146\148\236\128SO\220Jv#N\206\216\1374\029\145\209\180\022\168\220K*\231N/y\162\025Q\029\181\228\201\153[\1453\150@\166\195\146\186\029\2414\158\155\136n,\2468\231d\1368\174\136TR\196Duc\153I\t\211&e\218\162\184\194\255]\236\190\239y~\011.\005\129\000\t\236>\239\255\239\231\028\004\176,\171\182\180\216}\191\239\243\254\158G\004\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\b\145#\000\000\132\232ho\177X)\215zk\174\211\147\205\200\167=\199+:\226l\240<)^\253Sz\230\248\143\rM\127\243\244{\201\252\249C5W~\2368\238\153\246\246\220\153\237\003\165\146\000\000b\129 \001\000\004\170\127cg\175\231e6d2\222\175x\226\244\154\015\162\162\2167db\229\140\235:\127\230\185\181\129\167\222\024;#\000\128H\"H\000\000\190\210\021\144\201\201\218#NF~\197\243\156G|\n\144\155\025\018\199\027\240\\\239\229\190\193\209\001\001\000D\006A\002\000\240\133\174\1328\025\231\241\016#d>\196\t\000D\bA\002\000\176\166>\015Rqw\186\158\236\138X\132\204g\200q\228\152\235VL\156L\014\t\000 p\004\t\000\160e1\012\1459\152U\019O^\022\153\026 N\000 8\004\t\000\160i\201\b\145\185x'L\156|\187op\228\152\000\000|E\144\000\000\154rhS\247NOdo\178B\228\227<\221R\2161q\194\188\t\000\248\134 \001\000,\202\139\247/\221\144\205e^0\031!\189\146.\245a\248\218\148{\144m\132\001\192\030\130\004\000\176`\1357w?\235y\178W0\228\186r\208q*'\1527\001\128\214\016$\000\128\155\234\223X\236q\156\218\209\020\174\138,\000\195\240\000\208\n\130\004\000pC\1357u=\226\138s4\201\179\"\2460\012\015\000\139E\144\000\000\230\197#Z\205a\024\030\000\022\142 \001\000\204\233\208\230\238\163\230\202z\155\160U\012\195\003\192\r\016$\000\128\143\185z\182\200)\1792\178A\002\146s\028\201g\029\233\202g\164\144\213/\253\215\0251\255\127\253_\207V\174\185R\169yRs=\243\179'\227U\183\254\199F*\174D\153\249\159y\198u\189\131\204\155\000\192G\b\018\000\1925A\198\136\198Gw>k\190O\127\2172R\169\201\149\201j=N4T\162kz\024\190\189={b\251@\169$\000\144R\004\t\000\160nz'-\247\148\249\177G|\162\017\178\172\144\147\229Kr\146\203\248\255\017\164\171'%\019'\151\198\171\245\021\148\200r\188c\142'\223\254\198\233\145\019\002\000)C\144\000\000|\143\145b!+\183/m\179\186\018\178X\186r\242\254\196\244\202I\132\227\164>o\1940<\1284!H\000 \229\252\140\145[\205J\200\202\206\1829\231@\194\164\171&W\202\211\129\018aC\230C\250\132\235U\0142o\002 \201\b\018\000H1\191bD\031\205Z\211U\144\142\182h\133\200lU\215\147R=L\166\"=\016\2070<\128$#H\000 \165^\188\127\233\134L.{\202\230\129\135\186[VO1_\159\019\137\027\1577\209\199\186.\141M1\012\015\000\001\"H\000 \133\2507v\246\138\147y\213f\140h\132\244\220\146\015dX\221o\026'\151\198*f\245$\210\243&\012\195\003H\004\130\004\000R\230\240\003]\143{\174sL,Z\211\149\151\021K\219$\137\024\134\007\000\127\017$\000\144\"\182cD\031\209Z\187\172\016\234\238YA\210a\248_\1528\209\185\147\b\0272\255X\142\185n\229e\230M\000\196\001A\002\000)qxs\247\179\158'{\197\018=M}\221'\218#\183\131V\016\026\243&Q\031\134o\204\1550\012\015 \202\b\018\000H\001b\196?\1418\1858:\021\237y\147\171q\21078rL\000 B\b\018\000H8b$8\227S\174\\\026\159\138\244\188\137'Rr\028\239\004\243&\000\162\130 \001\128\004\179\029#\029\185L}f\132\024\185\185\1980|i\178&U\243\015!\162\234\195\240\181)\247\224So\140\157\017\000\b\001A\002\000\tuxS\247\011\2302x\151X\162\135\029\174-\182'b[\223\160i\152\\\153\140\2540\188\235\202A\199\169\156`\222\004@\144\248T\001\128\004:\180\185\251\168x\178M,\185uIN\238\188\165 h\r\195\240\000p=\130\004\000\018\228ho\177X.\215\142\154\183\247G\196\018b\196\031\026'\186\141\240\165\241j\212\135\225O\1528\2496\195\240\000\252B\144\000@Bh\140T*\238)s\241\184A,Y\217\217&\171:\243\002\1271\012\015 \205\b\018\000H\128\254\141\197\158L\198}\149\024\137?\134\225\001\164\rA\002\0001\1671\2268\238)\243c\143XB\140D\131\134I\244\231Md\200\243\188\231\1527\001\208,\130\004\000b\140\024I\007\134\225\001$\025A\002\0001\229G\140\232\240\186\014\177#\1864N.\1550y\127\162\022\249axs\145\241\2427N\143\156\016\000\184\001\130\004\000b\136\024\129j\204\155Dy\024^\174\206\1550\012\015`>\004\t\000\196\204\139\247/\221\144\201eO\1537\240\162X\144s\156\250\233\235]\249\172 \190t\011\225+\229\233@\137\176!\243\186=\225z\149\131<\210\005\160\129 \001\128\024\241#F\214}\162]:\2182\130d\168\186^\253D\248\168\207\155\152\151\222\025\215\245\0142o\002\128 \001\128\1528\252@\215\227\174\235\028\176\021#\133\172Y\025)\018#I\214\024\134\19146%\227\213\232\015\195\183\183gOl\031(\149\004@\170\016$\000\016\003\026#\158\235\028\019K4Fte\164\144%F\210B\227\228\210X\197\172\158Dz\222\196\\\153x\199\028O\190\2050<\144\030\004\t\000D\220\161M\221;\205\183\003b\t1\002\134\225\001D\tA\002\000\017vxs\247\179\158'{\197\018b\004\1791\012\015 l\004\t\000D\148\237\024\233\200e\234\187i\017#\152\011\195\240\000\194B\144\000@\004\249\017#\1862\146\203\240\182\143\155c\024\030@\144\248d\002\128\1369\188\169\251\005Od\151X\210\149\207\212w\211\"F\208\140\241)W.\141OEz\222\196\252\190\148\028\199;\193\188\t\016O|:\001@\132\028\218\220}\212\\]m\019K\244\228u=\129\029\176\1611\012_\154\172I\213,MDT}\024\1906\229\030|\234\141\1773\002 \242\b\018\000\136\128\163\189\197b\185\226\190@\140 .4L\174LV\235s'\0176\228\186r\208q*'\1527\001\162\139 \001\128\144i\140T*\238)s\195y\131X\178\178\179MVu\230\005\240[c\222$\234\195\240\141y\019\134\225\129\232!H\000 D\196\b\146D\227D\183\017\1904^\141\246\225\139\226\1570\191s\223\238\027\0289&\000BG\144\000@H\2507\022{\028\199=e~\236\017K\136\017D\005\195\240\000\022\138 \001\128\016\016#H\019\134\225\001\220\bA\002\000\001\243#Ftx]\135\216\129\168c\024\030\192l\004\t\000\004\136\024\001\1661\012\015\160\129 \001\128\128\188x\255\210\r\153\\\246\148y\227-\138\0059\199\145\181\203\n\210\149\207\n\016g\026'\151M\152\188?Q\139\2520\188\249\253}\249\027\167GN\b\000k\b\018\000\b\128\0311\178\238\019\237\210\209\150\017 I\026\243&Q\030\134\151\171\243&\012\195\003v\016$\000\224\179\195\015t=\238\186\206\001[1R\200\154\149\145\"1\130\228k\196\137~E\216\144\249\221>\225z\149\131<\210\0054\135 \001\000\031i\140x\174sL,\209\024\209\149\145B\150\024AzT]\175>\004\031\245y\019\179py\198u\189\131\204\155\000\139C\144\000\128O\014m\234\222i\190\029\016K\136\017\224\163a\248KcS2^\141\2540|{{\246\196\246\129RI\000\204\139 \001\000\031\028\222\220\253\172\185\024\217+\150\016#\192\2454N.\141U\204\234I\164\231M\204\213\150w\204\241\228\219\012\195\003s#H\000\1922\2191\210\145\203\212w\211\"F\128\2491\012\015\196\023A\002\000\022\249\017#\1862\146\203\240v\r,Ti\178*W\2025\134\225\129\152\224\019\014\000,9\188\169\251\005Od\151X\210\149\207\212w\211\"F\128\2300\012\015\196\003\159r\000`\193\161\205\221G\197\147mb\137\158\188\174'\176\003\176\131ax \186\b\018\000h\0171\002\196\139\198\201\197\209J\164\231M\204jk\201q\188\019\204\155 \r\b\018\000h\210\209\222b\177RqO\153\187\153\027\196\146\149\157m\178\1703/\000\130\1930<\016>\130\004\000\154@\140\000\201\163\195\240\1910q\162s'\0176\2288r\204u+/3o\130\164 H\000`\145\2507\022{\028\199=e~\236\017K\136\017 :\026\243&Q\031\134o\204\1550\012\143\184#H\000`\017\136\017 ]4Nt\229\228\210x5\218\135/\138w\194\196\201\183\251\006G\142\t\0163\004\t\000,\144\0311\178\166+/+\150\182I\218\212\\O~6^\173\223\133\158\152r\165j\174\164\148\158\187\210\209\150\145b{V\150\021r\002D\201\184y\173^\026\159b\024\030\176\140 \001\128\005\240#Ft'-\221Q+M4D.\140M\213\183^\189\153B\214\145\174|V\150\155\191G\221\230;\016%\141a\248\210d\237ZPGP}\024\1906\229\030|\234\141\1773\002D\020A\002\0007\241\226\253K7ds\217W\197R\140\228\028Gz\138\249\212\173\000\232J\200\217R\185\169;\203\026'\197BVn7\171I\249lF\128(\2090\1852\025\253ax\215\149\131\142S9\193\188\t\162\134 \001\128\027\208\024\201\228\178\167\204\155eQ,\208\024Y\247\137\246\250cIi\1621\242\195\015&\173\220I\214\199\186\2441\183\238|\1348A\1640\012\0154\135 \001\128y\244o\236\236\021'\243\170\173\024\209\187\252k\139\233\139\145as\129\246wW\202\190<\214\162\143t\233co\203\204\234I6\195G\026\162\131ax`\225x\247\006\1289\028~\160\235q\207u\142\137%\026#\1862RH\217\029}}\148\229\220\135e\241\155\174<\233 <\243&\136\1628\012\195\011\135/\"D\004\t\000\204B\140\216\017T\140\204\1980<\162\140ax\224z\004\t\000\204pxs\247\179\230\026a\175X\146\214\024\1858:%\023F+\0186\253\251\191\162\163M\150\153\213\019\230M\016%U\215\171\015\193G}\222\196,>\158q]\239 \243&\240\019A\002\000W\017#vD%Ffk\204\1550\012\143\168i\012\195\235v\216\227\213\232\015\195\183\183gOl\031(\149\004\176\132 \001\000\177\031#\186\019\148\198H.e\131\214Q\141\145\217\138\133\\}\213$m\231\192 \2504N.\141U\204\234I\164\231M\204\021\164w\204\241\228\219\2238=rB\128\022\017$\000R\143\024\177#.12\019\195\240\136\178\198\188\t\195\240H:\130\004@\170\029\218\220}T<\217&\150\232\029\247\213]\249\212\197\200\249\145\202\130N_\143\178\1980\252m\029m\1784e[3#\250t\011\225+\229\233@\137\176!\243\206w\194\245*\007\1537\193b\016$\000R\203\143\024\185\243\150\130\164\141\238\164\021\241\139\164Ec\024\030Q\1970<\146\136 \001\144:G{\139\197r\185\246\170y\011\236\021KVt\228dMw\186b\164f.\140\206}X1wm\147\021#\1791\012\143\168b\024\030IA\144\000H\021\141\145J\197=e>\0287\136%+;\219dUg^\210Dc\228\135\031LF\252\"\200>\134\225\017U\012\195#\206\b\018\000\169\209\191\177\216\147\201\184\175\018#\173Ik\140\204\196\225\139\1362\134\225\0177\004\t\128T\208\024q\028\247\148\249\177G,Ic\140Tj\2111\018\233;\176\001c\024\030Q\166\195\240\191\208\147\225\2035\137\176!\199\145c\174[y\153y\147t\"H\000$\158\0311\178\166+/+\150\182I\154\016#7\167[>\235\235\130y\019DMc\222$\234\195\240\141y\019\134\225\211\133 \001\144h~\196\136\238\164\149\182\025\002bd\241\026\195\240\203\nY\201\166l\027hD\155\198\137\174\156\\\026\175F\252w\218;a\226\228\219}\131#\199\004\137\198;$\128\196z\241\254\165\027\178\185\236\171b)F\244\016\189\213\221yb\004\139\166\175\025=\128qY\129axD\203\248\148k\194d*\210\243&\158H\201qL\1560o\146X\004\t\128D\210\024\201\228\178\167\204\155\\Q,\208\024\209\211\215;R6#0a.V4F\170\2306%Z\1990<\162\1721\012_\154\172E\249w\190>\012_\155r\015>\245\198\216\025A\"\016$\000\018\167\127cg\1758\153W\137\145\214\016#\254\2108)\022\178r\251\2106\230M\0169\026&W&\163?\012\239\186r\208q*'\1527\1377\130\004@\162\028~\160\235q\207u\142\137%z\209\1681RH\217\005\163^\140\252d\184B\140\004\132axD\021\195\240\b\002A\002 1\136\017;4F\206}X\022\132\131axD\021\195\240\240\011\239t\000\018\225\240\230\238g\205\007\208^\177$\1731ri\172*\231G\136\145\168`\024\030Q\1970<l\"H\000\196\0301b\199\197\209)\1850Z\017D\015\195\240\1362\134\225\209*\130\004@\172\217\142\017}\150_c$\151\178Ge\136\145\248\2088Y\190\164M>\185$\203\188\t\"\165\234z\245!\248\168\207\1558\142\156q]\239 \243&\209A\144\000\136-b\196\014b$\190\026\243&\012\195#j\024\134\199b"
let d_61b937502ca4cf945ed6d5063ed1f398 = "\n## v0.1.0 ( !{year}-!{month}-!{day} )\n\n* Initial commit\n"
let d_633213ebe2ae1caa0b84e9ab9330cf5e = "!{header-ml}\n\n(* If you delete or rename this file, you should add\n 'src/!{name}/main.ml' to the 'skip' field in \"drom.toml\" *)\n\n(* Example of creation of abstract chebyshev series and evaluation *)\ntype t\ntype gsl_fun = float -> float\n\nexternal _alloc : int -> t = \"ml_gsl_cheb_alloc\"\nexternal _free : t -> unit = \"ml_gsl_cheb_free\"\nexternal _init : t -> gsl_fun -> float -> float -> unit = \"ml_gsl_cheb_init\"\n\nlet make ~a ~b f n =\n let cs = _alloc n in\n Gc.finalise _free cs;\n _init cs f a b;\n cs\n\nexternal eval : t -> float -> float = \"ml_gsl_cheb_eval\"\n\nlet main () =\n let order = 10 in\n let f x = if x < 0.5 then 0. else 1. in\n let cs = make ~a:0. ~b:1. f order in\n let x = 0.3 in\n let y = eval cs x in\n Printf.printf \"Evaluation of Chebishev series at order %d for x = %.1f -> %.4f\\n\"\n order x y\n"
let d_64425e1ba06e51be0c9c56460197e0e8 = "![file:dune]; This file was generated by drom, using drom.toml\n(env\n!{dune-profiles}\n)\n(dirs !{dune-dirs} !(dune-dirs))\n!{dune-installs}\n\n"
let d_67d194e1fceb005f8925b8659a590268 = "# Everything above is inherited from 'virtual' package skeleton\n\nskeleton := \"library\"\nkind := \"library\"\n"
let d_6ca4f0ebf611a8293baee296a71f1d3a = "\n!{badge-ci}\n!{badge-release}\n\n# !{name}\n\n!{description}\n\n* Website: !{homepage}\n* General Documentation: !{doc-gen}\n* API Documentation: !{doc-api}\n* Sources: !{dev-repo}\n"
let d_6cd06acf738b05e09a461456b37af1a9 = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"ctypes_foreign\"\n\n[[package]]\nskeleton = \"ctypes_lib_foreign\"\ndir = \"src/!{name:alpha}_lib\"\ngen-version = \"version.ml\"\nkind = \"library\"\nname = \"!{name:alpha}\"\n\n[[package]]\nskeleton = \"ctypes_drv\"\ndir = \"src/!{name}_prog\"\nkind = \"program\"\nname = \"!{name:alpha}_prog\"\n[package.dependencies]\n!{name:alpha} = \"version\"\n[package.fields]\nlib-name = \"!{name:alpha}\"\n"
let d_6d6983710cb55b1104b2114f0760ce95 = "#!/bin/sh\n\nPACKAGES=\"$*\"\n\nfor package in ${PACKAGES}; do\n file=_build/default/src/${package}/main.exe\n if [ -f ${file} ]; then\n cp -f ${file} ${package}\n fi\ndone\n"
let d_6e984e7c2b2bb27f9393cd86832ab953 = "include Gsl_types_functor.Apply (Gsl_types_stubs)\n"
let d_6f051700cea52982ab98a79072749df9 = "[skeleton]\nname = \"c_binding\"\ninherits = \"virtual\"\n"
let d_6f8ddc265fcbd17881cecf1305c9fd73 = "\n(library\n (name ctypes_stubgen)\n (modules ctypes_stubgen)\n (libraries ctypes ctypes.stubs)\n (wrapped false))\n"
let d_704ff05ffd8b0e50716542fa55b2db8a = "let () =\n Printf.printf \"Bonjour\\n%!\";\n exit 0\n"
let d_7060703d1cfbdd40954fcf5d050f5d9f = "<!DOCTYPE html>\n<html lang=\"en\">\n <head>\n <meta charset=\"utf-8\">\n <title>!{name:html}</title>\n <link rel=\"stylesheet\" href=\"style.css?v=!{random}\"/>\n <link rel=\"icon\" type=\"image/png\" sizes=\"804x804\" href=\"favicon.png\" />\n </head>\n <body>\n <div class=\"content\">\n <div class=\"header\">\n <h1>!{name:html}</h1>\n <p>!{description:html}</p>\n </div>\n <div class=\"section\">\n <ul>\n !{li-github}\n![if:gen:docs] !{li-doc-gen}![fi]\n![if:gen:sphinx] !{li-doc-api}![fi]\n !{li-bug-reports}\n </ul>\n <p>Authors:</p>\n <ul>!{li-authors}</ul>\n </div>\n <div class=\"trailer\">\n <hr/>\n <p>Copyright \194\169 !{copyright}</p>\n </div>\n </div>\n </body>\n</html>\n"
let d_71ebd516aa158e6c7eda1212dedef27c = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"js_lib\"\n\n[[package]]\nskeleton = \"js_library\"\ndir = \"src/!{name}\"\nname = \"!{name}\"\n"
let d_7242d5f97affa3f389abfe15cc6d6167 = "The 'default' skeleton is used as a template to create and update projects.\n\nThe current, too simple, skeleton is composed of 2 directories:\n* 'project/' contains the files to put in a project\n* 'package/' contains the files to put in the source tree of the package\n (i.e. 'src/PACKAGE/').\n (remark: it is likely to change if we want to support multi-package\n skeletons at some point)\n\nWithin each directory, the following substitutions are applied to the\ncontent of each file:\n\n\n * !{EXPR} is substituted by the meaning of EXPR for the package/project.\n (remark: we need to explain more)\n EXPR has the following format: 'IDENT[:ENCODING]*'\n where IDENT is interpreted for the package/project, and ENCODING is\n applied to the result on its left.\n Current encodings are:\n \"html\": html-encode the string\n \"cap\": capitalize the string\n \"uncap\": uncapitalize the string\n \"low\": lowercase the string\n \"up\": uppercase the string\n \"alpha\": replace any non-alpha numerical character by '_'\n\n IDENT : check the two first pattern-matchings in 'src/drom_lib/subst.ml'\n for its meaning for projects and packages\n\n\n * !(FIELD) is substituted by the corresponding field in the project drom.toml\n For example, a field 'foo' is specified as:\n ```\n [project.fields]\n foo = \"bar\"\n ```\n will make '!(foo)' be replaced by 'bar' in the project. Use\n '[package.fields]' for packages.\n\n For example, the `dune` template uses the following fields:\n * `dune-stanzas`: additionnal stanzas to be included in the\n `(executable ...)`\n * `dune-trailer`: additionnal content to be included at the end of file\n\n For a package substitution, FIELD will first be interpreted a field of the\n package, then as a field of the project if not found.\n FIELD can be prefixed by `project-` or `package-` to avoid that:\n * `project-FIELD` will lookup `FIELD` only in the project fields\n * `package-FIELD` will lookup `FIELD` only in the package fields\n When a field is not found, it is silently replaced by \"\"\n\n * ![flag] is substituted by nothing, but has a side effect:\n * ![skip:TAG] : the file will be skipped if TAG is in the 'skip' field\n of 'drom.toml'\n * ![create] : the file will be created if not existing, but never updated\n afterwards\n * ![no-record] : the file will be generated, but not recorded. It should\n not be added to git. Mostly useful for '_drom/' files.\n * ![file:FILENAME] : the file should be called FILENAME instead.\n For skeletons included in the sources of `drom`, you MUST use this\n flag for files starting with '.' or '_' instead of\n using their real name, because 'dune' will complain otherwise.\n\nUsual problems:\n\nIf a substitution does not happen correctly:\n\n* check that you have used the correct syntax, i.e. '!' instead of '$'\n\n* check that you have chosen the correct category :\n `!{EXPR}` for expressions to be evaluated, `!(FIELD)` for fields\n (note that `project.name` in the `drom.toml` does not create a `name`\n field in the project. Fields are only created by the `project.fields`\n section. `name` can only be accessed by the `${name}` expression),\n and `![flag]` for side-effects.\n\nNote that you can set the env variable `DROM_VERBOSE_SUBST` for `drom project`\nto display missed fields lookups.\n"
let d_734ed6b2b1cb8e0d6bce316d155bb157 = "let%expect_test \"addition\" =\n Printf.printf \"%d\\n%!\" (1 + 2);\n [%expect {| 3 |}]\n"
let d_73a66a68958722ad396550a58a246f3c = "(lang dune !{dune-lang})\n; This file was generated by drom, using drom.toml\n!(dune-project-header)\n!{dune-cram}\n(name !{name})\n(allow_approximate_merlin)\n(generate_opam_files false)\n(version !{version})\n(formatting (enabled_for ocaml reason))\n!{dune-packages}\n!(dune-project-trailer)\n"
let d_73c121aed7a86158b44e8232672664f6 = "; generated by drom from package skeleton '!{skeleton}'\n\n(library\n (public_name !{name})\n (wrapped !{pack-modules})\n (libraries !{dune-libraries} !(package-dune-libraries))\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!(package-dune-trailer)\n"
let d_74e0142865e40a3c8b795fffc2ff7a78 = "!{header-ml}\n\n(* If you delete or rename this file, you should add 'src/!{name}/main.ml' to the 'skip' field in \"drom.toml\" *)\n\nlet main () =\n\n if Array.length Sys.argv <> 2 then begin\n Format.eprintf \"usage: %s <file>@.\" Sys.argv.(0);\n exit 1\n end;\n\n let file = Sys.argv.(1) in\n\n if not @@ Sys.file_exists file then begin\n Format.eprintf \"file `%s` doesn't exist@.\" file;\n exit 1\n end;\n\n if Sys.is_directory file then begin\n Format.eprintf \"file `%s` is a directory@.\" file;\n exit 1\n end;\n\n let channel = open_in file in\n\n let buf = Lexing.from_channel channel in\n\n let e =\n try Parser.file Lexer.token buf\n with _e -> begin\n Format.eprintf \"error while parsing file `%s`@.\" file;\n exit 1\n end\n in\n\n close_in channel;\n\n Format.printf \"%a@.\" Printer.pp_e e\n"
let d_7693c796142bbfd73bd60e7ef9634fb1 = "!{header-ml}\n\nopen Ppxlib\nopen Ast_builder.Default\n\nlet verbose = match Sys.getenv_opt \"!{name:upp}_DEBUG\" with\n | None | Some \"0\" | Some \"false\" | Some \"no\" -> 0\n | Some s ->\n match s with\n | \"true\" -> 1\n | s -> match int_of_string_opt s with\n | Some i -> i\n | None -> 0\n\nlet dprintf ?(v=1) ?(force=false) fmt =\n if force || verbose >= v then Format.ksprintf (fun s -> Format.eprintf \"%s@.\" s) fmt\n else Printf.ifprintf () fmt\n\nlet str_of_structure e = Pprintast.string_of_structure e\nlet str_of_signature e =\n Pprintast.signature Format.str_formatter e;\n Format.flush_str_formatter ()\n\n\n\n\nlet str_gen ~loc ~path:_ (rec_flag, l) debug name =\n let s = List.map (fun ( _t : type_declaration ) ->\n pstr_value ~loc rec_flag\n [value_binding ~loc\n ~pat:(pvar ~loc \"x\" )\n ~expr:(pexp_construct ~loc {loc; txt=Longident.parse \"None\"} None)\n ]) l in\n dprintf ~force:debug \"%s: %s\\n\"\n (match name with\n | None -> \"any\"\n | Some name -> name) (str_of_structure s);\n s\n\nlet sig_gen ~loc ~path:_ (_rec_flag, l) debug =\n let s = List.map (fun ( _t : type_declaration ) ->\n psig_value ~loc (\n value_description ~loc ~name:{txt=\"x\"; loc}\n ~type_:\n (ptyp_constr ~loc {txt= Longident.parse \"int\";loc} []) ~prim:[]\n )\n ) l\n in\n dprintf ~force:debug \"%s\\n\" (str_of_signature s);\n s\n\nlet () =\n\n let args_str = Deriving.Args.(\n empty\n +> flag \"debug\"\n +> arg \"name\" (estring __)\n ) in\n let str_type_decl = Deriving.Generator.make args_str str_gen in\n\n let args_sig = Deriving.Args.(\n empty\n +> flag \"debug\"\n ) in\n let sig_type_decl = Deriving.Generator.make args_sig sig_gen in\n\n Deriving.ignore @@ Deriving.add \"!{name}\" ~str_type_decl ~sig_type_decl\n"
let d_77c8619a5edc2597da947c748892983b = "[skeleton]\nname = \"c_binding\"\ninherits = \"virtual\"\n\n[file]\ndune_ = { file = \"dune\", skips = \"@dune\" }\n\"index.mld\" = { skips = [ \"@docs\" ] }\n\"main.ml\" = { skips = [ \"@code\" ] }\n\"stubs.c\" = { file = \"!{name}_stubs.c\", skips = [ \"@code\" ] }\n"
let d_785c569921541728cd90eb2b44736a6c = "[skeleton]\nname = \"library\"\ninherits = \"virtual\"\n\n[file]\ndune_ = { file = \"dune\", skips = \"@dune\" }\n\"index.mld\" = { skips = [ \"@docs\" ] }\n\"main.ml\" = { skips = [ \"@code\" ], create = true }\n\n"
let d_797e69960344de3a887940bc857718b9 = "[skeleton]\nname = \"wasm_binding\"\ninherits = \"virtual\"\n"
let d_7a02a373c6b7c5f33fb5a1c3135df94a = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"mini_prg\"\nskip = \"@test @sphinx @docs @ocamlformat @ocp-indent\"\n\n[[package]]\nskeleton = \"program\"\ndir = \"src/!{name}\"\nname = \"!{name}\"\n\n"
let d_7a37d4e7b153257218f8b96d51d64380 = "s semiconductor masks.\n\n \"The Program\" refers to any copyrightable work licensed under this\nLicense. Each licensee is addressed as \"you\". \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy. The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy. Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies. Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License. If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n 1. Source Code.\n\n The \"source code\" for a work means the preferred form of the work\nfor making modifications to it. \"Object code\" means any non-source\nform of a work.\n\n A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form. A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities. However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work. For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n The Corresponding Source for a work in source code form is that\nsame work.\n\n 2. Basic Permissions.\n\n All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met. This License explicitly affirms your unlimited\npermission to run the unmodifie"
let d_7a921c0ff718cdb4d41ce6b3a28504ea = "\185\254\235}\178\242\243_\2405N\b\018{\152\027\001\230\214\2020\188F\136\190\015\234\238YQ<\203)\205l\199HG.S\143\145\156\207O:\204F\140\000\241g\253]\195\172\146\2365\171$\207J\147\244\238\138\238\186\149\r\224\r\205\239(iX\249\249\007\229\238\135\0315\171'_\177>kB\144\216\161\171\"\186:\002\224\2304N*f\005\229\253\179\127}\2219\021\026\029\221w|Z:o_S\1911\019\214|\029n\140\024\153\155\185~9\147\207g\182l\031(\149\004@`\172\191s\188\208[,\182\151\221s\173\172\146\004\245\232\150\186h\222\200.\1527\180 \232\007\179>\210\165\187\219\220a\233\145\005\130\196\142\220C\207Jv\253W\004\000\146n\224\249>y\247\228q\177Ew\201\\m>\179\137\017\000\205\242\229\221\163\127c\2156\199q\142J\011\238\188\165\016\216\137\174AFI\131\222E\212\149\147V\227\132 i\029\171#\000\210\194\143\024\209\207\235\160\157\031\169\200\1651{\159\219\158'/\183\183gv\017#@8|\187\157\209\234a\137\186\235\214/\223\218.\249\128\006\227\244\141M\223\224\194\160q\162\207W\223\173\231\002,\242\025k\130\164u\153_\254\138\180=\220\244S\134\000\016y\186I\129\030xx\209\226\129\152+:r\178\166;\248\024\177\253\184\181\198H\223\224\2406\001\016\026\223\130D\007\220\029\199='-\208gR?{\235\018\tJ\185\230\201\187\031L\154\239\022w0_\164\198\188\201B\135\225\t\146\214\229\127\243\1448k\238\021\000H\"\141\145?\254\237\135\229\242\217w\196\150\149\157m\178\1703\152G\171\027j\174W\191qhy\246\243\224\147\167\135w\t\128P\249\182\157\213k?\157,=\252\169\130c\022:z\165IS\230\205\1994\130\220R\240\127\215-\165\207\191\022\219s\2450\153\012)JF~v\190~\224\226;\223\234\151\247\254\242\251\245d\236\186\253\211\146+\180\207\249\231s0b\139\n]\146\251r\240\231\199\000@\016t\211\129\147\191\243\235\137\136\145\031\154\027\134\031Vjb\139Y\025y\206\172\140\236\022\000\161\243\245J\255Kk\151\156i\171y\191!-\012\184\143M\185\146u2\210\153\015\230\209-\141\146\229KrVOuoV#N\254\230\219\255^J?\254\145\020:\139\215\173\154\016$\173\201\172\\\2070;\128D\210\024\209\149\145\210\143\207\138-a\198\200x\213\222g\242\213\024\217+\000\"\193\247-1Z=\193]\233<\137\158O\210\209\022\236AKQx\132k\182\217\195\240<\178\213\154\236}\191!\185\127\244?\011\000$I#Ffo\203\220\n\221\253Rw\193\012R\1656\029#6?\135\137\017 z\002\217\163\239\208\166\238\003\230\219Ni\129\158O\162Q\146\015\248\244W\165\003\239\186\011W\205\188\139E\137\198\201\175\255?\218\005\205\203\253\163\2231Q\242\155\002\000I\225G\140\004\185\243e\0031\002\164G W\247\019\133\204^S>g\164\005\229\171oL\186t\0274\189#\212\149\015>\132n\198\230\135MZ\233\150\191\000\144\020\182c$\2318\t\138\017o;1\002DS W\217O\015\148J\174\151\217jR\162\165\253\189\027Q\018\134\187\150\181\203\231>\217!\171:\219\204jM\244\226\004\205q\n]\002\000I\160\131\235\127\184\237A\1711\162\167\175''FF\142\t\128H\n\236\202\186o\1764d\254\031{NZ\164Cm\186\007y\024\244\177\177\149\157y\019&K\234\143\143\233\1554q\002\000\b\155\198\136\174\140\232\022\19164b$\232\217\205\137)W~\240\254\132\181\024\209\027\161\158\231n!F\128h\011\244\157\230\027\167\135\015\152\183\135\019\210\"\221\131<\172C\012\027\186\242\217\2502\182\198\201]\197\224\151\179\001\000P\239\158|E\254\255\143?h-F\244\230\219/\221\026N\140\232\202H\213\210\188\166\198\136[\173\153\024\025\029\016\000\145\022\248\237\253\137Bv\187\2496$-j\012\154G\129\158]\162q\242\249\219:\234\223\1638o\002\000H\030\141\145\129\231w\136-\026#\1862\018\244\234\191\222h\180\025#\198\144\198\200So\140\1814\191\n \024\129_9\235<I\173Zky\158D]\028\173D&J\148\158a\162+%\159\249\196\146\250\188\137\198\137\1586\015\000\128mo\030\217\151\152\024\209G\177m\198\136\231U\136\017 FB\185Z\174\191Ix\222\211b\129FI\216\143o\205E\223\2165N>{\235t\156\172\232`\222\004\000`\135\198\200[G\246\139-a\197\200\165\177\170\237\185\208z\140\244\rN\014\t\128\216\b\237\nY\007\204t?p\177@\031\223\nk\208}!\244\141~Mw\129ax\000@\203l\199\136\174\228\135\017#\023G\167\204\rEb\004@\136A\162t?p\019%/\139\005\186\228\171;sT\"t\170\250\\\024\134\007\0004+I1ra\212\222\211\r\142#g\136\017 \190B\191M?\217\158\217\213\234\161\137\r\186%\176\014\197E=J\026\024\134\007\000,\212\235\007w[\141\145e\133\\=Ft\2541H~\196H>\159!F\128\024\011\253\n\184qh\162X\216yK5\014O\028\159\138G\148(\134\225\001\00072\240|\159\188\243\007\253b\139~\230\172]V\b<Ft\230\211f\140\136x\003\026#\219\205\181\132\000\136\173H\\\245\234\161\137\158\151\217\"\022\163\228\007\151'\"\181\003\215B1\012\015\000h\208\179E4F\222=y\\l\209\207\024\189\241\0214\157\245\212\153O[\244\145\239'O\143\016#@\002D\230JW\163\196\214v\192\r\186\003\151\190\001\214\\k[\t\006\138ax\000H/\141\017=}\221f\140\172\236l\011-Ft\214\211\022\141\145\190\193\225m\002 \017\"uu\171\219\001\235AF6\163\164>\236~9\250\195\2387\1950<\000\164G#F.\159}Gl\209\024Y\213\153\151 \233\rA\221p\198r\140<G\140\000\201\018\185\219\237~D\137>\194\245W\191\136\231#\\s\1539\012\015\000H\150\145\247\206\203\031n{0\0171R\159\233\172\218\187!x5F\246\n\128D\137\228\243?~D\137\210G\184\254\250\023\227\177_-i\bz\024\017\000\224/\141\017]\025\209\239\182\132\017#\149\250,'1\002`a\";\144\224W\148$m\181\004\000\144\012~\196\136\174\166\135\017#\1862R\174\017#\000\022&\210\019\210\026%\226e>/\150v\223\154\169\177Zb\243\185V\000\000\154\225W\140\004=o\232G\1408\"O\019#@\178E~\203&\219[\002\207\164\171%\186\243\135~%\2291.\000@\188\232\172\136\206\140\216\138\145\156\227\\\219\1531H\254\172\140x\219\191qz\248\128\000H\180X\236!\219\136\018['\186\207\166\171$\250\024\023a\002\000\b\146\198\136\174\140\232\174Z6h\140\232\233\235\1863c\144&\166\\\1711\162\143k;\226m\237\027\0289&\000\018/6\135Zh\148\140\0232[t\239q\241\ta\002\000\b\202\187'_\177\026#zv\149\198HG[\176\031\237~\196\136\206\144~\227\244\200\t\001\144\n\177:\204\226\233\233\211X\183\245o\236\03027\129\158\021\159h\152\232\151.w\175\234l\147<\135\017\002\000,\210\024\025x~\135\216\210\136\145\160\015\207\029\174\212\228\239\174\148\165\234\2179\128\184\017#\245\025R\000\169\017\203+m\029ns\205R\174\237\029\184fk\172\152\232\157\031\134\223\001\0006\188\243\173\151\018\017#\250\185\248\174\249|\180\021#\162\179\162^\229\243\196\b\144>\177\189\245\191C\151r}\218\129k\182\017s\007H\031\227\210]\185\244\187\222\017\002\000`\177\222<\178O^?\176Gl\t3F\244\243\208\162!\207\171l\233\027\156\028\018\000\169\019\171G\182f\211\185\018\243\237\206C\155\186u\007\142\157\2263\221\149\171|\245q.\253\016\208\161\193\219:\218di\027\143t\001\000nLc\228\173#\251\197\150\142\\F\214.+\004\030#\023G\167\228\194hE,\"F\128\148K\196\149\244\147\167\135w\233\214\128\018\192jI\131\198\137\134\201\127\191<!?x\127\162\2543\131\240\000\128\185\248\017#a\172\140\016#\000\252\144\152[\251\1865\160n\r\236\231.\\\243\025\175\186\245\165\235\153\243&\196\t\000@\189~p\183\213\024\233\202O\199H.\227H\144l\199\136\227\200\153B!\243yb\004@\172\031\217\154\237\234#\\\219\2507v\r8\142\163\187p\245H\192t\222d\228\234\140I\177\144\147[;\178\178\172\144\168\191\205\000\128\005\026x\190O\222=y\\l\209\221\031\245\004\246\160\249\017#\249|f\203\246\233\2213\001\164\\\176''\005\228\181\159V\206<\252\169%\223\022\241\150\1537\189\r\018\146I\179J\242\193dM.\155\021\019]E\201\154\187Y\182\151\215o\251T\183\160y\223\251O'\229\199\127\245\151\210u\199\167\165c\249\n\001\000\027\244l\145\239\255oO'\"F\244\t\128K\227Sb\139>\201`VF~\147\024\001\208\016\236zo\b~\127\243\210\r\174\151}UBX-\153\139\237a\248\207\254\195U\130\230\253\031\223\255\137\252\236\242D\253\231\229w\173\151\245_\239\147\149\159\255\130\t\1485\002\000\205\208\024\209\003\015\245\020v[Vv\182\201\170\206\188\004Mc\196\230\182\247\026#}\131\195\219\004\000fH|\1444\244o\236\218\022\214c\\\243\209\161\196\021K\219\164;\159i\250\240E\130\16453\131d\166\149\159\127P\238~\248Q\226\004\192\162$%Fj\174'gK\229k\143 [rP7\161\017\000\152%\145\143l\205e\198c\\\031:\142\244J\004L\1537\252R\185f\150\194\171\230M\127z\b^WP2\206\194;\145G\182Z\243\183\231\135et\142\187\127#?;/C\223{M\222\249V\191\\\254\209;\146+\180K\241\211w\011\000\204g\228\189\243r\226_|IJ?>+\182\132\021#\186A\203\216\148\189\205Y\204\202\200sfed\183\000\192\028R\179B2S\255\198b\143\136\187\215\\\247?.\017\164\207\t\023\219\0236\012\207\nIk\230[!\153\139\174\148\232\202\201\186\135\030\147;\238yP\000\160AcDWF\244\187-a\196H\165fVF\174L\214\231\030m\185\026#{\005\000\230\145\202 i\136z\1524\230M\150\155@\233\206\207\189\152E\144\180f1A2S#N\214\127}G}\246\004@z\249\017#k\186\242\245Gz\131\1641\162+#\229\0261\002 X\169\014\146\006\r\019\207s\031\201d\234\167\189\247H\004i\156\020\011Y\185\221|@\205\1567!HZ\211l\144\204\1960<\144^~\196\136\238\164\165+\229A\242#F\204\005\198\211\2238=|@\000\224&\b\146Y\166\135\223u\197\196\233\149\136\1549\012\255\249\205\171\005\205\179\017$35\134\225{\190\240\021)t\221\"\000\146K\007\215\191\187\251Qk1\1463\031>=\197|\224gW\249\1792\226m\215\003\139\005\000\022\128 \153\199\140\199\185~E\"\186j\162\182\253\026\131\214\173\176\029$3\173{\200\132\201\023\191b\190\030\022\000\201\1621\162+#\186\171\150\r\026#z\250zG\155\221\179\170n\134\024\001\016\005\004\201\002\244o\236\236\021\201l3\127\183~\205\252\r+J\132\016$\173\2413H\026\024\134\007\146\229\220\247\190#\127\246\175wX\139\017}$wm1\248\024\153\152r\2351R\245<\177\193\252UJn\181\182\229\1697\198\206\b\000,\002A\178HW\031\233\2505\243\183\238\017\137\000\130\1645A\004\201L\026'=_x\184>\012\207\188\t\016?\239\158|E\006\158\223!\182h\140\232\202H!K\140\000H/\130\164I\211\143t\213z\195\1587!HZ\019t\144\204\1960<\016/I\137\017=y\253'\195\021k1b\012y^eK\223\224\228\144\000@\019\b\018\011\174\206\155\\\029\134\015v\222\132 iM\152A2\019\195\240@\180\189yd\159\188ud\191\216\018f\140\156\251\176,\022\017#\000ZF\144X\214\1527\tj\024\158 iMT\130d&\134\225\129hIJ\140\\\026\171\202\249\017b\004@\244\016$>ziS\215#\142\231<\226g\156\016$\173\249\191N_\144\159\254|L\162\136ax |\182cD\183m\215\024\201e\130\253\248\1898:%\023F+b\0171\002\192\026\130$ ~\237\212E\144\180f\232\191\191/?6Are\178*\165rM\162\138ax x\196\200\220\204M\1823\174[\217J\140\000\176\133 \t\129\205\157\186\b\146\214h\144\140]}\132\161\\\243d\164R\147\247'\166\204w{{\242\219\1980<\224\191\129\231\251\228\221\147\199\197\022=y}uW>\0171\146\207g\182l\031(\149\004\000,!HBdc\167.\130\16453\131d&\141\147\146Y5\1854^\181z`\152m\012\195\003\246\249\017#w\222R\144\160\157\031\169\200\165\177)\177\199\027(\020\178[\137\017\000\182\017$\017\161q\226y\238#\153\140\236\148E\204\155\016$\173\153/Hf\026\159rM\152L\175\154D9N\024\134\007Z\163\007\029\254\201\238G\229\226\219\223\023[Vt\228dMw\2401\162;i\233\142Z\182x\158\188\22078\188M\000\192\007\004I\004\189x\255\210\r\153lv\215B\134\225\t\146\214,$Hf\154~\164\171jVOj6\247\240\183\138ax`\2414F\254\248\183\031\150\203g\223\017[Vv\182\201\170\206\188\004\169\230z\245\149\017b\004@\156\016$\017w\179ax\130\1645\139\r\146\153\244\003\159ax \254F\222;/\2235+#I\136\017=}}\188jo%\215\196\200s&F\246\n\000\248\136 \137\145\185\134\225\t\146\214\180\018$\r\012\195\003\241\1651\162+#\250\221\022b\004\000\022\135 \137\161\153\195\240\219~m]\175\160i6\130d&\134\225\129\248\240#F\214t\229e\197\2106\tR\1656\029#6\223s\136\017\000A\"Hbnr\255}\209\028d\136\t\219A2\019\195\240@t\249\017#\186\147\150\238\168\021$b\004@\018\016$1G\144\180\198\207 \153\137ax :tVDgFl\197H\206,W\175\238\206'$F\188\237}\131#\199\004\000\002D\144\196\028A\210\154\160\130d&\134\225\129\240h\140\232\202\136\238\170e\131\198\136\158\190\222\209\150\145 \017#\000\146\132 \1379\130\1645a\004I\003\195\240@\176\244|\017=g$\238121\229\202\217R\217Z\140\152\015\145\146x\238\214\190\193\209\001\001\128\016\016$1G\144\180&\204 \153\137ax\192_\239\158|E\006\158\223!\182\020\178\2111R\200\006\031#\1862b\235\209O\141\017\183Z\219\242\212\027cg\004\000BB\144\196\028A\210\154\168\004\201L\012\195\003v%%F\174\148\1712T\170\216\156C\027\170Uk[\137\017\000a#Hb\142 iM\020\131d&\134\225\129\214\188yd\159\188ud\191\216\018V\140\232\251\192\185\015\173\190W\ry^eK\223\224\228\144\000@\200\b\146\152#HZ\019\245 \153\137ax`q"
let d_7c4c4270a5349df10505bf34cbd0186d = "; generated by drom from package skeleton '!{skeleton}'\n\n(library\n (name !{library-name})\n (public_name !{name})\n (wrapped !{pack-modules})\n (libraries !(local-deps) !{dune-libraries} !(package-dune-libraries))\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n"
let d_7d4aa497434dd346a8c9fb59852813b6 = "E LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\nEND OF TERMS AND CONDITIONS\n\nHow to Apply These Terms to Your New Libraries\n\nIf you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License).\n\nTo apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the \"copyright\" line and a pointer to where the full notice is found.\n\none line to give the library's name and an idea of what it does.\nCopyright (C) years name of author\n\nThis library is free software; you can redistribute it and/or\nmodify it under the terms of the GNU Lesser General Public\nLicense as published by the Free Software Foundation; either\nversion 2.1 of the License, or (at your option) any later version.\n\nThis library is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\nLesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public\nLicense along with this library; if not, write to the Free Software\nFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\n\nAlso add information on how to contact you by electronic and paper mail.\n\nYou should also get your employer (if you work as a programmer) or your school, if any, to sign a \"copyright disclaimer\" for the library, if necessary. Here is a sample; alter the names:\n\nYoyodyne, Inc., hereby disclaims all copyright interest in\nthe library `Frob` (a library for tweaking knobs) written\nby James Random Hacker.\n\nsignature of Ty Coon, 1 April 1990\nTy Coon, President of Vice\n\nThat's all there is to it!\n\"\"\"\n"
let d_7d70c6927c41c3018053dab37d73a458 = "; if you modify this file, add 'test' to the 'skip' field in drom.toml\n\n(library\n (name lib_expect_tests)\n (preprocess\n (pps ppx_expect))\n (inline_tests\n (modes best)) ; add js for testing with nodejs\n (libraries !{libraries}) ; add your project libraries here\n )\n"
let d_7e2e18acb30a584ed8c097eae233523d = "[skeleton]\nname = \"js_program\"\ninherits = \"virtual\"\n\n[file]\ndune_ = { file = \"dune\", skips = [ \"@dune\" ] }\n\"main.ml\" = { skips = [ \"@code\" ] }\n"
let d_7fd148d143e2c9afccf2b8b3a5ebd5bd = "; generated by drom from package skeleton '!{skeleton}'\n\n(rule\n (targets ccopt.sexp cclib.sexp)\n (deps discover/discover.exe)\n (action (run %{deps})))\n\n(library\n (name !{library-name})\n (public_name !{name})\n (wrapped !{pack-modules})\n (libraries !{dune-libraries} !(package-dune-libraries))\n (c_library_flags (:standard (:include cclib.sexp)))\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n"
let d_80d0fd9d3e4d40d6f4b38d41da0713e8 = "(**************************************************************************)\n(* *)\n(* Copyright (c) 2020 Maxime Levillain <maxime.levillain@origin-labs.com>*)\n(* *)\n(* All rights reserved. *)\n(* This file is distributed under the terms of the GNU Lesser General *)\n(* Public License version 2.1, with the special exception on linking *)\n(* described in the LICENSE.md file in the root directory. *)\n(* *)\n(* *)\n(**************************************************************************)\n\n(* If you delete or rename this file, you should add\n 'src/vue-skeleton_lib/main.ml' to the 'skip' field in \"drom.toml\" *)\n\nopen Js_of_ocaml\n\ninclude Vue_js.Make (struct\n type data = < version : Js.js_string Js.t Js.readonly_prop >\n\n type all = data\n\n let id = \"app\"\nend)\n\nlet data =\n object%js\n val version = Js.string Version.version\n end\n\nlet components =\n [ ( \"hello\",\n Js.Unsafe.coerce (Vue_component.make ~template:Templates.hello \"hello\") )\n ]\n\nlet main () =\n let vue = init ~data () in\n ignore vue\n"
let d_829b1d7fc32f58239fe93be3d5eb8079 = "#define CAML_NAME_SPACE\n#include \"caml/mlvalues.h\"\n#include \"caml/alloc.h\"\n#include \"caml/memory.h\"\n#include \"caml/callback.h\"\n\n// example with gsl chebyshev\n#include \"gsl/gsl_chebyshev.h\"\n\ndouble gslfun_callback_indir(double x, void *params) {\n value res;\n value v_x = caml_copy_double(x);\n value *closure = params;\n res=caml_callback(*closure, v_x);\n return Double_val(res);\n}\n\nCAMLprim value ml_gsl_cheb_alloc(value arg) {\n CAMLparam1(arg);\n CAMLlocal1(res);\n res=caml_alloc_small(1, Abstract_tag);\n Field(res, 0)=Val_bp(gsl_cheb_alloc(Int_val(arg)));\n CAMLreturn(res);\n}\n\nCAMLprim value ml_gsl_cheb_free(value arg) {\n CAMLparam1(arg);\n gsl_cheb_free((gsl_cheb_series *)Field((arg), 0));\n CAMLreturn(Val_unit);\n}\n\nCAMLprim value ml_gsl_cheb_init(value cs, value f, value a, value b)\n{\n CAMLparam2(cs, f);\n gsl_function gf = { &gslfun_callback_indir, &f };\n gsl_cheb_init((gsl_cheb_series *)Field((cs), 0), &gf, Double_val(a), Double_val(b));\n CAMLreturn(Val_unit);\n}\n\nCAMLprim value ml_gsl_cheb_eval(value arg1, value arg2) {\n CAMLparam2(arg1, arg2);\n CAMLreturn(caml_copy_double(gsl_cheb_eval((gsl_cheb_series *)Field((arg1), 0), Double_val(arg2))));\n}\n"
let d_860848f2ef05b51dc61ad6815bd0c5a7 = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"js_prg\"\nbuild-profile = \"release\"\n\n[[package]]\nskeleton = \"js_driver\"\ndir = \"src/!{name}\"\nname = \"!{name}\"\n\n[[package]]\nskeleton = \"js_library\"\ndir = \"src/!{name}_lib\"\nname = \"!{name}_lib\"\n"
let d_8696ced7621adde15a6565c97bd0788e = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"menhir\"\n\n[[package]]\nskeleton = \"driver\"\ndir = \"src/!{name}\"\nname = \"!{name}\"\n\n[package.dependencies]\n!{name:alpha}_lib = \"version\"\n\n[[package]]\nskeleton = \"menhir_lib\"\ndir = \"src/!{name:alpha}_lib\"\nname = \"!{name:alpha}_lib\"\n"
let d_87c3ad89d604ebdaba5aac730cf8fcfc = "include Gsl_functions_functor.Apply (Gsl_functions_stubs)\n"
let d_8827016c108446c6ab0a47e98b56f739 = "!{header-ml}\n\n(* If you delete or rename this file, you should add\n 'src/!{dir}/!{name}.ml' to the 'skip' field in \"drom.toml\" *)\n\nopen Ctypes\nopen Foreign\n\n(* To force the external library to be linked *)\nexternal _dummy : unit -> unit = \"gsl_cheb_eval\"\n\nmodule Types = struct\n\n module Gsl_function = struct\n\n type gsl_function\n type t = gsl_function structure\n\n let t : t typ =\n typedef (structure \"gsl_function_struct\") \"gsl_function\"\n\n let function_ =\n field t \"function\" (funptr (double @-> ptr void @-> returning double))\n\n let params =\n field t \"params\" (ptr void)\n\n let () =\n seal t\n\n let make f =\n let gf = Ctypes.make t in\n Ctypes.setf gf function_ (fun x (_p : unit ptr) -> f x);\n Ctypes.setf gf params Ctypes.null;\n gf\n\n end\n\nend\n\nmodule Functions = struct\n\n open Types\n\n module Gsl_cheb = struct\n\n type gsl_cheb_series\n type t = gsl_cheb_series structure\n\n let t : t typ =\n typedef (structure \"gsl_cheb_series_struct\") \"gsl_cheb_series\"\n\n let alloc =\n foreign \"gsl_cheb_alloc\" (size_t @-> returning (ptr t))\n\n let free =\n foreign \"gsl_cheb_free\" (ptr t @-> returning void)\n\n let init =\n foreign \"gsl_cheb_init\"\n (ptr t @-> ptr Gsl_function.t @-> double @-> double @-> returning int)\n\n let eval =\n foreign \"gsl_cheb_eval\" (ptr t @-> double @-> returning double)\n\n let make ~a ~b (f : float -> float) (n : int) =\n let cs = alloc (Unsigned.Size_t.of_int n) in\n Gc.finalise free cs;\n let _ = init cs (Ctypes.addr (Gsl_function.make f)) a b in\n cs\n\n end\n\nend\n"
let d_88b81282d928695b2d59c26e553a895a = "t the original version, so that the original author's reputation will not be affected by problems that might be introduced by others.\n\nFinally, software patents pose a constant threat to the existence of any free program. We wish to make sure that a company cannot effectively restrict the users of a free program by obtaining a restrictive license from a patent holder. Therefore, we insist that any patent license obtained for a version of the library must be consistent with the full freedom of use specified in this license.\n\nMost GNU software, including some libraries, is covered by the ordinary GNU General Public License. This license, the GNU Lesser General Public License, applies to certain designated libraries, and is quite different from the ordinary General Public License. We use this license for certain libraries in order to permit linking those libraries into non-free programs.\n\nWhen a program is linked with a library, whether statically or using a shared library, the combination of the two is legally speaking a combined work, a derivative of the original library. The ordinary General Public License therefore permits such linking only if the entire combination fits its criteria of freedom. The Lesser General Public License permits more lax criteria for linking other code with the library.\n\nWe call this license the \"Lesser\" General Public License because it does Less to protect the user's freedom than the ordinary General Public License. It also provides other free software developers Less of an advantage over competing non-free programs. These disadvantages are the reason we use the ordinary General Public License for many libraries. However, the Lesser license provides advantages in certain special circumstances.\n\nFor example, on rare occasions, there may be a special need to encourage the widest possible use of a certain library, so that it becomes a de-facto standard. To achieve this, non-free programs must be allowed to use the library. A more frequent case is that a free library does the same job as widely used non-free libraries. In this case, there is little to gain by limiting the free library to free software only, so we use the Lesser General Public License.\n\nIn other cases, permission to use a particular library in non-free programs enables a greater number of people to use a large body of free software. For example, permission to use the GNU C Library in non-free programs enables many more people to use the whole GNU operating system, as well as its variant, the GNU/Linux operating system.\n\nAlthough the Lesser General Public License is Less protective of the users' freedom, it does ensure that the user of a program that is linked with the Library has the freedom and the wherewithal to run that program using a modified version of the Library.\n\nThe precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a \"work based on the library\" and a \"work that uses the library\". The former contains code derived from the library, whereas the latter must be combined with the library in order to run.\n\nTERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\n0. This License Agreement applies to any software library or other program which contains a notice placed by the copyright holder or other authorized party saying it may be distributed under the terms of this Lesser General Public License (also called \"this License\"). Each licensee is addressed as \"you\".\n\nA \"library\" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables.\n\nThe \"Library\", below, refers to any such software library or work which has been distributed under these terms. A \"work based on the Library\" means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, transla"
let d_8930e9c4f2d66508214d0887960de067 = "# Everything above is inherited from 'virtual' package skeleton\n\nskeleton := \"ppx_rewriter\"\nkind := \"library\"\n\n[dependencies]\nppxlib = \"0.15\"\n"
let d_894dddf3304cbcb0fe04f7c2bbd56073 = "Bonjour\n"
let d_8a6481c6c262fd51f92815856aea8cb6 = "# Everything above is inherited from 'virtual' package skeleton\n\nskeleton := \"wasm_binding\"\nkind := \"library\"\n\n[fields]\npackage-dune-libraries = \"bigstring\"\nc-names = \"main\"\nc-names-dot-c = \"main.c\"\nc-library-flags = \"\"\n"
let d_8ab1e464c6e1aeb32ec170094db54a11 = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"ppx_deriver\"\n\n[[package]]\nskeleton = \"ppx_deriver\"\ndir = \"src/!{name}\"\nkind = \"library\"\nname = \"!{name}\"\n\n[package.fields]\ndune-stanzas = \"\"\"\n ; add here in package.toml any runtime library of your ppx, \n ; also add it to the [tools] section \n (ppx_runtime_libraries )\n\"\"\"\n"
let d_8d32590c13acb3d7af1d16103a8c2747 = "#!/bin/bash\n\npath=src\noutput=dist/main.js\noptimize=\"-O3\"\n\nwhile getopts o:p:O: flag; do\n case $flag in\n o) output=${OPTARG};;\n p) path=${OPTARG};;\n O) optimize=\"-O\"${OPTARG};;\n esac\ndone\n\nsrc=( !(c-names-dot-c) )\n\nsrc=(${src[@]/#/$path/})\n\nemcc \\\n $optimize \\\n -o $output \\\n ${src[@]} \\\n -DKRML_NOUINT128 \\\n -s ALLOW_MEMORY_GROWTH=1 \\\n -s MODULARIZE=1 \\\n -s EXPORT_NAME=wasm_loader \\\n -s WASM_BIGINT=1 \\\n -s EXPORTED_FUNCTIONS='[ \"_malloc\", \"_free\", \"_reverse\"]'\n\nsed -i '1s/^/\\/\\/Provides: wasm_loader const/' $output\nsed -i '3i\\\n var ArrayBuffer = joo_global_object.ArrayBuffer;\\\n var Browser = joo_global_object.Browser;\\\n var Buffer = joo_global_object.Buffer;\\\n var Float32Array = joo_global_object.Float32Array;\\\n var Float64Array = joo_global_object.Float64Array;\\\n var Int16Array = joo_global_object.Int16Array;\\\n var Int32Array = joo_global_object.Int32Array;\\\n var Int8Array = joo_global_object.Int8Array;\\\n var Promise = joo_global_object.Promise;\\\n var TextDecoder = joo_global_object.TextDecoder;\\\n var Uint16Array = joo_global_object.Uint16Array;\\\n var Uint32Array = joo_global_object.Uint32Array;\\\n var Uint8Array = joo_global_object.Uint8Array;\\\n var WebAssembly = joo_global_object.WebAssembly;\\\n var __dirname = joo_global_object.__dirname;\\\n var __filename = joo_global_object.__filename;\\\n var clearInterval = joo_global_object.clearInterval;\\\n var console = joo_global_object.console;\\\n var crypto = joo_global_object.crypto;\\\n var fetch = joo_global_object.fetch;\\\n var importScripts = joo_global_object.importScripts;\\\n var print = joo_global_object.print;\\\n var printErr = joo_global_object.printErr;\\\n var process = joo_global_object.process;\\\n var quit = joo_global_object.quit;\\\n var read = joo_global_object.read;\\\n var readbuffer = joo_global_object.readbuffer;\\\n var readline = joo_global_object.readline;\\\n var scriptArgs = joo_global_object.scriptArgs;\\\n var setTimeout = joo_global_object.setTimeout;' $output\nsed -e :a -e '$d;N;2,7ba' -e 'P;D' -i $output\necho \"\n//Provides: wasm_ready\n//Requires: caml_failwith\nfunction wasm_ready() {\n caml_failwith('wasm not yet loaded');\n}\n\n//Provides: wasm\n//Requires: wasm_loader, wasm_ready\nvar wasm = wasm_loader().then(function(r) {\n wasm = r;\n wasm_ready = function() { return true; };\n})\" >> $output\n"
let d_8e6080b180ea2a0cf7156b8f3f90e66c = "!{header-ml}\n\nopen Js_of_ocaml\n\nlet main () =\n Dom_html.window##alert (Js.string \"hello, world\")\n!{header-ml}\n\nlet () = main ()\n"
let d_8efb055bbda950460f620053c6c93584 = "\n(executable\n (name discover)\n (libraries dune-configurator))\n"
let d_90cf3d103c0fdc2ca46d3ab246fcbb1f = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"program\"\n\n[[package]]\nskeleton = \"driver\"\ndir = \"src/!{name}\"\nkind = \"program\"\nname = \"!{name}\"\n[package.dependencies]\n!{name:alpha}_lib = \"version\"\n\n[[package]]\nskeleton = \"library\"\ndir = \"src/!{name:alpha}_lib\"\ngen-version = \"version.ml\"\nkind = \"library\"\nname = \"!{name:alpha}_lib\"\n\n"
let d_91562a084fa073c154de58d2bf08a7eb = "!{header-ml}\n\n(* If you delete or rename this file, you should add\n 'src/!{dir}/!{name}.ml' to the 'skip' field in \"drom.toml\" *)\n\nmodule Types = struct\n\n let funptr ft f =\n Ctypes.coerce (Foreign.funptr ft) (Ctypes.static_funptr ft) f\n\n module Gsl_function = struct\n\n include Gsl_types.Gsl_function\n\n let make f =\n let gf = Ctypes.make t in\n Ctypes.setf gf function_ (funptr function_type (fun x _p -> f x));\n Ctypes.setf gf params Ctypes.null;\n gf\n\n end\n\n module Gsl_cheb_series = struct\n\n include Gsl_types.Gsl_cheb_series\n\n end\n\nend\n\nmodule Functions = struct\n\n module Gsl_cheb = struct\n\n include Gsl_functions.Gsl_cheb\n\n open Types\n\n let make ~a ~b (f : float -> float) (n : int) =\n let cs = alloc (Unsigned.Size_t.of_int n) in\n Gc.finalise free cs;\n let _ = init cs (Ctypes.addr (Gsl_function.make f)) a b in\n cs\n\n end\n\nend\n"
let d_942bb117bb3dc5e8ab8ca34a6e7b9569 = "!{gitignore-programs}\n*~\n_build\n.merlin\n.vscode\n/_drom\n/_opam\n/_build\n.drom.config\n!(dot-gitignore-trailer)\n\n"
let d_98b168cea5322ce1d9575801200d6424 = "ed version of its Corresponding Source. The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information. But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed. Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n 7. Additional Terms.\n\n \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law. If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit. (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.) You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n a) Disclaiming warranty or limiting liability differently from the\n terms of sections 15 and 16 of this License; or\n\n b) Requiring preservation of specified reasonable legal notices or\n author attributions in that material or in the Appropriate Legal\n Notices displayed by works containing it; or\n\n c) Prohibiting misrepresentation of the origin of that material, or\n requiring that modified versions of such material be marked in\n reasonable ways as different from the original version; or\n\n d) Limiting the use for publicity purposes of names of licensors or\n authors of the material; or\n\n e) Declining to grant rights under trademark law for use of some\n trade names, trademarks, or service marks; or\n\n f) Requiring indemnification of licensors and authors of that\n material by anyone who conveys the material (or modified versions of\n it) with contractual assumptions of liability to the recipient, for\n any liability that these contractual assumptions directly impose on\n those licensors and authors.\n\n All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10. If the Program as you\nreceived it, or any part of it, contains a notice stating that i"
let d_9adfc789909f7913cdbb5770fb9bb9aa = "\016\164VW>S\223M+\2371\162\167\175\143W\185A\161\b\018\1922\2191\194]$ Y\138\237\185\250\215\234\174|\253Dx\230M\144&\2508cc\167\186\180\242#F\186\238X##\239\157\151\184\"H\000\139\136\017\000\011\165\191\215\179\135\225u\168\149;\166H\170\021\0299Y\211\157\238\024\169\212\166c\196\230\163\155\247=\177G<\243\255\189ud\191\196\021\207\127\000\150\028\218\220}\212f\140\232E\n1\002\164\131>\150\169\191\243\159\189u\137|\238\147\029\245\0117\030\209D\146\172\236l#F|\138\145{\159\216-q\199\n\t`\129\198\136\1859\177M,aI\027H/\141\019\189p[#\012\195#\0254FVu\230%\205\252\136\145\222g\250e\221C\143J\018\016$@\011\142\246\022\139\229r\237U\019#\189b\tK\218\000\026\024\134G\220\017#\196\200B\016$@\1474F*\021\247\148\136\179A,\225\141\027\192|\026\195\240\186\1490\135/\"\014\248L\019\153\152r\229l\169l-F\n]\183\200\175\238;.+\239yP\146\132 \001\154\208\191\177\216cb\228U\207\019b\004@\160f\031\190\2000<\162H\031;\214\215h\154i\140\232\202H\213\\,\216\1601\242\213o\190&\203\239Z/IC\144\000\139\1641\2268\238)\243\254\210#\150\016#\000\15413N\198\205\197\207\165\241)\230M\016:bDd\216\220(\248\187+ek1\162\219\250~y\255\241D\198\136\"H\128Eh\196\136\249\177G,Y\211\149\151\021K\219\004\000Z\209\209\150\185\182\025Fc\024\1904Y\179vA\004\220L\206\153>\196W_\139i\166\191{\231>,\139-\026#\1862\162\223\147\138 \001\022\200\143\024\225.\018\000?\\\027\134\191e\250\226\232\202d\181~\b#\224\023bd\0261\210\028\174\132\128\005\176\029#\250\198\189\186;O\140\000\240\221\236\195\023\025\134\135m\250\232\160\198H\218\207\206\1858:%\023F+bKZbDq5\004\220\196\139\247/\221 \2111R\020\011\184\139\004 \012\179\135\225u\027\225K\227U\230M\208\018bd\0261\210\026\130\004\184\001\141\145L.{\202!F\000$\136^D\234\236\154~1\012\143f\017#\211l\199\136\014\174k\140\232\174ZiA\144\000\2438\252@\215\227\158\235\028\019Kx\227\006\016E\012\195\163\025|\166M#F\236 H\1289\016#\000\210h\2460<\243&\152KG.#k\151\021R\255\153\166\195\235\250{b\203\186\135\030\147M;\247\165.F\020A\002\204rhS\247N\207\149\003b\t1\002 \142\024\134\199\\4F\2443-\151q$\205\252\136\145\222g^\146\180\"H\128\025\014o\238~\214\243d\175XB\140\000\136\187\217\195\240\151M\152\188?Qc\222$\133\2445\176\186+\159\234\024\169\185\158\156-\149\235\145n\203\250\175\237\144\205\187\246I\154\017$\192U\182c\132%m\000I\163q\178\1783o\190>\1547a\024>\0294F\026\179Fi\1651\242\195\015&e\188j\239\245~\223\019{\228\222'vK\218\017$\128\248\019#,i\003H\178k\243&\134n!|\165\\\179\250\b\011\162cEGN\214t\167;F*fu\240\236\021b\196/\004\tR\239\240\166\238\023L\140\236\018K\186\242fe\164H\140\000H\143b{\174\254\165\143\243\148\202\204\155$\201\202\2066YeV\197\210LcDWFl\174\004\018#\031G\144 \213\014m\238>jbd\155X\194\1466\1284\211\0271\179\135\225/\141MY\189\171\140\224\016#\254\196\200\230\157\251e\253\215\251\004\031!H\144JG{\139\197r\197}A\136\017\000\240\197\236a\248Kc\021\179z\194\188I\\\016#\254\196H\2393\253\178\238\161G\005\031G\144 u4F*\021\247\148\137\145\rb\to\220\0000?\141\019\157AX#\012\195\199\193\154\174\188\172X\218&if;F\244l\145Mfe\132\024\153\027A\130Ti\196\136G\140\000@(\024\134\1436]\233\215U\1734\155\152r\2351R5\023\0116h\140\232\233\235z\n;\230F\144 5\2507\022{\202e\1792\"\210#\150\016#\000\208\188\1980\188n%\204\225\139\225\2029\142\172\238\206\019#\196H(\b\018\164\130\198\136\227\016#\000\016E\179\231M\024\134\015\150\198\136nU\223\209\150\238s\179t\165NO`\183\165\235\1425\245\024\209\239\1841\130\004\137\231G\140\176\164\r\000\254\152\025'\227\230n\245\165\241)\230M|D\140L#F\194\197\021\021\018\141\024\001\128\248\210\139\228\198\238\133\141a\248\210d\205\218\2274i\167\241\1671R\200\166;F.\142N\201\133\209\138\216B\140,\030WUH\172\023\239_\186A\166c\164(\022\232]\164\181\203\n\215\1341\001\000\193\1856\012\127\203\244\221\236+\147\213\250!\140h\01412\141\024\137\006\130\004\137\1641\146\201eO9\022c\132%m\000\136\134\217\135/2\012\1918\196\2004\2191\162\131\235_\222\127\156\024i\002A\130\1969\252@\215\227\174\235\028\176\021#\250\198\189\182H\140\000@\212\204\030\134\215m\132/\141W\1537\185\001bd\154\0311\162+#\186\171\022\022\143 A\162h\140x\174s\204\017;x\227\006\128x\208\247k=\204O\191\024\134\159[G.S\255L\203el}J\198\211\249\145J}\0237[z\190\248\176\244\254n?1\210\002\130\004\137qhS\247N\207\149\003b\t1\002\000\241\1960\252\245\136\145i\186\147\150\205\1318\215=\244\152\244>\243\146\1605\004\t\018\225\240\230\238g\205\231\204^\177\132\024\001\128d\152=\012\159\198y\019}\164muW>\2131Rs\189\250\202\b1\018M\004\tb\143\024\001\000,D\026\135\225\245\127oc\181(\1734F\244\244u\155\007m\222\247\196\030\185\247\137\221\002;\b\018\196\154\237\024aI\027\000\146o\2460\252e\019&\239O\212\0187o\178\162#'k\186\137\017b$\250\b\018\196\0221\002\000h\149\198\201\202\206\188\249\250h\222$\t\195\240+;\219d\149\249\223\149f\149\218t\140\216\252gI\140\248\131 A,\029\218\220}\212\196\2006\177\132%m\000\192\181y\019C\183\016\190R\174Y\1579\b\n1B\140\196\rA\130\216\209\024\017b\004\000\224\163b{\174\254\165\195\224\165r|\230M\136\017\127b\164\247\153~Y\247\208\163\002\127\016$\136\141\163\189\197b\185\\{\213\196H\175X\194\0277\000\224F\2441\222\217\195\240z\134\133\205\153\004[\214\152x\210sX\210\140\024\137'\130\004\177\1601R\169\184\167D\156\rb\t1\002\000X\140\217\195\240\151\198*f\245$\026\243&\186\210\175\255\189\210lb\202\173\199\136\173\243f\244\160\195_\221w\\V\222\243\160\192_\004\t\"\175\127c\177\199\196\200\171\230\253\133\024\001\000D\130\198\137\238`\181F\194\029\134\2079\142\172\238\206\019#>\196\200W\191\249\154,\191k\189\192\127\004\t\"Mc\196q\220S\230\253\165G,!F\000\0006\1335\012\1751\162\187C\234\201\244i\166\127\175\1272\\\177\022#]w\172\145/\239?N\140\004\136 Ad5b\196\252\216#\150\240|-\000\192O\141ax\221J\216\207\195\023\137\145i\026#\231>,\139-\026#\1862\162\223\017\028\130\004\145\228G\140\240|-\000 (\179\231Ml\014\195\235_[c\164\144Mw\140\\\026\171\202\249\017b$\t\184:C\228\188x\255\210\r&F^\021K1\194\243\181\000\1280\205\140\147\241)W.\141O5=oB\140L\1878:%\023F+b\0111\018.\174\208\016)\026#\153\\VWF\138b\001K\218\000\128(\209\207\163\198\217W\141a\248\210d\237\166\243\015\250y\182biNn\235h\171oE\156f\182cDgEtf\132\024\t\015A\130\200\232\223\216\217+N\230U\135\024\001\000\164\192\181a\248[\166g!\174LV\235\231h4\030\235\210\207\177%m\142t\155?\135\016\153\230G\140\232\202\136\238\170\133\240\016$\136\132\195\015t=\238\185\2061\177\132%m\000@\1564\014_\196\252\136\145\228\226j\r\161#F\000\000\192\141\232NZ6cd\221C\143\201\255\244\242\247\137\145\136\224\138\r\161:\188\185\251Yb\004\000\000\204Gc\196\230\185.\026#\189\207\188$\136\014\214\006\017\154z\140x\178W,!F\000\000H\142\154\235\201\217R\185>\252o\203}O\236\145{\159\216-\136\022\130\004\161\176\029#\029\185L=F\024\248\003\000 \2544F~\248\193\164\149s[\026\136\145\232\"H\0168b\004\000\000\204Gw\026;{\133\024I\019\130\004\129:\188\169\251\005\019#\187\196\018\221\145duW\158\024\001\000 \0014Fte\164\153C#\231C\140D\031A\130\192\028\218\220}\212\196\2006\177Dc\164q\184\020\000\000\1367?bd\243\206\253\178\254\235}\130h#H\224\187\163\189\197b\185\\;*\158<\"\150\172\232\200\201\154nb\004\000\128$\240#Fz\159\233\151u\015=*\136>\130\004\190\210\024\169T\220S\"\206\006\177deg\155\172\234\204\011\000\000\136\191\137)\183\190\155\150\173\024\209\179E6\153\149\017b$>\b\018\248\166\017#\158'\196\b\000\000\184\142\198\136\174\140T\205\197\130\r\026#z\250\186\158\194\142\248 H\224\139\254\141\197\158rYWF\164G,!F\000\000H\142\225JM\254\238J\153\024\001A\002\2514F\028\135\024\001\000\000s\211\147\215\245\004v[\186\238XS\143\017\253\142\248!H`\149\0311\162;i\233\142Z\000\000 \254\136\017\204\198U\030\172!F\000\000\192\141\\\028\157\146\011\163\021\177\133\024I\006\174\244`\197\139\247/\221 \2111R\020\011r\142#k\151\021\164+\159\021\000\000\016\127\196\b\230C\144\160e\026#\153\\\246\148c1F\214}\162]:\2182\002\000\000\226\207v\140\232\224\186\198\136\014\178#\254\184\226CK\014?\208\245\184\205\024)d\137\017\000\000\146\132\024\193\205p\213\135\166i\140x\174s\140\024\001\000\000s9?R\177\026#\235\030z\140\024I \030\217BS\014m\234\222\233\185r@,i\196H!K\140\000\000\144\004\186\147\150\238\168e\139\198H\2393/\t\146\135\171?,\218\225\205\221\207\154o\196\b\000\000\184N\205\245\228o\175\216\141\145\245_\219A\140$\024+$X\020\141\017\207\147\189bIG.S\223M\139\024\001\000 \2544F~\248\193\164\140W]\177\229\190'\246\200\189O\236\022$\023A\130\005\243#Fte$\151q\004\000\000\196\0271\130f\017$X\144\195\155\186_01\178K,\233\202\155\149\145\"1\002\000@\018Tj\2111R\174\017#X<\130\0047uhs\247Q\019#\219\196\018=y]O`\007\000\000\241G\140\160U\004\t\230u\180\183X,W\220\023\132\024\001\000\000s\240#Fz\159\233\151u\015=*H\015\130\004s\210\024\169T\220S&F6\136%+;\219dUg^\000\000@\252\017#\176\133 \193u\0261\226\017#\000\000`\014\019Sn=F\170\230b\193\006=\232\240W\247\029\151\149\247<(H\031\130\004\031\211\191\177\216S.\155\149\017\145\030\177\132\024\001\000 9\252\136\017=}}\249]\235\005\233\196\225\015\184Fc\196q\136\017\000\00007=\236\208f\140t\221\177\134\024\001+$\152\230G\140\232\240\186\014\177\003\000\128\248\211\0249\247aYli\196\136~G\186q\181\bb\004\000\000\220\208\165\177\170\156\031!F\224\015\030\217J\185\023\239_\186\193f\140\228\028G\214.#F\000\000H\138\139\163S\196\b|\197Uc\138i\140drY\141\145\162X\1601\178\238\019\237\210\209F\231\002\000\144\004\026#\023F+b\139\206\138|y\255qb\004\031C\144\164T\255\198\206^q2\175:\150b\164\1445+#Eb\004\000\128\164\240#FteDw\213B4\245ol\239qk\217b&\235\152\235C\167G\196\027\210?\238\214\188\210So\140\157\017\159\016$)t\248\129\174\199=\2159&\150h\140\232\202H!K\140\000\000\144\004\231G*rilJl\185\227\158\007\229\203\251\142\019#\017\2278\222?8\188\185\251Y\207\243z=q6\232\141\234\236\199\234\192\169\255_\253c\1356u\155?_\206x\226\157\241\\\249\179\246\246\236\137\237\003\165\146X\224\bR\133\024\001\000\0007\162;i\233\142Z\182\172{\2321\233}\230%\129\127\222<\178O\222:\178_\002\231x\199<\215{\185opt@Z\192Ud\138\212\011\152\024\001\000\000\243 F\176(\158\179\205q2\167\014m\234:\165\179\201\210$\174$Sbz9N\246\138%\196\b\000\000\201Qs=\249\193\251\019Vc\228\190'\246\016#\169\225\244fs\217\183\015m\238:\170s(\178H\\M\166\128\237\024\233\200e\228\151\150/!F\000\000H\000\141\017=}}\188\234\138-\026#\247>\177[\1442\245\021\147\252\162WK\184\162L8?bDWFr\025\198\143\000\000\136\187J\205\172\140\\&F`U\143\174\150\028\222\212\189k\161\255\001\130$\193\014m\238>j3F\244\176Cb\004\000\128d\208\024\209\149\145r\141\024\129}\158\200\011zc|!\127.A\146P\026#\230\149\176M,\209\024\185\243\150\0021\002\000@\002\248\017#\189\207\244\019#\248\024\1891\190\144(!H\018\230ho\177\168;\029\216\140\145\021\029\2111\002\000\000\226\207\175\024Y\247\208\163\002\204V\143\146M]\143\220\232\207!H\018Dc\164RqO\233N\007b\201\202\2066Y\211M\140\000\000\144\004\019S\174\213\024\209\131\014\127u\255qb\0047\225\220p\247-\130$!\2507\022{4FL\1336\189\007\244l\026#\171:\243\002\000\000\226\207\143\024\249\2347_\147;\191\248\176\0007\226\137\020\029\167\237\232|\255>A\146\000\026#\142C\140\000\000\128\185\rWj\245\024\169\154\139\005\027\186\238XS\143\145\229w\173\023\132\235\242\217w\228\191}\171_\162\207\233\157o\231-&\148c\174\017#\230\199\030\177dMW^V,m\019\000\000\016\127z\216\161\158\192nK#F\244;\194\245\238\201W\228\244\193=R\030\249P\226\192\132G)_\200\220\185}\160T\154\249\199Y!\1371?bD\135\215\137\017\000\000\146\129\024I.\141\145\129\231wX\143\145\156\227\212\207\157[\190$']\249L\253g[\244\209\173\201I\247\186U\018VHb\202v\140\232\139ouw\190\190\189/\000\000\136\191\139\163Sra\180\"\182\016#\209\241\206\183^\146\215\015\236\017\1554>\244q\253\174|\246\186\127\175\\\243d\164R\171\191\166Z\157A\210U\146o\156\030^6\235\143!n^\188\127\233\134L.{\202\252\195+\138\005\026#z\224aG\027\011f\000\000$\0011\146\\o\030\217'o\029\217/\182\020\178N\253\t\153\185Bd.\023\205\235\234\130y}\181\194\243\220-}\131\163\003\141\127\205\021h\204\016#\000\000\224F"
let d_9b22080283c5dc8547d0ff4efce13080 = "Programs\n\n If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n To do so, attach the following notices to the program. It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n <one line to give the program's name and a brief idea of what it does.>\n Copyright (C) <years> <name of author>\n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n <program> Copyright (C) <years> <name of author>\n This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n This is free software, and you are welcome to redistribute it\n under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License. Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<http://www.gnu.org/licenses/>.\n\n The GNU General Public License does not permit incorporating your program\ninto proprietary programs. If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library. If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License. But first, please read\n<http://www.gnu.org/philosophy/why-not-lgpl.html>.\n\"\"\"\n"
let d_9bd57fa717d699371d55f76e803b6287 = "module Apply (T : Cstubs.Types.TYPE) = struct\n open Ctypes\n open T\n\n module Gsl_function = struct\n type gsl_function\n\n type t = gsl_function structure\n\n let t : t typ = typedef (structure \"gsl_function_struct\") \"gsl_function\"\n\n let function_type = double @-> ptr void @-> returning double\n\n let function_ = field t \"function\" (static_funptr function_type)\n\n let params = field t \"params\" (ptr void)\n\n let () = seal t\n end\n\n module Gsl_cheb_series = struct\n type gsl_cheb_series\n\n type t = gsl_cheb_series structure\n\n let t : t typ =\n typedef (structure \"gsl_cheb_series_struct\") \"gsl_cheb_series\"\n end\nend\n"
let d_a01c7355100953a78c66cbb408c918f7 = "[skeleton]\nname = \"mini_lib\"\ninherits = \"virtual\"\n"
let d_a0495365fc1cf5117fa2a6b838453d7f = "; generated by drom from package skeleton 'js_driver'\n\n(executable\n (name main)\n (libraries !{dune-libraries} !(package-dune-libraries))\n (modes js)\n (preprocess (pps js_of_ocaml-ppx)) \n !{dune-stanzas}\n )\n\n(install\n (files (main.bc.js as www/js/!{name}.js))\n (section share)\n (package !{name}))\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n\n"
let d_a07a95e5dbb3d0b6427541ea34ec5fb0 = "[project]\ndrom-version = \"0.1.0\"\n\n[project]\nauthors = [!{authors-for-toml}]\ncopyright = \"!{copyright}\"\nedition = \"!{edition}\"\ngithub-organization = \"!{github-organization}\"\nlicense = \"!{license-name}\"\nmin-edition = \"!{min-edition}\"\nmode = \"binary\"\nname = \"!{name}\"\nsynopsis = \"The !{name} project\"\nversion = \"0.1.0\"\nwindows-ci = true\n\n# keys that you could also define:\n# sphinx-target = \"...sphinx-target...\"\n# archive = \"...archive...\"\n# dev-repo = \"...dev-repo...\"\n# bug-reports = \"...bug-reports...\"\n# doc-api = \"...doc-api...\"\n# doc-gen = \"...doc-gen...\"\n# homepage = \"...homepage...\"\n\n[project]\ndescription = \"\"\"\nThis is the description\nof the !{name} OCaml project\n\"\"\"\n\n[drom]\nskip = \"\"\n\n[dependencies]\n\n[tools.ocamlformat]\nfor-test = true\n[tools.odoc]\nfor-doc = true\n[tools.ppx_expect]\nfor-test = true\n[tools.ppx_inline_test]\nfor-test = true\n\n[project]\npack-modules = true\nskip-dirs = []\n\n"
let d_a2d71220896f42ed29a29adbcbd5ad3d = "# Everything above is inherited from 'virtual' package skeleton\n\nskeleton := \"c_binding\"\nkind := \"library\"\n\n[fields]\nc-names = \"!{name}_stubs\"\nc-library-flags = \"-lgsl\"\n"
let d_a33fb556fa8dc981025e4b5b4d1f5a2d = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"ctypes_stubs\"\n\n[[package]]\nskeleton = \"ctypes_lib_stubs\"\ndir = \"src/!{name:alpha}_lib\"\ngen-version = \"version.ml\"\nkind = \"library\"\nname = \"!{name:alpha}\"\n\n[[package]]\nskeleton = \"ctypes_drv\"\ndir = \"src/!{name}_prog\"\nkind = \"program\"\nname = \"!{name:alpha}_prog\"\n[package.dependencies]\n!{name:alpha} = \"version\"\n[package.fields]\nlib-name = \"!{name:alpha}\"\n"
let d_a418dff22d936df0dec84c3a298b93f5 = "# Everything above is inherited from 'virtual' package skeleton\n\nskeleton := \"ctypes_lib_stubs\"\nkind := \"library\"\n\npack-modules = false\n\n[dependencies]\nctypes = { libname = \"ctypes ctypes.stubs\" }\nctypes-foreign = { libname = \"ctypes.foreign\" }\n\n[tools]\ndune-configurator = \"\"\nconf-gsl = \"\"\n\n[fields]\nlocal-deps = \"gsl_types gsl_functions\"\n"
let d_a44048bcc870cb4a37dbb5c0d8a86810 = "(rule\n (target hello.esc)\n (deps hello.html)\n (action (system \"sed 's/\\\\\\\"/\\\\\\\\\\\\\\\"/g' %{deps} > %{target}\")))\n\n(rule\n (target templates.ml)\n (action\n (write-file %{target}\n \"let hello = \\\"%{read-lines:hello.esc}\\\"\")))\n\n(library\n (name templates)\n (public_name !{name}.templates)\n (modules templates))\n"
let d_a5bbb0a95cf13795a74e9eb7e9644ec8 = "<div>\n Hello world!\n</div>\n"
let d_a63dae8523c2536e68aaad9cafd42841 = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"vue\"\nbuild-profile = \"release\"\n\n[[package]]\nskeleton = \"js_driver\"\ndir = \"src/!{name:alpha}\"\nname = \"!{name:alpha}\"\n\n[[package]]\nskeleton = \"vue_library\"\ndir = \"src/!{name:alpha}_lib\"\nname = \"!{name:alpha}_lib\"\n"
let d_a7fe678de08d68cfe7ac7113610e6419 = "t\184{\0251\002D\205\156\159\178\253\027;{\029'sJ\154\240\185O.\177z\006\128\206\145\252\213\207'\234\223\023\139\199\182>\174\250\167\255v:D\002\160+&\153\187~E\178\235\217~\025\243k\156\012\175\135/\218<K\192\182\198\201\240\203\204\234\tq\018-z\195\234'\195\021k\023zz\168\238\151\247\031'F\"@cd\224y{\179\160\026#\1862\018\2449E\250\026\213\019\216-\026\242\188\202\150\190\193\201!\001\018b\206O\214V\006\219\239\188%o>\184\237\174\146\212\015\181j\226\244R\030\219\154\166\143eM\253\209\255\187\190:\0184\134\225\177P\026'\127m\194\228\199\127\254Z\164\135\2255L\138\237\012\195G\129\237\011=\141\017]\025\209\239\b\215;\223zI^?\176Gl!F\128h\155\243\145\173\239\014MN~uuAgH\022}b\187\222=\\\214n\247\131Z\015\183\250\176\137 \209\199\182:\150\223&+~\249~I+\141\144\169\255\240[\226\r\1836+\210\180Z\165\254\223\161\246\223\166\135\231\245g\231\150\149\226,].\192Lz\227`\205\198/}\236\240\197(\158\012\175\155l\232v\228\141\195\0239\025>\028:[\248\227ab$\137\222<\178O\254k\255sbKX1b\2515*\196\b\018l\222\237%\190\178\186\240\247\205\183\141\178H~\204\145,i\203\200{cS\210\012\141\146u\015?&i\164\0170\245\173\255W=\n\"\161<:\029'g\254\168\030'\202Yz+\243&\184\142^\0206N\134\2159\176l\190\016\185G\186t\222d\230\201\240\186k\206\146\\\134G\186\002pqtJ~:j\239}\141\024\137\014\141\145\183\142\216;J\163\195\252N\222\029B\140\216~\141\n1\130\132\155\247\147\243\165M]\143d\196yU\154`{\142D5\251\216\150\218\246\221\243\169{lKc\164\250\154\189;L~\210-\1323\191\252\149\250wv\234\194|t\168u\232\207_\187\182\141pT\233\005\144\222\148\233\206g\216\169\203\007z\161w\193\226\133\158\206\138\232\204\b1\018>?bDWFr\001\223$\176\253\026u\0289\227\186\149\173\196\b\146l\222\021\146/\173\237\248Y[\205k\234XZ\253\016\238\180\188\183w\179\143m\169\\\161p\237\017\1444\168?\166\165+#1\1613.\238\217?\155\222\169\235\231gE\170\021\201\172\224|\019|\\\174\208^?\025^W<\027'\195\235\172\201\196\007?\151(\1532\239U\165\242\199O\134\215GFt\199.\180\198\143\024\209\149\145\142\229+\004\225z\253\224n9\243\031\014\136-]\230\134\128\238\166\149\132\024\201\2313[\254\249\247G\127&@\130\221\2407\245\240\166\238\183=\145\r\178H\186#\205g\204]\t\155Z9\181]\135\219\183\255It\135dm\170\015\176\255\239\223h\249|\145\176];|\145ax\220\132>\202\165\195\240Q>|Q\207=\208Ax\014_l\222\249\145\138\\j\242\209\221\185\220q\207\131\242\229}\1999\171*\002\006\158\239\147w-\158O\164\027O\220i\249L\180\133\176\253\0265\159\232\003\133Bv\235\246\129RI\128\132\187\225'c\179s$z\000\233m\0299\171w\004\245\175\165w\027\245\148\211E\255\247\169\148\235wV\245\028\132\164\155:\246X\236c\164\1741o\1940<nB\239n7\230M\162:\012\175\235$3\231M\024\134_\028\221\165\232\023\227\139?\143j>\186\194\166\143i\233\170\027\194\163\143a~\255\127{:\0171b\2515j\238\193\190\22078\178\245\219C\147\147\002\164\192\r\131\228\225O\181M:\142\179M\022I\147\225\150B\214\250\135\173>\246\208\204!\137j\226\242\207\019?\220^\253/\255\174\254\232S\226\204\028\134\215\255}\185\002\135/bN3\135\225\187\238\248t\253\143\149~|V\162d\2460\188\202\155\2476\134\225\231\166\023z\205\190\239\207Ec\164\247\153\151\004\225\210\024\209\211\215\127\242\023\127*\182\172\236l\1475\221\193\198\136>N\254\227\225\138\213\215\232t\140\012o\019 En\248\t\168\231\145\180\151\221s\230O*\202\"\233\163\t\127\207\242]\138V\014IT\255\244\155\175\213\151\233\147HWE*\135\254\169\164\201\181a\248\187\127\165~\222\t0\151\198\225\139Q\031\134o\028\190\2000\2524\189\208\211\205L4\222l\185\239\137=r\239\019M\141F\194\162F\140\216\2209OcdUg^\130\228\199k\212\\\222<gbd\175\000)s\211[r\1356u\1572\127Z\175,R\214q\228\158\021\029b\219\197\209\138\\\024m\238\025\205$\159\220^=\249\156\212\222\249\142\164\149\158\b\175'\195\235\t\241\192|4Nt\167.=\025>\202\135/\022\0119Y\214>\029(iD\140$\151\254\222i\140\216\252\253#F\128\248\187\233t\229C\171\218\151\153\182\248\199\178H\186\134\161\195\155\182\031\219\210\208\249E\147K\163#?;/\171>\255\133\196m\239\168\171#\026$i\166\143t\185\127\243\127~4obVLt\230\004\152I\007\152W|\246\254\250#]\250hW\1812\025\201\195\023'kn}\167\174\159\143U\235?\167i\222D\231\004\255\198\\\232\233\255n[\136\145hHJ\140\248\241\026%F\144v7\r\146/\221\181\228\135\205n\255\155ut\150\196\238\029\190\182l\243\195\237J\223\b\1476K\162s\021\137\156\029i\198\236ax\019k\206\242\030\230Mp\157\185\134\225G\205M\011\221\004#*\230\026\134\215\199\185t\230$\137\244}]\239:\151\137\145\196\241#Ftx\253v\203\0071\223\140\031\175Qb\004X\192#[\170\149\199\182\254\193'\151X\031\214\212\003\018\245\r\161YI\155%\153:\250\152\184\230\"\028\243sn\187[\178\247\253&\135/\226\166t\199\159\161\239}\199|E\247\241N\221\224cEG[\253\177\174\164\204\155\248q\161\215\251L\191\172{\232QA\184\252\138\145\160\031i\244'F\188\237}\131#\199\004H\185\005m\136\255\240\167\218\2394m\209+\139\228\223n[\025s\183\176\214\244p{\146VI\234\143k\253\2177\00571v\249\163\195\023\127\242\151\245?\228\020\239\016'\023\252\246\144\1366\221\"|\237\151~\253\218\225\139:\128\171+'Q\162\011\196zP\236\204\195\023s\230m6\174;u\017#\201\165\131\235'\254\197\151d\252\178\157\003L\245L\159\187?\209nb\156\024\001\146dAA\242\149O-\025r\028o\1514\161l~\137\253\186\139\209\236\201\237:Kr\235]\159K\196\185$<\174\181x\215N\134\031|Ydx\250\204\022}\172\011\152I\231Mf\158\012\223\181\242\211R\250\241\143\"7o\162\023J\141\147\225\199\167\188\250\141\160\142\182\248\172\154LL\185\242\163+ek\023z\250\207\237\031\253\171\163\245\168D\1844FteD\163\222\006\141\145u&F:\003>\\T_\163\127syR\166\220\230n\130\206f\254*%\241\220\127\21078zB\000\212-\248vZ\179\143m\169{n\235\176~\231\174\213-\128u\176\253\215\143}?\246\167\244V\255\244\255k\238\250\255GAk8\025\030\0115s\011\225\168\238\212\165\143t\2336\194Q?\025^/\244\244\174s\213\179s\161\167\239\231_\253\230k\178\220\132$\194\245\238\201W\228\244\193=\214bD_\211k\139\237\129\199\182\237\215\168\198\136[\173my\234\141\1773\002\224\154\005\127R5\251\216\150\210\003\219m\127(\234\201\237z/\176\241\184\194b\233]\206\\\161pm\1525\174j\127\241\255K\198\201\236a\1555\012\175\255\186~2<\195\240\152e\230\225\139Q\029\134\159}\248b\020\135\225\135\205\n\247Y\1792b\235BO\255\185<\244o\255\136\024\137\000\141\145\129\231wX\251\157\208\024\209\149\145%\185`c\228J\185*\127k\2415j\012\153\024\249'\196\bp\189\005\127:\233!\137K\202\238\021iB\135y\019\249\236\173K\196\182VWI\212\255\244\242\247c\253\001\166\135!\018$\254\185v\248\"\195\240\184\001\189\011\172\231\155D\253\240E}/^\177\180-\244\195\023\245Tk=\129\221\022\141\017]\025I\218\150\238q\244\206\183^\146\215\015\236\017[\0261\018\244\182\215\182_\163\198\144\231U\182\244\rN\014\t\128\235,\234vY+\143m}\198\188\161t\249\240\232@+\007%*\141\017\141\146\184*\255\175\247\011\130\193\201\240X\136\198\201\240z\248\162\205\147\168mk\156\012\191\172\144\rt\024\158\024I\1747\143\236\147\183\142\236\023[\194\138\145KcU9?B\140\000AZT!4{H\162\242k\184]?T[\217qk\226\131\159\215\171,\174\143n\213\254\203\191\019\004\1631\012\239\190\253G\226}0\196\225\139\152Sc\024\254\151\182\254V}\024^\223\153\244}&\170\195\240\239\141MM\159\235d\222\b\253~$\230\162\185yt~\164\"\182\016#\209\145\148\024\209\215\232OG\237\189F\133\024\001\022dQ\183\197\244\177\173\246\178{\206\252\135\138\210\004?\134\219Ui\178*gK\173\221\205\136\235\217$\172\144\132\235\2180\252}\191Y?\235\004\152O\218\135\225\245B\239\194(1\146D\182cD\031-\212\024\201\005\188\141\181\237\215\168\016#\192\130-\250\183\253\208\166\238\003\230\219Ni\194\202\2066Y\213\153\023?\232.\024#Mn\003\172\226\186\235\022A\018\029\026'\245\195\023\239\234e\222\0047\164\135.\158\251\222w\228G'\143KTi\156\020\011\217\250I\216\173\206\155\216\190\208\211Gm5F\226\190Kb\018\016#ss\0289\147\207g\182l\031(\149\004\192M-\2507\190\127cg\175\227dNI\019\252:\185]\181zz\187Z\249\249\007\229\171/F\247t\230\185\016$\2094\189j\242\027\2458\001\230\147\244a\248\154\235\201\133\177)\1854\214\252\156\223l\196Ht\012<\223'\239Z\140j}\172[O`\015\0261\002\132o\209k\242\175\253\1802\244\149\213\249^\243+\215#\139\164\207R\251\177\005\176\210\231L]\207\147\209\169\230\015\215\210\003\019\2276O\194\012I\244h\132d7>.\153\191\183Y\128\027\201\021\218?v\248\162\158\012\175\143s\233\204I\148\232\129p\141\195\023\027[\173\235\n\138n\191>\031\029^\255\031\031V\228\195r\243+\215\179\233\223\163\127\244\175\254=1\018\001I\137\017\221`\225\210\184\189`6\151!/?yz\248\159|{h\178\181;\164@\2024\181T\241\210?\236\222\149\201\200\011\210\004?WIll\003\172z\127\183\223\\ <*q\192\nI4\232\128{\198\172\136d\239\255Mv\224B\2034J\254\250\015^\146\031\155\213\147\168\206\155\168b!'\029m\206\181\193c]\017\025\171\186\242\225d\205\230\217\ru\026#\189\207\188$\b\151\174\234\233\233\2356w\144\243\243q\238\027\209\024\209p\182Ec\164opx\155\000X\180\166\170\160\213\225v?\223|l\012\184\171\184\156OB\144\132\139\016\129\223\2260\012\239\183\245_\219!\155w\237\019\132+)1\162\225\172\215\t\173\204\157\206fb\2289\019#{\005@S\154^\166\232\223\216\189\215,v<+M\240s\149D\233\233\191\165rkw=\242\157\183\200?}\241\181\200G\tA\018\158\236\003\255\156\016A\160t\024^O\193\214\239iq\223\019{\228\222'v\011\194\1651\252\221\221\143&\"Ft\222t\188\218\252\227\221\179\017#@\235\154.\130VNnW~\190\017\217ztK\163DWJ\162\188\173$A\018<g\245\189\210\246\240\179\236\164\133\2084\014_\140\2500|\171\136\145h\208\215\155\174\140\216\\\161\011#F\244\188\157\179W\136\017 \138ZZ\1620\171$\199\204b\199\227\210\004\191WIl\236\186\165\162\190RB\144\004GWB\178\015\254\243\250\214\190@T\232E\162\238\212\165'\195'\233\145.b$\026\252\136\1455]\249\250\174mA\210\024\209k\130r\141\024\001\162\168\165\237\174\190\242\169\182\146\2278\219\164\t~\238\184\165l\236\186\165j\149\178\252\237\255\245\135r\251g\239\143\228J\t\187l\005CWC\218\254\217Q\201\252\189M\002D\137\2388\181\194\188?\173\255\250\014\185\243\139_\145je\178~*|\212N\134_\140\205;\247\203\134\127\246\180 \\~\196\136\238\164u[G\252c\196\\\190<\253\228\224\176\189\003X\128\148kyy\226\208\166\174S\230/\211+M\240{\149D\253\224\253\tk\203\179\155w\238\171\127\232G\t+$\254\203\254\242W$\251\165\223aV\004\177\210x\164Kw\234\210a\228\184\232}\166_\214=\020\143]\014\147LgEtf\196V\140\228\204\231\253\234\238|}{\223 \249\1792\226m\239\027\0289&\000\172iyy\226\225O\229\127\220\202*\137\190E\220R\240g\149D\234\127\237\\}\255\252\154\133-(\127\242\023\127\026\185sJX!\241W\238\129\127.\185/\253\207\226\228\130\223\031\031h\133\174\232\234\138\137\1744t\221\241\233\250\031+\253\248\172D\149\174\244|\225_\030 F\"@cDWF\198/\2199\015GcDO_\247\243\179~.\019S\174\252\232J\217Z\140\152\171\136\146\169\145>b\004\176\207\202\210D+\171$\234\179\203\151HG\219\194O\255],[\243$\r:O\242\229\253\199#\241\b\023+$\254\209\024\201>\248/\004H\138\168\014\195k\140\232\233\235q\216j=\233\244\245\241'fe\196\214\170Z#F\252\252\140\159\139\198\136~\238\219:\015Gc\196\173\214\182<\245\198\216\025\001`\157\149\219\021\173\172\146\168I\179\164\234\2312\174\206\147\232\155\226\135\150\246\028\215S\148u\1364o>Do\189\235s\018&VH\252A\140 \137\n\245\247\172\143N\134\239Z\249i\179j\242\163P\231M\244\198\206#\191\255\167R\252\244\221\130p\233\150\210\127\178\251\177\250\236\164\r\133\172#\127\127y\187,\201\005\027#\195\230\179^\183\255'F\128\248\176\018$\175\253\1802\244\149\213\249^\179J\210#M\208g<5\026\252\188\131\210\153\207\214\151\131F*v\150n\245\003\\\207\002\0245w\028\151\155(\209\015\2500\016$\246e\239\251\r\201\245\254?\005H\178(\012\195\235\129\135\255\232_\253{\233X\190B\016.\141\145\129\231\237\205Hj\140\232\202\136~\182\007IO^\255\219RY\236M\140\200\144x\149M;\254\235\196\015\005\128o\172M\147\247o\236\236u\156\204)iR\016\003\238\234'#e\249\217Xk\135&\206\229\190'v\203\189O\236\145\160\241\200\150]\245\221\180\182\191\194\000;R+\136a\248;\238yP\238\251\173=\178\210|G\248\222<\178O\222:bo\195\1680c\228\220\135vVw\174\026\242\188\202\150\190\193\201!\001\224+\171W\255\173\156K\162t_r\221\159\220o\250\134\165o\\\182\233\163\007=_x\184~\1991\168\249\018\130\196\174\252\147\255\137\003\015\001CcD\031M\1819oB\136DORb\228\226\232\148\\\024\173\136E\196\b\016 \203AR\236\017\199}\219\252E\139\210\164\207\1527\178\174\188\255;q\248\021%\r:\156"
let d_a9017e42c913a2441d706f000523f2e8 = "Public License, version 2, instead of to this License. (If a newer version than version 2 of the ordinary GNU General Public License has appeared, then you can specify that version instead if you wish.) Do not make any other change in these notices.\n\nOnce this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy.\n\nThis option is useful when you wish to copy part of the code of the Library into a program that is not a library.\n\n4. You may copy and distribute the Library (or a portion or derivative of it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange.\n\nIf distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code.\n\n5. A program that contains no derivative of any portion of the Library, but is designed to work with the Library by being compiled or linked with it, is called a \"work that uses the Library\". Such a work, in isolation, is not a derivative work of the Library, and therefore falls outside the scope of this License.\n\nHowever, linking a \"work that uses the Library\" with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a \"work that uses the library\". The executable is therefore covered by this License. Section 6 states terms for distribution of such executables.\n\nWhen a \"work that uses the Library\" uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law.\n\nIf such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.)\n\nOtherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself.\n\n6. As an exception to the Sections above, you may also combine or link a \"work that uses the Library\" with the Library to produce a work containing portions of the Library, and distribute that work under terms of your choice, provided that the terms permit modification of the work for the customer's own use and reverse engineering for debugging such modifications.\n\nYou must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things:\n\n a) Accompany the work with the complete corresponding machine-readable source code for the Library including whatever changes were used in the work (which must be distributed under Sections 1 and 2 above); and, if the work is an executable linked with the Library, with the complete machine-readable \"work that uses the Library\", as object code and"
let d_a98c0be46aea258cebf09cbf2d202ad4 = "# Everything above is inherited from 'virtual' package skeleton\n\nskeleton := \"ppx_deriver\"\nkind := \"library\"\n\n[dependencies]\nppxlib = \"0.15\"\n\n"
let d_aa031e82a008000f7f572c34f8047274 = "#define CAML_NAME_SPACE\n#include \"caml/mlvalues.h\"\n#include \"caml/bigarray.h\"\n#include \"main.h\"\n\nCAMLprim value ml_reverse(value buf) {\n reverse(Caml_ba_data_val(buf), Caml_ba_array_val(buf)->dim[0]);\n return Val_unit;\n}\n"
let d_acdba811123cdda4400cd19c2868c569 = "\214\182<\245\198\216\025\1935\190\253S\189\026#\167\204\143=b\0011\002\000@r\012Wj\196HB\157\251\222w\172\198H\227\172\185\160c\228J\185j\2455j\012\017#s\243m\133\196qj/\152\255\219#\022\172\233\202\203\138\165m\002\000\000\226OO\181\214\211\173m\233\186cM=F\244;\194\245\238\201Wd\224\249\029bKX\007_\219~\141\026C\158W1129$\184\142/AruG\173G\196\1300\006\151\000\000\128?\136\145\228z\231[/\201\235\007\246\136-I\139\145\190Abd>\214\135\218m\014\177\019#\000\000$\199\197\209)\1850Z\017[\136\145\232x\243\200>y\235\200~\177%\172\024\177\253\026\021bdA\172^\237\219\028b'F\000\000H\014b$\185\136\145y\017#\011d\245\138\223\017\247Y\1770\196N\140\000\000\144\028\182/\244tp]cD\007\217\017.\2191\210\145\203\212c$\151\t\236\236\238:\219\175Q\199\1453\249|f\203\246\129\201\146\224\166\172\165g\255\198\174m\166H\182I\139t\128\157\024\001\000 \025\136\145\228\"F\230\246Q\140\148\136\145\005\178\242O\220\214\022\191l\237\011\000@r\232`\176\014\b\219\178\238\161\199d\211\206}\196H\004\012<\223'\239\158<.\182\232\205h}B&h\182_\163\158'/\183\183gv\017#\139ce)\194\198\163Z+:r\196\b\000\000\t\225G\140\244>\243\146 |\196\200\2204F\250\006\135\183\t\022\173\229\021\018\027\187j\233\240\210\231>\217!\000\000 \222j\174g.\244*\245C\229lY\255\181\029\178y\215>A\184\244\160\195?\217\253\168\\|\251\251b\139\222\144^\211\029l\140\232k\244l\169,#\149\154Xt\240\201\211\195\187\004Miy\133\196\196HK\187j5vR\000\000\000\241\166\023zz\178\245x\213\021[\238{b\143\220\251\196nA\1844F\244\244\245\203g\223\017[\194xT\223\143\215\168Y\025y\206\172\140\236\0214\173\165\161\246\250 {\139\143j\173\238\206\007\190\173\027\000\000\176\171R#F\146j\228\189\243\137\136\017?^\163\196\136\029M?\178u\180\183X,\151]}T\171G\154\020\230\016\187\022\242\164yaN\152\023e\185\166_^\253\143\231\204\223\145l\198\169GR\222\172\222t\231\179\002\000\000\230\215\184\208\211\207S[\136\145hh\196\136~\183%\204\024\177\249\026%F\236i\250\145\173J\197\221)-\196\136>\170\021\1982\157\014/])\215db\202\149\170\231-\232?\215e\162dY\193|\181gM\164\176\154\003\000@\131\031\023z\155w\238\151\245_\239\019\132\203\143\024\209\227\029V,m\147 \249\241\0265\247\175\159~rp\248\128\192\138\166VHll\243\251\185O.\t\236Q-\r\145\159\141W\229\231cS\011\142\144\249h\156\232n\016\221\249\012q\002\000H5?.\244z\159\233\151u\015=*\b\151\0311\018\198\193\215\254\172\140x\219\251\006G\142\t\172i\234U\145\201\184\143\155\235\250\030i\146.\213\005\021#\151\198\170rq\180\210r\1364\232\142\012\141]\025\138\133\\}\213\132\131\028\001\000iC\140$\151\206\138|w\247\163\214b$\2318\245\153\225\160\175\151\244i\024\221M\203\214k\212\\I\150L\141<M\140\216\183\232\021\146VWG\130\218\226W\223(\255\199\135\214\183t\155\147\254\162\021M\152,\175\175\1560s\002\000H6\189\208\211\024\177u\179O\015:\212\211\215\245\020v\132KcDWFtW-\027\244\026IwS\237h\011\246\169\018\219\175Q\141\017\183Z\219\242\212\027cg\004\214-:U3\142\251\136\215\210 \187\255s#\182\139\248f\244\197\174\179)\250\165\193\165\143u\221\214\209&K\219x\164\011\000\144,\196Hr\233\249\"z\206\b1\242q\196\136\255\022\029$\230\031\202NiR\177\224\255\227M\026\005?\025\182\247\136\214b\233n]\229\171q\210\145\203\212\007\183\1527\001\000$\129\237\207\216\174;\214\212cD\191#\\\239\158|E\006\158\223!\1824\206\153\011\250h\007}\141\234\t\236\022\r\137W1129$\240\205\162\234\160\213sG\214t\251\187:\226\195\139\176%\186\207u\227\191Oc\024^w\235\210m\133\001\000\136\019\219\159\177\196Ht\016#\243\026\242L\140\244\r\018#~[T\144d\028gg\179\247D\244b\220\207\023\166.\207E)Ffk\012\195\159\147\233\191\023:s\178\172\1920<\000 \250t\131\152\243#\196H\018\189yd\159\188ud\191\216\018V\140\\\028\157\146\011\163\021\177\136\024\t\208\130o\213\255\254\230\165\027\\/\251\1824\201\207m~\253\216\233#\b\141y\019\134\225\001\000Qe\251B\143\024\137\014bd^\196H\192\022|\139\222u\179;\155=\215\221\207\213\017=c$\1421\162f\206\155\232/\177\206\216\220\190\180\141y\019\000@$\216\190\208\211\193\245/\239?N\140D\128\237\024\209\185Y\141\145\\\192\143\165\219~\141:\142\156q\221\202Vb$X\011\127f\200\145^i\146\158;\226\151\011cS\177\140\145\2174N.\141W\235_\012\195\003\000\194\230G\140\232\202\136\238\170\133p\017#s\211\024\201\2313[\182\015L\150\004\129ZP\144\1802\204\222e.\170\253Z\029\209\149\133K&H\146\134ax\000@\152\206\143T\172~\190\222q\207\131\242\229}\199\137\145\b\024x\190O\222=y\\l\209k\148\213]\249\192c\196\246kT\196;\145\207g\183o\031(\017#!XP\144\152\215\216\1755;\204\190\162\195\159\213\017}TK\2038\233\024\134\007\000\004Io\136\233\r?[\214=\244\152\244>\243\146 |~\196\200\157\183\020$h\182_\163\158'/\247\r\142l\019\132\230\1669{\245d\246s\210\004?Oe\183\185L\167wn\238\252\226W\164\208y\139\012\191\247\227\250)\165\239\189\253}k\007\003\217\1980<\000\1926\189\209\167w\157\137\145\228\209\235\025=\240P\015>\180eEGN\214t\007\027#~\188F\167cdx\155 T\011\184\213^\235\149&\167\217\151\251t\b\162\238\170e#F4D\182\252n\255\188\195uC\223{\173\1907\183~\143\146\217\195\240\203\151\180\201'\151d\1537\001\0004\165\177A\140>2l\203}O\236\145{\159\216-\b\151\198\200\031\255\246\195\245\155\173\182\232l\240\170N\127\207\150\155\205\143\215\168\137\145\231L\140\236\021\132\238\166\165qhS\215)\243\167\245J\019\252\218\234\215\198R\221b\222(G\222;_\191\171\240\238k\175\212WN\162\1701o\1940<\000`\161\136\145\228\210\235\151\239\154\149\017b\228z\196H\180\2200H^\232-\022\151\148\221+\210\004\029f\255\204'\150\136m\186:\242W\191\024\151V\180\242F\217\136\147\183\142\236\171\255\028U\1418\185u\t\243&\000\128\185\249q\142\0231\018\rz\141\162+#6\175U\194\136\017?^\163\196H\244\220p\000\225\145\219\219~\195q\156G\164\t\250\130\237h\179\127\151^\159\029l\165\144\215\127m\135\252\195\029{\165Y\186C\200\173w\173\151\245_\223Q\159;\169V&\1652\250a\253+J\244\023\184T\174\201\207\199\1702i~\137u\135\174\002\171&\000\128\171\136\145\228\242#F\214t\229\229\014b\004>\185\225\n\201\161\141\221G\205\159\177M\154\224\199\227Z\173\174\142\232\172\200\175\031\251\190/\219\0146\030\233\250\241\159\191\022\249a\248\219:\218di\027q\002\000i\229\199\133^\2393\253\178\238\161G\005\225\242#Ft'\173\160\159\184\240'F\188\237}\131#\199\004\145s\227 \217\212\173\187k\245\200\"\021\0119\185k\153\253\157\023Z\157\029y\244\015\223\t\228tX\221Ro\232{\223\137\2200\252L\026'\186%\243\178v\134\225\001 M\136\145\228\"F\230G\140D\219\188A\210\191\177\179\215q2\167\164\t~\188x\245\197\249\223\222\159\144\154\215\220\137(w\1557\202-\230\r3H\012\195\003\000\162db\202\149\179\165\178\181\011=}\226\224W\247\029\151\149\247<(\b\151\014\174k\140\216zJ#\2318\245\211\215;\002~\162B_\163\026#U\175\217\019\240>\206\252UJ\226\185[\251\006G\007\004\1455o5x^f\131\211\228\161\155:\208n\219p\165\214t\140\232\170\136>\215\0264\253\127w\221\029\143\214\239\026i\156\012\253\249k\242\206\031\188\020\185a\248\198\225\139JW\183t\213\132ax\000H\022\219\023z\026#_\253\230k\178\252\174\245\130p\017#s\211\024q\171\181-O\1891vF\016i\243\014\181\127uM~\159Y@\233\145E\210\024\185}\169\253\161'}\\k\202m\238\005\250\185\175\239\144\158/>,a\2107\238\021\159\189?\242\195\240:\000\2070<\000$\139\222\212;{\165l\237BOo\184=\244o\255\136\024\137\000=/\237\228\239\252\186\212*e\177A\031\233\254\251\203\219eI.\216\207~}$\255\127\148\236\189F\141!\019#\255\132\024\137\135y\215@\014m\234n\234\021\177\186+o\130\164Ml\0267\197\252\131\203\019\210\012}\211\212;8A\204\1424\131ax\000\128\159\244BOo\234\217\018\245\207\2134\209\024\025x~\135\216\162\159\247\1862\018\244\141H\219\175Qc\200\243*[\250\006'\135\004\1770\231s9:?\"M\242\227\130\245\210\248\1484KWF\162\252\166\185\242\243\015\214\191\148\014\195Gq\222d\246\201\240+;\243\204\155\000@\012\016#\201\245\206\183^\146\215\015\216{\028=\172\024\1854V\149\243#\196H\218\205\025$\205\206\143d\157\233;\233\182\141TZ;w$.t\214\1641o\018\213ax\141\147\198\135\027\195\240\000\016]\023G\167\228\194hEl!F\162\227\205#\251\228\173#\251\197\150\176b\196\246kT\136\145\216\1543H\178\025\239W<Y|\145\248\019#\181\166w\003\209\157\181\226\248\1989{\024^WN~d\150e\163>\012\127kGV\150\021\024\134\007\128\176\017#\201e;F:r\025Y\187\172\016\251\0241\247\196\207\184ne+1\018OsVG\255\166\238+\230\223(\202\"\2491?\162\203x\186\156\215\140\127j\222<\239H\208V\1323WM\162\022'\r\141y\147\229\245\149\019\251\129\n\000\1841\219\023z:\184\1741\226\199\161\194X\028?bDWFr\153&\183Um\146\0311\146\207g\182l\031(\149\004\177t\221+\176\127c\177\199q\220s\210\132_Z\190\196\250\012\201\015\222\159\144\241\234\226WH\244.\142\030\132\152Tz\232\226\185\239}\199\172\156\028\151\168\2108)\022\178\245H\229\145.\000\240\0311\146\\\175\031\220-\239\252\129\189\243\212tW\212\181\197\248\199\136\1367P(d\183\018#\241v\221\2435\158S\219\2244\241\184\150\206\143\216\142\017=\012\177\153\024Q=_\bw\155_\191\233\176\190~m\222\185\191~\190IT\231M.\141W\235_z\023f\133\t\019\230M\000\192\031:\223\167C\236\182\172{\2321\217\180s\0311\018\001\003\207\247\213\031\223\182E\231?\245\016\235\160\217~\141z\158\188\22078\178M\016{\215\005\137\2279\027\154\232\017\233h\179_\216\195W\231\019\154\177\238\225\199$\r\244\131b\2460\188\030\190\168\135$E\137\134\229\236a\248ef\245$\027\240\157\025\000H\"?b\164\247\153\151\004\225\210\227\000N\155\149\017b\228z\21112\188M\144\b\215]\r\030\218\212u\202\252\225^Y\164\021\0299Y\211m\247\005~\246\202d\253\144\190\197J\250\227Z\011\161q\242\215&L\244|\147\168\206\155(}c,\1823\012\015\000\205\168\185\158\156-\149\175m0b\131\238N\185y\215>A\1844F\244\244u\1557\024Wv\182\201\170N\251\135W\223\136\031\175Q\019#\207\153\024\217+H\140\235\166\142\191\186\186}\151\249v\187,\210\029K\219\172\159\234yatJjM\156\216\169\1432\233i\232i\166+'k6~\169~2\252\202{\190P\255cQ<\025^WN>\152\172\201es\215D\127\230dx\000X\024\189\208\251\225\007\14726\213\252\214\248\179\221\247\196\030\249\135;\246\n\194\149\164\024\177\253\026%F\146\233c+$/\244\022\139K\202\238\021i\130\237\129\246VNgO\218\238Z61\012\015\000\241\1673\150\250\020A\179s\150s\209\024\185\247\137\221\130p\233S\r\026#6\159n\b#F\252x\141\018#\201\245\177 \209\019\218\029'sJ\154p\255\237K\197\166VN\151\221\246\221\243\012\225\221\132\222}\137\2340\252L\012\195\003\192\199\233\133\158\222un\246\140\174\185\016#\209\144\164\024\177\253\026%F\146\237c\015\238{\142Slf\196\184#g\255Bq\188\218\220\179\134+?\255 1\178\000\012\195\003@\252\248q\161\167\1875\174\255z\159 \\~\196\136\014\175\235\231f\144\252x\141\154O\252\167\159\028\028> H\172\143\189J\155\221a\203\143;\215\227S\139\159\029Q\186g:\022g\230\201\240\026$:\012\031\197\195\023\027'\195\255\196q\234\131\240\028\190\b M\252\184\208\235}\166\191\254\222\143p\017#\243\243<o\251\147\131#\199\004\137\246\177Wj\198\241\254\129\215D\145\248\177\229o\179\18714\006\184\209\028\r\186-\207L\031\188\2128\025^w\234\210G\188\162\162j\214m\245\145>\253j\156\012\127[G\155\245sp\000 *&\166\220\250NE\182.\244t\149|\147Y\025!F\194\1677\0025Fl}\206\230\204M\187\181\203\n\245\207\198 \217~\141\154\219\210%S#O\247\017#\169\240\241G\182D\138\210\004\219\143l\141\183\176\027\195\029\159g\152\221\022}\252m\229\213\191\159\186\007\250\208\247\190S\031\138\143\018=|\177<#NV\1520YfVO\1527\001\144\020z\161\167w\157\171^sO\014\204\1661\162\167\175\243DA\248\252\136\145u\159h77\138\131\253\012\180\253\026\213\024q\171\181-O\1891vF\144\n\031\031j\223\212}\197i\"J>c^\2526K\1884Y\173W\246bq\254\136\255\026\243&Q\031\134o\204\1550\012\015 \206\136\145\228z\247\228+r\250\224\030k1\1627\229\214\022\131\143\017=\196\250\239\174\148\137\017\180\228\2273$\017Y!\025kr\139\184\174\219\215\b\2525s\222D\227Dw\234\210a\248\168\206\155\168b!W_5\t\250YZ\000hE+\187M\206E\223\1915F\244;\194\16512\240\252\014\177EcDWF\130>\199\203\246k\212\024\018\175bbdrH\144*\215\1505\2507\022{\028\199\219%\139\1485\203\131\171\186\236n'wilJ&k\139/\237\187\031~\148\025\146\000\233\157\182\021\159\189\191~\248\162\030DY\173LF\242\240\197\201\154+\165rM~>V\173\255\204\225\139\000\162\142\024I\174w\190\245\146\252\249\239\253\142\216\146\164\024\241L\140\244\r\018#i4\227\150q\181Gd\241/f\253E\176\173\214\228\170\223\173w}N\016\014\134\225\001\192\142\139\163Sra\180\"\182\016#\209\241\230\145}\242\214"
let d_ad153b16a10e796db31c1b82de744e48 = "\145\253bKX1b\2515*\196H\234]\011\146f\207 \241\227w\160\217\161\246B'\231\143D\001\195\240\000\208\028b$\185l\199\136>.\175\187i\017#H\130\143VH\\\167\167\137\005\018_.\224jM\014F}\130!\189\200\153}\248b\020\135\2255N\206\143T\204\023\195\240\000\194c\251BOW\174\191\188\25581\018\001~\196\136\174\140\228\002>$\216\246k\212q\228L>\159\217\178}`\178$H\181kA\162g\205I\019l?\178\213\236\234H\222\172\142pB{t\205\030\134\215\149\147\031\157|%\242\195\240\183vdeY\129ax\000\254\242#Fte\132\207\197\240\189~p\183\188\243\007\253bK\151\185a\166\187i%'FJ\196\b>\026j\255\234\234\194#\230\219FY$\189\163l\243\180l\029:\214\199h\022k\217\167\239\150_\218\250[\130\232\211\015\200\149\247<X\031\134olB\016\213a\248\015&kr\217\188\030\199\171\012\195\003\240\135\174\208\19076%\182\244|\241\225\250\202\b1\018\190\129\231\251\228\191\1598*\182\232\n\254]\203\218%\227\004\027#:\188~i\220\222k\212\243\228\229B!\243\155\196\b\026>\154!\241\164\216\204\235\219\246\nI\205m\238q\173<\243#\1774s\222$\170\195\240\179\231M\024\134\007`\139^\2325s\019n>\235\030zLz\159yI\016>\141\017}\026\192\022\141\145;o)H\208l\191F5F\250\006\135\183\t0\195\140G\182\188O\207:'qA\178\150+\189\220\228\022[\157<#\027{\1418\209\024\209\243M\162:o\210\136\019}\134w\197\2106\230M\000,\154\222|\211\149\017b$y\2443LO_\215S\216mY\217\217&\171:\237\030\177p3\250\026=\247aE\174\148\237\189F\141\131&F\022}\196\004\146\175\229\135\227m?\195\216\236I\159\012\237%\135>f0{\024^\015_\180\249\230n\131>\198\213\216\131\1891\012\191\172\144\173?\218\005\000\243\209\011==}}\188\201C\128\231r\223\019{\228\222'v\011\194\149\164\024\177\253\0265\151w\207\153\024\217+\192\028>Z!\017\167\216\228\241\031V5\187\195\022\146i\2460\252_\1550\209G\186\162:\012\127N\166\151\213\139\237\012\195\003\184\0301\146\\\250\185\1641b\243\243)\140\024\169\212<9{\133\024A\176\174M\163\127\229S\237\187\165\137\157\182\244\151\197\230*\201\229\201\154L4\241K\176\238\225G9\0241\225t\229d\205\198/E~\024^\223\196\025\134\0070\155^\232\253\141\137\017\2210\195\022b$\026\146\020#?\180\252\026%F\176\016\145\187\133\219\236P;\210e\2300\188\030\186x\238{\223\145\031Y\028\030\180a\2460|\177\144\149\219\151\1821o\002\164P\227B\175L\140$\142\0311\178\166+_\159Q\012\146\031\175Qb\004\0115\227\164v\175\169\147\218s\150\135\218\155\156i\151\238\219?-H'\221\226R\1916\239\220\031\233a\248K\227\213\250\023\195\240@\186\248q\161\215\251L\127\253QV\132\203\143\024\209\157\180\244\209\223 \249\019#\222\246\190\193\145c\002,\192\140\025\146\230\014Fd\128\023Q\1930<\128\168!F\146K?[\190\187\251Qk1\1627x{\138\249\192\231\015\137\017D\001S\183H$\134\225\001\132mb\202\173_\232U-m\214\1627]~u\223\241\250\193\178\b\151\198\136\174\140\216:3Kcd\221'\218\165#\224\243\173l\191F\205_\165\228Vk[\158zc\236\140\000\139\192\149\015\018O\227\228\129]\251\235_\141\195\023\245\145\174\168\197\201\251\215\230M*\245\149\147\229&P\186\243Y\001\016?~\196\200W\191\249\154,\191k\189 \\\2509\242'fe\196V\140\232\140\225\218\"1\130t#H\144*\179\135\225\223=\249J\253{\148\204\030\134_\190\164M>\185$\203\188\t\016\019\250\187\251\147\225\138\181\011=\189\169\242\229\253\199\137\145\b\208\207\140\129\231w\136-\250\030\175+#A\239\196h\2515j\012\153\024\217J\140\160Y\004\tR\1711\012\223\1527\137\2340\252\197\209\138\249\250h\222\132ax \186\244B\1751#f\131\198\136\174\140p\248o\248\146\020#6_\163\198\144\231U\204\202\200\228\144\000M\"H\144z\179\231Mt\167.\029\134\143\234\188\137*\022r\178\172=\027\248N,\000\230wi\172*\231G\136\145$z\243\200>y\235\200~\177%\172\024\177\253\026\149\1711\2107H\140\1605\\\205\0003\232\007\255\250\175\245\213\191thQ\135\225\1638oR*W\235_\186\228\174\131\240\204\155\000\225\1868:%\023\204j\166-\196Ht$%Fl\191F\133\024\129E\004\t0\015}^{\2033\253\245\159\027\143t\233N]\182\006\025m\208\231\127\223\1591o\162\143u\221\214\209&K\219x\164\011\b\138\237\011=}\239\209\153\017b$|\182cD\207\161\210\024\201\005\188\205\187\237\215\168\227\200\025\215\173l%F`\203G\007#\154\155\174\205\156E\162\251V\023x\158\029\t7s\024\254\221\147\199e\232{\223\137\2520\252\n\019&\250X\023\243&\128\127\252\136\017]\025\209]\181\016.bdn\026#\249|f\203\246\129\201\146\000\150|t0\162\231\148\204\255i\234pD\155\178M\254\158\014\255\236\199r\135\1767;\2527\251\240\197\168\014\195\159\031\169\152/\134\225\001\191\216\190\208\187\227\158\007\229\203\251\142\019#\0170\240|_\253\230\147-\250\030\188\186+\031x\140\232\231\192\165\177)\177\199\027\200\231\179[\183\015\148\136\017X\021\185G\1828\173\026q\1930<\144^\186K\145\174F\218\178\238\161\199\164\247\153\151\004\225\243#F\238\188\165 A\179\253\026\245<y\185opd\155\000>h\249\170\164\234\234\128\150\132\174\018\161\231\250\145>\012\195\003\233A\140$\147\206\007\234\129\135\023-\174x\175\232\200\201\154\238`c\164\230N\175\144\219\143\145\225m\002\248\228\163 q\220!\243\127zd\145\\{\135\234\212\021\154|f\171<J\144 \026\024\134\007\146I/\244\206\150\202\215V\028m\184\239\137=r\239\019\187\005\225\210\247\231?\254\237\135\2357\148lY\217\217&\171:\243\018$}\141\234\233\235\227z\183\216\018\243q\241\156\137\145\189\002\248\200\194\n\137\221 \2019\205\005I\212\238D\003\1701\012\175\031v\250HWT\231M\026\195\240:t\185bi\027\243&\192,~\\\232\017#\209\160\215\015\2235+#\196\200\245\136\017\004\229\163]\182<\231\199\205\180@\205\242\n\t3$H\"\029R\157=\012\175\243&6?\000m\208\015\178\198\t\190\141a\248e\133,\191\151H\181\138\137\246\179W\136\145$\210\247c]\025\177yS3\140\024\209\215\168\198\136\238|j\0111\130 Y\153!\177)\215\228u\207\007\017\187\176\003\2303{\024^\231M\244\145\174\168\014\195\159\147\233\161L\1579YV`\024\030\233\226\199\133\0301\018\r~\196\200\154\174|}\1499H\196\b\146\224\2184\235W>U\216`VHze\145\150\152\130\184\197\226E\138>\001\246\139&\006\177\178\133vY\255\245\029\002\196\137\174\156\172\217\248\165\250kw\229=_\168\255\177\202\232\135\245\175(\209;\195\031L\214\228\178\249\221\212\159u\197\132\243\135\144t~\\\232m\222\185_6\252\179\167\005\225\242#Ft'-\157\197\011\146?1\226m\239\027\0289 @\128f<\178%\165f\030\217\170\218}b\171\233GC\152!A\220\205<|Q\015]<\247\189\239\200\143,n=i\195\236\195\023\139\133\172\220n\238\0062o\130\164\241\227B\175\247\153\254\250\202(\194\165\143\202\234\204\136\173\235\006\157}]\221\157\015|;u\031c\228\152\000\001\251h\133du\2543\142\227<\"\139\164wI\151[\252%\212C\131\244\176\169f\232\214\137\028(\133$(~\250n\185\243\139_\145\245_\219!\197\158\187\235C\241\163?\139Vt\155\207B\025\155r\229\210xUJf\245$c>\148s\025\230\192\016\127\019\230u\253\163+ek\023z\250\185\244\133\127y\128\024\137\000\141\017]\025\025\191\252s\177AcDO_\191%\224\243\015l\191F\205\219y)#\222o>98\242\031\005\b\193\140\146\240\134D\022\127!1Q\181\183\253a\131FN3\191d\250F\163\207\231\003I\1930<\016,\189\208\211\187\206UK\027\182\232\239\240W\191\249Z};p\132K\223?\245\156\017[[\1767b\164#\224\237\210m\191F5F\220jmK\223\027cg\004\b\201\140 \201\r\137,>\002l\015\181+\157K)7\2099\229\209\146\000I\1970<\224\175a\243\186\253;s\215\153\024I\158wO\190\"\003\207\219\1553\213GV5F\130\158\165\179\253\0265\134L\140l}\138\024A\200\174\1731~im\187\180\213\188Eo\251\161\191\018\183w\180\213\031\215\176\229C\243\0117\209D\233t\221\190FVo\252\146\000I\1990<`\151\206E\253m\169,\182\238\177\233\r\132G~\255O\235\143_\"\\I\137\017\219\175Qc\200\243*[v\252\215\137\031\n\016\178\143UD\255\166\238+\230\015\020e\145>\247\201%V\1271/\141M\201\249\145\138,V\207\023\030\150/\255\175\209\026\002\006\130\164\195\240\250\225\171\223\163\138axD\141^\2325\0309\180AcDWFx\1328|o\030\217'o\029\217/\182\132\025#6_\163r5F\250\006'\135\004\136\128\143=G\145\209\023\168\200\006Y\164\241)\215\234/\167\254\1947\227\242\223r\022\t\210\173\231\139\015\215\191\026\243&Q=\025^\007\225\245\1711o\194\201\240\b\139n\162rat\2417\192\230C\140DGRb\196\246kT\136\017D\208\172\007\187\235\131\237\139\014\018\189\192\176iI[s\187U\232E\152\014\171\177\211\022\210n\246\188IT\135\225\027\243&\138ax\004\141\024I.\2191\210\145\203\212c$\023\240{\0191\130\180\248\216\149\255WV\183o2\2236\202\"\217>\028Q\127\225/\141U\165\153\204\209\231\234\2490\000>\162\129~\235]\235\229\151\182\254V}+\225je2\146\243&\186\167~\169\\\147_\152\149\147\201\026\243&\240\151\237\011=\029\\\215\153\145\142\229+\004\225\"F\230\2308r\166P\200l\250\231\223\031\253\153\000\017\243\177 yhU\2253\230\005\251\143e\145\2182v\207\"Q\031LVe\202]|\146\232\135\194\138_\190_\000\\O/\150\234\231\155\204\024\134\215\243Mj\021\171\207&\183D\0076u\000^\007\225\027\195\240\2508W>\203\170\t\236\240#Fte\132\213\249\240\189~p\183\156\249\015\246\014\025\215\029\002\215.+$\"F\242\249\204\150\237\003%\182#E$}\188\"2\2099\139dI[\166~!\178X\239G\236\145\020 \170f\158\012\255\238\201\2272\244\189\239Dn\024~\246\201\240+:\218dY{\150y\0194M7L\209\141Sl\209\003y7\237\220G\140D\192\192\243}\245\2472[\244\017\210;o)H\208tx]\223\243l\241<y\217\172\140\236\"F\016e\031\223ekc\177\199q\220s\210\132{n\235\176\250\220w\179;m\233\227Z\143\254!Q\0024#\202\195\24031\012\143f\216\190\208\211\024\233}\230%A\184tv\244\207\254u\159\156\179xCeEGN\214t'#F\250\006\135\183\t\016q\215\021D\179[\255\254\210\242%\178\212\226i\165\186s\215\015.OH34H\152#\001Z\163q2\244\231\175\213\135\225\163v\248\226L\197B\174\190jr\235\018\014_\196\220j\174g.\244*r\165l\239Bo\253\215v\200\230]\251\004\225\210\024\249\227\223~\216\234\134\029+;\219dUg^\130\164\175\209\179\165\242\181M>,9\248\228\233\225]\002\196\192u\219Y\253\211\213\133\2230\223n\151Ej\207e\1643\223\220\238Xs\201\152\182\249\249xs\131\237\203\239^/\183\222\2459\001\208<}\004e\197g\239\175\207\155Dy\024^\007\224u\024\254\231c\012\195\227zz\161\247\195\015&ed\202\222\133\222}O\236\145\127\184c\175 \\z\163\228\228\239\252z\"bD_\163cS\246\142<4+#\207\153\149\145E\031v\r\132\229\186\130x\248S\133M\142\179\248\179Hl\239\180\165'\191\235\137\237\149&\182\020\206w\222R\191\128\002`\007\195\240\136\163\198\133^3\243\136\243\209\024\185\247\t\174\243\194\1661\162+#\165\031\159\021[\194\136\017\189\198\249\209\021\187\175\209\1711\178W\128\024\185\174 \204\011\249\140i\129\199e\145F*\246~\153\026:\218\028ib\140$\210\207\190\003q\1990<\226@/\2444F\2025b$i\0261b\243Q\210\176b\196\246k\148\024A\\]\191B\178&\127\187#\206o\200\"\233\014\189w\152_h\155\204/\150|0\185\248ev}\164D\135\r\217\245d\241\188\242\136x\127\243\127J\245\191\252;\169}w\191\184\231N\215\255\184S\188C\156\\\240\003~\1366=\223d\237\151~\189\254\251\182\252\238\207\213\159\231\214\149\147(\209EV]m\213\147\225\0277Nr\166K8|1\185\136\145\228\242#Ft'\173\219\151\218\189~\185\025?^\163\230\029\237\233'\007\135\237\029\192\002\004\232\186O\228\023z\139\197%e\247\1384\193\246`{\205\020\201_^\026\151fl\222\185\175\254x\t\022\198=\255\150\184o\254\199\250w\141\146\217\156B\151d\238\254\021\201\254\242W\196Ys\175\000\243\209\011\005]9\249\209\201W\"?\012\127kG\182~\206\000\146\195\143\011\189\222g\250Mt?*\b\151_1\018\244\134\024\254\172\140x\219\251\006G\142\t\016Ss\222\"<\180\241\150s\226x=\178H\171\187\242\214\2392\252\224\253\137\166\158\173\212GJ\190\250b\180\030#\137\162\218;\223\017\247\191}\167\030\"\011\229\220r\135dL\148d\239\251Mqn\187[\128\249\204\220B8\170q\162\143t\2336\194\203\235\219\b\219\219\152\003\193#F\146K\007\2155Ft\021\214\134\156\227\212\015<\236\n\248w\222\246k\212,\000\151L\141<M\140 \238\230\012\146\195\155\186^\245\196yD\022I?\208\255\158\229C\132\206\143\148\229\210\216\226\183j\212\193v\221\254\151\199\182\230\166!R\251/\191/\222\135\239I+4N4L2w\245\214\127\006\230\163s&\231\190\247\029\179rb\239\2242\2194N\138\133l\253\198\n\243&\24121\229\214/\244\170^3{3^O?;\244\244u=\133\029\225\242#F\214}\162]:\218\130\253\029\183\253\026\213\024q\171\181-O\1891vF\128\152\155\243\214\192C\171\218\2390\191\175\255X\022\2015\191d+,\175\144\232n[\205\028\018\164\187\255\020{\238b\251\223Y\188\159\255H\170\255\233w\165\246\230\255.R\030\149\150\153\191\134\206\153\232_\207\251\201_\214\255\144\211\222U\255\002f*~\250\238\233\157\186\190\182\195\252n\222\029\217y\019\221zS\231MJ\147\181\250\251\015\243&\209G\140$\215\187'_\145?}\246\183\172\197\136\222"
let d_adcff4d4dead18852fac8c7e32e7f835 = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"mini_lib\"\nskip = \"@github @test @sphinx @docs @ocamlformat @ocp-indent\"\n\n[[package]]\nskeleton = \"library\"\ndir = \"src/!{name}\"\ngen-version = \"version.ml\"\nkind = \"library\"\nname = \"!{name}\"\n\n"
let d_af0df9d185ec3728c9ef83e5779806e8 = "[skeleton]\nname = \"rust_binding\"\ninherits = \"virtual\"\n"
let d_af36a6021cbfd0049b3aaaefe91d25f8 = "!{header-ml}\n\n(* If you delete or rename this file, you should add\n 'src/!{name}/main.ml' to the 'skip' field in \"drom.toml\" *)\n\n(* Example of reversal of a string *)\nexternal ml_reverse : Bigstring.t -> unit = \"ml_reverse\"\n\nlet reverse s =\n let b = Bigstring.of_string s in\n ml_reverse b;\n Bigstring.to_string b\n"
let d_b0976310605f82d59f94a9d05bb096f7 = "[license]\n\nkey = \"GPL3\"\nname = \"GPL-3.0-only\"\nheader = \"\"\"\nThis file is distributed under the terms of the GNU General Public\nLicense version 3.0, as described in the LICENSE.md file in the root\ndirectory of this source tree.\n\"\"\"\ncontents = \"\"\"\n GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n Preamble\n\n The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works. By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users. We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors. You can apply it to\nyour programs, too.\n\n When we speak of free software, we are referring to freedom, not\nprice. Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights. Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received. You must make sure that they, too, receive\nor can get the source code. And you must show them these terms so they\nknow their rights.\n\n Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software. For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so. This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software. The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable. Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts. If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary. To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n The precise terms and conditions for copying, distribution and\nmodification follow.\n\n TERMS AND CONDITIONS\n\n 0. Definitions.\n\n \"This License\" refers to version 3 of the GNU General Public License.\n\n \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such a"
let d_b19ceb2d31f6194cfbc1962bca6e9bcd = "[skeleton]\nname = \"js_library\"\ninherits = \"virtual\"\n\n[file]\ndune_ = { file = \"dune\", skips = [ \"@dune\" ] }\n\"main.ml\" = { skips = [ \"@code\" ] }\n"
let d_b4480cf66aaf96f5a7b38fb114ca5993 = "[skeleton]\nname = \"ppx_deriver\"\ninherits = \"virtual\"\n\n[file]\n\"package.toml\" = { create = true }\ndune_ = { file = \"dune\", skips = [ \"@dune\" ] }\n\"index.mld\" = { skips = [ \"@docs\" ] }\n\"main.ml\" = { skips = [ \"@code\" ], create = true }\n\n"
let d_b54a29a6938c94b4fbce8cdae07ee56e = "ering for\nsale, or importing the Program or any portion of it.\n\n 11. Patents.\n\n A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based. The\nwork thus licensed is called the contributor's \"contributor version\".\n\n A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version. For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement). To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients. \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License. You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n 12. No Surrender of Others' Freedom.\n\n If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of th"
let d_b5cad7df33626fa34dabbf03bd8ffaed = "# Everything above is inherited from 'virtual' package skeleton\n\nkind := \"library\"\nskeleton := \"js_library\"\n\n[dependencies]\njs_of_ocaml = \"3.0\"\nvue-jsoo = \"\"\n\n[tools]\njs_of_ocaml-ppx = \"3.0\"\n"
let d_b680e55ac4a579b2eaa50b03c16112d5 = "template names.\n#\n# This is required for the alabaster theme\n# refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars\n# html_sidebars = {\n# '**': [\n# 'relations.html', # needs 'show_related': True theme option to display\n# 'searchbox.html',\n# ]\n# }\n\n\n# -- Options for HTMLHelp output ------------------------------------------\n\n# Output file base name for HTML help builder.\nhtmlhelp_basename = 'Liqdoc'\n\n\n# -- Options for LaTeX output ---------------------------------------------\n\nlatex_elements = {\n 'inputenc':'',\n 'utf8extra': '',\n 'preamble': r'''\n \\usepackage{fontspec}\n \\IfFontExistsTF{Lato}{\\setsansfont{Lato}}{\\setsansfont{Arial}}\n \\IfFontExistsTF{Linux Libertine O}{\n \\setromanfont[Scale=1.1]{Linux Libertine O}\n }{\\setromanfont{Times New Roman}}\n \\IfFontExistsTF{DejaVu Sans Mono}{\n \\setmonofont[Scale=MatchLowercase]{DejaVu Sans Mono}\n }{\\setmonofont[Scale=MatchLowercase]{Courier}}\n ''',\n\n # The paper size ('letterpaper' or 'a4paper').\n #\n # 'papersize': 'letterpaper',\n\n # The font size ('10pt', '11pt' or '12pt').\n #\n # 'pointsize': '10pt',\n\n # Additional stuff for the LaTeX preamble.\n #\n # 'preamble': '',\n\n # Latex figure (float) alignment\n #\n # 'figure_align': 'htbp',\n}\n\n# Grouping the document tree into LaTeX files. List of tuples\n# (source start file, target name, title,\n# author, documentclass [howto, manual, or own class]).\nlatex_documents = [\n (master_doc, '!{name}.tex', '!{name} Documentation',\n 'author', 'manual'),\n]\n\n\n# -- Options for manual page output ---------------------------------------\n\n# One entry per manual page. List of tuples\n# (source start file, name, description, authors, manual section).\nman_pages = [\n (master_doc, '!{name}', '!{name} Documentation',\n [author], 1)\n]\n\n\n# -- Options for Texinfo output -------------------------------------------\n\n# Grouping the document tree into Texinfo files. List of tuples\n# (source start file, target name, title, author,\n# dir menu entry, description, category)\ntexinfo_documents = [\n (master_doc, '!{name}', '!{name} Documentation',\n author, '!{name}', 'One line description of project.',\n 'Miscellaneous'),\n]\n\n# -- Ignore fragments in linkcheck\n\nlinkcheck_anchors = False\n\n\n# -- Options for Epub output -------------------------------------------------\n\n# Bibliographic Dublin Core info.\nepub_title = project\nepub_author = author\nepub_publisher = author\nepub_copyright = copyright\n\n# The unique identifier of the text. This can be a ISBN number\n# or the project homepage.\n#\n# epub_identifier = ''\n\n# A unique identification for the text.\n#\n# epub_uid = ''\n\n# A list of files that should not be packed into the epub file.\nepub_exclude_files = ['search.html']\n\n# entry point for setup\ndef setup(app):\n app.add_stylesheet('css/fixes.css')\n"
let d_b73f1e11aed2dee4d4dc5b1f85e1aad0 = "; generated by drom from package skeleton 'driver'\n(executable\n (name main)\n (public_name !{program-name})\n (package !{name})\n (libraries !{dune-libraries} !(package-dune-libraries))\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n"
let d_b87e5b4d722d29ea41140d46c94d51cb = "# Everything above is inherited from 'virtual' package skeleton\n\nskeleton := \"driver\"\nkind := \"program\"\n"
let d_ba5de43fac467c2d19134fc7842fc9f4 = "[skeleton]\nname = \"rust_binding_lib\"\ninherits = \"virtual\"\n\n[file]\ndune_ = { file = \"dune\", skips = \"@dune\" }\n\"index.mld\" = { skips = [ \"@docs\" ] }\n\"main.ml\" = { skips = [ \"@code\" ], create = true }\n\"lib.rs\" = { skips = [ \"@code\" ], create = true }\n"
let d_bde59333a3805590b38f5d872586a510 = "[skeleton]\nname = \"ctypes_foreign\"\ninherits = \"virtual\"\n"
let d_bf47fe64efc15e71eee9a810300c4541 = "[skeleton]\nname = \"program\"\ninherits = \"virtual\"\n"
let d_bf991f920ce22f840913a87906f0fe40 = "[skeleton]\nname = \"mini_prg\"\ninherits = \"virtual\"\n"
let d_bfe3c7fc965f6ffccda9493de5790ad2 = "[skeleton]\nname = \"virtual\"\n\n[file]\n\"Makefile\" = { skips = [ \"@make\" ] }\n\"dune-project_\" = { file = \"dune-project\", skips = [ \"@dune\" ] }\n\n\"dot_ocp-indent\" = {\n file = \".ocp-indent\", create = true,\n skips = [ \"@ocamlformat\" ] }\n\n\"dot_ocamlformat\" = {\n file = \".ocamlformat\",\n create = true,\n skips = [ \"@ocamlformat\" ] }\n\"dot_ocamlformat-ignore\" = {\n file = \".ocamlformat-ignore\",\n skips = [ \"@ocamlformat\" ] }\n\n\"dot_github/workflows/workflow.yml\" = {\n file = \".github/workflows/workflow.yml\",\n skips = [ \"@github\", \"@workflows\" ] }\n\"dot_github/workflows/doc-deploy.yml\" = {\n file = \".github/workflows/doc-deploy.yml\",\n skips = [ \"@github\", \"@workflows\" ] }\n\n\"dot_gitignore\" = { file = \".gitignore\", skips = [ \"@git\" ] }\n\n\"docs/index.html\" = { skips = \"@docs\" }\n\"docs/favicon.png\" = { skips = [ \"@docs\" ], subst = false }\n\"docs/README.txt\" = { skips = \"@docs\" }\n\"docs/style.css\" = { skips = \"@docs\" }\n\n\"sphinx/about.rst\" = { skips = [ \"@sphinx\", \"@docs\" ] }\n\"sphinx/conf.py\" = { skips = [ \"@sphinx\", \"@docs\" ] }\n\"sphinx/under_static/css/fixes.css\" = {\n skips = [ \"@sphinx\", \"@docs\" ],\n file = \"sphinx/_static/css/fixes.css\",\n create = true }\n\"sphinx/index.rst\" = { skips = [ \"@sphinx\", \"@docs\" ] }\n\"sphinx/install.rst\" = { skips = [ \"@sphinx\", \"@docs\" ] }\n\"sphinx/license.rst\" = { skips = [ \"@sphinx\", \"@docs\" ] }\n\n\"docs/doc/index.html\" = { skips = \"@docs\", create = true }\n\"docs/sphinx/index.html\" = { skips = \"@docs\", create = true }\n\n\"test/expect-tests/dune_\" = {\n file = \"test/expect-tests/dune\",\n skips = [ \"@test\", \"@dune\" ] }\n\"test/expect-tests/test.ml\" = { skips = \"@test\" }\n\n\"test/inline-tests/dune_\" = {\n file = \"test/inline-tests/dune\",\n skips = [ \"@test\" , \"@dune\" ] }\n\"test/inline-tests/test.ml\" = { skips = \"@test\" }\n\n\"test/output-tests/dune_\" = {\n file = \"test/output-tests/dune\",\n skips = [ \"@test\", \"@dune\" ] }\n\"test/output-tests/test2.ml\" = { skips = \"@test\" }\n\"test/output-tests/test1.expected\" = { skips = \"@test\" }\n\"test/output-tests/test2.expected\" = { skips = \"@test\" }\n"
let d_c03273d12242c8eb37187614889b252d = "; generated by drom from package skeleton 'library'\n\n(library\n (name !{library-name})\n (public_name !{name})\n (wrapped !{pack-modules})\n (libraries !{dune-libraries} !(package-dune-libraries))\n (foreign_stubs\n (language c)\n (names !(c-names))\n !(c-flags))\n (c_library_flags !(c-library-flags))\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n(rule\n (deps build_wasm.sh !(c-names-dot-c))\n (targets !{name}.js !{name}.wasm)\n (action (system \"./build_wasm.sh -p . -o !{name}.js\")))\n\n(library\n (name !{library-name}_js)\n (public_name !{name}.js)\n (modules)\n (modes byte)\n (libraries !{library-name})\n (js_of_ocaml\n (javascript_files !{name}.js wasm_utils.js stubs.js)\n (flags --no-sourcemap))\n !{dune-stanzas}\n !(package-dune-stanzas))\n\n(install\n (files (!{name}.wasm as www/js/!{name}.wasm))\n (section share)\n (package !{name}))\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n"
let d_c33fdf9c63c67fdfd384a8dc07a6f624 = "[license]\n\nkey = \"BSD2\"\nname = \"BSD-2-Clause\"\nheader = \"\"\"\nThis source code is licensed under the BSD2 style license found in the\nLICENSE.md file in the root directory of this source tree.\n\"\"\"\ncontents = \"\"\"\nAll rights reserved.\n\nRedistribution and use in source and binary forms, with or without\nmodification, are permitted provided that the following conditions are met:\n\nRedistributions of source code must retain the above copyright notice, this\nlist of conditions and the following disclaimer. Redistributions in binary\nform must reproduce the above copyright notice, this list of conditions and\nthe following disclaimer in the documentation and/or other materials\nprovided with the distribution.\n\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\nANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\nWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\nDISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\nFOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\nDAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\nSERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\nCAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\nOR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\nOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\"\"\"\n"
let d_c5512266ba9b99706618c209158dfc4f = "{1 Library !{name}}\n\n!{description}\n\n!{escape:true}![if:pack]\nThe entry point of this library is the module: {\\!!{pack}}.\n![else]\nThis library exposes the following toplevel modules:\n{\\!modules:!{modules}}\n![fi]!{escape:false}\n"
let d_c874dba99bd120b7e2096d0590de56ab = "<h1>API documentation for !{name:html}</h1>\n<p>You need to run the following commands in the project to generate this doc:\n<pre>\nmake doc\n</pre>\nor\n<pre>\ndrom doc\n</pre>\nand then:\n<pre>\ngit add docs/doc\n</pre>\n</p>\n"
let d_c9d6dfab527cdb55aec9afdfe1deb829 = ".. !{name} documentation master file, created by\n drom new\n You can adapt this file completely to your liking, but it should at least\n contain the root `toctree` directive.\n\nWelcome to !{name}\n================\n\n.. toctree::\n :maxdepth: 2\n :caption: Documentation\n\n!{sphinx-index-home} about\n install\n!{sphinx-index-api} license\n!{sphinx-index-github}\n\nIndices and tables\n==================\n\n* :ref:`genindex`\n* :ref:`modindex`\n* :ref:`search`\n"
let d_ca7884f8b023d53f02fa1e8884b49cbc = "!{global-ocamlformat}\nassignment-operator=end-line\nbreak-before-in=fit-or-vertical\nbreak-cases=all\nbreak-collection-expressions=fit-or-vertical\nbreak-fun-decl=wrap\nbreak-fun-sig=wrap\nbreak-infix=wrap\nbreak-infix-before-func=false\nbreak-separators=after\nbreak-sequences=true\nbreak-string-literals=auto\nbreak-struct=force\ncases-exp-indent=2\ncases-matching-exp-indent=normal\ndisambiguate-non-breaking-match=false\ndoc-comments=before\ndoc-comments-padding=2\ndoc-comments-tag-only=default\ndock-collection-brackets=false\nexp-grouping=preserve\nextension-indent=2\nfield-space=loose\nfunction-indent=2\nfunction-indent-nested=never\nif-then-else=k-r\nindent-after-in=0\nindicate-multiline-delimiters=space\nindicate-nested-or-patterns=unsafe-no\ninfix-precedence=indent\nleading-nested-match-parens=false\nlet-and=sparse\nlet-binding-indent=2\nlet-binding-spacing=compact\nlet-module=compact\nmargin=80\nmatch-indent=0\nmatch-indent-nested=never\nmax-indent=68\nmodule-item-spacing=sparse\nnested-match=wrap\nocp-indent-compat=false\nparens-ite=false\nparens-tuple=always\nparens-tuple-patterns=multi-line-only\nparse-docstrings=true\nsequence-blank-line=preserve-one\nsequence-style=terminator\nsingle-case=compact\nspace-around-arrays=true\nspace-around-lists=true\nspace-around-records=true\nspace-around-variants=true\nstritem-extension-indent=0\ntype-decl=sparse\ntype-decl-indent=2\nwrap-comments=false\nwrap-fun-args=true\n"
let d_cba462dcafaaecaae140912beb07c716 = "# Everything above is inherited from 'virtual' package skeleton\n\nskeleton := \"ctypes_drv\"\nkind := \"program\"\n\n"
let d_cd4537c80d68aaffee533a2332282ad3 = "!{header-ml}\n\n(* If you delete or rename this file, you should add\n 'src/!{name}/main.ml' to the 'skip' field in \"drom.toml\" *)\n\nlet main () = Printf.printf \"Hello world!\\n\"\n"
let d_ce2f97f45aa3c4a82afdb79beb6f1a15 = "[skeleton]\nname = \"vue\"\ninherits = \"program\"\n\n[file]\n\"index.html\" = { file = \"share/!{name}/www/index.html\" }\n"
let d_cfe921b699b4edb3e197834c2c50a8e6 = "let () =\n Ctypes_stubgen.make_functions_stubs\n [ \"stddef.h\"; \"gsl/gsl_math.h\"; \"gsl/gsl_chebyshev.h\" ]\n (module Gsl_functions_functor.Apply)\n"
let d_d17f954495975ff2649d7daff5ceaabd = "!{global-ocpindent}# -*- conf -*-\n# This is an example configuration file for ocp-indent\n#\n# Copy to the root of your project with name \".ocp-indent\", customise, and\n# transparently get consistent indentation on all your ocaml source files.\n\n# Starting the configuration file with a preset ensures you won't fallback to\n# definitions from \"~/.ocp/ocp-indent.conf\".\n# These are `normal`, `apprentice` and `JaneStreet` and set different defaults.\nnormal\n\n#\n# INDENTATION VALUES\n#\n\n# Number of spaces used in all base cases, for example:\n# let foo =\n# ^^bar\nbase = 2\n\n# Indent for type definitions:\n# type t =\n# ^^int\ntype = 2\n\n# Indent after `let in` (unless followed by another `let`):\n# let foo = () in\n# ^^bar\nin = 0\n\n# Indent after `match/try with` or `function`:\n# match foo with\n# ^^| _ -> bar\nwith = 0\n\n# Indent for clauses inside a pattern-match (after the arrow):\n# match foo with\n# | _ ->\n# ^^^^bar\n# the default is 2, which aligns the pattern and the expression\nmatch_clause = 4 # this is non-default\n\n# Indentation for items inside extension nodes:\n# [%% id.id\n# ^^^^contents ]\n# [@@id\n# ^^^^foo\n# ]\nppx_stritem_ext = 2\n\n# When nesting expressions on the same line, their indentation are in\n# some cases stacked, so that it remains correct if you close them one\n# at a line. This may lead to large indents in complex code though, so\n# this parameter can be used to set a maximum value. Note that it only\n# affects indentation after function arrows and opening parens at end\n# of line.\n#\n# for example (left: `none`; right: `4`)\n# let f = g (h (i (fun x -> # let f = g (h (i (fun x ->\n# x) # x)\n# ) # )\n# ) # )\nmax_indent = 4\n\n\n#\n# INDENTATION TOGGLES\n#\n\n# Wether the `with` parameter should be applied even when in a sub-block.\n# Can be `always`, `never` or `auto`.\n# if `always`, there are no exceptions\n# if `auto`, the `with` parameter is superseded when seen fit (most of the time,\n# but not after `begin match` for example)\n# if `never`, `with` is only applied if the match block starts a line.\n#\n# For example, the following is not indented if set to `always`:\n# let f = function\n# ^^| Foo -> bar\nstrict_with = never\n\n# Controls indentation after the `else` keyword. `always` indents after the\n# `else` keyword normally, like after `then`.\n# If set to `never', the `else` keyword won't indent when followed by a newline.\n# `auto` indents after `else` unless in a few \"unclosable\" cases (`let in`,\n# `match`...).\n#\n# For example, with `strict_else=never`:\n# if cond then\n# foo\n# else\n# bar;\n# baz\n# `never` is discouraged if you may encounter code like this example,\n# because it hides the scoping error (`baz` is always executed)\nstrict_else = always\n\n# Ocp-indent will normally try to preserve your in-comment indentation, as long\n# as it respects the left-margin or starts with `(*\\n`. Setting this to `true`\n# forces alignment within comments.\nstrict_comments = false\n\n# Toggles preference of column-alignment over line indentation for most\n# of the common operators and after mid-line opening parentheses.\n#\n# for example (left: `false'; right: `true')\n# let f x = x # let f x = x\n# + y # + y\nalign_ops = true\n\n# Function parameters are normally indented one level from the line containing\n# the function. This option can be used to have them align relative to the\n# column of the function body instead.\n# if set to `always`, always align below the function\n# if `auto`, only do that when seen fit (mainly, after arrows)\n# if `never`, no alignment whatsoever\n#\n# for example (left: `never`; right: `always or `auto)\n# match foo with # match foo with\n# | _ -> some_fun # | _ -> some_fun\n# ^^parameter # ^^parameter\nalign_params = auto\n\n\n#\n# SYNTAX EXTENSIONS\n#\n\n# You can also add syntax extensions (as per the --syntax command-line option):\n# syntax = mll lwt\n"
let d_d1efe50b61c41c1cd67dd45d57670412 = "[license]\n\nkey = \"MIT\"\nname = \"MIT\"\nheader = \"\"\"\nThis source code is licensed under the MIT license found in the\nLICENSE.md file in the root directory of this source tree.\n\"\"\"\ncontents = \"\"\"\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\"\"\"\n\n"
let d_d2f56a84408c9b2dc3c8e5f038fc7079 = "# Everything above is inherited from 'virtual' package skeleton\n\nskeleton := \"rust_binding_test\"\nkind := \"program\"\n"
let d_d320d1d8b74e7f4a69d03a6951599de8 = "<html>\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n <title>!{name}</title>\n <meta name=\"Description\" content=\"!{name}\">\n <meta name=\"author\" content=\"!{name}\">\n <meta name=\"keywords\" content=\"!{name}\">\n <link rel=\"icon\" href=\"images/favicon.png\" />\n\n <link rel=\"stylesheet\" type=\"text/css\" href=\"css/style.css\" />\n <script src=\"https://unpkg.com/vue/dist/vue.js\"></script>\n <script src=\"js/!{name}.js\" defer></script>\n </head>\n <body>\n <h1>!{name}</h1>\n <div id=\"app\">\n <hello></hello>\n </div>\n </body>\n</html>\n"
let d_d4305b3b4f3768ccfddb242a81c9c2fd = "{1 Program !{name}}\n\n!{description}\n"
let d_d4baa29949f7688520da97e4579a2fbf = "[skeleton]\nname = \"ctypes_lib_stubs\"\ninherits = \"virtual\"\n\n[file]\n\"dune_\" = { file = \"dune\", skips = [ \"@dune\" ] }\n\"index.mld\" = { skips = [ \"@docs\" ] }\n\"lib.ml\" = { file = \"!{name}.ml\", skips = [ \"@code\" ] }\n\"bindings/dune_\" = { file = \"bindings/dune\", skips = [ \"@dune\" ] }\n\"bindings/gsl_functions_functor.ml\" = { skips = [ \"@code\" ] }\n\"bindings/gsl_functions.ml\" = { skips = [ \"@code\" ] }\n\"bindings/gen_functions.ml\" = { skips = [ \"@code\" ] }\n\"bindings/gsl_types_functor.ml\" = { skips = [ \"@code\" ] }\n\"bindings/gsl_types.ml\" = { skips = [ \"@code\" ] }\n\"bindings/gen_types.ml\" = { skips = [ \"@code\" ] }\n\"bindings/discover/dune_\" = { file = \"bindings/discover/dune\", skips = [ \"@dune\" ] }\n\"bindings/discover/discover.ml\" = { skips = [ \"@code\" ] }\n\"bindings/ctypes_stubgen/dune_\" = { file = \"bindings/ctypes_stubgen/dune\", skips = [ \"@dune\" ] }\n\"bindings/ctypes_stubgen/ctypes_stubgen.ml\" = { skips = [ \"@code\" ] }\n\"bindings/ctypes_stubgen/ctypes_stubgen.mli\" = { skips = [ \"@code\" ] }\n"
let d_d575f84e6dcb41ea0141a94b2b371652 = "About\n=====\n\n!{description}\n\nAuthors\n-------\n\n* !{sphinx-authors-list}\n"
let d_d7d1074011f4ea451fe1be7496ea89d9 = "\016$\000b\233\240\166\238\023<\145]b\137>\163\223sK>u1r~\164\"\151\198\166\004\241W4\175\225e\237\217\212\029\220\137\232\2118\185l\194\228\253\137Z\180\135\225\029\239\152\227\201\183\191qz\228\132 P\004\t\128\2169\180\185\251\168x\178M,\209\011\184;o)H\218\232NZ\250\2207\146E\207\205\209Ax\230M\016E\141y\147(\015\195\203\213y\019\134\225\131C\144\000\136\141\163\189\197b\185\\;j\222\186\030\017KVt\228dMw\186b\164\230z\245\149\017b$\249\026\195\240\183u\180\201\210\148\029\236\137\232\211-\132\175\148kQ\127/\0262\023\203'\\\175r\144G\186\252C\144\000\136\005\141\145J\197=\229y\178A,Y\217\217&\171:\243\146&\026#z\250\250x5\202\207t\195\015\026'+L\152\232c]\204\155 J\024\134\007A\002 \242\136\017;\136\01740\012\143\168j\012\195\235l[\180\223\171\166\135\225\219\219\179'\182\015\148J\130\150\016$\000\"\173\127c\177\199q\220S\230\199\030\177$\1411R\169M\199H\180OWF\024\024\134GTi\156\\\026\171\152\213\147H\207\1550\012o\001A\002 \178\136\017;\136\017,\004\195\240\1362\134\225\147\141 \001\016I~\196\136\238\164\149\182\187\192\196\b\154\1930<\162\140a\248\228!H\000D\0141b\0071\002\027\244\192\208\021K\219\1527A\228p\248br\016$\000\"\229\197\251\151n\200\228\178\167\204\155SQ,\208\199P\214.+\212\239\246\166\201\196\148[\143\145\170\249\020\004la\024\030Q\1970|\188\017$\000\"\195\143\024Y\247\137v\233H\217#'\196\b\130\160\195\240\183vdeY\129axD\203\184y\015\1884>\021\233y\019\243\238\\r\028\239\004\243&\211\b\018\b\016\005\135\031\232z\220u\157\003\182bD\159\129_[L_\140\\)We\168T!F\016\152\198\188\t\195\240\136\162\1980|i\178\022\229\247\197\2500|m\202=\248\212\027cg$\133\b\018\000\161\211\024\241\\\231\152X\162\023H\1862RH\217#%\250\161{\238\195\178\000a\209\223\189b!+\183/m\227\145.D\142\190G^\153\172\214\015a\140\176!\215\149\131\142S9\145\166y\019\130\004@\168\014m\234\222i\190\029\016K\210\026#\151\198\170r~\132\024At0\012\143\168b\024>z\b\018\000\1619\188\185\251Y\243f\187W,Ik\140\\\028\157\146\011\163\021\001\162\1701\012\191\204\172\158d3\\z :4Nt\027\225K\227\213\136\239H\232\1570\159\151\223\238\027\0289&\t\196\187\002\128P\216\142\017\189\027\171\187i\017#@\180i\152\232\001\140\012\195#j\024\134\015\015A\002 p~\196\136\174\140\228Rv\231\149\024A\1561\012\143(c\024>X\004\t\128@\029\222\212\253\130yk\223%\150t\2293\245\221\180\136\017 \190\024\134G\1481\012\239?\130\004@`\014m\238>j\214\155\183\137%\250\232\135\158\192\1586\186\147\150~@\002I\1960<\162\138ax\255\016$\000|w\180\183X,W\220\023\136\145\214\017#H\019\134\225\017U\026'\151M\152\188?Q\139\2520\188\249\205y\249\027\167GNH\132\241\219\r\192W\026#\149\138{\202\220\173\217 \150\172\236l\147U\157yI\147\154\235\201\217R\185~w\014H\155\156\227\212\007\225\1537A\0205\230M\162<\012/W\231M\162:\012O\144\000\240\r1b\135\198\200\015?\152\148\241j\148\239\194\001\193h\012\195\223\214\209&K\219x\164\011\209\162[\b_)\215\162\190\146=d\002\224\132\235U\014F\229\145.\130\004\128/\2507\022{\028\199=e~\236\017K\210\024#\149\154Y\025\185B\140\000s\2098Ya\194d\153Y=a\222\004QR57\146J\229\232\207\155\152\197\1993\174\235\029\012{\222\132 \001`\0291b\135\198\136\174\140D\251\249d \026\026\243&\012\195#j\026\195\240\151\198\166\162}s\201\241\142y\238\212sa\132\tA\002\192*?bD\135\215\245B#M\136\017\160y\197B\174\190j\146\182\247\rD\159\198\201\165\177\138Y=\137\240\188I\baB\144\000\176\134\024\177\131\024\001\236`\024\030Q\022\245ax\243\235\179\247\027\175\015?'\001 H\000X\241\226\253K7ds\217W\197R\140\232\133DO1/\203\n\233\138\145\137)\183\190\155\0221\002\216\1970<\162,\186\195\240z\166\201\212v\191WK\b\018\000-\211\024\201\228\178\167\204\027JQ,\208\024Y\247\137v\233H\217E\131\198\136\174\140T=O\000\248\135axDUD\135\225\135<\175\178\197\207(!H\000\180\164\127cg\1758\153Wm\197\136^(\172-\166/F\134\205\210\253\223])\019#@\192\024\134GTEl\024\222\215(!H\0004\237\240\003]\143{\174sL,\209\024\209\149\145B\202.\nt\137^O`\007\016.\029\134\191\181#\155\186GE\017}\227f\005\253\210\248T\216\243&\190E\tA\002\160)\196\136\029\196\b\016=\141y\019\134\225\017Ea\014\195\235\185%\249|f\203\246\129RI,\226\183\012\192\162\029\222\220\253\172\2319\007\196\146\180\198\200\197\209)9?R\017\000\209R\243\164\254\136\204es\209\167_\250\179\014\194g3\220\199E\248\244\179rY{NV,m\187\246\1859Y\011\236q\223\219k5\175\253;?-\127W,\2267\011\192\162L\199\136\236\021K\210\028#\023F\137\017 N:r\153\250E \243&\136\154\198\188IP\195\240\158\231n\233\027\028\029\016K\b\018\000\011f;F\244\195]c$\151\178\187\142<\166\005\196_c\024~Y!\203\202\t\"E\227D\183\017\1904^\245\243\145\174\161'O\015\223)\150\240\200\022\128\005!F\236\209\024\153r\217M\011\1363=\192T\183g}ol\170\254\179\222\226]\146c\213\004\225\211\207\213N\019\204\186\154\167\0274\232\167\141\190Dkvwq,>\252\169\252\143_\251i\229\140X@\210\003\184\169C\155\187\143\154w\180mb\137\222U\\\221\149Oe\140\1687~6&\000\146\135axDYc\024\1904Y\179\181\197\188\181U\018\130\004\192\r\249\017#w\222R\1444\251\235_Lp\018;\144p\026'\197BVn7w\169\1537A\1484\014_\212Y\198V?\139l\205\146\144\239\000\230t\180\183X\252'w\180\253gs\223\226\017\177dEGNzR\030#\r\031\154;U\000\146K\031\145\025\171\159\0291}G:\2278\162Ot1o\130\176\233kQ\015\031.\182\231\234\171&\173<Bl\254R=\223\249i\229ei\017\191\021\000\174\1631R\169\184\167\204\138\238\006\177deg\155\172\234\204\011\166]\028\173\200\005sw\n@\1860\012\143\168\249\225\007\147\2450i\134y\005\151\242\133\204\157\173\158K\194\n\t\128\143\233\223X\236q]\247?\019#\254\154\190(i\171?\214\161\251\199[\0306\004\016Q\179\135\2255J\210\182\2379\162eY{V>0\171xM~\014\181W\171\181\239\190\246\211\202\144\180\128 \001p\141\198\136\227\184\167\204\143\159\017K\136\145\249\005\180\019\n\128\136\154}\248\"q\13004\030\225\210\129\247&\255\243\127\245\157\159\150\007\165\005\004\t\128\186\0251\210#\150\172\233\202\203\029\196\200\130\180\153\149\146\198\201\187\141\221y\244\238)\163\239@\242\205>\025\190j\254u\187yO\224\145.\004ECX\015T\1724q\226\187\249O\148_\251i\249?J\011r\002 \245\252\136\017\221IK\159\147\198\226\233\227\\\250%\183L\031\162\024\212\201\187\000\194\167\135\218\233\140\217\197\209\143\230M8\025\030A\208\185\166ffIL6\255\003i\017W\011@\202\189x\255\210\r&F^\021K1\1463K\191\171\187\243\196\136%\250\247Q\191\244\"ez\015y\226\004H\011\253\157o\\ \022\011\185\250\179\254\188\183\194/]M\158\157c\130\164(-\226U\r\164\152\198H&\151\213\149\145\150\223L\148\198\136\158\190\174\207\162\194.\029~/\204\136\147\203&L\222\159\168q\158\t\144\018\165r\181\254\245\147\225\138\020\2199|\017\246\021r\205=\"\232\017$\000\154\213\191\177\179W\156\204\171\0141\018;\026'+;\243\230\235\163\147wu\213\1328\001\146OO\216\158~\148\179z\237d\248\219:\218d)\239\189hQ\214\tof\137 \001R\232\240\003]\143{\174sL,\209\015E\141\017v\135\t\222\181y\019\1634Y\149+\229Z\211;\165\000\136\023]--\207\136\147\021&L\244\177.\230M\208\1400wx$H\128\148!F\146KO\221\213\175\213]\249\2509\007\204\155\000\233\161qr~\164b\190\024\134Gs\198\167\154\254\188\024\146\022\017$@\138\028\222\220\253\172\231\202^\177\132\024\137&=\223d\2460\252\165\177\169\250\182\162\000\146\143ax4\163\249 \241\134\164E\188:\129\148\168\199\136G\140\164\205\236a\248Kc\021\179z\194\188\t\144\022\012\195c\161.\1417\247\184\175'\206\135\210\"\130\004H\001\2191\210\145\203\200\218e\005b$f4N\214t\023d\1410\012\015\164\r\195\240\184\017}]4\251Y`^A\003\210\"\130\004H8?bDWFr\156 \028k\012\195\003\2335s\024^\223\211W,mc\222$\197*\245\1958\167\164Y\174\231\158\145\022qE\001$\216\225M\221/x\"\187\196\146e\133\156\244\220\146'F\018\138\195\023\129tk\012\195\235\137\221Y\222\231SAc\228\135\031L\182\178R>\244\228\233\225;\165E\172\144\000\tuhs\247Q\1792\178M,\209\015\169;o)\b\146k\246\188\t\195\240@\1864\134\225\207\201\244{\190\206\156\232\141($\147\133\0241K\027\222\128X\192\171\012H\152\163\189\197b\185\226\190 \022cdEG\174>{\128\244\152\025'\186\243\202\165\241)\230M\128\020\249h\222\164R_9a\024>Y\172\196\136Q\155\202\030\020\011X\143\003\018Dc\164RqO\153\149\145\rb\201\202\2066Y\213\153\023@5\134\225K\147\181\250\144,\128\244\208\027\021\197BVn_\218\198\188I\140M\152\155LgKe\0117\152\188\129'O\143l\017\011X!\001\018\130\024A\016\174\r\195\2232}\007\245\202d\181~\b#\128\228\171o\029>^\173\1271\012\031O\026#\1862b\227\134\146\231y\207\137%\172\144\000\t\208\191\177\216\2278\238)\243c\143XB\140`\161\024\134\007\210\141a\248x\0246\239\211\127w\165liu\219;aVG\182\138%\188j\128\152#F\016%\026'\186\141\176\222Ae\222\004H\031\134\225\163IW\180\207}X\022[<\175rg\223\224\228\144XB\144\0001\230G\140\232NZ\250\129\002\180\138ax \189\026\135/2\012\031>\2191b\226\225\233o\156\030> \022\017$@L\017#\136\019\134\225\129\244\2108Y\190\164M>\185$\203\188I\192\244\192\195\011\163\021\177\232\224\147\167\135\173\157o\214@\144\0001\244\226\253K7dr\217S\230\023\184(\022\228\028G\214.+\\;\185\027\240\211\244v\162\204\155\000i\212\1527a\024\222\127\182c\196\\*\156\249\198\235\195\159\023\031p+\020\136\025?bd\221'\218\165\163\141\015\006\004\227\214Y\135/\018'@z4\014_T\012\195\251\199\143\024\201\2313V\182\248\157\243\175/\000b\227\240\003]\143\187\174s\192V\140\2322\250\218\"1\130\240i\156\\6a\242\254D\141y\019 e\244\198\152\014\1943ob\135_1\178}\160T\018\159\016$@Lh\140x\174sL,\209\024\209\149\145\002K\230\136\152\198\188\t\195\240@\2504\134\225o\235h\147\165\220,[4\029^\215\247O[<O^no\207\236\2423F\020A\002\196\192\161M\221;\2057k;Z\016#\136\011\221B\248J\185f\245\003\022@<\232g\213\n\019&\203\218\025\134_\b?b\164opx\155\004\128 \001\"\238\240\230\238g\205\155\194^\177\132\024A\028U]\175~\"<\243&@:\173\236\204\203\170\2066\193\245j\230\253\241\220\135\021s\243\198\234\141\027_v\211\154\015\015\234\001\017f;F:r\025\185\155\024A\012e\028\167>\235t\235\146\182\250\151\254\\\169y2\229\178\1330\144\006\250(g\214\201Hg\158\207\175\1534F~\248\193\164\140L\213\196\022s\221\241\156Y\025\217-\001\"H\128\136\242#Fte\132eo\196].3\029'\250\140\185\198\137\249\2484+(\230\131\153\243M\128D\211\153\178\021KY%i\208\1552?\1862)\227U{\171\198Wcd\175\004\140 \001\"\232\240\166\238\023\204\165\149\181\187\019]\230\142\210\221\203\218\235\023r@\146\232k\250\150B\174~\145\210\216\157\199|F\019'@\002\233\239\246\170\206\188`:Fted\178\022\255\024Q\156C\002D\204\161\205\221G\205\155\1946\177D\247x\215\019\216\129\164\211\157y\026\135{2\012\015$\143\174\244\227\163\024)'$F\020\183K\129\b\209\024\017b\004\176\134\195\023\129\228\208\2073\253\\K3\127b\196\219\22278rLBD\144\000\017p\180\183X\172T\220S\230\014\197\006\177deg\027K\219\192\012\1418\18546e\245\153k\000\254\2273\205\159\024\145\128w\211\154\015\143l\001!#F\128`\232\150\215\005swU\239\176\142O\185ri|\138\195\023\129\024\2243Md\194\188gi\140T-\207\199\153\191\156\175\007\030.\020A\002\132\168\127c\177\167\\vO\153\031{\196\018\222\184\129\155\211]\186\026\14336N\134/M\214\172\127\216\003h\r\143i\249\023#QB\144\000!\209\024q\028b\004\b\219\181a\248[\164\030&W&\171\245C\024\001\132\139\024\153~O\250\201p%\2417K\b\018 \004~\196\200\154\174<\251\179\003-\186\245\234#]\012\195\003\225\2019\142\172]V\184\182k^Zi\140\156\251\176,i@\144\000\001\243#F\184\139\004\2165s\222D\227D\183\017\1904^e\222\004\240\153\198\136\030\226\171\143U\166\217\165\177\170\156\031IG\140(\174`\128\000\189x\255\210\r&F^\021K1\162o\220=\197\188,+\240\171\012\248E\227DW\031\245\139ax\192?\250\187\182\182H\140\\\028\157\146\011\163\021I\019\174b\128\128h\140drY]\025)\138\005\220E\002\130\1990<\224\015\141\017\253L+d\137\145\180\197\136\"H\128\000\244o\236\236\021'\243\170C\140\000\1371{\024\158y\019\1609\196\200\180\180\198\136\"H\000\159\029~\160\235q\207u\142\137%\188q\003\209\1950<\208\028>\211\166\157\031\169\212\015mM+\130\004\240\0171\002\164\203\236a\248\203&L\222\159\1681o\002\204\161#\151\169\239\166\149\246\2074\221IKWY\211\140 \001|rxs\247\179\158+{\197\018b\004\136\023\253\157]\217\1537_\031\205\1550\012\015L\211\024\209\207\180\\\198\145\180\170\185^}e$\2371\162\b\018\192\007\245\024\241\136\017\000\211\174\205\155\024\186\133\240\149r\141\139"
let d_d8838ed39f0cc43c6ea2eadb04bc1eb1 = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"library\"\n\n[[package]]\nskeleton = \"library\"\ndir = \"src/!{name}\"\ngen-version = \"version.ml\"\nkind = \"library\"\nname = \"!{name}\"\n\n"
let d_d88f3d1378d5bd64781fbba06d1c81a7 = "#[ocaml::func]\npub fn hello_world() -> &'static str {\n \"hello, world!\"\n}\n"
let d_daa93d2c3adf4d14884e016e4cb3d505 = "\n//Provides: ml_reverse\n//Requires: wasm, wasm_ready, walloc_u8, wextract_u8, wu64\nfunction ml_reverse(b) {\n wasm_ready();\n var n = wu64(b.data.length);\n var p = walloc_u8(wasm, b);\n wasm._reverse(p, n);\n wextract_u8(wasm, b, p);\n return 0\n}\n"
let d_dbd90d737d4b5eb55f1c85ba50aa0329 = "MF\204w\155\136\017\000H6\130\004\1375\190\255\222\003\025qv\222\232\207!H\016E:o\"R\2355q\242\184y\155\238\149\020\211M\001t\147\000\001\000$\022A\130D\155\220w\223\219\230U\190a\190\127\159 A\212\197e\024\222\015\196\b\000\164\003\219\254\"\209<\169n\213\173\145\005\136\169\190\193\210\208\142\191\024>\240\228\233\225;k\213\218\231u\203[\243\135\135$\193<\145\146#\222Vb\004\000\210\129\021\018$\222\196\190\251\244\209\151Ss\253{\172\144 \174\2260\012\223\012\141\017\183Z\219\242\212\027c\169>[\t\000\210\132\021\018$\158\006\135\014\197\n\144 }\131\163\003z8`{!\186\135/6a\136\024\001\128\244a\133\004\1691\185\255>]%\233\157\249\199X!A\146\196|\024~\200\243*[\250\006'\135\004\000\144*\139?\237\n\136\169\137\201\234\214\197\028\154\b\196\141\206\155\152o\199\244k:N\220m\211q\018\249axb\004\000R\140\021\018\164\202\232\239\221\191!\231y\167\026\135&\178B\1304h\204\155D\244dxb\004\000R\142 A\234L\254\155{vI&\243\130\254L\144 m\1625\012\239\r\020\n\217\173\219\007J%\001\000\164\022A\130Tj\028\154H\144 \173\142\246\022\139\147\147\181GB\15679\248\228\233\225]\002\000H=\130\004\169te\239\134\162\206\147x\158\179\157 A\218\005;\012\239\rx\158\247\156\238\018&\000\000\bA\130\020\155\216\183\161\167\230\182\021;\127\247\r\182\024\005\174\242k\024\222\252\245\206\184\174w\144\195\014\001\000\179\017$\000\1289\181:\012_?q\221\241Nx\174\2472+\"\000\128\249\016$\000\128\155z\241\254\165\027\156L\1827\147\2414N\138W\183\207\238i\252\251\245\2480_\230'\179\018\226\252\153\227\184g\218\219sg\024X\007\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\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\239v\224@\000\000\000\000@\144\191\245 \023\000\000\000\000\000\000\000\000\000\000\000\000\240\020x\250\149\0198.\198\135\000\000\000\000IEND\174B`\130"
let d_dc5fe1d1247e3160b87ef555c74f7bc7 = "!{header-ml}\n\n(* If you delete or rename this file, you should add\n 'src/!{name}/main.ml' to the 'skip' field in \"drom.toml\" *)\n\nlet () = Printf.printf \"Hello world!\\n\"\n"
let d_dfaa6ea574165d1997d4c119dcf37834 = "!{header-ml}\n\nlet () = !{name:alpha:cap}_lib.Main.main ()\n"
let d_e001d04969100c711855223ad6c23e6a = "let%test \"must-return-true\" = true\n\nlet%test_unit \"must-return-unit\" = ()\n\nlet%test_module \"module\" =\n ( module struct\n let%test \"must-return-true\" = true\n end )\n"
let d_e137bd3c9e197b23abe93e4bafd1a045 = "%{\n\n!{header-ml}\n\n(* If you delete or rename this file, you should add 'src/!{name}/parser.mly' to the 'skip' field in \"drom.toml\" *)\n\nopen Types\n\n %}\n\n%token ARROW\n%token EOF\n%token EQ\n%token FUN\n%token IN\n%token LET\n%token LPAR\n%token RPAR\n%token UNIT\n%token<bool> BOOL\n%token<float> FLOAT\n%token<int> INT\n%token<string> STRING\n%token<string> VARID\n\n%right LET\n%right IN\n%left FUN\n%left ARROW\n%left LPAR\n%left DUMMY_APPLY\n%left VARID\n%left CURRY\n\n%start <Types.e> file\n\n%%\nlet literal ==\n| UNIT; { Unit }\n| ~ = BOOL; <Bool>\n| ~ = INT; <Int>\n| ~ = FLOAT; <Float>\n| ~ = STRING; <String>\n\nlet var_id ==\n| ~ = VARID; <>\n\nlet const ==\n| ~ = literal; <Literal>\n| ~ = var_id; <Var>\n\nlet e :=\n| LPAR; ~ = e; RPAR; <>\n| ~ = const; <Const>\n| FUN; ~ = VARID; ARROW; ~ = e; <Abstract>\n| LET; var_id = VARID; args = list(VARID); EQ; e1 = e; IN; e2 = e; {\n Bind (\n var_id,\n List.fold_right (fun el acc -> Abstract (el, acc)) args e1,\n e2 )}\n| ~ = e; ~ = curry; {\n List.fold_left (fun acc el -> Apply (acc, el)) e curry } %prec DUMMY_APPLY\n\nlet curry :=\n| ~ = curry; ~ = e; { curry @ [e] } %prec CURRY\n| ~ = e; { [e] } %prec CURRY\n\nlet file :=\n| ~ = terminated(e, EOF); <>\n"
let d_e1c819bfd751290e7ca631f23d78e43c = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"rust_binding\"\n\n[[package]]\nskeleton = \"rust_binding_lib\"\ndir = \"src/!{name}\"\nname = \"!{name}\"\n\n[[package]]\nskeleton = \"rust_binding_test\"\ndir = \"src/!{name}_test\"\nkind = \"program\"\nname = \"!{name}_test\"\n[package.dependencies]\n!{name} = \"version\"\n"
let d_e1e07b67e839e0d7059e775959ad1698 = "#ifndef __MAIN\n#define __MAIN\n\n#include \"stdint.h\"\n\nvoid reverse(uint8_t* p, uint64_t len);\n\n#endif\n"
let d_e340d08521b75ad89d7caa628474e063 = "l\199\136\014\174\255\250\177\239\019#\017`;F\244q,\189\014\\h\140\168\149f\021\165\213\243\233\156\140\243\248\204\127\205Uh\140\028~\160\235\241l.\251\182\173\024\209\"\254\165[\137\017\000\000\146\194\143\024\209\149\017\221\226\023\225\242+F\n\217\197_\007\234#\254\186\tR\179\028\207\249\216A\137\\\137\198\132\198\136\231:\199\196\018\141\145f_\132\000\000 ztx\221f\140\172{\2321b$\"^?\184\219j\140\232\188\136^\007\2302\205Oo\232&H\139YY\153I\135\219_\188\191x\237\184\n\174Fc\224\208\166\238\157\196\b\000\000\152\143\198\136\238\168e\139\198H\2393/\017#\0170\240|\159\188\243\007\246\206\025\209\213\141\207|bIK1\210\176\170\179\249\157Y3\217\026A\018\023\1357w?k\190\029\016K\136\017\000\000\146\163\230z\245\003\015m\198\200\250\175\237\168\199\b\194\165\219\249j\140\188{\242\184\216\1621\210\234\252\199L\186B\210\236*\137\2278\215\130\132=^#Lc\196\243d\175X\162\207\n\174]V F\000\000H\128F\140\140W[\219\134u\166\251\158\216#\247>\177[\016.\141\145?\254\237\135\235\167\176\219\178\210\172f\232\182\190\182u\2313\245-\129\023\205\241\174-\191\017$\017\229G\140\180\250\172 \000\000\136\134J\205\147\179W\136\145$\138S\140\168\166\015N\244>:K\143 \137\160\195\155\186_01\178K,\209\193\165\181Eb\004\000\128$\208\024\209\149\145V\015\168\155\137\024\137\134\145\247\206\215cD\191\219\226g\140\168\172\133\235K\130$b\014m\238>jbd\155Xb\251YA\000\000\016\030?bd\243\206\253\178\254\235}\130p\1971Fl!H\"\226ho\177X\174\184/\b1\002\000\000\230\224G\140\244>\211/\235\030zT\016.?bD\175\001\245Z\208o:\203\212*\130$\0024F*\021\247\148\137\145\rbI\\\138\024\000\000\220\156\237\024\209\237|7\153\149\017b$|q\142\0175\214\228\028\147'\206\135\141\159\t\146\1445b\196#F\000\000\192\028&\166\220z\140T\189\214\239D+\141\017=\240POaG\184tp]cD\007\217m\2009N}G\213f\183\226mFi\178\137\029\182\012Gd\168\2413A\018\162\254\141\197\158r\217\172\140\200G\187\012\180\138\024\001\000 9\136\145\228\242#FtG\213\142\182\224\142w\208\237~\155\221\233\205\173y\003\141\159\t\146\144h\1408\0141\002\000\000\230\166\135\029\254d\184b-F\186\238XS\143\017\253\142p\189{\242\0219}p\143\181\024\209\131\175uG\213 cD\1577\175\207fy^v\168\2413A\018\002?b$\200g\005\001\000\128\1914F\206}X\022[\136\145\232\208\024\025x~\135\216\1621\162+#A\031|}qt\170\149sp\134\158z\163t\166\241/\184\130\r\0241\002\000\000n\228\210XU\206\143\016#I\244\206\183^\146\215\015\236\017[\194\140\145\011\163\205\175\142\136\243\209\227Z\138\171\216\000\189x\255\210\r2\029#E\177 \140\193%\000\000\224\159\150/\244f!F\162\227\205#\251\228\173#\251\197\150\216\198\136\225\185\222\2033\2555Gw\007Dc$\147\203\158r,\198H\208\131K\000\000\192?\182cD\007\215\191\188\25581\018\001\182c\164#\151\169\223\148\142c\140\024CO\158\030\190s\230\031\224j6\000\135\031\232z\220f\1404\138\152\024\001\000 \025\252\136\017VF\162\193\143\024\137\235\202\136\242<\239\185\217\127\140\021\018\159i\140x\174sL,\tky\014\000\000\248\227\252HE.\141M\137-w\220\243\160|y\223\241\250\022\191\b\151\237\024\233\202g\234\187i\2292\193^\194[|\141^\183:\162\152!\241\209\161M\221;=W\014\136%\196\b\000\000\201\162;i\233\142Z\182\172{\2321\233}\230%A\248\006\158\239\147wO\030\023[t\003#\221\200(h6_\163s\173\142(VH|rxs\247\179\158'{\197\018b\004\000\128\228\168\185^\253\17431\146LI\136\017\251\175Q\239\196\147\167G\182\206\245\239\176B\226\003\2191\018\214\224\018\000\000\176O/\244\244\244\245\022\206p\184\206}O\236\145{\159\216-\b\151\030t\168\167\175\235)\236\182\132q\240\181\015\175\209!\207\155zz\190\127\147 \177\204\143\024\209\149\145\160\159\021\004\000\000\246\017#\201E\140\204\207\243\220\237}\131\147C\243\253\251\004\137E\196\b\000\000\152O\1656}\161W\174\017#I3\242\222\249z\140\232w[\194\136\017?^\163\230*\246\233'\007G\007n\244\231\016$\150\028\218\220}\212\196\2006\177$\172\193%\000\000`\0311\146\\\196\200\252\204\181\241sO\014\014\223t\131'n\189[\1601\"\196\b\000\000\152\131\031\023z\189\207\244\203\186\135\030\021\132\203\143\024Y\211\149\151\021K\219$H\254\196\136\183\189op\228\216B\254\\\130\164\005G{\139\197r\185\246\170\249\219\216+\150\132Q\196\000\000\192\031\196Hr\249\017#zCZoL\007)\236\024Q<\178\213$\141\145J\197=ebd\131XB\140\000\000\144\028\019S\174\156-\149\173]\232\233A\135\191\186\239\184\172\188\231AA\184tp\253\187\187\031\181\022#9\199\145\213\221\249\192cD_\163\026#U\207\019\027\204_\165$\158\187\181\239&3#\179\177B\210\132\254\141\197\158L\198}\213\252\179#F\000\000\192ul_\232i\140|\245\155\175\201\242\187\214\011\194\1651\162+#\186\171\150\r\026#\186\137QG[\176\199;\248\017#n\181\182\229\1697\198\206\200\"q\176\197\"i\1408\142{\138\024\001\000\000s\185R\174Z\189\208\235\186c\r1\018\017\023\223\254~\"bD\015;\180\249\0265\134\154\141\017\197#[\139\208\136\017\243c\143X\018\198\224\018\000\000\240\135^\232\157\251\176,\1824bD\191#\\\239\158|E\006\158\223!\182\020\178\2111\018\244\193\215\182_\163R?\244\176bbd\254sFn\134G\182\022\200\143\024\tcp\t\000\000\248\227\210XU\206\143\016#I\148\148\024\177\253\026\149\1711r\163C\015\023\130\171\225\005x\241\254\165\027L\140\188*\150b$\172\193%\000\000\224\143\139\163Sra\180\"\182\016#\209\241\230\145}\242\214\145\253bKX1b\2515*\150bDqE|\019\026#\153\\VWF\138bAX\207\n\002\000\000\127\016#\201E\140\204\205\\\206\158q\221\202V\0271\162\b\146\027\232\223\216\217+N\230U\135\024\001\000\000s\176}\161\167\131\235\026#\186\171\022\194e;F:r\153\250u`.\019\236\196\132\0311\146\207g\182l\031\152,\137%\\\025\207\227\240\003]\143;N\230\148\173\024\209\"\254\165[\137\017\000\000\146\130\024I\174\164\196\200\249\145\138\229\199\180\188\129\233\024)Y\139\017\197\n\201\0284F<\2159&\150\132\181<\007\000\000\252\161\187\020\233nE\182\172{\2321\233}\230%A\248\006\158\239\147wO\030\023[tfxuW>\240\024\177\253\026\245<y\185opd\155\248\128+\228Y\014o\238~\150\024\001\000\000\243!F\146\203\143\024\209]U\147\017#\195\219\196'l\251;C=F<\217+\150\016#\000\000$G\205\245\228l\169,#\149\154\216\178\254k;d\243\174}\130p\233A\135\127\178\251\209\250\193\135\182\172\232\200\201\154\238\130\004I_\163z\224\225x\213\021[\204\181\241s&F\246\138\143\b\146\171l\199HX\207\n\002\000\000\251\252\184\208\187\239\137=r\239\019\187\005\225\210\024\209\211\215/\159}GlY\217\217&\171:\243\018\164\184\198\136\226\214\189\016#\000\000`~\149\0261\146T#\239\157OD\140\232k\244\007\151\227\025#*\245W\204\1357u\191\224\137\236\018K\194\026\\\002\000\000\2465b\164\\#F\146\166\017#\250\221\150\176b\196\246k4\200\024Q\169\190j>\180\185\251\168x\178M,i\012.\001\000\128\248\243\227Bo\243\206\253\178\254\235}\130p\249\017#k\204\r\233\021K\219$H~\188FM\028<\253\141\211\195\007$@\169\220\246\247ho\177X.\2154F\030\017K\194\024\\\002\000\000\254\240\227B\175\247\153~Y\247\208\163\130p\249\017#zCZoL\007\201\159\149\017o\251\147\131#\199$`\169\011\018\141\145J\197=e\250o\131X\018\198\242\028\000\000\240\199\196\148[\223M\203\214\133\158\030t\184\201\172\140\016#\225\211Y\145\239\238~\212Z\140\228\028GVw\231\003\143\017\219\175QO\164\148\145z\140\156\144\016\164*H\0261\226yB\140\000\000\128\235\232\133\158\222u\174\154\139\005\0274F\244\244u=\133\029\225\210\024\209\149\017\221U\203\006\141\017\221\196\168\163-\216=\162l\191F5F\220jmK\223\027cg$$YI\137\254\141\197\158Z\205=m~\252\140XB\140\000\000\144\028\195\149\154\156\189R&F\018H\207\023\249\207\191\243\235\177\143\017\219\175\209F\140<\021b\140\168T\172\144h\1408\142>\166%=b\t1\002\000@r\232\169\214z\186\181-]w\172\169\199\136~G\184\222=\249\138\012<\191Cl\t\235\224k\219\175QcH\188\138\137\145\201!\tY\226w\217\242#F\194\024\\\002\000\000\254 F\146\139\024\153\215\144gb\164o0\252\024Q\137\014\018b\004\000\000\220\200\197\209)\1850Z\017[\136\145\232x\243\200>y\235\200~\177%\172\024\177\253\026\149\136\197\136J\236\149\245\139\247/\221 \2111R\020\011\194zV\016\000\000\248\131\024I.bd^\145\139\017\149\200 \209\024\201\228\178\167\028b\004\000\000\204\193\246\133\158\014\174k\140\232 ;\194e;F:r\025Y\187\172\016\251\0241\151\179g\242\249\204\150\237\003\147%\137\152\196]a\031~\160\235q\1551\210(bb\004\000\128d F\146\203\143\024I\194\202\200G1R\138\\\140\168D\173\144h\140x\174s\204\214`LX\203s\000\000\192\031\231G*rilJl\233\249\226\195\210\251\187\253\196H\004\188~p\183\188\243\007\253b\203\178BNzn\201K.\019\236\200\181\014\175\235\016\187-\158'/\023\n\153]Q\141\017\149\152\161\246C\155\186w\154o\007\196\018b\004\000\128d\177}\161\183\238\161\199\164\247\153\151\004\225\027x\190O\222=y\\l\209\r\140t#\163\160\249\017#}\131\195\219$\226\018\017$\1357w?k\254\134\239\021K\136\017\000\000\146\163\230z\245\149\017\155\023z\235\191\182C6\239\218'\b\151\030t\248g\255\186O\206}\2395\177eEGN\214t\007\027#\250\026=[*\203H\165&\022\029|\242\244\240.\137\129\216\007\137\237\024\tkp\t\000\000\216\167\023z?\252`R\198\171\174\216r\223\019{\228\222'v\011\194\1651\242\199\191\253\176\\>\251\142\216\018\198\193\215~\188F\205\181\241sfed\175\196D\172\131\196\143\024\209\149\145\160\159\021\004\000\000\246\017#\201\149\148\024\169\212\204\202\200\149t\199\136\138\237\149\247\225M\221/x\"\214\150\161\186\242fe\164H\140\000\000\144\004z\161\1671R\174\017#I3\242\222\249z\140\232w[\194\138\017\219\175\2098\198\136\138\229\213\247\161\205\221G\197\147mbIX\131K\000\000\192>b$\185\136\145\249\153\139\250\167\191qz\216\218\006OA\138\221\182\191\196\b\000\000\152\143\031\023z\189\207\244\203\186\135\030\021\132\203\143\024\209k@\189\022\012\146?+#\222\246'\007G\142IL\197f\133\228ho\177X\169\184\167\204R\212\006\177$\140\"\006\000\000\254 F\146\139\024\153\159\198H_\140cD\197\"H\136\017\000\000p#\019Sn\253B\175j.\022l\208\131\014\127u\223qYy\207\131\130p\233\224\186\198\136\014\178\219\144s\156\250\142\170]\249\172\004\201\246k\212\252UJn\181\182\229\1697\198\206H\204E>H\2507\022{\028\199=e~\236\017K\136\017\000\000\146\195\143\024\249\2347_\147\229w\173\023\132\203\143\024\209\029U;\218\130=\222\129\024\185\177H\031\182A\140\000\000\128\027\209\195\014m^\232u\221\177\134\024\137\136wO\190b5F\026\007_\007\029#\182_\163\198\144x\149\207'%FTdWH\252\136\1450\158\021\004\000\000\254\208\011\189s\031\150\197\150F\140\232w\132Kcd\224\249\029bK#F\130>\248\218\246k\212\024\242\188\202\150\190\193\201!I\144H\006\t1\002\000\000n\228\210XU\206\143\016#I\244\206\183^\146\215\015\236\017[\194\138\017\219\175QIh\140\168\200]\161\191x\255\210\r&F^\021K1\162\207\n\246\020\243\178\172@\140\000\000\144\004\023G\167\228\194hEl!F\162\227\205#\251\228\173#\251\197\150\176b\196\246kT\018\028#*R3$\026#\153\\\214\218\202Hcp\137\024\001\000 \025l_\232\233\172\b1\018\r\182c\164#\151ID\140\152\203\2173I\142\017\021\153+\245\254\141\157\189\226d^uD\138b\129\022\241\218b\240\131K\000\000\192\031~\197\136\238\170\133p\249\021#\185L\176\211\t~\196H>\159\217\178}`\178$\t\022\137\171\245\195\015t=\2388\153S6c$\140]\020\000\000\128?l_\232\221q\207\131\196HD\188~p\183\213\024\233\202\135\019#\231G*\150\031\211\242\006\166c\164\148\232\024Q\161\175\144h\140x\174sL,\t\235YA\000\000\224\015\221\165Hw+\178e\221C\143I\2393/\t\1947\240|\159\188{\242\184\216\162\027\024\233FFA\179\253\026\245<y\185opd\155\164D\168W\237\1357w?K\140\000\000\128\249\016#\201\164g\139$!Fj\174\231S\140\012o\147\020\tm\219\223z\140x\178W,!F\000\000H\014\189\208\211\195\228\198\171\174\216r\223\019{\228\222'v\011\194\1651\162\007\030\234)\236\182\132q\240\181\031\175Qsm\252\156\137\145\189\1462\161\004\137\237\024\tkp\t\000\000\216G\140$\02312\191\180\198\136\n\252\n\158\024\001\000\000\243\169\212<9{\133\024I\162\145\247\206\215cD\191\219\018F\140\232kTc\164\\#Fl\t\244*\222v\140\232\179\130\171\187\242\196\b\000\000\t\224\199\133\0301\018\r\196\200\252\210\030#*\176+y?b$\140]\020\000\000\128}~\\\232m\222\185_\214\127\189O\016.?bD\175\001\245Z0H\254\196\136\183\189op\228\152\164\\ ArhS\247N\243\237\128X\178\162#'k\186\137\017\000\000\146\192\143\011\189\222g\250e\221C\143\n\194E\140\204\143\024\249\136\239A\242\226\253K7ds\217\183\197\1460\150\231\000\000\128?&\166\\9[*[\187\208\211\131\0147\153\149\017b$|:\184\254\221\221\143Z\139\145\156\227\200\218e\005\233\202g%H\182_\163\158HI<wk\223\224\232\128\160\206\215\188\236\223X\236q\028\247U\177\132\024\001\000 9\244BO\239:W=Ol\208\024\209\211\215\151\223\181^\016.\141\017]\025\209]\181l\208\024\209M\140:\218\130=\222\193\246kTc\196\173"
let d_e38a0695d609c6df1a738617ce19bb14 = "[license]\nkey = \"LGPL2\"\nname = \"LGPL-2.1-only WITH OCaml-LGPL-linking-exception\"\nheader = \"\"\"\nThis file is distributed under the terms of the GNU Lesser General\nPublic License version 2.1, with the special exception on linking\ndescribed in the LICENSE.md file in the root directory.\n\"\"\"\ncontents = \"\"\"\nThis software is distributed under the terms of the\nGNU Lesser General Public License (LGPL) version 2.1 (included below).\n\nAs a special exception to the GNU Lesser General Public License, you\nmay link, statically or dynamically, a \"work that uses this software\"\nwith a publicly distributed version of this software to produce an\nexecutable file containing portions of this software, and distribute\nthat executable file under terms of your choice, without any of the\nadditional requirements listed in clause 6 of the GNU Lesser General\nPublic License. By \"a publicly distributed version of this software\",\nwe mean either the unmodified this software as distributed by OCamlPro,\nor a modified version of this software that is distributed under the\nconditions defined in clause 2 of the GNU Lesser General Public\nLicense. This exception does not however invalidate any other reasons\nwhy the executable file might be covered by the GNU Lesser General\nPublic License.\n\n----------------------------------------------------------------------\n\nGNU LESSER GENERAL PUBLIC LICENSE\n\nVersion 2.1, February 1999\n\nCopyright (C) 1991, 1999 Free Software Foundation, Inc.\n51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA\nEveryone is permitted to copy and distribute verbatim copies\nof this license document, but changing it is not allowed.\n\n[This is the first released version of the Lesser GPL. It also counts\n as the successor of the GNU Library Public License, version 2, hence\n the version number 2.1.]\n\nPreamble\n\nThe licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users.\n\nThis license, the Lesser General Public License, applies to some specially designated software packages--typically libraries--of the Free Software Foundation and other authors who decide to use it. You can use it too, but we suggest you first think carefully about whether this license or the ordinary General Public License is the better strategy to use in any particular case, based on the explanations below.\n\nWhen we speak of free software, we are referring to freedom of use, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish); that you receive source code or can get it if you want it; that you can change the software and use pieces of it in new free programs; and that you are informed that you can do these things.\n\nTo protect your rights, we need to make restrictions that forbid distributors to deny you these rights or to ask you to surrender these rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library or if you modify it.\n\nFor example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link other code with the library, you must provide complete object files to the recipients, so that they can relink them with the library after making changes to the library and recompiling it. And you must show them these terms so they know their rights.\n\nWe protect your rights with a two-step method: (1) we copyright the library, and (2) we offer you this license, which gives you legal permission to copy, distribute and/or modify the library.\n\nTo protect each distributor, we want to make it very clear that there is no warranty for the free library. Also, if the library is modified by someone else and passed on, the recipients should know that what they have is no"
let d_e419a5323f81bb19f7129e731466074e = "{\n !{header-ml}\n\n(* If you delete or rename this file, you should add 'src/!{name}/lexer.mll' to the 'skip' field in \"drom.toml\" *)\n\nopen Parser\n}\n\nlet ws = ['\\n' '\\r' '\\t' ' ']*\nlet var_id = ['a'-'z' 'A'-'Z' '_' '-']*\n\nrule token = parse\n | ws { token lexbuf }\n | var_id as v { VARID v }\n | \"fun\" { FUN }\n | \"let\" { LET }\n | \"->\" { ARROW }\n | \"()\" { UNIT }\n | \"=\" { EQ }\n | \"(\" { LPAR }\n | \")\" { RPAR }\n | eof { EOF }\n | _ { failwith \"unexpected char\" }\n"
let d_e59a29ac6800731c9bf67e6922bc9261 = "[skeleton]\nname = \"ppx_rewriter\"\ninherits = \"virtual\"\n\n[file]\n\"package.toml\" = { create = true }\ndune_ = { file = \"dune\", skips = [ \"@dune\" ] }\n\"index.mld\" = { skips = [ \"@docs\" ] }\n\"main.ml\" = { skips = [ \"@code\" ], create = true }\n"
let d_e65dda4b769106abbb98068d14dd7de9 = "let fmt = Format.std_formatter\n\nlet print_headers fmt = List.iter (Format.fprintf fmt \"#include <%s>@\\n\")\n\nlet make_types_stubs (c_headers : string list)\n (types_functor : (module Cstubs.Types.BINDINGS)) =\n print_headers fmt c_headers;\n Cstubs_structs.write_c fmt types_functor;\n Format.pp_print_flush fmt ()\n\nlet make_functions_stubs (c_headers : string list)\n (functions_functor : (module Cstubs.BINDINGS)) =\n begin\n match Sys.argv.(1) with\n | \"c\" ->\n print_headers fmt c_headers;\n Cstubs.write_c ~prefix:\"gsl_stub\" fmt functions_functor\n | \"ml\" -> Cstubs.write_ml ~prefix:\"gsl_stub\" fmt functions_functor\n | s -> failwith (\"unknown functions \" ^ s)\n end;\n Format.pp_print_flush fmt ()\n"
let d_e68dd8d85bc2c49ec813ee12daf0444a = "t is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term. If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n 8. Termination.\n\n You may not propagate or modify a covered work except as expressly\nprovided under this License. Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License. If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n 9. Acceptance Not Required for Having Copies.\n\n You are not required to accept this License in order to receive or\nrun a copy of the Program. Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance. However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work. These actions infringe copyright if you do\nnot accept this License. Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n 10. Automatic Licensing of Downstream Recipients.\n\n Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License. You are not responsible\nfor enforcing compliance by third parties with this License.\n\n An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations. If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License. For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, off"
let d_e824b52fa6e79ec6e8d176c37b63e05c = "[skeleton]\nname = \"driver\"\ninherits = \"virtual\"\n\n[file]\ndune_ = { file = \"dune\", skips = [ \"@dune\" ] }\n\"index.mld\" = { skips = [ \"@docs\" ] }\n\"main.ml\" = { skips = [ \"@code\" ] }\n\n"
let d_e9c5b822ad664d008d0fde586eb4bd7c = "val make_types_stubs : string list -> (module Cstubs.Types.BINDINGS) -> unit\n\nval make_functions_stubs : string list -> (module Cstubs.BINDINGS) -> unit\n"
let d_eaf78f3f79c256afffba00b43ae8360c = "; generated by drom from package skeleton 'driver'\n(library\n (name main)\n (public_name !{name})\n (kind ppx_rewriter)\n (libraries !{dune-libraries} !(package-dune-libraries))\n !{dune-stanzas}\n !(package-dune-stanzas)\n )\n\n!{package-dune-files}\n(documentation\n (package !{package-name}))\n!{package-dune-installs}\n!(package-dune-trailer)\n"
let d_ef6eee1d1637dfe5b603cbfa68332653 = "!{header-ml}\n\n(* If you delete or rename this file, you should add 'src/!{name}/printer.ml' to the 'skip' field in \"drom.toml\" *)\n\nopen Types\n\nlet pp_literal fmt = function\n | Unit -> Format.fprintf fmt \"()\"\n | Bool b -> Format.fprintf fmt \"%B\" b\n | Int i -> Format.fprintf fmt \"%d\" i\n | Float f -> Format.fprintf fmt \"%f\" f\n | String s -> Format.fprintf fmt \"%S\" s\n\nlet pp_const fmt = function\n | Literal l -> Format.fprintf fmt \"%a\" pp_literal l\n | Var x -> Format.fprintf fmt \"%s\" x\n\nlet rec pp_e fmt = function\n | Const c -> Format.fprintf fmt \"%a\" pp_const c\n | Bind (x, e1, e2) -> Format.fprintf fmt \"let %s = %a in@.%a\" x pp_e e1 pp_e e2\n | Abstract (x, e) -> Format.fprintf fmt \"fun %s ->@.%a\" x pp_e e\n | Apply (e1, e2) -> Format.fprintf fmt \"(%a) (%a)\" pp_e e1 pp_e e2\n"
let d_f052c711693bd8400b177abb38e3c8c6 = "[skeleton]\nname = \"virtual\"\n"
let d_f0ef7081e1539ac00ef5b761b4fb01b3 = "Hello world\n"
let d_f1e4854cb8d52dcaa7069646e619c3c9 = "# Everything above is inherited from 'virtual' package skeleton\n\nkind := \"program\"\nskeleton := \"js_driver\"\n\n[dependencies]\n!{name:alpha}_lib = \"version\"\n"
let d_f521eac468deaa7738a2e513cf30d4d8 = "#!/bin/sh\n\n# This script and after.sh are used to mimic drom hooks from the Makefile\n# and opam file.\n# drom calls the following hooks:\n# * before-build.sh [PACKAGE] (PACKAGE only provided if called from opam for PACKAGE.opam)\n# * after-build.sh [PACKAGE]\n# * before-sphinx.sh SPHINX_TARGET\n# * after-sphinx.sh SPHINX_TARGET\n# * before-odoc.sh ODOC_TARGET\n# * after-odoc.sh ODOC_TARGET\n# * before-test.sh\n# * after-test.sh\n# * before-install.sh PACKAGE\n# * after-clean.sh\n# * after-distclean.sh\n# * before-fmt.sh\n# * after-fmt.sh\n# * before-run.sh CMD ARGS\n# * before-publish.sh OPAM_REPO\n# * after-publish.sh OPAM_REPO\n\nCOMMAND=$1\nshift\nSCRIPT=./scripts/before-${COMMAND}.sh\n\nif [ -f ${SCRIPT} ]; then\n exec ${SCRIPT} $*\nfi\n"
let d_f5543cf258b301f667bb3b58995bdb15 = "[skeleton]\nname = \"ctypes_drv\"\ninherits = \"virtual\"\n\n[file]\ndune_ = { file = \"dune\", skips = [ \"@dune\" ] }\n\"index.mld\" = { skips = [ \"@docs\" ] }\n\"main.ml\" = { skips = [ \"@code\" ] }\n"
let d_f5a94909f9bdb2d16e5dd6c90539938d = "!{header-ml}\n\nlet () = !{project-name:alpha:cap}_lib.Main.main ()\n"
let d_f60603f1f14a583c0022f715ad3b11e7 = "!{header-ml}\n\n(* If you delete or rename this file, you should add\n 'src/!{name}/main.ml' to the 'skip' field in \"drom.toml\" *)\n\nexternal hello_world: unit -> string = \"hello_world\"\n\nlet main () =\n print_endline @@ hello_world ()\n"
let d_f81f0851aef758ca142d74fb966aeb53 = "#include \"stdint.h\"\n\nvoid reverse(uint8_t *p, uint64_t len) {\n uint8_t tmp;\n for (int i = 0; i < len / 2; i++) {\n tmp = p[i];\n p[i] = p[len-i-1];\n p[len-i-1] = tmp;\n }\n}\n"
let d_f891feaeb8fbab1b2d2757fb21ca343f = "# Everything above is inherited from 'virtual' skeleton \n\n[project]\nskeleton := \"c_binding\"\n\n[dependencies]\nconf-gsl = \"2\"\n\n[[package]]\nskeleton = \"c_binding\"\ndir = \"src/!{name}\"\nname = \"!{name}\"\n"
let d_fb3fd7e80e520c0a22ad5c7e1338101c = "How to install\n==============\n\nInstall with :code:`opam`\n-------------------------\n\nIf :code:`!{name}` is available in your opam repository, you can just call::\n\n opam install !{name}\n\nBuild and install with :code:`dune`\n-----------------------------------\n\nCheckout the sources of :code:`!{name}` in a directory.\n\nYou need a switch with at least version :code:`!{min-edition}` of OCaml,\nyou can for example create it with::\n\n opam switch create !{edition}\n\nThen, you need to install all the dependencies::\n\n opam install --deps-only .\n\nFinally, you can build the package and install it::\n\n eval $(opam env)\n dune build\n dune install\n\nNote that a :code:`Makefile` is provided, it contains the following\ntargets:\n\n* :code:`build`: build the code\n* :code:`install`: install the generated files\n* :code:`build-deps`: install opam dependencies\n* :code:`sphinx`: build sphinx documentation (from the :code:`sphinx/` directory)\n* :code:`dev-deps`: build development dependencies, in particular\n :code:`ocamlformat`, :code:`odoc` and :code:`merlin`\n* :code:`doc`: build documentation with :code:`odoc`\n* :code:`fmt`: format the code using :code:`ocamlformat`\n* :code:`test`: run tests\n"
let d_fe22defd2375a46b0e53cc91768f7544 = "[skeleton]\nname = \"program\"\ninherits = \"virtual\"\n\n[file]\ndune_ = { file = \"dune\", skips = [ \"@dune\" ] }\n\"main.ml\" = { skips = \"@code\", create = true }\n\n"
let file_chunks = function
| "drom/licenses/BSD2.toml" | "/drom/licenses/BSD2.toml" -> Some [ d_c33fdf9c63c67fdfd384a8dc07a6f624; ]
| "drom/licenses/BSD3.toml" | "/drom/licenses/BSD3.toml" -> Some [ d_430d9c126b9a6ff54f978dc13ed9ed3c; ]
| "drom/licenses/GPL3.toml" | "/drom/licenses/GPL3.toml" -> Some [ d_b0976310605f82d59f94a9d05bb096f7; d_7a37d4e7b153257218f8b96d51d64380; d_0d72c63ed47cf72799dd13a51d9590cc; d_58d72b4c13131f7fe42c3b16d5d93fd3; d_98b168cea5322ce1d9575801200d6424; d_e68dd8d85bc2c49ec813ee12daf0444a; d_b54a29a6938c94b4fbce8cdae07ee56e; d_2d4277bc95487c21d0b2e163aa9d4901; d_9b22080283c5dc8547d0ff4efce13080; ]
| "drom/licenses/ISC.toml" | "/drom/licenses/ISC.toml" -> Some [ d_46a196fb5d89fd25f9a01fbd4e6c550c; ]
| "drom/licenses/LGPL2.toml" | "/drom/licenses/LGPL2.toml" -> Some [ d_e38a0695d609c6df1a738617ce19bb14; d_88b81282d928695b2d59c26e553a895a; d_46d17a172aa99735ed7765ed770e6eed; d_a9017e42c913a2441d706f000523f2e8; d_5dd119d509bf16e1fd60049c0a9a98e3; d_067d4caa027d43cab2fe939077286f7e; d_7d4aa497434dd346a8c9fb59852813b6; ]
| "drom/licenses/MIT.toml" | "/drom/licenses/MIT.toml" -> Some [ d_d1efe50b61c41c1cd67dd45d57670412; ]
| "drom/skeletons/README.md" | "/drom/skeletons/README.md" -> Some [ d_7242d5f97affa3f389abfe15cc6d6167; ]
| "drom/skeletons/packages/c_binding/dune_" | "/drom/skeletons/packages/c_binding/dune_" -> Some [ d_31093901fd9b1800ce1bc46d8de764b5; ]
| "drom/skeletons/packages/c_binding/index.mld" | "/drom/skeletons/packages/c_binding/index.mld" -> Some [ d_c5512266ba9b99706618c209158dfc4f; ]
| "drom/skeletons/packages/c_binding/main.ml" | "/drom/skeletons/packages/c_binding/main.ml" -> Some [ d_633213ebe2ae1caa0b84e9ab9330cf5e; ]
| "drom/skeletons/packages/c_binding/package.toml" | "/drom/skeletons/packages/c_binding/package.toml" -> Some [ d_a2d71220896f42ed29a29adbcbd5ad3d; ]
| "drom/skeletons/packages/c_binding/skeleton.toml" | "/drom/skeletons/packages/c_binding/skeleton.toml" -> Some [ d_77c8619a5edc2597da947c748892983b; ]
| "drom/skeletons/packages/c_binding/stubs.c" | "/drom/skeletons/packages/c_binding/stubs.c" -> Some [ d_829b1d7fc32f58239fe93be3d5eb8079; ]
| "drom/skeletons/packages/ctypes_drv/dune_" | "/drom/skeletons/packages/ctypes_drv/dune_" -> Some [ d_40eb4d3e58c30f4460ee367d2a94613d; ]
| "drom/skeletons/packages/ctypes_drv/index.mld" | "/drom/skeletons/packages/ctypes_drv/index.mld" -> Some [ d_d4305b3b4f3768ccfddb242a81c9c2fd; ]
| "drom/skeletons/packages/ctypes_drv/main.ml" | "/drom/skeletons/packages/ctypes_drv/main.ml" -> Some [ d_250b377dfc07ff08faf007b5ab0fe904; ]
| "drom/skeletons/packages/ctypes_drv/package.toml" | "/drom/skeletons/packages/ctypes_drv/package.toml" -> Some [ d_cba462dcafaaecaae140912beb07c716; ]
| "drom/skeletons/packages/ctypes_drv/skeleton.toml" | "/drom/skeletons/packages/ctypes_drv/skeleton.toml" -> Some [ d_f5543cf258b301f667bb3b58995bdb15; ]
| "drom/skeletons/packages/ctypes_lib_foreign/discover/discover.ml" | "/drom/skeletons/packages/ctypes_lib_foreign/discover/discover.ml" -> Some [ d_0af30ef989a8b082612e99f6230f8892; ]
| "drom/skeletons/packages/ctypes_lib_foreign/discover/dune_" | "/drom/skeletons/packages/ctypes_lib_foreign/discover/dune_" -> Some [ d_8efb055bbda950460f620053c6c93584; ]
| "drom/skeletons/packages/ctypes_lib_foreign/dune_" | "/drom/skeletons/packages/ctypes_lib_foreign/dune_" -> Some [ d_7fd148d143e2c9afccf2b8b3a5ebd5bd; ]
| "drom/skeletons/packages/ctypes_lib_foreign/index.mld" | "/drom/skeletons/packages/ctypes_lib_foreign/index.mld" -> Some [ d_c5512266ba9b99706618c209158dfc4f; ]
| "drom/skeletons/packages/ctypes_lib_foreign/lib.ml" | "/drom/skeletons/packages/ctypes_lib_foreign/lib.ml" -> Some [ d_8827016c108446c6ab0a47e98b56f739; ]
| "drom/skeletons/packages/ctypes_lib_foreign/package.toml" | "/drom/skeletons/packages/ctypes_lib_foreign/package.toml" -> Some [ d_0e1dfe5ab2b7dd3417ce3a03823ed6cd; ]
| "drom/skeletons/packages/ctypes_lib_foreign/skeleton.toml" | "/drom/skeletons/packages/ctypes_lib_foreign/skeleton.toml" -> Some [ d_1d91a76a1c4054b1b81e31827bed2625; ]
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.ml" -> Some [ d_e65dda4b769106abbb98068d14dd7de9; ]
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.mli" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.mli" -> Some [ d_e9c5b822ad664d008d0fde586eb4bd7c; ]
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/dune_" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/dune_" -> Some [ d_6f8ddc265fcbd17881cecf1305c9fd73; ]
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/discover.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/discover.ml" -> Some [ d_0af30ef989a8b082612e99f6230f8892; ]
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/dune_" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/dune_" -> Some [ d_8efb055bbda950460f620053c6c93584; ]
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/dune_" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/dune_" -> Some [ d_4d45902d7c13c6345bed73209853d7da; ]
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_functions.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_functions.ml" -> Some [ d_cfe921b699b4edb3e197834c2c50a8e6; ]
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_types.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_types.ml" -> Some [ d_3e5f241618485824a3a14ebb519b90ab; ]
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions.ml" -> Some [ d_87c3ad89d604ebdaba5aac730cf8fcfc; ]
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions_functor.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions_functor.ml" -> Some [ d_092690ce81dafbdcde0466d2417a1234; ]
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types.ml" -> Some [ d_6e984e7c2b2bb27f9393cd86832ab953; ]
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types_functor.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types_functor.ml" -> Some [ d_9bd57fa717d699371d55f76e803b6287; ]
| "drom/skeletons/packages/ctypes_lib_stubs/dune_" | "/drom/skeletons/packages/ctypes_lib_stubs/dune_" -> Some [ d_7c4c4270a5349df10505bf34cbd0186d; ]
| "drom/skeletons/packages/ctypes_lib_stubs/index.mld" | "/drom/skeletons/packages/ctypes_lib_stubs/index.mld" -> Some [ d_c5512266ba9b99706618c209158dfc4f; ]
| "drom/skeletons/packages/ctypes_lib_stubs/lib.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/lib.ml" -> Some [ d_91562a084fa073c154de58d2bf08a7eb; ]
| "drom/skeletons/packages/ctypes_lib_stubs/package.toml" | "/drom/skeletons/packages/ctypes_lib_stubs/package.toml" -> Some [ d_a418dff22d936df0dec84c3a298b93f5; ]
| "drom/skeletons/packages/ctypes_lib_stubs/skeleton.toml" | "/drom/skeletons/packages/ctypes_lib_stubs/skeleton.toml" -> Some [ d_d4baa29949f7688520da97e4579a2fbf; ]
| "drom/skeletons/packages/driver/dune_" | "/drom/skeletons/packages/driver/dune_" -> Some [ d_1e0c9ac981542efc8aa70bb5fcb19b03; ]
| "drom/skeletons/packages/driver/index.mld" | "/drom/skeletons/packages/driver/index.mld" -> Some [ d_d4305b3b4f3768ccfddb242a81c9c2fd; ]
| "drom/skeletons/packages/driver/main.ml" | "/drom/skeletons/packages/driver/main.ml" -> Some [ d_f5a94909f9bdb2d16e5dd6c90539938d; ]
| "drom/skeletons/packages/driver/package.toml" | "/drom/skeletons/packages/driver/package.toml" -> Some [ d_b87e5b4d722d29ea41140d46c94d51cb; ]
| "drom/skeletons/packages/driver/skeleton.toml" | "/drom/skeletons/packages/driver/skeleton.toml" -> Some [ d_e824b52fa6e79ec6e8d176c37b63e05c; ]
| "drom/skeletons/packages/js_driver/dune_" | "/drom/skeletons/packages/js_driver/dune_" -> Some [ d_a0495365fc1cf5117fa2a6b838453d7f; ]
| "drom/skeletons/packages/js_driver/main.ml" | "/drom/skeletons/packages/js_driver/main.ml" -> Some [ d_dfaa6ea574165d1997d4c119dcf37834; ]
| "drom/skeletons/packages/js_driver/package.toml" | "/drom/skeletons/packages/js_driver/package.toml" -> Some [ d_f1e4854cb8d52dcaa7069646e619c3c9; ]
| "drom/skeletons/packages/js_driver/skeleton.toml" | "/drom/skeletons/packages/js_driver/skeleton.toml" -> Some [ d_4b89600c30a24efa809ef6dc2c9055de; ]
| "drom/skeletons/packages/js_library/dune_" | "/drom/skeletons/packages/js_library/dune_" -> Some [ d_0c259933bb778c33d3438fffa4f23079; ]
| "drom/skeletons/packages/js_library/main.ml" | "/drom/skeletons/packages/js_library/main.ml" -> Some [ d_42506933290bc6fcc594ed53465da250; ]
| "drom/skeletons/packages/js_library/package.toml" | "/drom/skeletons/packages/js_library/package.toml" -> Some [ d_33521fad75f50c5ef7550708d809f168; ]
| "drom/skeletons/packages/js_library/skeleton.toml" | "/drom/skeletons/packages/js_library/skeleton.toml" -> Some [ d_b19ceb2d31f6194cfbc1962bca6e9bcd; ]
| "drom/skeletons/packages/js_program/dune_" | "/drom/skeletons/packages/js_program/dune_" -> Some [ d_077a72a34156d87e40254dba6660b3de; ]
| "drom/skeletons/packages/js_program/main.ml" | "/drom/skeletons/packages/js_program/main.ml" -> Some [ d_8e6080b180ea2a0cf7156b8f3f90e66c; ]
| "drom/skeletons/packages/js_program/package.toml" | "/drom/skeletons/packages/js_program/package.toml" -> Some [ d_0b317039617d56e132a56ff0a9c96c08; ]
| "drom/skeletons/packages/js_program/skeleton.toml" | "/drom/skeletons/packages/js_program/skeleton.toml" -> Some [ d_7e2e18acb30a584ed8c097eae233523d; ]
| "drom/skeletons/packages/library/dune_" | "/drom/skeletons/packages/library/dune_" -> Some [ d_46c51d88f42d8578e90a9880b2ed9932; ]
| "drom/skeletons/packages/library/index.mld" | "/drom/skeletons/packages/library/index.mld" -> Some [ d_c5512266ba9b99706618c209158dfc4f; ]
| "drom/skeletons/packages/library/main.ml" | "/drom/skeletons/packages/library/main.ml" -> Some [ d_cd4537c80d68aaffee533a2332282ad3; ]
| "drom/skeletons/packages/library/package.toml" | "/drom/skeletons/packages/library/package.toml" -> Some [ d_67d194e1fceb005f8925b8659a590268; ]
| "drom/skeletons/packages/library/skeleton.toml" | "/drom/skeletons/packages/library/skeleton.toml" -> Some [ d_785c569921541728cd90eb2b44736a6c; ]
| "drom/skeletons/packages/menhir_lib/dune_" | "/drom/skeletons/packages/menhir_lib/dune_" -> Some [ d_73c121aed7a86158b44e8232672664f6; ]
| "drom/skeletons/packages/menhir_lib/index.mld" | "/drom/skeletons/packages/menhir_lib/index.mld" -> Some [ d_c5512266ba9b99706618c209158dfc4f; ]
| "drom/skeletons/packages/menhir_lib/lexer.mll" | "/drom/skeletons/packages/menhir_lib/lexer.mll" -> Some [ d_e419a5323f81bb19f7129e731466074e; ]
| "drom/skeletons/packages/menhir_lib/main.ml" | "/drom/skeletons/packages/menhir_lib/main.ml" -> Some [ d_74e0142865e40a3c8b795fffc2ff7a78; ]
| "drom/skeletons/packages/menhir_lib/package.toml" | "/drom/skeletons/packages/menhir_lib/package.toml" -> Some [ d_09ea530dd8784bec50de9997ba2c8853; ]
| "drom/skeletons/packages/menhir_lib/parser.mly" | "/drom/skeletons/packages/menhir_lib/parser.mly" -> Some [ d_e137bd3c9e197b23abe93e4bafd1a045; ]
| "drom/skeletons/packages/menhir_lib/printer.ml" | "/drom/skeletons/packages/menhir_lib/printer.ml" -> Some [ d_ef6eee1d1637dfe5b603cbfa68332653; ]
| "drom/skeletons/packages/menhir_lib/skeleton.toml" | "/drom/skeletons/packages/menhir_lib/skeleton.toml" -> Some [ d_39d07c60ead044e539b4d8ea1766f0bc; ]
| "drom/skeletons/packages/menhir_lib/types.ml" | "/drom/skeletons/packages/menhir_lib/types.ml" -> Some [ d_552b601352278875479d711814b12af5; ]
| "drom/skeletons/packages/ppx_deriver/dune_" | "/drom/skeletons/packages/ppx_deriver/dune_" -> Some [ d_03a8a76fb0527fba3c7169a8c8500faa; ]
| "drom/skeletons/packages/ppx_deriver/index.mld" | "/drom/skeletons/packages/ppx_deriver/index.mld" -> Some [ d_d4305b3b4f3768ccfddb242a81c9c2fd; ]
| "drom/skeletons/packages/ppx_deriver/main.ml" | "/drom/skeletons/packages/ppx_deriver/main.ml" -> Some [ d_7693c796142bbfd73bd60e7ef9634fb1; ]
| "drom/skeletons/packages/ppx_deriver/package.toml" | "/drom/skeletons/packages/ppx_deriver/package.toml" -> Some [ d_a98c0be46aea258cebf09cbf2d202ad4; ]
| "drom/skeletons/packages/ppx_deriver/skeleton.toml" | "/drom/skeletons/packages/ppx_deriver/skeleton.toml" -> Some [ d_b4480cf66aaf96f5a7b38fb114ca5993; ]
| "drom/skeletons/packages/ppx_rewriter/dune_" | "/drom/skeletons/packages/ppx_rewriter/dune_" -> Some [ d_eaf78f3f79c256afffba00b43ae8360c; ]
| "drom/skeletons/packages/ppx_rewriter/index.mld" | "/drom/skeletons/packages/ppx_rewriter/index.mld" -> Some [ d_d4305b3b4f3768ccfddb242a81c9c2fd; ]
| "drom/skeletons/packages/ppx_rewriter/main.ml" | "/drom/skeletons/packages/ppx_rewriter/main.ml" -> Some [ d_540bbbc98a2c566691dd94a76674e911; ]
| "drom/skeletons/packages/ppx_rewriter/package.toml" | "/drom/skeletons/packages/ppx_rewriter/package.toml" -> Some [ d_8930e9c4f2d66508214d0887960de067; ]
| "drom/skeletons/packages/ppx_rewriter/skeleton.toml" | "/drom/skeletons/packages/ppx_rewriter/skeleton.toml" -> Some [ d_e59a29ac6800731c9bf67e6922bc9261; ]
| "drom/skeletons/packages/program/dune_" | "/drom/skeletons/packages/program/dune_" -> Some [ d_b73f1e11aed2dee4d4dc5b1f85e1aad0; ]
| "drom/skeletons/packages/program/main.ml" | "/drom/skeletons/packages/program/main.ml" -> Some [ d_dc5fe1d1247e3160b87ef555c74f7bc7; ]
| "drom/skeletons/packages/program/package.toml" | "/drom/skeletons/packages/program/package.toml" -> Some [ d_37f7addf2635acd5c7bd36b2f5466ab5; ]
| "drom/skeletons/packages/program/skeleton.toml" | "/drom/skeletons/packages/program/skeleton.toml" -> Some [ d_fe22defd2375a46b0e53cc91768f7544; ]
| "drom/skeletons/packages/rust_binding_lib/dune_" | "/drom/skeletons/packages/rust_binding_lib/dune_" -> Some [ d_3139e10846d9a2d62acde6bdd072a5ac; ]
| "drom/skeletons/packages/rust_binding_lib/index.mld" | "/drom/skeletons/packages/rust_binding_lib/index.mld" -> Some [ d_c5512266ba9b99706618c209158dfc4f; ]
| "drom/skeletons/packages/rust_binding_lib/lib.rs" | "/drom/skeletons/packages/rust_binding_lib/lib.rs" -> Some [ d_d88f3d1378d5bd64781fbba06d1c81a7; ]
| "drom/skeletons/packages/rust_binding_lib/main.ml" | "/drom/skeletons/packages/rust_binding_lib/main.ml" -> Some [ d_f60603f1f14a583c0022f715ad3b11e7; ]
| "drom/skeletons/packages/rust_binding_lib/package.toml" | "/drom/skeletons/packages/rust_binding_lib/package.toml" -> Some [ d_3e5c31c4a049d92792c10cd897037de4; ]
| "drom/skeletons/packages/rust_binding_lib/skeleton.toml" | "/drom/skeletons/packages/rust_binding_lib/skeleton.toml" -> Some [ d_ba5de43fac467c2d19134fc7842fc9f4; ]
| "drom/skeletons/packages/rust_binding_test/dune_" | "/drom/skeletons/packages/rust_binding_test/dune_" -> Some [ d_59c986be51b17417905767be0ff45118; ]
| "drom/skeletons/packages/rust_binding_test/index.mld" | "/drom/skeletons/packages/rust_binding_test/index.mld" -> Some [ d_d4305b3b4f3768ccfddb242a81c9c2fd; ]
| "drom/skeletons/packages/rust_binding_test/main.ml" | "/drom/skeletons/packages/rust_binding_test/main.ml" -> Some [ d_008d98ed0045f4549c6da22cf704ac97; ]
| "drom/skeletons/packages/rust_binding_test/package.toml" | "/drom/skeletons/packages/rust_binding_test/package.toml" -> Some [ d_d2f56a84408c9b2dc3c8e5f038fc7079; ]
| "drom/skeletons/packages/rust_binding_test/skeleton.toml" | "/drom/skeletons/packages/rust_binding_test/skeleton.toml" -> Some [ d_5134e8e8e6f66c3642693979966c0401; ]
| "drom/skeletons/packages/virtual/package.toml" | "/drom/skeletons/packages/virtual/package.toml" -> Some [ d_19cfbc621370630ff410cba006e368f7; ]
| "drom/skeletons/packages/virtual/skeleton.toml" | "/drom/skeletons/packages/virtual/skeleton.toml" -> Some [ d_f052c711693bd8400b177abb38e3c8c6; ]
| "drom/skeletons/packages/vue_library/dune_" | "/drom/skeletons/packages/vue_library/dune_" -> Some [ d_4ebb7411f262486b95d943373112ceb5; ]
| "drom/skeletons/packages/vue_library/main.ml" | "/drom/skeletons/packages/vue_library/main.ml" -> Some [ d_80d0fd9d3e4d40d6f4b38d41da0713e8; ]
| "drom/skeletons/packages/vue_library/package.toml" | "/drom/skeletons/packages/vue_library/package.toml" -> Some [ d_b5cad7df33626fa34dabbf03bd8ffaed; ]
| "drom/skeletons/packages/vue_library/skeleton.toml" | "/drom/skeletons/packages/vue_library/skeleton.toml" -> Some [ d_5183529886acccf57803666f3208cc3d; ]
| "drom/skeletons/packages/vue_library/templates/dune_" | "/drom/skeletons/packages/vue_library/templates/dune_" -> Some [ d_a44048bcc870cb4a37dbb5c0d8a86810; ]
| "drom/skeletons/packages/vue_library/templates/hello.html" | "/drom/skeletons/packages/vue_library/templates/hello.html" -> Some [ d_a5bbb0a95cf13795a74e9eb7e9644ec8; ]
| "drom/skeletons/packages/wasm_binding/build_wasm.sh" | "/drom/skeletons/packages/wasm_binding/build_wasm.sh" -> Some [ d_8d32590c13acb3d7af1d16103a8c2747; ]
| "drom/skeletons/packages/wasm_binding/dune_" | "/drom/skeletons/packages/wasm_binding/dune_" -> Some [ d_c03273d12242c8eb37187614889b252d; ]
| "drom/skeletons/packages/wasm_binding/index.mld" | "/drom/skeletons/packages/wasm_binding/index.mld" -> Some [ d_c5512266ba9b99706618c209158dfc4f; ]
| "drom/skeletons/packages/wasm_binding/main.c" | "/drom/skeletons/packages/wasm_binding/main.c" -> Some [ d_f81f0851aef758ca142d74fb966aeb53; ]
| "drom/skeletons/packages/wasm_binding/main.h" | "/drom/skeletons/packages/wasm_binding/main.h" -> Some [ d_e1e07b67e839e0d7059e775959ad1698; ]
| "drom/skeletons/packages/wasm_binding/main.ml" | "/drom/skeletons/packages/wasm_binding/main.ml" -> Some [ d_af36a6021cbfd0049b3aaaefe91d25f8; ]
| "drom/skeletons/packages/wasm_binding/package.toml" | "/drom/skeletons/packages/wasm_binding/package.toml" -> Some [ d_8a6481c6c262fd51f92815856aea8cb6; ]
| "drom/skeletons/packages/wasm_binding/skeleton.toml" | "/drom/skeletons/packages/wasm_binding/skeleton.toml" -> Some [ d_4ff9c90865d3cf2ac055fa173ba1e2bc; ]
| "drom/skeletons/packages/wasm_binding/stubs.c" | "/drom/skeletons/packages/wasm_binding/stubs.c" -> Some [ d_aa031e82a008000f7f572c34f8047274; ]
| "drom/skeletons/packages/wasm_binding/stubs.js" | "/drom/skeletons/packages/wasm_binding/stubs.js" -> Some [ d_daa93d2c3adf4d14884e016e4cb3d505; ]
| "drom/skeletons/packages/wasm_binding/wasm_utils.js" | "/drom/skeletons/packages/wasm_binding/wasm_utils.js" -> Some [ d_235ce7a0906934d666bbb19d9483de19; ]
| "drom/skeletons/projects/c_binding/drom.toml" | "/drom/skeletons/projects/c_binding/drom.toml" -> Some [ d_f891feaeb8fbab1b2d2757fb21ca343f; ]
| "drom/skeletons/projects/c_binding/skeleton.toml" | "/drom/skeletons/projects/c_binding/skeleton.toml" -> Some [ d_6f051700cea52982ab98a79072749df9; ]
| "drom/skeletons/projects/ctypes_foreign/drom.toml" | "/drom/skeletons/projects/ctypes_foreign/drom.toml" -> Some [ d_6cd06acf738b05e09a461456b37af1a9; ]
| "drom/skeletons/projects/ctypes_foreign/skeleton.toml" | "/drom/skeletons/projects/ctypes_foreign/skeleton.toml" -> Some [ d_bde59333a3805590b38f5d872586a510; ]
| "drom/skeletons/projects/ctypes_stubs/drom.toml" | "/drom/skeletons/projects/ctypes_stubs/drom.toml" -> Some [ d_a33fb556fa8dc981025e4b5b4d1f5a2d; ]
| "drom/skeletons/projects/ctypes_stubs/skeleton.toml" | "/drom/skeletons/projects/ctypes_stubs/skeleton.toml" -> Some [ d_1fd011afa1a0fb1452daf307e865706e; ]
| "drom/skeletons/projects/js_lib/drom.toml" | "/drom/skeletons/projects/js_lib/drom.toml" -> Some [ d_71ebd516aa158e6c7eda1212dedef27c; ]
| "drom/skeletons/projects/js_lib/skeleton.toml" | "/drom/skeletons/projects/js_lib/skeleton.toml" -> Some [ d_02889faef9f674a5df45ec5b6d728f87; ]
| "drom/skeletons/projects/js_prg/drom.toml" | "/drom/skeletons/projects/js_prg/drom.toml" -> Some [ d_860848f2ef05b51dc61ad6815bd0c5a7; ]
| "drom/skeletons/projects/js_prg/share/js_prg/www/index.html" | "/drom/skeletons/projects/js_prg/share/js_prg/www/index.html" -> Some [ d_5ef3033b0ba92cb6b630f7e09fc39a98; ]
| "drom/skeletons/projects/js_prg/skeleton.toml" | "/drom/skeletons/projects/js_prg/skeleton.toml" -> Some [ d_2cc167aaee42e067caf6bd988fb5819e; ]
| "drom/skeletons/projects/library/drom.toml" | "/drom/skeletons/projects/library/drom.toml" -> Some [ d_d8838ed39f0cc43c6ea2eadb04bc1eb1; ]
| "drom/skeletons/projects/library/skeleton.toml" | "/drom/skeletons/projects/library/skeleton.toml" -> Some [ d_38c778bd8b4aeda957ee9424c997c849; ]
| "drom/skeletons/projects/menhir/drom.toml" | "/drom/skeletons/projects/menhir/drom.toml" -> Some [ d_8696ced7621adde15a6565c97bd0788e; ]
| "drom/skeletons/projects/menhir/skeleton.toml" | "/drom/skeletons/projects/menhir/skeleton.toml" -> Some [ d_43c971bb85dcb6b52587872964bab005; ]
| "drom/skeletons/projects/mini_lib/drom.toml" | "/drom/skeletons/projects/mini_lib/drom.toml" -> Some [ d_adcff4d4dead18852fac8c7e32e7f835; ]
| "drom/skeletons/projects/mini_lib/skeleton.toml" | "/drom/skeletons/projects/mini_lib/skeleton.toml" -> Some [ d_a01c7355100953a78c66cbb408c918f7; ]
| "drom/skeletons/projects/mini_prg/drom.toml" | "/drom/skeletons/projects/mini_prg/drom.toml" -> Some [ d_7a02a373c6b7c5f33fb5a1c3135df94a; ]
| "drom/skeletons/projects/mini_prg/skeleton.toml" | "/drom/skeletons/projects/mini_prg/skeleton.toml" -> Some [ d_bf991f920ce22f840913a87906f0fe40; ]
| "drom/skeletons/projects/ppx_deriver/drom.toml" | "/drom/skeletons/projects/ppx_deriver/drom.toml" -> Some [ d_8ab1e464c6e1aeb32ec170094db54a11; ]
| "drom/skeletons/projects/ppx_deriver/skeleton.toml" | "/drom/skeletons/projects/ppx_deriver/skeleton.toml" -> Some [ d_25b1865d6e997b02089f48d883e3a6de; ]
| "drom/skeletons/projects/ppx_rewriter/drom.toml" | "/drom/skeletons/projects/ppx_rewriter/drom.toml" -> Some [ d_4a10ad44aad7eee394d2ec95112a1ddb; ]
| "drom/skeletons/projects/ppx_rewriter/skeleton.toml" | "/drom/skeletons/projects/ppx_rewriter/skeleton.toml" -> Some [ d_2709ad7b7de31da05ca80c0206135a92; ]
| "drom/skeletons/projects/program/drom.toml" | "/drom/skeletons/projects/program/drom.toml" -> Some [ d_90cf3d103c0fdc2ca46d3ab246fcbb1f; ]
| "drom/skeletons/projects/program/skeleton.toml" | "/drom/skeletons/projects/program/skeleton.toml" -> Some [ d_bf47fe64efc15e71eee9a810300c4541; ]
| "drom/skeletons/projects/rust_binding/Cargo.toml" | "/drom/skeletons/projects/rust_binding/Cargo.toml" -> Some [ d_5315497c5fe97dcd490da1339d986bcc; ]
| "drom/skeletons/projects/rust_binding/drom.toml" | "/drom/skeletons/projects/rust_binding/drom.toml" -> Some [ d_e1c819bfd751290e7ca631f23d78e43c; ]
| "drom/skeletons/projects/rust_binding/skeleton.toml" | "/drom/skeletons/projects/rust_binding/skeleton.toml" -> Some [ d_af0df9d185ec3728c9ef83e5779806e8; ]
| "drom/skeletons/projects/virtual/CHANGES.md" | "/drom/skeletons/projects/virtual/CHANGES.md" -> Some [ d_61b937502ca4cf945ed6d5063ed1f398; ]
| "drom/skeletons/projects/virtual/LICENSE.md" | "/drom/skeletons/projects/virtual/LICENSE.md" -> Some [ d_30c53988da37e45bfdfc951cb2cce112; ]
| "drom/skeletons/projects/virtual/Makefile" | "/drom/skeletons/projects/virtual/Makefile" -> Some [ d_1cf19ff03d92da1f89a6f483db9d34d3; ]
| "drom/skeletons/projects/virtual/README.md" | "/drom/skeletons/projects/virtual/README.md" -> Some [ d_6ca4f0ebf611a8293baee296a71f1d3a; ]
| "drom/skeletons/projects/virtual/docs/README.txt" | "/drom/skeletons/projects/virtual/docs/README.txt" -> Some [ d_17799aeb2a3684b565725290ec32e65b; ]
| "drom/skeletons/projects/virtual/docs/doc/index.html" | "/drom/skeletons/projects/virtual/docs/doc/index.html" -> Some [ d_c874dba99bd120b7e2096d0590de56ab; ]
| "drom/skeletons/projects/virtual/docs/favicon.png" | "/drom/skeletons/projects/virtual/docs/favicon.png" -> Some [ d_5f2f3061381bcc4424bcee64f69eccd8; d_d7d1074011f4ea451fe1be7496ea89d9; d_9adfc789909f7913cdbb5770fb9bb9aa; d_e340d08521b75ad89d7caa628474e063; d_acdba811123cdda4400cd19c2868c569; d_ad153b16a10e796db31c1b82de744e48; d_a7fe678de08d68cfe7ac7113610e6419; d_7a921c0ff718cdb4d41ce6b3a28504ea; d_4c3ddc5d1f15374a6ae8f8359f43a19a; d_dbd90d737d4b5eb55f1c85ba50aa0329; ]
| "drom/skeletons/projects/virtual/docs/index.html" | "/drom/skeletons/projects/virtual/docs/index.html" -> Some [ d_7060703d1cfbdd40954fcf5d050f5d9f; ]
| "drom/skeletons/projects/virtual/docs/sphinx/index.html" | "/drom/skeletons/projects/virtual/docs/sphinx/index.html" -> Some [ d_0cf52103c366f56eea830f1fa2b81444; ]
| "drom/skeletons/projects/virtual/docs/style.css" | "/drom/skeletons/projects/virtual/docs/style.css" -> Some [ d_1eb62145308aed80e0f86b959d6f7fd0; ]
| "drom/skeletons/projects/virtual/dot_github/workflows/workflow.yml" | "/drom/skeletons/projects/virtual/dot_github/workflows/workflow.yml" -> Some [ d_331c7b10b7216bba7ac47fb51462cd9d; ]
| "drom/skeletons/projects/virtual/dot_gitignore" | "/drom/skeletons/projects/virtual/dot_gitignore" -> Some [ d_942bb117bb3dc5e8ab8ca34a6e7b9569; ]
| "drom/skeletons/projects/virtual/dot_ocamlformat" | "/drom/skeletons/projects/virtual/dot_ocamlformat" -> Some [ d_ca7884f8b023d53f02fa1e8884b49cbc; ]
| "drom/skeletons/projects/virtual/dot_ocamlformat-ignore" | "/drom/skeletons/projects/virtual/dot_ocamlformat-ignore" -> Some [ d_1a393408f2fac647f911a4133cb08232; ]
| "drom/skeletons/projects/virtual/dot_ocp-indent" | "/drom/skeletons/projects/virtual/dot_ocp-indent" -> Some [ d_d17f954495975ff2649d7daff5ceaabd; ]
| "drom/skeletons/projects/virtual/drom.toml" | "/drom/skeletons/projects/virtual/drom.toml" -> Some [ d_a07a95e5dbb3d0b6427541ea34ec5fb0; ]
| "drom/skeletons/projects/virtual/dune-project_" | "/drom/skeletons/projects/virtual/dune-project_" -> Some [ d_73a66a68958722ad396550a58a246f3c; ]
| "drom/skeletons/projects/virtual/dune_" | "/drom/skeletons/projects/virtual/dune_" -> Some [ d_64425e1ba06e51be0c9c56460197e0e8; ]
| "drom/skeletons/projects/virtual/scripts/after.sh" | "/drom/skeletons/projects/virtual/scripts/after.sh" -> Some [ d_09ddaed920fa39313905634cb86bdaeb; ]
| "drom/skeletons/projects/virtual/scripts/before.sh" | "/drom/skeletons/projects/virtual/scripts/before.sh" -> Some [ d_f521eac468deaa7738a2e513cf30d4d8; ]
| "drom/skeletons/projects/virtual/scripts/copy-bin.sh" | "/drom/skeletons/projects/virtual/scripts/copy-bin.sh" -> Some [ d_6d6983710cb55b1104b2114f0760ce95; ]
| "drom/skeletons/projects/virtual/skeleton.toml" | "/drom/skeletons/projects/virtual/skeleton.toml" -> Some [ d_bfe3c7fc965f6ffccda9493de5790ad2; ]
| "drom/skeletons/projects/virtual/sphinx/about.rst" | "/drom/skeletons/projects/virtual/sphinx/about.rst" -> Some [ d_d575f84e6dcb41ea0141a94b2b371652; ]
| "drom/skeletons/projects/virtual/sphinx/conf.py" | "/drom/skeletons/projects/virtual/sphinx/conf.py" -> Some [ d_45a896d4a15cd700ba30050cf1f0aa88; d_b680e55ac4a579b2eaa50b03c16112d5; ]
| "drom/skeletons/projects/virtual/sphinx/index.rst" | "/drom/skeletons/projects/virtual/sphinx/index.rst" -> Some [ d_c9d6dfab527cdb55aec9afdfe1deb829; ]
| "drom/skeletons/projects/virtual/sphinx/install.rst" | "/drom/skeletons/projects/virtual/sphinx/install.rst" -> Some [ d_fb3fd7e80e520c0a22ad5c7e1338101c; ]
| "drom/skeletons/projects/virtual/sphinx/license.rst" | "/drom/skeletons/projects/virtual/sphinx/license.rst" -> Some [ d_4cef0498a4f70cc3df44826c7db12b17; ]
| "drom/skeletons/projects/virtual/sphinx/under_static/css/fixes.css" | "/drom/skeletons/projects/virtual/sphinx/under_static/css/fixes.css" -> Some [ ]
| "drom/skeletons/projects/virtual/test/expect-tests/dune_" | "/drom/skeletons/projects/virtual/test/expect-tests/dune_" -> Some [ d_7d70c6927c41c3018053dab37d73a458; ]
| "drom/skeletons/projects/virtual/test/expect-tests/test.ml" | "/drom/skeletons/projects/virtual/test/expect-tests/test.ml" -> Some [ d_734ed6b2b1cb8e0d6bce316d155bb157; ]
| "drom/skeletons/projects/virtual/test/inline-tests/dune_" | "/drom/skeletons/projects/virtual/test/inline-tests/dune_" -> Some [ d_5b254520f2a05d2e15f32a7696b3889e; ]
| "drom/skeletons/projects/virtual/test/inline-tests/test.ml" | "/drom/skeletons/projects/virtual/test/inline-tests/test.ml" -> Some [ d_e001d04969100c711855223ad6c23e6a; ]
| "drom/skeletons/projects/virtual/test/output-tests/dune_" | "/drom/skeletons/projects/virtual/test/output-tests/dune_" -> Some [ d_2c94d9ad68932bb7cdb40dacf6d4c032; ]
| "drom/skeletons/projects/virtual/test/output-tests/test1.expected" | "/drom/skeletons/projects/virtual/test/output-tests/test1.expected" -> Some [ d_f0ef7081e1539ac00ef5b761b4fb01b3; ]
| "drom/skeletons/projects/virtual/test/output-tests/test2.expected" | "/drom/skeletons/projects/virtual/test/output-tests/test2.expected" -> Some [ d_894dddf3304cbcb0fe04f7c2bbd56073; ]
| "drom/skeletons/projects/virtual/test/output-tests/test2.ml" | "/drom/skeletons/projects/virtual/test/output-tests/test2.ml" -> Some [ d_704ff05ffd8b0e50716542fa55b2db8a; ]
| "drom/skeletons/projects/vue/drom.toml" | "/drom/skeletons/projects/vue/drom.toml" -> Some [ d_a63dae8523c2536e68aaad9cafd42841; ]
| "drom/skeletons/projects/vue/index.html" | "/drom/skeletons/projects/vue/index.html" -> Some [ d_d320d1d8b74e7f4a69d03a6951599de8; ]
| "drom/skeletons/projects/vue/skeleton.toml" | "/drom/skeletons/projects/vue/skeleton.toml" -> Some [ d_ce2f97f45aa3c4a82afdb79beb6f1a15; ]
| "drom/skeletons/projects/wasm_binding/drom.toml" | "/drom/skeletons/projects/wasm_binding/drom.toml" -> Some [ d_3be95b646bb48617a08f7df0cea3fd55; ]
| "drom/skeletons/projects/wasm_binding/skeleton.toml" | "/drom/skeletons/projects/wasm_binding/skeleton.toml" -> Some [ d_797e69960344de3a887940bc857718b9; ]
| _ -> None
let file_list = [ "drom/licenses/BSD2.toml"; "drom/licenses/BSD3.toml"; "drom/licenses/GPL3.toml"; "drom/licenses/ISC.toml"; "drom/licenses/LGPL2.toml"; "drom/licenses/MIT.toml"; "drom/skeletons/README.md"; "drom/skeletons/packages/c_binding/dune_"; "drom/skeletons/packages/c_binding/index.mld"; "drom/skeletons/packages/c_binding/main.ml"; "drom/skeletons/packages/c_binding/package.toml"; "drom/skeletons/packages/c_binding/skeleton.toml"; "drom/skeletons/packages/c_binding/stubs.c"; "drom/skeletons/packages/ctypes_drv/dune_"; "drom/skeletons/packages/ctypes_drv/index.mld"; "drom/skeletons/packages/ctypes_drv/main.ml"; "drom/skeletons/packages/ctypes_drv/package.toml"; "drom/skeletons/packages/ctypes_drv/skeleton.toml"; "drom/skeletons/packages/ctypes_lib_foreign/discover/discover.ml"; "drom/skeletons/packages/ctypes_lib_foreign/discover/dune_"; "drom/skeletons/packages/ctypes_lib_foreign/dune_"; "drom/skeletons/packages/ctypes_lib_foreign/index.mld"; "drom/skeletons/packages/ctypes_lib_foreign/lib.ml"; "drom/skeletons/packages/ctypes_lib_foreign/package.toml"; "drom/skeletons/packages/ctypes_lib_foreign/skeleton.toml"; "drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.ml"; "drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.mli"; "drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/dune_"; "drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/discover.ml"; "drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/dune_"; "drom/skeletons/packages/ctypes_lib_stubs/bindings/dune_"; "drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_functions.ml"; "drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_types.ml"; "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions.ml"; "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions_functor.ml"; "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types.ml"; "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types_functor.ml"; "drom/skeletons/packages/ctypes_lib_stubs/dune_"; "drom/skeletons/packages/ctypes_lib_stubs/index.mld"; "drom/skeletons/packages/ctypes_lib_stubs/lib.ml"; "drom/skeletons/packages/ctypes_lib_stubs/package.toml"; "drom/skeletons/packages/ctypes_lib_stubs/skeleton.toml"; "drom/skeletons/packages/driver/dune_"; "drom/skeletons/packages/driver/index.mld"; "drom/skeletons/packages/driver/main.ml"; "drom/skeletons/packages/driver/package.toml"; "drom/skeletons/packages/driver/skeleton.toml"; "drom/skeletons/packages/js_driver/dune_"; "drom/skeletons/packages/js_driver/main.ml"; "drom/skeletons/packages/js_driver/package.toml"; "drom/skeletons/packages/js_driver/skeleton.toml"; "drom/skeletons/packages/js_library/dune_"; "drom/skeletons/packages/js_library/main.ml"; "drom/skeletons/packages/js_library/package.toml"; "drom/skeletons/packages/js_library/skeleton.toml"; "drom/skeletons/packages/js_program/dune_"; "drom/skeletons/packages/js_program/main.ml"; "drom/skeletons/packages/js_program/package.toml"; "drom/skeletons/packages/js_program/skeleton.toml"; "drom/skeletons/packages/library/dune_"; "drom/skeletons/packages/library/index.mld"; "drom/skeletons/packages/library/main.ml"; "drom/skeletons/packages/library/package.toml"; "drom/skeletons/packages/library/skeleton.toml"; "drom/skeletons/packages/menhir_lib/dune_"; "drom/skeletons/packages/menhir_lib/index.mld"; "drom/skeletons/packages/menhir_lib/lexer.mll"; "drom/skeletons/packages/menhir_lib/main.ml"; "drom/skeletons/packages/menhir_lib/package.toml"; "drom/skeletons/packages/menhir_lib/parser.mly"; "drom/skeletons/packages/menhir_lib/printer.ml"; "drom/skeletons/packages/menhir_lib/skeleton.toml"; "drom/skeletons/packages/menhir_lib/types.ml"; "drom/skeletons/packages/ppx_deriver/dune_"; "drom/skeletons/packages/ppx_deriver/index.mld"; "drom/skeletons/packages/ppx_deriver/main.ml"; "drom/skeletons/packages/ppx_deriver/package.toml"; "drom/skeletons/packages/ppx_deriver/skeleton.toml"; "drom/skeletons/packages/ppx_rewriter/dune_"; "drom/skeletons/packages/ppx_rewriter/index.mld"; "drom/skeletons/packages/ppx_rewriter/main.ml"; "drom/skeletons/packages/ppx_rewriter/package.toml"; "drom/skeletons/packages/ppx_rewriter/skeleton.toml"; "drom/skeletons/packages/program/dune_"; "drom/skeletons/packages/program/main.ml"; "drom/skeletons/packages/program/package.toml"; "drom/skeletons/packages/program/skeleton.toml"; "drom/skeletons/packages/rust_binding_lib/dune_"; "drom/skeletons/packages/rust_binding_lib/index.mld"; "drom/skeletons/packages/rust_binding_lib/lib.rs"; "drom/skeletons/packages/rust_binding_lib/main.ml"; "drom/skeletons/packages/rust_binding_lib/package.toml"; "drom/skeletons/packages/rust_binding_lib/skeleton.toml"; "drom/skeletons/packages/rust_binding_test/dune_"; "drom/skeletons/packages/rust_binding_test/index.mld"; "drom/skeletons/packages/rust_binding_test/main.ml"; "drom/skeletons/packages/rust_binding_test/package.toml"; "drom/skeletons/packages/rust_binding_test/skeleton.toml"; "drom/skeletons/packages/virtual/package.toml"; "drom/skeletons/packages/virtual/skeleton.toml"; "drom/skeletons/packages/vue_library/dune_"; "drom/skeletons/packages/vue_library/main.ml"; "drom/skeletons/packages/vue_library/package.toml"; "drom/skeletons/packages/vue_library/skeleton.toml"; "drom/skeletons/packages/vue_library/templates/dune_"; "drom/skeletons/packages/vue_library/templates/hello.html"; "drom/skeletons/packages/wasm_binding/build_wasm.sh"; "drom/skeletons/packages/wasm_binding/dune_"; "drom/skeletons/packages/wasm_binding/index.mld"; "drom/skeletons/packages/wasm_binding/main.c"; "drom/skeletons/packages/wasm_binding/main.h"; "drom/skeletons/packages/wasm_binding/main.ml"; "drom/skeletons/packages/wasm_binding/package.toml"; "drom/skeletons/packages/wasm_binding/skeleton.toml"; "drom/skeletons/packages/wasm_binding/stubs.c"; "drom/skeletons/packages/wasm_binding/stubs.js"; "drom/skeletons/packages/wasm_binding/wasm_utils.js"; "drom/skeletons/projects/c_binding/drom.toml"; "drom/skeletons/projects/c_binding/skeleton.toml"; "drom/skeletons/projects/ctypes_foreign/drom.toml"; "drom/skeletons/projects/ctypes_foreign/skeleton.toml"; "drom/skeletons/projects/ctypes_stubs/drom.toml"; "drom/skeletons/projects/ctypes_stubs/skeleton.toml"; "drom/skeletons/projects/js_lib/drom.toml"; "drom/skeletons/projects/js_lib/skeleton.toml"; "drom/skeletons/projects/js_prg/drom.toml"; "drom/skeletons/projects/js_prg/share/js_prg/www/index.html"; "drom/skeletons/projects/js_prg/skeleton.toml"; "drom/skeletons/projects/library/drom.toml"; "drom/skeletons/projects/library/skeleton.toml"; "drom/skeletons/projects/menhir/drom.toml"; "drom/skeletons/projects/menhir/skeleton.toml"; "drom/skeletons/projects/mini_lib/drom.toml"; "drom/skeletons/projects/mini_lib/skeleton.toml"; "drom/skeletons/projects/mini_prg/drom.toml"; "drom/skeletons/projects/mini_prg/skeleton.toml"; "drom/skeletons/projects/ppx_deriver/drom.toml"; "drom/skeletons/projects/ppx_deriver/skeleton.toml"; "drom/skeletons/projects/ppx_rewriter/drom.toml"; "drom/skeletons/projects/ppx_rewriter/skeleton.toml"; "drom/skeletons/projects/program/drom.toml"; "drom/skeletons/projects/program/skeleton.toml"; "drom/skeletons/projects/rust_binding/Cargo.toml"; "drom/skeletons/projects/rust_binding/drom.toml"; "drom/skeletons/projects/rust_binding/skeleton.toml"; "drom/skeletons/projects/virtual/CHANGES.md"; "drom/skeletons/projects/virtual/LICENSE.md"; "drom/skeletons/projects/virtual/Makefile"; "drom/skeletons/projects/virtual/README.md"; "drom/skeletons/projects/virtual/docs/README.txt"; "drom/skeletons/projects/virtual/docs/doc/index.html"; "drom/skeletons/projects/virtual/docs/favicon.png"; "drom/skeletons/projects/virtual/docs/index.html"; "drom/skeletons/projects/virtual/docs/sphinx/index.html"; "drom/skeletons/projects/virtual/docs/style.css"; "drom/skeletons/projects/virtual/dot_github/workflows/workflow.yml"; "drom/skeletons/projects/virtual/dot_gitignore"; "drom/skeletons/projects/virtual/dot_ocamlformat"; "drom/skeletons/projects/virtual/dot_ocamlformat-ignore"; "drom/skeletons/projects/virtual/dot_ocp-indent"; "drom/skeletons/projects/virtual/drom.toml"; "drom/skeletons/projects/virtual/dune-project_"; "drom/skeletons/projects/virtual/dune_"; "drom/skeletons/projects/virtual/scripts/after.sh"; "drom/skeletons/projects/virtual/scripts/before.sh"; "drom/skeletons/projects/virtual/scripts/copy-bin.sh"; "drom/skeletons/projects/virtual/skeleton.toml"; "drom/skeletons/projects/virtual/sphinx/about.rst"; "drom/skeletons/projects/virtual/sphinx/conf.py"; "drom/skeletons/projects/virtual/sphinx/index.rst"; "drom/skeletons/projects/virtual/sphinx/install.rst"; "drom/skeletons/projects/virtual/sphinx/license.rst"; "drom/skeletons/projects/virtual/sphinx/under_static/css/fixes.css"; "drom/skeletons/projects/virtual/test/expect-tests/dune_"; "drom/skeletons/projects/virtual/test/expect-tests/test.ml"; "drom/skeletons/projects/virtual/test/inline-tests/dune_"; "drom/skeletons/projects/virtual/test/inline-tests/test.ml"; "drom/skeletons/projects/virtual/test/output-tests/dune_"; "drom/skeletons/projects/virtual/test/output-tests/test1.expected"; "drom/skeletons/projects/virtual/test/output-tests/test2.expected"; "drom/skeletons/projects/virtual/test/output-tests/test2.ml"; "drom/skeletons/projects/vue/drom.toml"; "drom/skeletons/projects/vue/index.html"; "drom/skeletons/projects/vue/skeleton.toml"; "drom/skeletons/projects/wasm_binding/drom.toml"; "drom/skeletons/projects/wasm_binding/skeleton.toml"; ]
end
let file_list = Internal.file_list
let read name =
match Internal.file_chunks name with
| None -> None
| Some [ c ] -> Some c
| Some c -> Some (String.concat "" c)
let hash = function
| "drom/licenses/BSD2.toml" | "/drom/licenses/BSD2.toml" -> Some "c33fdf9c63c67fdfd384a8dc07a6f624"
| "drom/licenses/BSD3.toml" | "/drom/licenses/BSD3.toml" -> Some "430d9c126b9a6ff54f978dc13ed9ed3c"
| "drom/licenses/GPL3.toml" | "/drom/licenses/GPL3.toml" -> Some "7a39398d1550a5bd42ebccd0ecee371f"
| "drom/licenses/ISC.toml" | "/drom/licenses/ISC.toml" -> Some "46a196fb5d89fd25f9a01fbd4e6c550c"
| "drom/licenses/LGPL2.toml" | "/drom/licenses/LGPL2.toml" -> Some "cf8a7dfee62b586f0556e85d69989477"
| "drom/licenses/MIT.toml" | "/drom/licenses/MIT.toml" -> Some "d1efe50b61c41c1cd67dd45d57670412"
| "drom/skeletons/README.md" | "/drom/skeletons/README.md" -> Some "7242d5f97affa3f389abfe15cc6d6167"
| "drom/skeletons/packages/c_binding/dune_" | "/drom/skeletons/packages/c_binding/dune_" -> Some "31093901fd9b1800ce1bc46d8de764b5"
| "drom/skeletons/packages/c_binding/index.mld" | "/drom/skeletons/packages/c_binding/index.mld" -> Some "c5512266ba9b99706618c209158dfc4f"
| "drom/skeletons/packages/c_binding/main.ml" | "/drom/skeletons/packages/c_binding/main.ml" -> Some "633213ebe2ae1caa0b84e9ab9330cf5e"
| "drom/skeletons/packages/c_binding/package.toml" | "/drom/skeletons/packages/c_binding/package.toml" -> Some "a2d71220896f42ed29a29adbcbd5ad3d"
| "drom/skeletons/packages/c_binding/skeleton.toml" | "/drom/skeletons/packages/c_binding/skeleton.toml" -> Some "77c8619a5edc2597da947c748892983b"
| "drom/skeletons/packages/c_binding/stubs.c" | "/drom/skeletons/packages/c_binding/stubs.c" -> Some "829b1d7fc32f58239fe93be3d5eb8079"
| "drom/skeletons/packages/ctypes_drv/dune_" | "/drom/skeletons/packages/ctypes_drv/dune_" -> Some "40eb4d3e58c30f4460ee367d2a94613d"
| "drom/skeletons/packages/ctypes_drv/index.mld" | "/drom/skeletons/packages/ctypes_drv/index.mld" -> Some "d4305b3b4f3768ccfddb242a81c9c2fd"
| "drom/skeletons/packages/ctypes_drv/main.ml" | "/drom/skeletons/packages/ctypes_drv/main.ml" -> Some "250b377dfc07ff08faf007b5ab0fe904"
| "drom/skeletons/packages/ctypes_drv/package.toml" | "/drom/skeletons/packages/ctypes_drv/package.toml" -> Some "cba462dcafaaecaae140912beb07c716"
| "drom/skeletons/packages/ctypes_drv/skeleton.toml" | "/drom/skeletons/packages/ctypes_drv/skeleton.toml" -> Some "f5543cf258b301f667bb3b58995bdb15"
| "drom/skeletons/packages/ctypes_lib_foreign/discover/discover.ml" | "/drom/skeletons/packages/ctypes_lib_foreign/discover/discover.ml" -> Some "0af30ef989a8b082612e99f6230f8892"
| "drom/skeletons/packages/ctypes_lib_foreign/discover/dune_" | "/drom/skeletons/packages/ctypes_lib_foreign/discover/dune_" -> Some "8efb055bbda950460f620053c6c93584"
| "drom/skeletons/packages/ctypes_lib_foreign/dune_" | "/drom/skeletons/packages/ctypes_lib_foreign/dune_" -> Some "7fd148d143e2c9afccf2b8b3a5ebd5bd"
| "drom/skeletons/packages/ctypes_lib_foreign/index.mld" | "/drom/skeletons/packages/ctypes_lib_foreign/index.mld" -> Some "c5512266ba9b99706618c209158dfc4f"
| "drom/skeletons/packages/ctypes_lib_foreign/lib.ml" | "/drom/skeletons/packages/ctypes_lib_foreign/lib.ml" -> Some "8827016c108446c6ab0a47e98b56f739"
| "drom/skeletons/packages/ctypes_lib_foreign/package.toml" | "/drom/skeletons/packages/ctypes_lib_foreign/package.toml" -> Some "0e1dfe5ab2b7dd3417ce3a03823ed6cd"
| "drom/skeletons/packages/ctypes_lib_foreign/skeleton.toml" | "/drom/skeletons/packages/ctypes_lib_foreign/skeleton.toml" -> Some "1d91a76a1c4054b1b81e31827bed2625"
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.ml" -> Some "e65dda4b769106abbb98068d14dd7de9"
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.mli" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.mli" -> Some "e9c5b822ad664d008d0fde586eb4bd7c"
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/dune_" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/dune_" -> Some "6f8ddc265fcbd17881cecf1305c9fd73"
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/discover.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/discover.ml" -> Some "0af30ef989a8b082612e99f6230f8892"
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/dune_" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/dune_" -> Some "8efb055bbda950460f620053c6c93584"
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/dune_" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/dune_" -> Some "4d45902d7c13c6345bed73209853d7da"
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_functions.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_functions.ml" -> Some "cfe921b699b4edb3e197834c2c50a8e6"
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_types.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_types.ml" -> Some "3e5f241618485824a3a14ebb519b90ab"
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions.ml" -> Some "87c3ad89d604ebdaba5aac730cf8fcfc"
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions_functor.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions_functor.ml" -> Some "092690ce81dafbdcde0466d2417a1234"
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types.ml" -> Some "6e984e7c2b2bb27f9393cd86832ab953"
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types_functor.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types_functor.ml" -> Some "9bd57fa717d699371d55f76e803b6287"
| "drom/skeletons/packages/ctypes_lib_stubs/dune_" | "/drom/skeletons/packages/ctypes_lib_stubs/dune_" -> Some "7c4c4270a5349df10505bf34cbd0186d"
| "drom/skeletons/packages/ctypes_lib_stubs/index.mld" | "/drom/skeletons/packages/ctypes_lib_stubs/index.mld" -> Some "c5512266ba9b99706618c209158dfc4f"
| "drom/skeletons/packages/ctypes_lib_stubs/lib.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/lib.ml" -> Some "91562a084fa073c154de58d2bf08a7eb"
| "drom/skeletons/packages/ctypes_lib_stubs/package.toml" | "/drom/skeletons/packages/ctypes_lib_stubs/package.toml" -> Some "a418dff22d936df0dec84c3a298b93f5"
| "drom/skeletons/packages/ctypes_lib_stubs/skeleton.toml" | "/drom/skeletons/packages/ctypes_lib_stubs/skeleton.toml" -> Some "d4baa29949f7688520da97e4579a2fbf"
| "drom/skeletons/packages/driver/dune_" | "/drom/skeletons/packages/driver/dune_" -> Some "1e0c9ac981542efc8aa70bb5fcb19b03"
| "drom/skeletons/packages/driver/index.mld" | "/drom/skeletons/packages/driver/index.mld" -> Some "d4305b3b4f3768ccfddb242a81c9c2fd"
| "drom/skeletons/packages/driver/main.ml" | "/drom/skeletons/packages/driver/main.ml" -> Some "f5a94909f9bdb2d16e5dd6c90539938d"
| "drom/skeletons/packages/driver/package.toml" | "/drom/skeletons/packages/driver/package.toml" -> Some "b87e5b4d722d29ea41140d46c94d51cb"
| "drom/skeletons/packages/driver/skeleton.toml" | "/drom/skeletons/packages/driver/skeleton.toml" -> Some "e824b52fa6e79ec6e8d176c37b63e05c"
| "drom/skeletons/packages/js_driver/dune_" | "/drom/skeletons/packages/js_driver/dune_" -> Some "a0495365fc1cf5117fa2a6b838453d7f"
| "drom/skeletons/packages/js_driver/main.ml" | "/drom/skeletons/packages/js_driver/main.ml" -> Some "dfaa6ea574165d1997d4c119dcf37834"
| "drom/skeletons/packages/js_driver/package.toml" | "/drom/skeletons/packages/js_driver/package.toml" -> Some "f1e4854cb8d52dcaa7069646e619c3c9"
| "drom/skeletons/packages/js_driver/skeleton.toml" | "/drom/skeletons/packages/js_driver/skeleton.toml" -> Some "4b89600c30a24efa809ef6dc2c9055de"
| "drom/skeletons/packages/js_library/dune_" | "/drom/skeletons/packages/js_library/dune_" -> Some "0c259933bb778c33d3438fffa4f23079"
| "drom/skeletons/packages/js_library/main.ml" | "/drom/skeletons/packages/js_library/main.ml" -> Some "42506933290bc6fcc594ed53465da250"
| "drom/skeletons/packages/js_library/package.toml" | "/drom/skeletons/packages/js_library/package.toml" -> Some "33521fad75f50c5ef7550708d809f168"
| "drom/skeletons/packages/js_library/skeleton.toml" | "/drom/skeletons/packages/js_library/skeleton.toml" -> Some "b19ceb2d31f6194cfbc1962bca6e9bcd"
| "drom/skeletons/packages/js_program/dune_" | "/drom/skeletons/packages/js_program/dune_" -> Some "077a72a34156d87e40254dba6660b3de"
| "drom/skeletons/packages/js_program/main.ml" | "/drom/skeletons/packages/js_program/main.ml" -> Some "8e6080b180ea2a0cf7156b8f3f90e66c"
| "drom/skeletons/packages/js_program/package.toml" | "/drom/skeletons/packages/js_program/package.toml" -> Some "0b317039617d56e132a56ff0a9c96c08"
| "drom/skeletons/packages/js_program/skeleton.toml" | "/drom/skeletons/packages/js_program/skeleton.toml" -> Some "7e2e18acb30a584ed8c097eae233523d"
| "drom/skeletons/packages/library/dune_" | "/drom/skeletons/packages/library/dune_" -> Some "46c51d88f42d8578e90a9880b2ed9932"
| "drom/skeletons/packages/library/index.mld" | "/drom/skeletons/packages/library/index.mld" -> Some "c5512266ba9b99706618c209158dfc4f"
| "drom/skeletons/packages/library/main.ml" | "/drom/skeletons/packages/library/main.ml" -> Some "cd4537c80d68aaffee533a2332282ad3"
| "drom/skeletons/packages/library/package.toml" | "/drom/skeletons/packages/library/package.toml" -> Some "67d194e1fceb005f8925b8659a590268"
| "drom/skeletons/packages/library/skeleton.toml" | "/drom/skeletons/packages/library/skeleton.toml" -> Some "785c569921541728cd90eb2b44736a6c"
| "drom/skeletons/packages/menhir_lib/dune_" | "/drom/skeletons/packages/menhir_lib/dune_" -> Some "73c121aed7a86158b44e8232672664f6"
| "drom/skeletons/packages/menhir_lib/index.mld" | "/drom/skeletons/packages/menhir_lib/index.mld" -> Some "c5512266ba9b99706618c209158dfc4f"
| "drom/skeletons/packages/menhir_lib/lexer.mll" | "/drom/skeletons/packages/menhir_lib/lexer.mll" -> Some "e419a5323f81bb19f7129e731466074e"
| "drom/skeletons/packages/menhir_lib/main.ml" | "/drom/skeletons/packages/menhir_lib/main.ml" -> Some "74e0142865e40a3c8b795fffc2ff7a78"
| "drom/skeletons/packages/menhir_lib/package.toml" | "/drom/skeletons/packages/menhir_lib/package.toml" -> Some "09ea530dd8784bec50de9997ba2c8853"
| "drom/skeletons/packages/menhir_lib/parser.mly" | "/drom/skeletons/packages/menhir_lib/parser.mly" -> Some "e137bd3c9e197b23abe93e4bafd1a045"
| "drom/skeletons/packages/menhir_lib/printer.ml" | "/drom/skeletons/packages/menhir_lib/printer.ml" -> Some "ef6eee1d1637dfe5b603cbfa68332653"
| "drom/skeletons/packages/menhir_lib/skeleton.toml" | "/drom/skeletons/packages/menhir_lib/skeleton.toml" -> Some "39d07c60ead044e539b4d8ea1766f0bc"
| "drom/skeletons/packages/menhir_lib/types.ml" | "/drom/skeletons/packages/menhir_lib/types.ml" -> Some "552b601352278875479d711814b12af5"
| "drom/skeletons/packages/ppx_deriver/dune_" | "/drom/skeletons/packages/ppx_deriver/dune_" -> Some "03a8a76fb0527fba3c7169a8c8500faa"
| "drom/skeletons/packages/ppx_deriver/index.mld" | "/drom/skeletons/packages/ppx_deriver/index.mld" -> Some "d4305b3b4f3768ccfddb242a81c9c2fd"
| "drom/skeletons/packages/ppx_deriver/main.ml" | "/drom/skeletons/packages/ppx_deriver/main.ml" -> Some "7693c796142bbfd73bd60e7ef9634fb1"
| "drom/skeletons/packages/ppx_deriver/package.toml" | "/drom/skeletons/packages/ppx_deriver/package.toml" -> Some "a98c0be46aea258cebf09cbf2d202ad4"
| "drom/skeletons/packages/ppx_deriver/skeleton.toml" | "/drom/skeletons/packages/ppx_deriver/skeleton.toml" -> Some "b4480cf66aaf96f5a7b38fb114ca5993"
| "drom/skeletons/packages/ppx_rewriter/dune_" | "/drom/skeletons/packages/ppx_rewriter/dune_" -> Some "eaf78f3f79c256afffba00b43ae8360c"
| "drom/skeletons/packages/ppx_rewriter/index.mld" | "/drom/skeletons/packages/ppx_rewriter/index.mld" -> Some "d4305b3b4f3768ccfddb242a81c9c2fd"
| "drom/skeletons/packages/ppx_rewriter/main.ml" | "/drom/skeletons/packages/ppx_rewriter/main.ml" -> Some "540bbbc98a2c566691dd94a76674e911"
| "drom/skeletons/packages/ppx_rewriter/package.toml" | "/drom/skeletons/packages/ppx_rewriter/package.toml" -> Some "8930e9c4f2d66508214d0887960de067"
| "drom/skeletons/packages/ppx_rewriter/skeleton.toml" | "/drom/skeletons/packages/ppx_rewriter/skeleton.toml" -> Some "e59a29ac6800731c9bf67e6922bc9261"
| "drom/skeletons/packages/program/dune_" | "/drom/skeletons/packages/program/dune_" -> Some "b73f1e11aed2dee4d4dc5b1f85e1aad0"
| "drom/skeletons/packages/program/main.ml" | "/drom/skeletons/packages/program/main.ml" -> Some "dc5fe1d1247e3160b87ef555c74f7bc7"
| "drom/skeletons/packages/program/package.toml" | "/drom/skeletons/packages/program/package.toml" -> Some "37f7addf2635acd5c7bd36b2f5466ab5"
| "drom/skeletons/packages/program/skeleton.toml" | "/drom/skeletons/packages/program/skeleton.toml" -> Some "fe22defd2375a46b0e53cc91768f7544"
| "drom/skeletons/packages/rust_binding_lib/dune_" | "/drom/skeletons/packages/rust_binding_lib/dune_" -> Some "3139e10846d9a2d62acde6bdd072a5ac"
| "drom/skeletons/packages/rust_binding_lib/index.mld" | "/drom/skeletons/packages/rust_binding_lib/index.mld" -> Some "c5512266ba9b99706618c209158dfc4f"
| "drom/skeletons/packages/rust_binding_lib/lib.rs" | "/drom/skeletons/packages/rust_binding_lib/lib.rs" -> Some "d88f3d1378d5bd64781fbba06d1c81a7"
| "drom/skeletons/packages/rust_binding_lib/main.ml" | "/drom/skeletons/packages/rust_binding_lib/main.ml" -> Some "f60603f1f14a583c0022f715ad3b11e7"
| "drom/skeletons/packages/rust_binding_lib/package.toml" | "/drom/skeletons/packages/rust_binding_lib/package.toml" -> Some "3e5c31c4a049d92792c10cd897037de4"
| "drom/skeletons/packages/rust_binding_lib/skeleton.toml" | "/drom/skeletons/packages/rust_binding_lib/skeleton.toml" -> Some "ba5de43fac467c2d19134fc7842fc9f4"
| "drom/skeletons/packages/rust_binding_test/dune_" | "/drom/skeletons/packages/rust_binding_test/dune_" -> Some "59c986be51b17417905767be0ff45118"
| "drom/skeletons/packages/rust_binding_test/index.mld" | "/drom/skeletons/packages/rust_binding_test/index.mld" -> Some "d4305b3b4f3768ccfddb242a81c9c2fd"
| "drom/skeletons/packages/rust_binding_test/main.ml" | "/drom/skeletons/packages/rust_binding_test/main.ml" -> Some "008d98ed0045f4549c6da22cf704ac97"
| "drom/skeletons/packages/rust_binding_test/package.toml" | "/drom/skeletons/packages/rust_binding_test/package.toml" -> Some "d2f56a84408c9b2dc3c8e5f038fc7079"
| "drom/skeletons/packages/rust_binding_test/skeleton.toml" | "/drom/skeletons/packages/rust_binding_test/skeleton.toml" -> Some "5134e8e8e6f66c3642693979966c0401"
| "drom/skeletons/packages/virtual/package.toml" | "/drom/skeletons/packages/virtual/package.toml" -> Some "19cfbc621370630ff410cba006e368f7"
| "drom/skeletons/packages/virtual/skeleton.toml" | "/drom/skeletons/packages/virtual/skeleton.toml" -> Some "f052c711693bd8400b177abb38e3c8c6"
| "drom/skeletons/packages/vue_library/dune_" | "/drom/skeletons/packages/vue_library/dune_" -> Some "4ebb7411f262486b95d943373112ceb5"
| "drom/skeletons/packages/vue_library/main.ml" | "/drom/skeletons/packages/vue_library/main.ml" -> Some "80d0fd9d3e4d40d6f4b38d41da0713e8"
| "drom/skeletons/packages/vue_library/package.toml" | "/drom/skeletons/packages/vue_library/package.toml" -> Some "b5cad7df33626fa34dabbf03bd8ffaed"
| "drom/skeletons/packages/vue_library/skeleton.toml" | "/drom/skeletons/packages/vue_library/skeleton.toml" -> Some "5183529886acccf57803666f3208cc3d"
| "drom/skeletons/packages/vue_library/templates/dune_" | "/drom/skeletons/packages/vue_library/templates/dune_" -> Some "a44048bcc870cb4a37dbb5c0d8a86810"
| "drom/skeletons/packages/vue_library/templates/hello.html" | "/drom/skeletons/packages/vue_library/templates/hello.html" -> Some "a5bbb0a95cf13795a74e9eb7e9644ec8"
| "drom/skeletons/packages/wasm_binding/build_wasm.sh" | "/drom/skeletons/packages/wasm_binding/build_wasm.sh" -> Some "8d32590c13acb3d7af1d16103a8c2747"
| "drom/skeletons/packages/wasm_binding/dune_" | "/drom/skeletons/packages/wasm_binding/dune_" -> Some "c03273d12242c8eb37187614889b252d"
| "drom/skeletons/packages/wasm_binding/index.mld" | "/drom/skeletons/packages/wasm_binding/index.mld" -> Some "c5512266ba9b99706618c209158dfc4f"
| "drom/skeletons/packages/wasm_binding/main.c" | "/drom/skeletons/packages/wasm_binding/main.c" -> Some "f81f0851aef758ca142d74fb966aeb53"
| "drom/skeletons/packages/wasm_binding/main.h" | "/drom/skeletons/packages/wasm_binding/main.h" -> Some "e1e07b67e839e0d7059e775959ad1698"
| "drom/skeletons/packages/wasm_binding/main.ml" | "/drom/skeletons/packages/wasm_binding/main.ml" -> Some "af36a6021cbfd0049b3aaaefe91d25f8"
| "drom/skeletons/packages/wasm_binding/package.toml" | "/drom/skeletons/packages/wasm_binding/package.toml" -> Some "8a6481c6c262fd51f92815856aea8cb6"
| "drom/skeletons/packages/wasm_binding/skeleton.toml" | "/drom/skeletons/packages/wasm_binding/skeleton.toml" -> Some "4ff9c90865d3cf2ac055fa173ba1e2bc"
| "drom/skeletons/packages/wasm_binding/stubs.c" | "/drom/skeletons/packages/wasm_binding/stubs.c" -> Some "aa031e82a008000f7f572c34f8047274"
| "drom/skeletons/packages/wasm_binding/stubs.js" | "/drom/skeletons/packages/wasm_binding/stubs.js" -> Some "daa93d2c3adf4d14884e016e4cb3d505"
| "drom/skeletons/packages/wasm_binding/wasm_utils.js" | "/drom/skeletons/packages/wasm_binding/wasm_utils.js" -> Some "235ce7a0906934d666bbb19d9483de19"
| "drom/skeletons/projects/c_binding/drom.toml" | "/drom/skeletons/projects/c_binding/drom.toml" -> Some "f891feaeb8fbab1b2d2757fb21ca343f"
| "drom/skeletons/projects/c_binding/skeleton.toml" | "/drom/skeletons/projects/c_binding/skeleton.toml" -> Some "6f051700cea52982ab98a79072749df9"
| "drom/skeletons/projects/ctypes_foreign/drom.toml" | "/drom/skeletons/projects/ctypes_foreign/drom.toml" -> Some "6cd06acf738b05e09a461456b37af1a9"
| "drom/skeletons/projects/ctypes_foreign/skeleton.toml" | "/drom/skeletons/projects/ctypes_foreign/skeleton.toml" -> Some "bde59333a3805590b38f5d872586a510"
| "drom/skeletons/projects/ctypes_stubs/drom.toml" | "/drom/skeletons/projects/ctypes_stubs/drom.toml" -> Some "a33fb556fa8dc981025e4b5b4d1f5a2d"
| "drom/skeletons/projects/ctypes_stubs/skeleton.toml" | "/drom/skeletons/projects/ctypes_stubs/skeleton.toml" -> Some "1fd011afa1a0fb1452daf307e865706e"
| "drom/skeletons/projects/js_lib/drom.toml" | "/drom/skeletons/projects/js_lib/drom.toml" -> Some "71ebd516aa158e6c7eda1212dedef27c"
| "drom/skeletons/projects/js_lib/skeleton.toml" | "/drom/skeletons/projects/js_lib/skeleton.toml" -> Some "02889faef9f674a5df45ec5b6d728f87"
| "drom/skeletons/projects/js_prg/drom.toml" | "/drom/skeletons/projects/js_prg/drom.toml" -> Some "860848f2ef05b51dc61ad6815bd0c5a7"
| "drom/skeletons/projects/js_prg/share/js_prg/www/index.html" | "/drom/skeletons/projects/js_prg/share/js_prg/www/index.html" -> Some "5ef3033b0ba92cb6b630f7e09fc39a98"
| "drom/skeletons/projects/js_prg/skeleton.toml" | "/drom/skeletons/projects/js_prg/skeleton.toml" -> Some "2cc167aaee42e067caf6bd988fb5819e"
| "drom/skeletons/projects/library/drom.toml" | "/drom/skeletons/projects/library/drom.toml" -> Some "d8838ed39f0cc43c6ea2eadb04bc1eb1"
| "drom/skeletons/projects/library/skeleton.toml" | "/drom/skeletons/projects/library/skeleton.toml" -> Some "38c778bd8b4aeda957ee9424c997c849"
| "drom/skeletons/projects/menhir/drom.toml" | "/drom/skeletons/projects/menhir/drom.toml" -> Some "8696ced7621adde15a6565c97bd0788e"
| "drom/skeletons/projects/menhir/skeleton.toml" | "/drom/skeletons/projects/menhir/skeleton.toml" -> Some "43c971bb85dcb6b52587872964bab005"
| "drom/skeletons/projects/mini_lib/drom.toml" | "/drom/skeletons/projects/mini_lib/drom.toml" -> Some "adcff4d4dead18852fac8c7e32e7f835"
| "drom/skeletons/projects/mini_lib/skeleton.toml" | "/drom/skeletons/projects/mini_lib/skeleton.toml" -> Some "a01c7355100953a78c66cbb408c918f7"
| "drom/skeletons/projects/mini_prg/drom.toml" | "/drom/skeletons/projects/mini_prg/drom.toml" -> Some "7a02a373c6b7c5f33fb5a1c3135df94a"
| "drom/skeletons/projects/mini_prg/skeleton.toml" | "/drom/skeletons/projects/mini_prg/skeleton.toml" -> Some "bf991f920ce22f840913a87906f0fe40"
| "drom/skeletons/projects/ppx_deriver/drom.toml" | "/drom/skeletons/projects/ppx_deriver/drom.toml" -> Some "8ab1e464c6e1aeb32ec170094db54a11"
| "drom/skeletons/projects/ppx_deriver/skeleton.toml" | "/drom/skeletons/projects/ppx_deriver/skeleton.toml" -> Some "25b1865d6e997b02089f48d883e3a6de"
| "drom/skeletons/projects/ppx_rewriter/drom.toml" | "/drom/skeletons/projects/ppx_rewriter/drom.toml" -> Some "4a10ad44aad7eee394d2ec95112a1ddb"
| "drom/skeletons/projects/ppx_rewriter/skeleton.toml" | "/drom/skeletons/projects/ppx_rewriter/skeleton.toml" -> Some "2709ad7b7de31da05ca80c0206135a92"
| "drom/skeletons/projects/program/drom.toml" | "/drom/skeletons/projects/program/drom.toml" -> Some "90cf3d103c0fdc2ca46d3ab246fcbb1f"
| "drom/skeletons/projects/program/skeleton.toml" | "/drom/skeletons/projects/program/skeleton.toml" -> Some "bf47fe64efc15e71eee9a810300c4541"
| "drom/skeletons/projects/rust_binding/Cargo.toml" | "/drom/skeletons/projects/rust_binding/Cargo.toml" -> Some "5315497c5fe97dcd490da1339d986bcc"
| "drom/skeletons/projects/rust_binding/drom.toml" | "/drom/skeletons/projects/rust_binding/drom.toml" -> Some "e1c819bfd751290e7ca631f23d78e43c"
| "drom/skeletons/projects/rust_binding/skeleton.toml" | "/drom/skeletons/projects/rust_binding/skeleton.toml" -> Some "af0df9d185ec3728c9ef83e5779806e8"
| "drom/skeletons/projects/virtual/CHANGES.md" | "/drom/skeletons/projects/virtual/CHANGES.md" -> Some "61b937502ca4cf945ed6d5063ed1f398"
| "drom/skeletons/projects/virtual/LICENSE.md" | "/drom/skeletons/projects/virtual/LICENSE.md" -> Some "30c53988da37e45bfdfc951cb2cce112"
| "drom/skeletons/projects/virtual/Makefile" | "/drom/skeletons/projects/virtual/Makefile" -> Some "1cf19ff03d92da1f89a6f483db9d34d3"
| "drom/skeletons/projects/virtual/README.md" | "/drom/skeletons/projects/virtual/README.md" -> Some "6ca4f0ebf611a8293baee296a71f1d3a"
| "drom/skeletons/projects/virtual/docs/README.txt" | "/drom/skeletons/projects/virtual/docs/README.txt" -> Some "17799aeb2a3684b565725290ec32e65b"
| "drom/skeletons/projects/virtual/docs/doc/index.html" | "/drom/skeletons/projects/virtual/docs/doc/index.html" -> Some "c874dba99bd120b7e2096d0590de56ab"
| "drom/skeletons/projects/virtual/docs/favicon.png" | "/drom/skeletons/projects/virtual/docs/favicon.png" -> Some "7ea9be52d489cbe8c03b43ecf6b2650f"
| "drom/skeletons/projects/virtual/docs/index.html" | "/drom/skeletons/projects/virtual/docs/index.html" -> Some "7060703d1cfbdd40954fcf5d050f5d9f"
| "drom/skeletons/projects/virtual/docs/sphinx/index.html" | "/drom/skeletons/projects/virtual/docs/sphinx/index.html" -> Some "0cf52103c366f56eea830f1fa2b81444"
| "drom/skeletons/projects/virtual/docs/style.css" | "/drom/skeletons/projects/virtual/docs/style.css" -> Some "1eb62145308aed80e0f86b959d6f7fd0"
| "drom/skeletons/projects/virtual/dot_github/workflows/workflow.yml" | "/drom/skeletons/projects/virtual/dot_github/workflows/workflow.yml" -> Some "331c7b10b7216bba7ac47fb51462cd9d"
| "drom/skeletons/projects/virtual/dot_gitignore" | "/drom/skeletons/projects/virtual/dot_gitignore" -> Some "942bb117bb3dc5e8ab8ca34a6e7b9569"
| "drom/skeletons/projects/virtual/dot_ocamlformat" | "/drom/skeletons/projects/virtual/dot_ocamlformat" -> Some "ca7884f8b023d53f02fa1e8884b49cbc"
| "drom/skeletons/projects/virtual/dot_ocamlformat-ignore" | "/drom/skeletons/projects/virtual/dot_ocamlformat-ignore" -> Some "1a393408f2fac647f911a4133cb08232"
| "drom/skeletons/projects/virtual/dot_ocp-indent" | "/drom/skeletons/projects/virtual/dot_ocp-indent" -> Some "d17f954495975ff2649d7daff5ceaabd"
| "drom/skeletons/projects/virtual/drom.toml" | "/drom/skeletons/projects/virtual/drom.toml" -> Some "a07a95e5dbb3d0b6427541ea34ec5fb0"
| "drom/skeletons/projects/virtual/dune-project_" | "/drom/skeletons/projects/virtual/dune-project_" -> Some "73a66a68958722ad396550a58a246f3c"
| "drom/skeletons/projects/virtual/dune_" | "/drom/skeletons/projects/virtual/dune_" -> Some "64425e1ba06e51be0c9c56460197e0e8"
| "drom/skeletons/projects/virtual/scripts/after.sh" | "/drom/skeletons/projects/virtual/scripts/after.sh" -> Some "09ddaed920fa39313905634cb86bdaeb"
| "drom/skeletons/projects/virtual/scripts/before.sh" | "/drom/skeletons/projects/virtual/scripts/before.sh" -> Some "f521eac468deaa7738a2e513cf30d4d8"
| "drom/skeletons/projects/virtual/scripts/copy-bin.sh" | "/drom/skeletons/projects/virtual/scripts/copy-bin.sh" -> Some "6d6983710cb55b1104b2114f0760ce95"
| "drom/skeletons/projects/virtual/skeleton.toml" | "/drom/skeletons/projects/virtual/skeleton.toml" -> Some "bfe3c7fc965f6ffccda9493de5790ad2"
| "drom/skeletons/projects/virtual/sphinx/about.rst" | "/drom/skeletons/projects/virtual/sphinx/about.rst" -> Some "d575f84e6dcb41ea0141a94b2b371652"
| "drom/skeletons/projects/virtual/sphinx/conf.py" | "/drom/skeletons/projects/virtual/sphinx/conf.py" -> Some "5eebf540a9d64f3df6478c6162744b77"
| "drom/skeletons/projects/virtual/sphinx/index.rst" | "/drom/skeletons/projects/virtual/sphinx/index.rst" -> Some "c9d6dfab527cdb55aec9afdfe1deb829"
| "drom/skeletons/projects/virtual/sphinx/install.rst" | "/drom/skeletons/projects/virtual/sphinx/install.rst" -> Some "fb3fd7e80e520c0a22ad5c7e1338101c"
| "drom/skeletons/projects/virtual/sphinx/license.rst" | "/drom/skeletons/projects/virtual/sphinx/license.rst" -> Some "4cef0498a4f70cc3df44826c7db12b17"
| "drom/skeletons/projects/virtual/sphinx/under_static/css/fixes.css" | "/drom/skeletons/projects/virtual/sphinx/under_static/css/fixes.css" -> Some "d41d8cd98f00b204e9800998ecf8427e"
| "drom/skeletons/projects/virtual/test/expect-tests/dune_" | "/drom/skeletons/projects/virtual/test/expect-tests/dune_" -> Some "7d70c6927c41c3018053dab37d73a458"
| "drom/skeletons/projects/virtual/test/expect-tests/test.ml" | "/drom/skeletons/projects/virtual/test/expect-tests/test.ml" -> Some "734ed6b2b1cb8e0d6bce316d155bb157"
| "drom/skeletons/projects/virtual/test/inline-tests/dune_" | "/drom/skeletons/projects/virtual/test/inline-tests/dune_" -> Some "5b254520f2a05d2e15f32a7696b3889e"
| "drom/skeletons/projects/virtual/test/inline-tests/test.ml" | "/drom/skeletons/projects/virtual/test/inline-tests/test.ml" -> Some "e001d04969100c711855223ad6c23e6a"
| "drom/skeletons/projects/virtual/test/output-tests/dune_" | "/drom/skeletons/projects/virtual/test/output-tests/dune_" -> Some "2c94d9ad68932bb7cdb40dacf6d4c032"
| "drom/skeletons/projects/virtual/test/output-tests/test1.expected" | "/drom/skeletons/projects/virtual/test/output-tests/test1.expected" -> Some "f0ef7081e1539ac00ef5b761b4fb01b3"
| "drom/skeletons/projects/virtual/test/output-tests/test2.expected" | "/drom/skeletons/projects/virtual/test/output-tests/test2.expected" -> Some "894dddf3304cbcb0fe04f7c2bbd56073"
| "drom/skeletons/projects/virtual/test/output-tests/test2.ml" | "/drom/skeletons/projects/virtual/test/output-tests/test2.ml" -> Some "704ff05ffd8b0e50716542fa55b2db8a"
| "drom/skeletons/projects/vue/drom.toml" | "/drom/skeletons/projects/vue/drom.toml" -> Some "a63dae8523c2536e68aaad9cafd42841"
| "drom/skeletons/projects/vue/index.html" | "/drom/skeletons/projects/vue/index.html" -> Some "d320d1d8b74e7f4a69d03a6951599de8"
| "drom/skeletons/projects/vue/skeleton.toml" | "/drom/skeletons/projects/vue/skeleton.toml" -> Some "ce2f97f45aa3c4a82afdb79beb6f1a15"
| "drom/skeletons/projects/wasm_binding/drom.toml" | "/drom/skeletons/projects/wasm_binding/drom.toml" -> Some "3be95b646bb48617a08f7df0cea3fd55"
| "drom/skeletons/projects/wasm_binding/skeleton.toml" | "/drom/skeletons/projects/wasm_binding/skeleton.toml" -> Some "797e69960344de3a887940bc857718b9"
| _ -> None
let size = function
| "drom/licenses/BSD2.toml" | "/drom/licenses/BSD2.toml" -> Some 1464
| "drom/licenses/BSD3.toml" | "/drom/licenses/BSD3.toml" -> Some 1674
| "drom/licenses/GPL3.toml" | "/drom/licenses/GPL3.toml" -> Some 35399
| "drom/licenses/ISC.toml" | "/drom/licenses/ISC.toml" -> Some 973
| "drom/licenses/LGPL2.toml" | "/drom/licenses/LGPL2.toml" -> Some 27273
| "drom/licenses/MIT.toml" | "/drom/licenses/MIT.toml" -> Some 1219
| "drom/skeletons/README.md" | "/drom/skeletons/README.md" -> Some 3353
| "drom/skeletons/packages/c_binding/dune_" | "/drom/skeletons/packages/c_binding/dune_" -> Some 473
| "drom/skeletons/packages/c_binding/index.mld" | "/drom/skeletons/packages/c_binding/index.mld" -> Some 227
| "drom/skeletons/packages/c_binding/main.ml" | "/drom/skeletons/packages/c_binding/main.ml" -> Some 818
| "drom/skeletons/packages/c_binding/package.toml" | "/drom/skeletons/packages/c_binding/package.toml" -> Some 169
| "drom/skeletons/packages/c_binding/skeleton.toml" | "/drom/skeletons/packages/c_binding/skeleton.toml" -> Some 238
| "drom/skeletons/packages/c_binding/stubs.c" | "/drom/skeletons/packages/c_binding/stubs.c" -> Some 1176
| "drom/skeletons/packages/ctypes_drv/dune_" | "/drom/skeletons/packages/ctypes_drv/dune_" -> Some 349
| "drom/skeletons/packages/ctypes_drv/index.mld" | "/drom/skeletons/packages/ctypes_drv/index.mld" -> Some 36
| "drom/skeletons/packages/ctypes_drv/main.ml" | "/drom/skeletons/packages/ctypes_drv/main.ml" -> Some 348
| "drom/skeletons/packages/ctypes_drv/package.toml" | "/drom/skeletons/packages/ctypes_drv/package.toml" -> Some 109
| "drom/skeletons/packages/ctypes_drv/skeleton.toml" | "/drom/skeletons/packages/ctypes_drv/skeleton.toml" -> Some 181
| "drom/skeletons/packages/ctypes_lib_foreign/discover/discover.ml" | "/drom/skeletons/packages/ctypes_lib_foreign/discover/discover.ml" -> Some 511
| "drom/skeletons/packages/ctypes_lib_foreign/discover/dune_" | "/drom/skeletons/packages/ctypes_lib_foreign/discover/dune_" -> Some 62
| "drom/skeletons/packages/ctypes_lib_foreign/dune_" | "/drom/skeletons/packages/ctypes_lib_foreign/dune_" -> Some 514
| "drom/skeletons/packages/ctypes_lib_foreign/index.mld" | "/drom/skeletons/packages/ctypes_lib_foreign/index.mld" -> Some 227
| "drom/skeletons/packages/ctypes_lib_foreign/lib.ml" | "/drom/skeletons/packages/ctypes_lib_foreign/lib.ml" -> Some 1611
| "drom/skeletons/packages/ctypes_lib_foreign/package.toml" | "/drom/skeletons/packages/ctypes_lib_foreign/package.toml" -> Some 260
| "drom/skeletons/packages/ctypes_lib_foreign/skeleton.toml" | "/drom/skeletons/packages/ctypes_lib_foreign/skeleton.toml" -> Some 327
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.ml" -> Some 722
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.mli" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/ctypes_stubgen.mli" -> Some 153
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/dune_" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/ctypes_stubgen/dune_" -> Some 110
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/discover.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/discover.ml" -> Some 511
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/dune_" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/discover/dune_" -> Some 62
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/dune_" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/dune_" -> Some 1952
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_functions.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_functions.ml" -> Some 148
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_types.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gen_types.ml" -> Some 140
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions.ml" -> Some 58
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions_functor.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_functions_functor.ml" -> Some 977
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types.ml" -> Some 50
| "drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types_functor.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/bindings/gsl_types_functor.ml" -> Some 647
| "drom/skeletons/packages/ctypes_lib_stubs/dune_" | "/drom/skeletons/packages/ctypes_lib_stubs/dune_" -> Some 379
| "drom/skeletons/packages/ctypes_lib_stubs/index.mld" | "/drom/skeletons/packages/ctypes_lib_stubs/index.mld" -> Some 227
| "drom/skeletons/packages/ctypes_lib_stubs/lib.ml" | "/drom/skeletons/packages/ctypes_lib_stubs/lib.ml" -> Some 900
| "drom/skeletons/packages/ctypes_lib_stubs/package.toml" | "/drom/skeletons/packages/ctypes_lib_stubs/package.toml" -> Some 340
| "drom/skeletons/packages/ctypes_lib_stubs/skeleton.toml" | "/drom/skeletons/packages/ctypes_lib_stubs/skeleton.toml" -> Some 985
| "drom/skeletons/packages/driver/dune_" | "/drom/skeletons/packages/driver/dune_" -> Some 352
| "drom/skeletons/packages/driver/index.mld" | "/drom/skeletons/packages/driver/index.mld" -> Some 36
| "drom/skeletons/packages/driver/main.ml" | "/drom/skeletons/packages/driver/main.ml" -> Some 66
| "drom/skeletons/packages/driver/package.toml" | "/drom/skeletons/packages/driver/package.toml" -> Some 104
| "drom/skeletons/packages/driver/skeleton.toml" | "/drom/skeletons/packages/driver/skeleton.toml" -> Some 178
| "drom/skeletons/packages/js_driver/dune_" | "/drom/skeletons/packages/js_driver/dune_" -> Some 420
| "drom/skeletons/packages/js_driver/main.ml" | "/drom/skeletons/packages/js_driver/main.ml" -> Some 58
| "drom/skeletons/packages/js_driver/package.toml" | "/drom/skeletons/packages/js_driver/package.toml" -> Some 153
| "drom/skeletons/packages/js_driver/skeleton.toml" | "/drom/skeletons/packages/js_driver/skeleton.toml" -> Some 142
| "drom/skeletons/packages/js_library/dune_" | "/drom/skeletons/packages/js_library/dune_" -> Some 416
| "drom/skeletons/packages/js_library/main.ml" | "/drom/skeletons/packages/js_library/main.ml" -> Some 98
| "drom/skeletons/packages/js_library/package.toml" | "/drom/skeletons/packages/js_library/package.toml" -> Some 177
| "drom/skeletons/packages/js_library/skeleton.toml" | "/drom/skeletons/packages/js_library/skeleton.toml" -> Some 143
| "drom/skeletons/packages/js_program/dune_" | "/drom/skeletons/packages/js_program/dune_" -> Some 421
| "drom/skeletons/packages/js_program/main.ml" | "/drom/skeletons/packages/js_program/main.ml" -> Some 129
| "drom/skeletons/packages/js_program/package.toml" | "/drom/skeletons/packages/js_program/package.toml" -> Some 177
| "drom/skeletons/packages/js_program/skeleton.toml" | "/drom/skeletons/packages/js_program/skeleton.toml" -> Some 143
| "drom/skeletons/packages/library/dune_" | "/drom/skeletons/packages/library/dune_" -> Some 361
| "drom/skeletons/packages/library/index.mld" | "/drom/skeletons/packages/library/index.mld" -> Some 227
| "drom/skeletons/packages/library/main.ml" | "/drom/skeletons/packages/library/main.ml" -> Some 176
| "drom/skeletons/packages/library/package.toml" | "/drom/skeletons/packages/library/package.toml" -> Some 105
| "drom/skeletons/packages/library/skeleton.toml" | "/drom/skeletons/packages/library/skeleton.toml" -> Some 190
| "drom/skeletons/packages/menhir_lib/dune_" | "/drom/skeletons/packages/menhir_lib/dune_" -> Some 315
| "drom/skeletons/packages/menhir_lib/index.mld" | "/drom/skeletons/packages/menhir_lib/index.mld" -> Some 227
| "drom/skeletons/packages/menhir_lib/lexer.mll" | "/drom/skeletons/packages/menhir_lib/lexer.mll" -> Some 467
| "drom/skeletons/packages/menhir_lib/main.ml" | "/drom/skeletons/packages/menhir_lib/main.ml" -> Some 807
| "drom/skeletons/packages/menhir_lib/package.toml" | "/drom/skeletons/packages/menhir_lib/package.toml" -> Some 206
| "drom/skeletons/packages/menhir_lib/parser.mly" | "/drom/skeletons/packages/menhir_lib/parser.mly" -> Some 1171
| "drom/skeletons/packages/menhir_lib/printer.ml" | "/drom/skeletons/packages/menhir_lib/printer.ml" -> Some 790
| "drom/skeletons/packages/menhir_lib/skeleton.toml" | "/drom/skeletons/packages/menhir_lib/skeleton.toml" -> Some 440
| "drom/skeletons/packages/menhir_lib/types.ml" | "/drom/skeletons/packages/menhir_lib/types.ml" -> Some 396
| "drom/skeletons/packages/ppx_deriver/dune_" | "/drom/skeletons/packages/ppx_deriver/dune_" -> Some 342
| "drom/skeletons/packages/ppx_deriver/index.mld" | "/drom/skeletons/packages/ppx_deriver/index.mld" -> Some 36
| "drom/skeletons/packages/ppx_deriver/main.ml" | "/drom/skeletons/packages/ppx_deriver/main.ml" -> Some 1790
| "drom/skeletons/packages/ppx_deriver/package.toml" | "/drom/skeletons/packages/ppx_deriver/package.toml" -> Some 142
| "drom/skeletons/packages/ppx_deriver/skeleton.toml" | "/drom/skeletons/packages/ppx_deriver/skeleton.toml" -> Some 233
| "drom/skeletons/packages/ppx_rewriter/dune_" | "/drom/skeletons/packages/ppx_rewriter/dune_" -> Some 342
| "drom/skeletons/packages/ppx_rewriter/index.mld" | "/drom/skeletons/packages/ppx_rewriter/index.mld" -> Some 36
| "drom/skeletons/packages/ppx_rewriter/main.ml" | "/drom/skeletons/packages/ppx_rewriter/main.ml" -> Some 993
| "drom/skeletons/packages/ppx_rewriter/package.toml" | "/drom/skeletons/packages/ppx_rewriter/package.toml" -> Some 142
| "drom/skeletons/packages/ppx_rewriter/skeleton.toml" | "/drom/skeletons/packages/ppx_rewriter/skeleton.toml" -> Some 233
| "drom/skeletons/packages/program/dune_" | "/drom/skeletons/packages/program/dune_" -> Some 351
| "drom/skeletons/packages/program/main.ml" | "/drom/skeletons/packages/program/main.ml" -> Some 171
| "drom/skeletons/packages/program/package.toml" | "/drom/skeletons/packages/program/package.toml" -> Some 106
| "drom/skeletons/packages/program/skeleton.toml" | "/drom/skeletons/packages/program/skeleton.toml" -> Some 152
| "drom/skeletons/packages/rust_binding_lib/dune_" | "/drom/skeletons/packages/rust_binding_lib/dune_" -> Some 987
| "drom/skeletons/packages/rust_binding_lib/index.mld" | "/drom/skeletons/packages/rust_binding_lib/index.mld" -> Some 227
| "drom/skeletons/packages/rust_binding_lib/lib.rs" | "/drom/skeletons/packages/rust_binding_lib/lib.rs" -> Some 76
| "drom/skeletons/packages/rust_binding_lib/main.ml" | "/drom/skeletons/packages/rust_binding_lib/main.ml" -> Some 233
| "drom/skeletons/packages/rust_binding_lib/package.toml" | "/drom/skeletons/packages/rust_binding_lib/package.toml" -> Some 110
| "drom/skeletons/packages/rust_binding_lib/skeleton.toml" | "/drom/skeletons/packages/rust_binding_lib/skeleton.toml" -> Some 248
| "drom/skeletons/packages/rust_binding_test/dune_" | "/drom/skeletons/packages/rust_binding_test/dune_" -> Some 344
| "drom/skeletons/packages/rust_binding_test/index.mld" | "/drom/skeletons/packages/rust_binding_test/index.mld" -> Some 36
| "drom/skeletons/packages/rust_binding_test/main.ml" | "/drom/skeletons/packages/rust_binding_test/main.ml" -> Some 62
| "drom/skeletons/packages/rust_binding_test/package.toml" | "/drom/skeletons/packages/rust_binding_test/package.toml" -> Some 115
| "drom/skeletons/packages/rust_binding_test/skeleton.toml" | "/drom/skeletons/packages/rust_binding_test/skeleton.toml" -> Some 204
| "drom/skeletons/packages/virtual/package.toml" | "/drom/skeletons/packages/virtual/package.toml" -> Some 167
| "drom/skeletons/packages/virtual/skeleton.toml" | "/drom/skeletons/packages/virtual/skeleton.toml" -> Some 28
| "drom/skeletons/packages/vue_library/dune_" | "/drom/skeletons/packages/vue_library/dune_" -> Some 427
| "drom/skeletons/packages/vue_library/main.ml" | "/drom/skeletons/packages/vue_library/main.ml" -> Some 1373
| "drom/skeletons/packages/vue_library/package.toml" | "/drom/skeletons/packages/vue_library/package.toml" -> Some 191
| "drom/skeletons/packages/vue_library/skeleton.toml" | "/drom/skeletons/packages/vue_library/skeleton.toml" -> Some 207
| "drom/skeletons/packages/vue_library/templates/dune_" | "/drom/skeletons/packages/vue_library/templates/dune_" -> Some 308
| "drom/skeletons/packages/vue_library/templates/hello.html" | "/drom/skeletons/packages/vue_library/templates/hello.html" -> Some 28
| "drom/skeletons/packages/wasm_binding/build_wasm.sh" | "/drom/skeletons/packages/wasm_binding/build_wasm.sh" -> Some 2364
| "drom/skeletons/packages/wasm_binding/dune_" | "/drom/skeletons/packages/wasm_binding/dune_" -> Some 975
| "drom/skeletons/packages/wasm_binding/index.mld" | "/drom/skeletons/packages/wasm_binding/index.mld" -> Some 227
| "drom/skeletons/packages/wasm_binding/main.c" | "/drom/skeletons/packages/wasm_binding/main.c" -> Some 182
| "drom/skeletons/packages/wasm_binding/main.h" | "/drom/skeletons/packages/wasm_binding/main.h" -> Some 100
| "drom/skeletons/packages/wasm_binding/main.ml" | "/drom/skeletons/packages/wasm_binding/main.ml" -> Some 318
| "drom/skeletons/packages/wasm_binding/package.toml" | "/drom/skeletons/packages/wasm_binding/package.toml" -> Some 220
| "drom/skeletons/packages/wasm_binding/skeleton.toml" | "/drom/skeletons/packages/wasm_binding/skeleton.toml" -> Some 406
| "drom/skeletons/packages/wasm_binding/stubs.c" | "/drom/skeletons/packages/wasm_binding/stubs.c" -> Some 223
| "drom/skeletons/packages/wasm_binding/stubs.js" | "/drom/skeletons/packages/wasm_binding/stubs.js" -> Some 248
| "drom/skeletons/packages/wasm_binding/wasm_utils.js" | "/drom/skeletons/packages/wasm_binding/wasm_utils.js" -> Some 1179
| "drom/skeletons/projects/c_binding/drom.toml" | "/drom/skeletons/projects/c_binding/drom.toml" -> Some 196
| "drom/skeletons/projects/c_binding/skeleton.toml" | "/drom/skeletons/projects/c_binding/skeleton.toml" -> Some 51
| "drom/skeletons/projects/ctypes_foreign/drom.toml" | "/drom/skeletons/projects/ctypes_foreign/drom.toml" -> Some 439
| "drom/skeletons/projects/ctypes_foreign/skeleton.toml" | "/drom/skeletons/projects/ctypes_foreign/skeleton.toml" -> Some 56
| "drom/skeletons/projects/ctypes_stubs/drom.toml" | "/drom/skeletons/projects/ctypes_stubs/drom.toml" -> Some 435
| "drom/skeletons/projects/ctypes_stubs/skeleton.toml" | "/drom/skeletons/projects/ctypes_stubs/skeleton.toml" -> Some 54
| "drom/skeletons/projects/js_lib/drom.toml" | "/drom/skeletons/projects/js_lib/drom.toml" -> Some 163
| "drom/skeletons/projects/js_lib/skeleton.toml" | "/drom/skeletons/projects/js_lib/skeleton.toml" -> Some 48
| "drom/skeletons/projects/js_prg/drom.toml" | "/drom/skeletons/projects/js_prg/drom.toml" -> Some 270
| "drom/skeletons/projects/js_prg/share/js_prg/www/index.html" | "/drom/skeletons/projects/js_prg/share/js_prg/www/index.html" -> Some 548
| "drom/skeletons/projects/js_prg/skeleton.toml" | "/drom/skeletons/projects/js_prg/skeleton.toml" -> Some 130
| "drom/skeletons/projects/library/drom.toml" | "/drom/skeletons/projects/library/drom.toml" -> Some 206
| "drom/skeletons/projects/library/skeleton.toml" | "/drom/skeletons/projects/library/skeleton.toml" -> Some 49
| "drom/skeletons/projects/menhir/drom.toml" | "/drom/skeletons/projects/menhir/drom.toml" -> Some 307
| "drom/skeletons/projects/menhir/skeleton.toml" | "/drom/skeletons/projects/menhir/skeleton.toml" -> Some 48
| "drom/skeletons/projects/mini_lib/drom.toml" | "/drom/skeletons/projects/mini_lib/drom.toml" -> Some 269
| "drom/skeletons/projects/mini_lib/skeleton.toml" | "/drom/skeletons/projects/mini_lib/skeleton.toml" -> Some 50
| "drom/skeletons/projects/mini_prg/drom.toml" | "/drom/skeletons/projects/mini_prg/drom.toml" -> Some 217
| "drom/skeletons/projects/mini_prg/skeleton.toml" | "/drom/skeletons/projects/mini_prg/skeleton.toml" -> Some 50
| "drom/skeletons/projects/ppx_deriver/drom.toml" | "/drom/skeletons/projects/ppx_deriver/drom.toml" -> Some 354
| "drom/skeletons/projects/ppx_deriver/skeleton.toml" | "/drom/skeletons/projects/ppx_deriver/skeleton.toml" -> Some 53
| "drom/skeletons/projects/ppx_rewriter/drom.toml" | "/drom/skeletons/projects/ppx_rewriter/drom.toml" -> Some 337
| "drom/skeletons/projects/ppx_rewriter/skeleton.toml" | "/drom/skeletons/projects/ppx_rewriter/skeleton.toml" -> Some 54
| "drom/skeletons/projects/program/drom.toml" | "/drom/skeletons/projects/program/drom.toml" -> Some 366
| "drom/skeletons/projects/program/skeleton.toml" | "/drom/skeletons/projects/program/skeleton.toml" -> Some 49
| "drom/skeletons/projects/rust_binding/Cargo.toml" | "/drom/skeletons/projects/rust_binding/Cargo.toml" -> Some 327
| "drom/skeletons/projects/rust_binding/drom.toml" | "/drom/skeletons/projects/rust_binding/drom.toml" -> Some 326
| "drom/skeletons/projects/rust_binding/skeleton.toml" | "/drom/skeletons/projects/rust_binding/skeleton.toml" -> Some 54
| "drom/skeletons/projects/virtual/CHANGES.md" | "/drom/skeletons/projects/virtual/CHANGES.md" -> Some 57
| "drom/skeletons/projects/virtual/LICENSE.md" | "/drom/skeletons/projects/virtual/LICENSE.md" -> Some 63
| "drom/skeletons/projects/virtual/Makefile" | "/drom/skeletons/projects/virtual/Makefile" -> Some 1932
| "drom/skeletons/projects/virtual/README.md" | "/drom/skeletons/projects/virtual/README.md" -> Some 172
| "drom/skeletons/projects/virtual/docs/README.txt" | "/drom/skeletons/projects/virtual/docs/README.txt" -> Some 183
| "drom/skeletons/projects/virtual/docs/doc/index.html" | "/drom/skeletons/projects/virtual/docs/doc/index.html" -> Some 215
| "drom/skeletons/projects/virtual/docs/favicon.png" | "/drom/skeletons/projects/virtual/docs/favicon.png" -> Some 37725
| "drom/skeletons/projects/virtual/docs/index.html" | "/drom/skeletons/projects/virtual/docs/index.html" -> Some 773
| "drom/skeletons/projects/virtual/docs/sphinx/index.html" | "/drom/skeletons/projects/virtual/docs/sphinx/index.html" -> Some 212
| "drom/skeletons/projects/virtual/docs/style.css" | "/drom/skeletons/projects/virtual/docs/style.css" -> Some 238
| "drom/skeletons/projects/virtual/dot_github/workflows/workflow.yml" | "/drom/skeletons/projects/virtual/dot_github/workflows/workflow.yml" -> Some 3193
| "drom/skeletons/projects/virtual/dot_gitignore" | "/drom/skeletons/projects/virtual/dot_gitignore" -> Some 109
| "drom/skeletons/projects/virtual/dot_ocamlformat" | "/drom/skeletons/projects/virtual/dot_ocamlformat" -> Some 1384
| "drom/skeletons/projects/virtual/dot_ocamlformat-ignore" | "/drom/skeletons/projects/virtual/dot_ocamlformat-ignore" -> Some 39
| "drom/skeletons/projects/virtual/dot_ocp-indent" | "/drom/skeletons/projects/virtual/dot_ocp-indent" -> Some 4091
| "drom/skeletons/projects/virtual/drom.toml" | "/drom/skeletons/projects/virtual/drom.toml" -> Some 897
| "drom/skeletons/projects/virtual/dune-project_" | "/drom/skeletons/projects/virtual/dune-project_" -> Some 284
| "drom/skeletons/projects/virtual/dune_" | "/drom/skeletons/projects/virtual/dune_" -> Some 138
| "drom/skeletons/projects/virtual/scripts/after.sh" | "/drom/skeletons/projects/virtual/scripts/after.sh" -> Some 155
| "drom/skeletons/projects/virtual/scripts/before.sh" | "/drom/skeletons/projects/virtual/scripts/before.sh" -> Some 744
| "drom/skeletons/projects/virtual/scripts/copy-bin.sh" | "/drom/skeletons/projects/virtual/scripts/copy-bin.sh" -> Some 178
| "drom/skeletons/projects/virtual/skeleton.toml" | "/drom/skeletons/projects/virtual/skeleton.toml" -> Some 2202
| "drom/skeletons/projects/virtual/sphinx/about.rst" | "/drom/skeletons/projects/virtual/sphinx/about.rst" -> Some 71
| "drom/skeletons/projects/virtual/sphinx/conf.py" | "/drom/skeletons/projects/virtual/sphinx/conf.py" -> Some 6994
| "drom/skeletons/projects/virtual/sphinx/index.rst" | "/drom/skeletons/projects/virtual/sphinx/index.rst" -> Some 459
| "drom/skeletons/projects/virtual/sphinx/install.rst" | "/drom/skeletons/projects/virtual/sphinx/install.rst" -> Some 1185
| "drom/skeletons/projects/virtual/sphinx/license.rst" | "/drom/skeletons/projects/virtual/sphinx/license.rst" -> Some 93
| "drom/skeletons/projects/virtual/sphinx/under_static/css/fixes.css" | "/drom/skeletons/projects/virtual/sphinx/under_static/css/fixes.css" -> Some 0
| "drom/skeletons/projects/virtual/test/expect-tests/dune_" | "/drom/skeletons/projects/virtual/test/expect-tests/dune_" -> Some 266
| "drom/skeletons/projects/virtual/test/expect-tests/test.ml" | "/drom/skeletons/projects/virtual/test/expect-tests/test.ml" -> Some 83
| "drom/skeletons/projects/virtual/test/inline-tests/dune_" | "/drom/skeletons/projects/virtual/test/inline-tests/dune_" -> Some 235
| "drom/skeletons/projects/virtual/test/inline-tests/test.ml" | "/drom/skeletons/projects/virtual/test/inline-tests/test.ml" -> Some 167
| "drom/skeletons/projects/virtual/test/output-tests/dune_" | "/drom/skeletons/projects/virtual/test/output-tests/dune_" -> Some 687
| "drom/skeletons/projects/virtual/test/output-tests/test1.expected" | "/drom/skeletons/projects/virtual/test/output-tests/test1.expected" -> Some 12
| "drom/skeletons/projects/virtual/test/output-tests/test2.expected" | "/drom/skeletons/projects/virtual/test/output-tests/test2.expected" -> Some 8
| "drom/skeletons/projects/virtual/test/output-tests/test2.ml" | "/drom/skeletons/projects/virtual/test/output-tests/test2.ml" -> Some 49
| "drom/skeletons/projects/vue/drom.toml" | "/drom/skeletons/projects/vue/drom.toml" -> Some 292
| "drom/skeletons/projects/vue/index.html" | "/drom/skeletons/projects/vue/index.html" -> Some 662
| "drom/skeletons/projects/vue/skeleton.toml" | "/drom/skeletons/projects/vue/skeleton.toml" -> Some 110
| "drom/skeletons/projects/wasm_binding/drom.toml" | "/drom/skeletons/projects/wasm_binding/drom.toml" -> Some 205
| "drom/skeletons/projects/wasm_binding/skeleton.toml" | "/drom/skeletons/projects/wasm_binding/skeleton.toml" -> Some 54
| _ -> None