799 lines
27 KiB
JavaScript
799 lines
27 KiB
JavaScript
|
|
let wasm;
|
||
|
|
|
||
|
|
function addToExternrefTable0(obj) {
|
||
|
|
const idx = wasm.__externref_table_alloc();
|
||
|
|
wasm.__wbindgen_export_2.set(idx, obj);
|
||
|
|
return idx;
|
||
|
|
}
|
||
|
|
|
||
|
|
function handleError(f, args) {
|
||
|
|
try {
|
||
|
|
return f.apply(this, args);
|
||
|
|
} catch (e) {
|
||
|
|
const idx = addToExternrefTable0(e);
|
||
|
|
wasm.__wbindgen_exn_store(idx);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function isLikeNone(x) {
|
||
|
|
return x === undefined || x === null;
|
||
|
|
}
|
||
|
|
|
||
|
|
function getFromExternrefTable0(idx) { return wasm.__wbindgen_export_2.get(idx); }
|
||
|
|
|
||
|
|
let cachedUint8ArrayMemory0 = null;
|
||
|
|
|
||
|
|
function getUint8ArrayMemory0() {
|
||
|
|
if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
|
||
|
|
cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
|
||
|
|
}
|
||
|
|
return cachedUint8ArrayMemory0;
|
||
|
|
}
|
||
|
|
|
||
|
|
let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
||
|
|
|
||
|
|
cachedTextDecoder.decode();
|
||
|
|
|
||
|
|
const MAX_SAFARI_DECODE_BYTES = 2146435072;
|
||
|
|
let numBytesDecoded = 0;
|
||
|
|
function decodeText(ptr, len) {
|
||
|
|
numBytesDecoded += len;
|
||
|
|
if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
|
||
|
|
cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
|
||
|
|
cachedTextDecoder.decode();
|
||
|
|
numBytesDecoded = len;
|
||
|
|
}
|
||
|
|
return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
|
||
|
|
}
|
||
|
|
|
||
|
|
function getStringFromWasm0(ptr, len) {
|
||
|
|
ptr = ptr >>> 0;
|
||
|
|
return decodeText(ptr, len);
|
||
|
|
}
|
||
|
|
|
||
|
|
function getCachedStringFromWasm0(ptr, len) {
|
||
|
|
if (ptr === 0) {
|
||
|
|
return getFromExternrefTable0(len);
|
||
|
|
} else {
|
||
|
|
return getStringFromWasm0(ptr, len);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
let WASM_VECTOR_LEN = 0;
|
||
|
|
|
||
|
|
const cachedTextEncoder = new TextEncoder();
|
||
|
|
|
||
|
|
if (!('encodeInto' in cachedTextEncoder)) {
|
||
|
|
cachedTextEncoder.encodeInto = function (arg, view) {
|
||
|
|
const buf = cachedTextEncoder.encode(arg);
|
||
|
|
view.set(buf);
|
||
|
|
return {
|
||
|
|
read: arg.length,
|
||
|
|
written: buf.length
|
||
|
|
};
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function passStringToWasm0(arg, malloc, realloc) {
|
||
|
|
|
||
|
|
if (realloc === undefined) {
|
||
|
|
const buf = cachedTextEncoder.encode(arg);
|
||
|
|
const ptr = malloc(buf.length, 1) >>> 0;
|
||
|
|
getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
|
||
|
|
WASM_VECTOR_LEN = buf.length;
|
||
|
|
return ptr;
|
||
|
|
}
|
||
|
|
|
||
|
|
let len = arg.length;
|
||
|
|
let ptr = malloc(len, 1) >>> 0;
|
||
|
|
|
||
|
|
const mem = getUint8ArrayMemory0();
|
||
|
|
|
||
|
|
let offset = 0;
|
||
|
|
|
||
|
|
for (; offset < len; offset++) {
|
||
|
|
const code = arg.charCodeAt(offset);
|
||
|
|
if (code > 0x7F) break;
|
||
|
|
mem[ptr + offset] = code;
|
||
|
|
}
|
||
|
|
|
||
|
|
if (offset !== len) {
|
||
|
|
if (offset !== 0) {
|
||
|
|
arg = arg.slice(offset);
|
||
|
|
}
|
||
|
|
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
||
|
|
const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
|
||
|
|
const ret = cachedTextEncoder.encodeInto(arg, view);
|
||
|
|
|
||
|
|
offset += ret.written;
|
||
|
|
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
WASM_VECTOR_LEN = offset;
|
||
|
|
return ptr;
|
||
|
|
}
|
||
|
|
|
||
|
|
let cachedDataViewMemory0 = null;
|
||
|
|
|
||
|
|
function getDataViewMemory0() {
|
||
|
|
if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
|
||
|
|
cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
|
||
|
|
}
|
||
|
|
return cachedDataViewMemory0;
|
||
|
|
}
|
||
|
|
|
||
|
|
function getArrayU8FromWasm0(ptr, len) {
|
||
|
|
ptr = ptr >>> 0;
|
||
|
|
return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len);
|
||
|
|
}
|
||
|
|
|
||
|
|
function debugString(val) {
|
||
|
|
// primitive types
|
||
|
|
const type = typeof val;
|
||
|
|
if (type == 'number' || type == 'boolean' || val == null) {
|
||
|
|
return `${val}`;
|
||
|
|
}
|
||
|
|
if (type == 'string') {
|
||
|
|
return `"${val}"`;
|
||
|
|
}
|
||
|
|
if (type == 'symbol') {
|
||
|
|
const description = val.description;
|
||
|
|
if (description == null) {
|
||
|
|
return 'Symbol';
|
||
|
|
} else {
|
||
|
|
return `Symbol(${description})`;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if (type == 'function') {
|
||
|
|
const name = val.name;
|
||
|
|
if (typeof name == 'string' && name.length > 0) {
|
||
|
|
return `Function(${name})`;
|
||
|
|
} else {
|
||
|
|
return 'Function';
|
||
|
|
}
|
||
|
|
}
|
||
|
|
// objects
|
||
|
|
if (Array.isArray(val)) {
|
||
|
|
const length = val.length;
|
||
|
|
let debug = '[';
|
||
|
|
if (length > 0) {
|
||
|
|
debug += debugString(val[0]);
|
||
|
|
}
|
||
|
|
for(let i = 1; i < length; i++) {
|
||
|
|
debug += ', ' + debugString(val[i]);
|
||
|
|
}
|
||
|
|
debug += ']';
|
||
|
|
return debug;
|
||
|
|
}
|
||
|
|
// Test for built-in
|
||
|
|
const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val));
|
||
|
|
let className;
|
||
|
|
if (builtInMatches && builtInMatches.length > 1) {
|
||
|
|
className = builtInMatches[1];
|
||
|
|
} else {
|
||
|
|
// Failed to match the standard '[object ClassName]'
|
||
|
|
return toString.call(val);
|
||
|
|
}
|
||
|
|
if (className == 'Object') {
|
||
|
|
// we're a user defined class or Object
|
||
|
|
// JSON.stringify avoids problems with cycles, and is generally much
|
||
|
|
// easier than looping through ownProperties of `val`.
|
||
|
|
try {
|
||
|
|
return 'Object(' + JSON.stringify(val) + ')';
|
||
|
|
} catch (_) {
|
||
|
|
return 'Object';
|
||
|
|
}
|
||
|
|
}
|
||
|
|
// errors
|
||
|
|
if (val instanceof Error) {
|
||
|
|
return `${val.name}: ${val.message}\n${val.stack}`;
|
||
|
|
}
|
||
|
|
// TODO we could test for more things here, like `Set`s and `Map`s.
|
||
|
|
return className;
|
||
|
|
}
|
||
|
|
|
||
|
|
const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined')
|
||
|
|
? { register: () => {}, unregister: () => {} }
|
||
|
|
: new FinalizationRegistry(
|
||
|
|
state => {
|
||
|
|
wasm.__wbindgen_export_6.get(state.dtor)(state.a, state.b);
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
function makeMutClosure(arg0, arg1, dtor, f) {
|
||
|
|
const state = { a: arg0, b: arg1, cnt: 1, dtor };
|
||
|
|
const real = (...args) => {
|
||
|
|
|
||
|
|
// First up with a closure we increment the internal reference
|
||
|
|
// count. This ensures that the Rust closure environment won't
|
||
|
|
// be deallocated while we're invoking it.
|
||
|
|
state.cnt++;
|
||
|
|
const a = state.a;
|
||
|
|
state.a = 0;
|
||
|
|
try {
|
||
|
|
return f(a, state.b, ...args);
|
||
|
|
} finally {
|
||
|
|
if (--state.cnt === 0) {
|
||
|
|
wasm.__wbindgen_export_6.get(state.dtor)(a, state.b);
|
||
|
|
CLOSURE_DTORS.unregister(state);
|
||
|
|
} else {
|
||
|
|
state.a = a;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
real.original = state;
|
||
|
|
CLOSURE_DTORS.register(real, state, state);
|
||
|
|
return real;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @param {string} name
|
||
|
|
*/
|
||
|
|
export function mark_performance(name) {
|
||
|
|
const ptr0 = passStringToWasm0(name, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
||
|
|
const len0 = WASM_VECTOR_LEN;
|
||
|
|
wasm.mark_performance(ptr0, len0);
|
||
|
|
}
|
||
|
|
|
||
|
|
export function start() {
|
||
|
|
wasm.start();
|
||
|
|
}
|
||
|
|
|
||
|
|
function __wbg_adapter_8(arg0, arg1, arg2) {
|
||
|
|
wasm.closure251_externref_shim(arg0, arg1, arg2);
|
||
|
|
}
|
||
|
|
|
||
|
|
function __wbg_adapter_109(arg0, arg1, arg2, arg3) {
|
||
|
|
wasm.closure258_externref_shim(arg0, arg1, arg2, arg3);
|
||
|
|
}
|
||
|
|
|
||
|
|
const __wbindgen_enum_ReadableStreamType = ["bytes"];
|
||
|
|
|
||
|
|
const IntoUnderlyingByteSourceFinalization = (typeof FinalizationRegistry === 'undefined')
|
||
|
|
? { register: () => {}, unregister: () => {} }
|
||
|
|
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingbytesource_free(ptr >>> 0, 1));
|
||
|
|
|
||
|
|
export class IntoUnderlyingByteSource {
|
||
|
|
|
||
|
|
__destroy_into_raw() {
|
||
|
|
const ptr = this.__wbg_ptr;
|
||
|
|
this.__wbg_ptr = 0;
|
||
|
|
IntoUnderlyingByteSourceFinalization.unregister(this);
|
||
|
|
return ptr;
|
||
|
|
}
|
||
|
|
|
||
|
|
free() {
|
||
|
|
const ptr = this.__destroy_into_raw();
|
||
|
|
wasm.__wbg_intounderlyingbytesource_free(ptr, 0);
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @returns {ReadableStreamType}
|
||
|
|
*/
|
||
|
|
get type() {
|
||
|
|
const ret = wasm.intounderlyingbytesource_type(this.__wbg_ptr);
|
||
|
|
return __wbindgen_enum_ReadableStreamType[ret];
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @returns {number}
|
||
|
|
*/
|
||
|
|
get autoAllocateChunkSize() {
|
||
|
|
const ret = wasm.intounderlyingbytesource_autoAllocateChunkSize(this.__wbg_ptr);
|
||
|
|
return ret >>> 0;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @param {ReadableByteStreamController} controller
|
||
|
|
*/
|
||
|
|
start(controller) {
|
||
|
|
wasm.intounderlyingbytesource_start(this.__wbg_ptr, controller);
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @param {ReadableByteStreamController} controller
|
||
|
|
* @returns {Promise<any>}
|
||
|
|
*/
|
||
|
|
pull(controller) {
|
||
|
|
const ret = wasm.intounderlyingbytesource_pull(this.__wbg_ptr, controller);
|
||
|
|
return ret;
|
||
|
|
}
|
||
|
|
cancel() {
|
||
|
|
const ptr = this.__destroy_into_raw();
|
||
|
|
wasm.intounderlyingbytesource_cancel(ptr);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if (Symbol.dispose) IntoUnderlyingByteSource.prototype[Symbol.dispose] = IntoUnderlyingByteSource.prototype.free;
|
||
|
|
|
||
|
|
const IntoUnderlyingSinkFinalization = (typeof FinalizationRegistry === 'undefined')
|
||
|
|
? { register: () => {}, unregister: () => {} }
|
||
|
|
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsink_free(ptr >>> 0, 1));
|
||
|
|
|
||
|
|
export class IntoUnderlyingSink {
|
||
|
|
|
||
|
|
__destroy_into_raw() {
|
||
|
|
const ptr = this.__wbg_ptr;
|
||
|
|
this.__wbg_ptr = 0;
|
||
|
|
IntoUnderlyingSinkFinalization.unregister(this);
|
||
|
|
return ptr;
|
||
|
|
}
|
||
|
|
|
||
|
|
free() {
|
||
|
|
const ptr = this.__destroy_into_raw();
|
||
|
|
wasm.__wbg_intounderlyingsink_free(ptr, 0);
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @param {any} chunk
|
||
|
|
* @returns {Promise<any>}
|
||
|
|
*/
|
||
|
|
write(chunk) {
|
||
|
|
const ret = wasm.intounderlyingsink_write(this.__wbg_ptr, chunk);
|
||
|
|
return ret;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @returns {Promise<any>}
|
||
|
|
*/
|
||
|
|
close() {
|
||
|
|
const ptr = this.__destroy_into_raw();
|
||
|
|
const ret = wasm.intounderlyingsink_close(ptr);
|
||
|
|
return ret;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @param {any} reason
|
||
|
|
* @returns {Promise<any>}
|
||
|
|
*/
|
||
|
|
abort(reason) {
|
||
|
|
const ptr = this.__destroy_into_raw();
|
||
|
|
const ret = wasm.intounderlyingsink_abort(ptr, reason);
|
||
|
|
return ret;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if (Symbol.dispose) IntoUnderlyingSink.prototype[Symbol.dispose] = IntoUnderlyingSink.prototype.free;
|
||
|
|
|
||
|
|
const IntoUnderlyingSourceFinalization = (typeof FinalizationRegistry === 'undefined')
|
||
|
|
? { register: () => {}, unregister: () => {} }
|
||
|
|
: new FinalizationRegistry(ptr => wasm.__wbg_intounderlyingsource_free(ptr >>> 0, 1));
|
||
|
|
|
||
|
|
export class IntoUnderlyingSource {
|
||
|
|
|
||
|
|
__destroy_into_raw() {
|
||
|
|
const ptr = this.__wbg_ptr;
|
||
|
|
this.__wbg_ptr = 0;
|
||
|
|
IntoUnderlyingSourceFinalization.unregister(this);
|
||
|
|
return ptr;
|
||
|
|
}
|
||
|
|
|
||
|
|
free() {
|
||
|
|
const ptr = this.__destroy_into_raw();
|
||
|
|
wasm.__wbg_intounderlyingsource_free(ptr, 0);
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @param {ReadableStreamDefaultController} controller
|
||
|
|
* @returns {Promise<any>}
|
||
|
|
*/
|
||
|
|
pull(controller) {
|
||
|
|
const ret = wasm.intounderlyingsource_pull(this.__wbg_ptr, controller);
|
||
|
|
return ret;
|
||
|
|
}
|
||
|
|
cancel() {
|
||
|
|
const ptr = this.__destroy_into_raw();
|
||
|
|
wasm.intounderlyingsource_cancel(ptr);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
if (Symbol.dispose) IntoUnderlyingSource.prototype[Symbol.dispose] = IntoUnderlyingSource.prototype.free;
|
||
|
|
|
||
|
|
const EXPECTED_RESPONSE_TYPES = new Set(['basic', 'cors', 'default']);
|
||
|
|
|
||
|
|
async function __wbg_load(module, imports) {
|
||
|
|
if (typeof Response === 'function' && module instanceof Response) {
|
||
|
|
if (typeof WebAssembly.instantiateStreaming === 'function') {
|
||
|
|
try {
|
||
|
|
return await WebAssembly.instantiateStreaming(module, imports);
|
||
|
|
|
||
|
|
} catch (e) {
|
||
|
|
const validResponse = module.ok && EXPECTED_RESPONSE_TYPES.has(module.type);
|
||
|
|
|
||
|
|
if (validResponse && module.headers.get('Content-Type') !== 'application/wasm') {
|
||
|
|
console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve Wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
|
||
|
|
|
||
|
|
} else {
|
||
|
|
throw e;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
const bytes = await module.arrayBuffer();
|
||
|
|
return await WebAssembly.instantiate(bytes, imports);
|
||
|
|
|
||
|
|
} else {
|
||
|
|
const instance = await WebAssembly.instantiate(module, imports);
|
||
|
|
|
||
|
|
if (instance instanceof WebAssembly.Instance) {
|
||
|
|
return { instance, module };
|
||
|
|
|
||
|
|
} else {
|
||
|
|
return instance;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
function __wbg_get_imports() {
|
||
|
|
const imports = {};
|
||
|
|
imports.wbg = {};
|
||
|
|
imports.wbg.__wbg_appendChild_87a6cc0aeb132c06 = function() { return handleError(function (arg0, arg1) {
|
||
|
|
const ret = arg0.appendChild(arg1);
|
||
|
|
return ret;
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_append_a3566a825e5fb7ba = function() { return handleError(function (arg0, arg1, arg2) {
|
||
|
|
arg0.append(arg1, arg2);
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_before_9a9e82feba2f4a5e = function() { return handleError(function (arg0, arg1) {
|
||
|
|
arg0.before(arg1);
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_body_8822ca55cb3730d2 = function(arg0) {
|
||
|
|
const ret = arg0.body;
|
||
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_buffer_8d40b1d762fb3c66 = function(arg0) {
|
||
|
|
const ret = arg0.buffer;
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_byobRequest_2c036bceca1e6037 = function(arg0) {
|
||
|
|
const ret = arg0.byobRequest;
|
||
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_byteLength_331a6b5545834024 = function(arg0) {
|
||
|
|
const ret = arg0.byteLength;
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_byteOffset_49a5b5608000358b = function(arg0) {
|
||
|
|
const ret = arg0.byteOffset;
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_call_13410aac570ffff7 = function() { return handleError(function (arg0, arg1) {
|
||
|
|
const ret = arg0.call(arg1);
|
||
|
|
return ret;
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_call_a5400b25a865cfd8 = function() { return handleError(function (arg0, arg1, arg2) {
|
||
|
|
const ret = arg0.call(arg1, arg2);
|
||
|
|
return ret;
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_childNodes_5c44c2ec67a90732 = function(arg0) {
|
||
|
|
const ret = arg0.childNodes;
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_cloneNode_79d46b18d5619863 = function() { return handleError(function (arg0) {
|
||
|
|
const ret = arg0.cloneNode();
|
||
|
|
return ret;
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_close_cccada6053ee3a65 = function() { return handleError(function (arg0) {
|
||
|
|
arg0.close();
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_close_d71a78219dc23e91 = function() { return handleError(function (arg0) {
|
||
|
|
arg0.close();
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_createComment_08abf524559fd4d7 = function(arg0, arg1, arg2) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
||
|
|
const ret = arg0.createComment(v0);
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_createDocumentFragment_08df3891d3e00ee8 = function(arg0) {
|
||
|
|
const ret = arg0.createDocumentFragment();
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_createElement_4909dfa2011f2abe = function() { return handleError(function (arg0, arg1, arg2) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
||
|
|
const ret = arg0.createElement(v0);
|
||
|
|
return ret;
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_createTextNode_c71a51271fadf515 = function(arg0, arg1, arg2) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
||
|
|
const ret = arg0.createTextNode(v0);
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_document_7d29d139bd619045 = function(arg0) {
|
||
|
|
const ret = arg0.document;
|
||
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_enqueue_452bc2343d1c2ff9 = function() { return handleError(function (arg0, arg1) {
|
||
|
|
arg0.enqueue(arg1);
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_error_7534b8e9a36f1ab4 = function(arg0, arg1) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
||
|
|
if (arg0 !== 0) { wasm.__wbindgen_free(arg0, arg1, 1); }
|
||
|
|
console.error(v0);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_instanceof_Window_12d20d558ef92592 = function(arg0) {
|
||
|
|
let result;
|
||
|
|
try {
|
||
|
|
result = arg0 instanceof Window;
|
||
|
|
} catch (_) {
|
||
|
|
result = false;
|
||
|
|
}
|
||
|
|
const ret = result;
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_is_8346b6c36feaf71a = function(arg0, arg1) {
|
||
|
|
const ret = Object.is(arg0, arg1);
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_length_6bb7e81f9d7713e4 = function(arg0) {
|
||
|
|
const ret = arg0.length;
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_length_e7f4a6e30ea139e7 = function(arg0) {
|
||
|
|
const ret = arg0.length;
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_log_0cc1b7768397bcfe = function(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
||
|
|
if (arg0 !== 0) { wasm.__wbindgen_free(arg0, arg1, 1); }
|
||
|
|
var v1 = getCachedStringFromWasm0(arg2, arg3);
|
||
|
|
var v2 = getCachedStringFromWasm0(arg4, arg5);
|
||
|
|
var v3 = getCachedStringFromWasm0(arg6, arg7);
|
||
|
|
console.log(v0, v1, v2, v3);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_log_6c7b5f4f00b8ce3f = function(arg0) {
|
||
|
|
console.log(arg0);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_log_cb9e190acc5753fb = function(arg0, arg1) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
||
|
|
if (arg0 !== 0) { wasm.__wbindgen_free(arg0, arg1, 1); }
|
||
|
|
console.log(v0);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_mark_7438147ce31e9d4b = function(arg0, arg1) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
||
|
|
performance.mark(v0);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_mark_cd609a6d46114f36 = function(arg0, arg1) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
||
|
|
window.performance.mark(v0);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_measure_fb7825c11612c823 = function() { return handleError(function (arg0, arg1, arg2, arg3) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
||
|
|
if (arg0 !== 0) { wasm.__wbindgen_free(arg0, arg1, 1); }
|
||
|
|
var v1 = getCachedStringFromWasm0(arg2, arg3);
|
||
|
|
if (arg2 !== 0) { wasm.__wbindgen_free(arg2, arg3, 1); }
|
||
|
|
performance.measure(v0, v1);
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_namespaceURI_020a81e6d28c2c96 = function(arg0, arg1) {
|
||
|
|
const ret = arg1.namespaceURI;
|
||
|
|
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
||
|
|
var len1 = WASM_VECTOR_LEN;
|
||
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
||
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_new_2e3c58a15f39f5f9 = function(arg0, arg1) {
|
||
|
|
try {
|
||
|
|
var state0 = {a: arg0, b: arg1};
|
||
|
|
var cb0 = (arg0, arg1) => {
|
||
|
|
const a = state0.a;
|
||
|
|
state0.a = 0;
|
||
|
|
try {
|
||
|
|
return __wbg_adapter_109(a, state0.b, arg0, arg1);
|
||
|
|
} finally {
|
||
|
|
state0.a = a;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
const ret = new Promise(cb0);
|
||
|
|
return ret;
|
||
|
|
} finally {
|
||
|
|
state0.a = state0.b = 0;
|
||
|
|
}
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_new_8a6f238a6ece86ea = function() {
|
||
|
|
const ret = new Error();
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_new_da9dc54c5db29dfa = function(arg0, arg1) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
||
|
|
const ret = new Error(v0);
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_newnoargs_254190557c45b4ec = function(arg0, arg1) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
||
|
|
const ret = new Function(v0);
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_newwithbyteoffsetandlength_e8f53910b4d42b45 = function(arg0, arg1, arg2) {
|
||
|
|
const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0);
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_nextSibling_1fb03516719cac0f = function(arg0) {
|
||
|
|
const ret = arg0.nextSibling;
|
||
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_outerHTML_5fe297cb1fc146f2 = function(arg0, arg1) {
|
||
|
|
const ret = arg1.outerHTML;
|
||
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
||
|
|
const len1 = WASM_VECTOR_LEN;
|
||
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
||
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_queueMicrotask_25d0739ac89e8c88 = function(arg0) {
|
||
|
|
queueMicrotask(arg0);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_queueMicrotask_4488407636f5bf24 = function(arg0) {
|
||
|
|
const ret = arg0.queueMicrotask;
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_removeAttribute_cf35412842be6ae4 = function() { return handleError(function (arg0, arg1, arg2) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
||
|
|
arg0.removeAttribute(v0);
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_resolve_4055c623acdd6a1b = function(arg0) {
|
||
|
|
const ret = Promise.resolve(arg0);
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_respond_6c2c4e20ef85138e = function() { return handleError(function (arg0, arg1) {
|
||
|
|
arg0.respond(arg1 >>> 0);
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_setAttribute_d1baf9023ad5696f = function() { return handleError(function (arg0, arg1, arg2, arg3, arg4) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
||
|
|
var v1 = getCachedStringFromWasm0(arg3, arg4);
|
||
|
|
arg0.setAttribute(v0, v1);
|
||
|
|
}, arguments) };
|
||
|
|
imports.wbg.__wbg_set_1353b2a5e96bc48c = function(arg0, arg1, arg2) {
|
||
|
|
arg0.set(getArrayU8FromWasm0(arg1, arg2));
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_setinnerHTML_34e240d6b8e8260c = function(arg0, arg1, arg2) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
||
|
|
arg0.innerHTML = v0;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_settextContent_b55fe2f5f1399466 = function(arg0, arg1, arg2) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg1, arg2);
|
||
|
|
arg0.textContent = v0;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_stack_0ed75d68575b0f3c = function(arg0, arg1) {
|
||
|
|
const ret = arg1.stack;
|
||
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
||
|
|
const len1 = WASM_VECTOR_LEN;
|
||
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
||
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_static_accessor_GLOBAL_8921f820c2ce3f12 = function() {
|
||
|
|
const ret = typeof global === 'undefined' ? null : global;
|
||
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_static_accessor_GLOBAL_THIS_f0a4409105898184 = function() {
|
||
|
|
const ret = typeof globalThis === 'undefined' ? null : globalThis;
|
||
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_static_accessor_SELF_995b214ae681ff99 = function() {
|
||
|
|
const ret = typeof self === 'undefined' ? null : self;
|
||
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_static_accessor_WINDOW_cde3890479c675ea = function() {
|
||
|
|
const ret = typeof window === 'undefined' ? null : window;
|
||
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_then_e22500defe16819f = function(arg0, arg1) {
|
||
|
|
const ret = arg0.then(arg1);
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_view_91cc97d57ab30530 = function(arg0) {
|
||
|
|
const ret = arg0.view;
|
||
|
|
return isLikeNone(ret) ? 0 : addToExternrefTable0(ret);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_warn_e2ada06313f92f09 = function(arg0) {
|
||
|
|
console.warn(arg0);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_wbindgencbdrop_eb10308566512b88 = function(arg0) {
|
||
|
|
const obj = arg0.original;
|
||
|
|
if (obj.cnt-- == 1) {
|
||
|
|
obj.a = 0;
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
const ret = false;
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_wbindgendebugstring_99ef257a3ddda34d = function(arg0, arg1) {
|
||
|
|
const ret = debugString(arg1);
|
||
|
|
const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
||
|
|
const len1 = WASM_VECTOR_LEN;
|
||
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
|
||
|
|
getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_wbindgenisfunction_8cee7dce3725ae74 = function(arg0) {
|
||
|
|
const ret = typeof(arg0) === 'function';
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_wbindgenisundefined_c4b71d073b92f3c5 = function(arg0) {
|
||
|
|
const ret = arg0 === undefined;
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbg_wbindgenthrow_451ec1a8469d7eb6 = function(arg0, arg1) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
||
|
|
throw new Error(v0);
|
||
|
|
};
|
||
|
|
imports.wbg.__wbindgen_cast_7e9c58eeb11b0a6f = function(arg0, arg1) {
|
||
|
|
var v0 = getCachedStringFromWasm0(arg0, arg1);
|
||
|
|
// Cast intrinsic for `Ref(CachedString) -> Externref`.
|
||
|
|
const ret = v0;
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbindgen_cast_9843a8e5ee4f8c29 = function(arg0, arg1) {
|
||
|
|
// Cast intrinsic for `Closure(Closure { dtor_idx: 249, function: Function { arguments: [Externref], shim_idx: 251, ret: Unit, inner_ret: Some(Unit) }, mutable: true }) -> Externref`.
|
||
|
|
const ret = makeMutClosure(arg0, arg1, 249, __wbg_adapter_8);
|
||
|
|
return ret;
|
||
|
|
};
|
||
|
|
imports.wbg.__wbindgen_init_externref_table = function() {
|
||
|
|
const table = wasm.__wbindgen_export_2;
|
||
|
|
const offset = table.grow(4);
|
||
|
|
table.set(0, undefined);
|
||
|
|
table.set(offset + 0, undefined);
|
||
|
|
table.set(offset + 1, null);
|
||
|
|
table.set(offset + 2, true);
|
||
|
|
table.set(offset + 3, false);
|
||
|
|
;
|
||
|
|
};
|
||
|
|
|
||
|
|
return imports;
|
||
|
|
}
|
||
|
|
|
||
|
|
function __wbg_init_memory(imports, memory) {
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
function __wbg_finalize_init(instance, module) {
|
||
|
|
wasm = instance.exports;
|
||
|
|
__wbg_init.__wbindgen_wasm_module = module;
|
||
|
|
cachedDataViewMemory0 = null;
|
||
|
|
cachedUint8ArrayMemory0 = null;
|
||
|
|
|
||
|
|
|
||
|
|
wasm.__wbindgen_start();
|
||
|
|
return wasm;
|
||
|
|
}
|
||
|
|
|
||
|
|
function initSync(module) {
|
||
|
|
if (wasm !== undefined) return wasm;
|
||
|
|
|
||
|
|
|
||
|
|
if (typeof module !== 'undefined') {
|
||
|
|
if (Object.getPrototypeOf(module) === Object.prototype) {
|
||
|
|
({module} = module)
|
||
|
|
} else {
|
||
|
|
console.warn('using deprecated parameters for `initSync()`; pass a single object instead')
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
const imports = __wbg_get_imports();
|
||
|
|
|
||
|
|
__wbg_init_memory(imports);
|
||
|
|
|
||
|
|
if (!(module instanceof WebAssembly.Module)) {
|
||
|
|
module = new WebAssembly.Module(module);
|
||
|
|
}
|
||
|
|
|
||
|
|
const instance = new WebAssembly.Instance(module, imports);
|
||
|
|
|
||
|
|
return __wbg_finalize_init(instance, module);
|
||
|
|
}
|
||
|
|
|
||
|
|
async function __wbg_init(module_or_path) {
|
||
|
|
if (wasm !== undefined) return wasm;
|
||
|
|
|
||
|
|
|
||
|
|
if (typeof module_or_path !== 'undefined') {
|
||
|
|
if (Object.getPrototypeOf(module_or_path) === Object.prototype) {
|
||
|
|
({module_or_path} = module_or_path)
|
||
|
|
} else {
|
||
|
|
console.warn('using deprecated parameters for the initialization function; pass a single object instead')
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
if (typeof module_or_path === 'undefined') {
|
||
|
|
module_or_path = new URL('control-center-ui_bg.wasm', import.meta.url);
|
||
|
|
}
|
||
|
|
const imports = __wbg_get_imports();
|
||
|
|
|
||
|
|
if (typeof module_or_path === 'string' || (typeof Request === 'function' && module_or_path instanceof Request) || (typeof URL === 'function' && module_or_path instanceof URL)) {
|
||
|
|
module_or_path = fetch(module_or_path);
|
||
|
|
}
|
||
|
|
|
||
|
|
__wbg_init_memory(imports);
|
||
|
|
|
||
|
|
const { instance, module } = await __wbg_load(await module_or_path, imports);
|
||
|
|
|
||
|
|
return __wbg_finalize_init(instance, module);
|
||
|
|
}
|
||
|
|
|
||
|
|
export { initSync };
|
||
|
|
export default __wbg_init;
|