<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">"use strict";

//Math.seed = 1;
//
//Math.srandom = () =&gt; { // This method is 0.00007573ms per time
//    Math.seed = (Math.seed * 9301 + 49297) % 233280;
//    const rnd = Math.seed / 233280.0;
//    return rnd;
//};

WebAssembly.instantiateStreaming(fetch('lib-wsm.wasm')).then(obj =&gt; {
    const exports = obj.instance.exports;
    Math.srandom = exports.random; // This method is 0.00001494ms per time
    Math.set_seed = exports.set_seed;
    window.LIB_INITED = true;
    if (window.onlibinit) window.onlibinit();
});</pre></body></html>